Skip to content

Get Exchanges

GET /api/exchange/v1
NameInTypeRequiredDescription
pagequeryintegerThe page number of the response.
limitqueryintegerThe number of responses. max is 200,

Media: application/json

Schema
{
"type": "object",
"required": [
"pagination",
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"required": [
"coldkey",
"name"
],
"properties": {
"coldkey": {
"type": "object",
"required": [
"ss58",
"hex"
],
"properties": {
"hex": {
"type": "string",
"description": "The hex format of the hot key"
},
"ss58": {
"type": "string",
"description": "The SS58 format of the hot key"
}
}
},
"icon": {
"type": "string",
"nullable": true
},
"name": {
"type": "string"
}
}
}
},
"pagination": {
"type": "object",
"required": [
"current_page",
"per_page",
"total_items",
"total_pages"
],
"properties": {
"current_page": {
"type": "integer",
"format": "int32"
},
"next_page": {
"type": "integer",
"format": "int32",
"nullable": true
},
"per_page": {
"type": "integer",
"format": "int32"
},
"prev_page": {
"type": "integer",
"format": "int32",
"nullable": true
},
"total_items": {
"type": "integer",
"format": "int32"
},
"total_pages": {
"type": "integer",
"format": "int32"
}
}
}
}
}
Examples
{
"Result": {
"value": "{\n \"pagination\": {\n \"current_page\": 1,\n \"per_page\": 50,\n \"total_items\": 10,\n \"total_pages\": 1,\n \"next_page\": null,\n \"prev_page\": null\n },\n \"data\": [\n {\n \"coldkey\": {\n \"ss58\": \"5C5FQQSfuxgJc5sHjjAL9RKAzR98qqCV2YN5xAm2wVf1ctGR\",\n \"hex\": \"0x006a327fd8209758351b989bc48825c945360dcc1d7ac279976cd445d9027d03\"\n },\n \"name\": \"Kraken Cold\",\n \"icon\": null\n },\n {\n \"coldkey\": {\n \"ss58\": \"5HiveMEoWPmQmBAb8v63bKPcFhgTGCmST1TVZNvPHSTKFLCv\",\n \"hex\": \"0xfa538a1f58eb874d88632a329bc3e6423be5f7da88c1133e4b4d5ed1f3f1ce05\"\n },\n \"name\": \"Taobridge\",\n \"icon\": \"taobridge\"\n },\n {\n \"coldkey\": {\n \"ss58\": \"5CNChyk2fnVgVSZDLAVVFb4QBTMGm6WfuQvseBG6hj8xWzKP\",\n \"hex\": \"0x0d584a4cbbfd9a4878d816512894e65918e54fae13df39a6f520fc90caea2fb0\"\n },\n \"name\": \"Gate.io\",\n \"icon\": \"gateio\"\n },\n {\n \"coldkey\": {\n \"ss58\": \"5CVSCaCXDRydd3Mkdbu2tHLNYxmNTSpy9yRixa1TRGvgRFS8\",\n \"hex\": \"0x12dc6df75ad35fb5b75af3aec0c99b3c4267f9463353d6d9c487c01e129aec73\"\n },\n \"name\": \"Crypto.com\",\n \"icon\": null\n },\n {\n \"coldkey\": {\n \"ss58\": \"5E2b2DcMd5W8MBhzTCFt63t2ZEN8RsRgL7oDd7BFYL9aMQux\",\n \"hex\": \"0x56daf75bd0f09c11d798263bc79baeb77c4b4af1dbd372bbe532b1f8702b2a7e\"\n },\n \"name\": \"Kraken Hot\",\n \"icon\": null\n },\n {\n \"coldkey\": {\n \"ss58\": \"5FqBL928choLPmeFz5UVAvonBD5k7K2mZSXVC9RkFzLxoy2s\",\n \"hex\": \"0xa69ffb8d15b780999fc0ae940aabf71073498ab19a1561a4c4b473ebbe8a336a\"\n },\n \"name\": \"MEXC\",\n \"icon\": \"mexc\"\n },\n {\n \"coldkey\": {\n \"ss58\": \"5HbDZ6ULuwZegAMSPaS2kaUfBLMDaht5t48RcDrQATSgGCAR\",\n \"hex\": \"0xf4727f994265ec96f5cfc2222ee6aac87025293a794c9160ef176817e98a676c\"\n },\n \"name\": \"Bitget\",\n \"icon\": \"bitget\"\n },\n {\n \"coldkey\": {\n \"ss58\": \"5GBnPzvPghS8AuCoo6bfnK7JUFHuyUhWSFD4woBNsKnPiEUi\",\n \"hex\": \"0xb656ef6d8fa3ae7a7800906b6ea83a7c1320041290002c3ae7b1e4c68b1e4a67\"\n },\n \"name\": \"Binance\",\n \"icon\": \"binance\"\n },\n {\n \"coldkey\": {\n \"ss58\": \"5EP5gJvve4PauTCHoiTcpVgsFCKNwVitBcrJbVYWbR5ZTwnU\",\n \"hex\": \"0x667c5770cb0a73382ff846140af2f7ba137eaa4ef9fdb653e453d30220218c25\"\n },\n \"name\": \"Bithumb\",\n \"icon\": null\n },\n {\n \"coldkey\": {\n \"ss58\": \"5CrmVKApX6sJybZaL1geHfzvHWeCpbavqrrXgYLCQmhehX2q\",\n \"hex\": \"0x232183ae9d4acbe1b579cd8045c9a27af778a1b61e7e7f7f332f25df2ba4b30a\"\n },\n \"name\": \"Kucoin\",\n \"icon\": \"kucoin\"\n }\n ]\n}"
}
}

Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).

All Taostats API requests require an Authorization header containing your API key. See Getting Started.