Skip to main content
POST
/
api
/
coingecko
/
exchanges
/coingecko/exchanges
curl --request POST \
  --url https://api.anysite.io/api/coingecko/exchanges \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@coingecko_exchange",
    "year_established": 123,
    "country": "<string>",
    "description": "<string>",
    "url": "<string>",
    "image": "<string>",
    "has_trading_incentive": true,
    "is_centralized": true,
    "trust_score": 123,
    "trust_score_rank": 123,
    "trade_volume_24h_btc": 123,
    "coin_count": 123,
    "pair_count": 123,
    "facebook_url": "<string>",
    "twitter_url": "<string>",
    "telegram_url": "<string>",
    "reddit_url": "<string>",
    "other_url_1": "<string>",
    "other_url_2": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
id
string
required

Exchange id as used by CoinGecko (not the display name)

Minimum string length: 1
Examples:

"binance"

"gdax"

"kraken"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@coingecko_exchange
year_established
integer | null
country
string | null
description
string | null
url
string | null
image
string | null
has_trading_incentive
boolean | null
is_centralized
boolean | null
trust_score
integer | null
trust_score_rank
integer | null
trade_volume_24h_btc
number | null
coin_count
integer | null
pair_count
integer | null
facebook_url
string | null
twitter_url
string | null
telegram_url
string | null
reddit_url
string | null
other_url_1
string | null
other_url_2
string | null