# ApiToken

Serializable token representation for API responses.

**id**stringrequired

Canonical token identifier accepted by the API, e.g. `BITCOIN-BTC`, `LIGHTNING-BTC`, `STARKNET-STRK`.

**chainId**stringrequired

Chain identifier, e.g. `STARKNET`, `BITCOIN`, `LIGHTNING`.

**ticker**stringrequired

Token ticker, e.g. `STRK`.

**name**stringrequired

Full token name.

**decimals**integerrequired

Decimal places of the token.

**address**stringrequired

Token contract address, or empty string for BTC on Bitcoin/Lightning.

ApiToken

```
{

  "id": "string",

  "chainId": "string",

  "ticker": "string",

  "name": "string",

  "decimals": 0,

  "address": "string"

}
```
