Documentation / API reference / Exchange
Get Exchanges
Last reviewed 2026-09-18
Lists known exchange coldkeys with their exchange names and icons. Use these records to identify exchange-associated accounts.
Try it
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
page | query | integer (int32) | The page number of the response. | |
limit | query | integer (int32) | The number of responses. max is 200, |
Responses
200 — Exchanges retrieved successfully
| Field | Type | Required | Description |
|---|---|---|---|
data | array | Yes | |
data[].coldkey | object | Yes | |
data[].coldkey.hex | string | Yes | The hex format of the hot key |
data[].coldkey.ss58 | string | Yes | The SS58 format of the hot key |
data[].icon | string, nullable | ||
data[].name | string | Yes | |
pagination | object | Yes | |
pagination.current_page | integer (int32) | Yes | |
pagination.next_page | integer (int32), nullable | ||
pagination.per_page | integer (int32) | Yes | |
pagination.prev_page | integer (int32), nullable | ||
pagination.total_items | integer (int32) | Yes | |
pagination.total_pages | integer (int32) | Yes |
Example response
json
{
"data": [
{
"coldkey": {
"hex": "0x006a327fd8209758351b989bc48825c945360dcc1d7ac279976cd445d9027d03",
"ss58": "5C5FQQSfuxgJc5sHjjAL9RKAzR98qqCV2YN5xAm2wVf1ctGR"
},
"icon": null,
"name": "Kraken Cold"
},
{
"coldkey": {
"hex": "0xfa538a1f58eb874d88632a329bc3e6423be5f7da88c1133e4b4d5ed1f3f1ce05",
"ss58": "5HiveMEoWPmQmBAb8v63bKPcFhgTGCmST1TVZNvPHSTKFLCv"
},
"icon": "taobridge",
"name": "Taobridge"
}
],
"pagination": {
"current_page": 1,
"next_page": null,
"per_page": 50,
"prev_page": null,
"total_items": 10,
"total_pages": 1
}
}Response details
text
{
"coldkey": {
"ss58": "5C5FQQSfuxgJc5sHjjAL9RKAzR98qqCV2YN5xAm2wVf1ctGR",
"hex": "0x006a327fd8209758351b989bc48825c945360dcc1d7ac279976cd445d9027d03"
},
"name": "Kraken Cold",
"icon": null
},Other responses
| Status | Meaning |
|---|---|
400 | Bad request |
404 | Exchanges not found |
500 | Internal server error |
Every request needs an Authorization header holding your API key — see Getting started with the Taostats API.