Skip to main content
POST
/
api
/
coinmarketcap
/
exchanges
/coinmarketcap/exchanges
curl --request POST \
  --url https://api.anysite.io/api/coinmarketcap/exchanges \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "slug": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "@coinmarketcap_exchange",
    "alias": "<string>",
    "description": "<string>",
    "image": "<string>",
    "status": "<string>",
    "date_launched": "<string>",
    "maker_fee": 123,
    "taker_fee": 123,
    "spot_volume_usd": 123,
    "perpetual_volume_usd": 123,
    "futures_volume_usd": 123,
    "derivatives_open_interest_usd": 123,
    "net_worth_usd": 123,
    "fiats": [],
    "countries": [],
    "urls": {
      "@type": "@coinmarketcap_exchange_urls",
      "website": [],
      "blog": [],
      "fee": [],
      "twitter": [],
      "chat": []
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
slug
string
required

Exchange slug (e.g. 'binance')

Minimum string length: 1
Example:

"binance"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:@coinmarketcap_exchange
alias
string | null
description
string | null
image
string | null
status
string | null
date_launched
string | null
maker_fee
number | null
taker_fee
number | null
spot_volume_usd
number | null
perpetual_volume_usd
number | null
futures_volume_usd
number | null
derivatives_open_interest_usd
number | null
net_worth_usd
number | null
fiats
string[]
countries
string[]
urls
CoinmarketcapExchangeUrls · object