Market Details
Get market details returns information about a crypto pair.
Get Market Details
GEThttps://api.adesic.com/v2/cex/{exchange}/{market}
Returns an object with properties about the crypto pair.
Path Parameters
| Name | Type | Description |
|---|---|---|
| exchange* | string | Unique exchange identifier used by Adesic. |
| market* | string | Unique Crypto Pair identifier used by the exchange. |
Query Parameters
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
200: OK Success
success-response.js
{
"exchange":"coinbasepro",
"symbol":"BTC/USD",
"id":"BTC-USD",
"active":true,
"base":"BTC",
"quote":"USD",
"percentage":true,
"taker":0.005,
"maker":0.005,
"type":"spot"
}Copy & Paste Code
cURL
curl-request.sh
curl -H "api-key: API KEY" https://api.adesic.com/v2/cex/coinbasepro/BTC-USDResponse Object
Example URL: https://api.adesic.com/v2/cex/coinbasepro/BTC-USD
response.json
{
"exchange":"coinbasepro",
"symbol":"BTC/USD",
"id":"BTC-USD",
"active":true,
"base":"BTC",
"quote":"USD",
"percentage":true,
"taker":0.005,
"maker":0.005,
"type":"spot"
}Response Attributes
| Attribute Name | Data Type | Description |
|---|---|---|
| exchange | string | Unique identifier used by Adesic for the exchange. |
| symbol | string | The symbol of the market. |
| id | string | Unique identifier used by Adesic for the market. |
| active | boolean | Whether the market is active on the exchange. |
| base | string | The base of the market. eg: The quantity that is bought. |
| quote | string | The quote of the market. eg: The currency being compared. |
| percentage | boolean | Whether the taker and maker fee rate is a multiplier or a fixed flat amount. |
| taker | float | Taker fee rate, 0.002 = 0.2%. |
| maker | float | Maker fee rate, 0.0016 = 0.16%. |
| type | string | Exchange type that the market is listed on. |