Exchanges
Get exchanges endpoint returns all crypto exchanges Abyiss supports.
Get Exchanges
GEThttps://api.adesic.com/v2/cex/exchanges
Returns an array of all supported exchanges in the form of market objects.
Query Parameters
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
200: OK Success
response.json
[
{
"name":"Binance",
"id":"binance"
},
{
"name":"Binance US",
"id":"binanceus"
},
{
"name":"Coinbase Pro",
"id":"coinbasepro"
},
{
"name":"BitBay",
"id":"bitbay"
}
]Copy & Paste Code
cURL
cURL
curl -H "api-key: API KEY" https://api.adesic.com/v2/cex/exchangesResponse Object
Example URL: https://api.adesic.com/v2/cex/exchanges
response.json
[
{
"name":"Binance",
"id":"binance"
},
{
"name":"Coinbase Pro",
"id":"coinbasepro"
}
]Response Attributes
| Attribute Name | Data Type | Description |
|---|---|---|
| name | string | The official name of the exchange. |
| id | string | Unique exchange identifier used by Adesic. |