Exchange Data
Get exchange data returns information about a crypto exchange.
Get Exchange Data
GEThttps://api.adesic.com/v2/cex/{exchange}
Returns an object with properties about the exchange.
Path Parameters
| Name | Type | Description |
|---|---|---|
| exchange* | string | Unique exchange identifier used by Adesic. |
Query Parameters
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
200: OK Success
response.json
{
"name": "Coinbase Pro",
"id": "coinbasepro",
"countries": [
"US"
],
"hasTrades": true,
"hasAggregates": true,
"aggregateTimeframes": {
"1m": 60,
"5m": 300,
"15m": 900,
"1h": 3600,
"6h": 21600,
"1d": 86400
},
"url": "https://pro.coinbase.com/",
"fees": [
"https://docs.pro.coinbase.com/#fees",
"https://support.pro.coinbase.com/customer/en/portal/articles/2945310-fees"
],
"docs": "https://docs.pro.coinbase.com",
"logo": "https://user-images.githubusercontent.com/1294454/41764625-63b7ffde-760a-11e8-996d-a6328fa9347a.jpg"
}Copy & Paste Code
cURL
cURL
curl -H "api-key: API KEY" https://api.adesic.com/v2/cex/coinbaseproResponse Object
Example URL: https://api.adesic.com/v2/cex/coinbasepro
response.json
{
"name": "Coinbase Pro",
"id": "coinbasepro",
"countries": [
"US"
],
"hasTrades": true,
"hasAggregates": true,
"aggregateTimeframes": {
"1m": 60,
"5m": 300,
"15m": 900,
"1h": 3600,
"6h": 21600,
"1d": 86400
},
"url": "https://pro.coinbase.com/",
"fees": [
"https://docs.pro.coinbase.com/#fees",
"https://support.pro.coinbase.com/customer/en/portal/articles/2945310-fees"
],
"docs": "https://docs.pro.coinbase.com",
"logo": "https://user-images.githubusercontent.com/1294454/41764625-63b7ffde-760a-11e8-996d-a6328fa9347a.jpg"
}Response Attributes
| Attribute Name | Data Type | Description |
|---|---|---|
| name | string | The official name of the exchange. |
| id | string | Unique identifier used by Adesic for the exchange. |
| countries | object | The countries abbreviations the exchange is located in. |
| hasTrades | boolean | Can query market trades. |
| hasAggregates | boolean | Can query market candle aggregates. (1m, 5m, 15m, 1h, 6h, 1d) |
| aggregateTimeframes | object | Timeframes supported for market candle aggregates. (Spot, Derivatives, Dex) |
| url | string | Exchange’s official website URL. |
| fees | object || string | The URL for Exchange Fee Structure. |
| docs | string | The URL for the Exchange Documentation. |
| logo | string | The URL to the Exchange Logos. |