Get tokens
Retrieves a paginated list of all tokens supported by the platform across all blockchain networks.
HTTP request
GET /v1/tokens/
Request
Header parameters
Requires authentication.
Body parameters
Doesn't require setting any parameters.
Response
Successful response
| Name | Type | Required | Description |
|---|---|---|---|
id | Number | Required | Token ID. |
code | String | Required | Token code. |
name | String | Required | Token name. |
network_id | Number | Required | Network relation. |
image | String | Optional | Token image URL. |
decimals | Number | Required | Token decimals to adjust amount. |
contract_address | String | Optional | Token contract address. |
wrapped_token_address | String | Optional | If a token has a non-empty value in the response, the token must be wrapped before use. |
is_enabled | Bool | Required | Enabled for exchange. |
Sample response
application/json
{
"data": [
{
"id": 4,
"code": "eth",
"name": "ETH",
"network_id": 6,
"image": "https://web-api.changelly.com/api/coins/eth.png",
"decimals": 18,
"contract_address": null,
"wrapped_token_address": "0xc02aaa39************083c756cc2",
"is_enabled": true
},
...
]
}
Error response
Check the error response schema.