Skip to main content
POST
/
api
/
coingecko
/
exchanges
/
search
/coingecko/exchanges/search
curl --request POST \
  --url https://api.anysite.io/api/coingecko/exchanges/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@coingecko_exchange_list_item",
    "year_established": 123,
    "country": "<string>",
    "description": "<string>",
    "url": "<string>",
    "image": "<string>",
    "trust_score": 123,
    "trust_score_rank": 123,
    "trade_volume_24h_btc": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of exchanges to return

Required range: x >= 1
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_list_item
year_established
integer | null
country
string | null
description
string | null
url
string | null
image
string | null
trust_score
integer | null
trust_score_rank
integer | null
trade_volume_24h_btc
number | null