Skip to main content
POST
/
api
/
coinglass
/
exchanges
/coinglass/exchanges
curl --request POST \
  --url https://api.anysite.io/api/coinglass/exchanges \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '{
  "timeout": 300
}'
[
  {
    "name": "<string>",
    "@type": "@coinglass_derivative_exchange",
    "image": "<string>",
    "rating": "<string>",
    "open_interest": 123,
    "open_interest_change_percentage_24h": 123,
    "volume_usd_24h": 123,
    "volume_change_percentage_24h": 123,
    "pair_count": 123,
    "max_leverage": 123,
    "maker_fee": 123,
    "taker_fee": 123,
    "has_app": false,
    "us_allowed": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:@coinglass_derivative_exchange
image
string | null
rating
string | null
open_interest
number | null
open_interest_change_percentage_24h
number | null
volume_usd_24h
number | null
volume_change_percentage_24h
number | null
pair_count
integer | null
max_leverage
integer | null
maker_fee
number | null
taker_fee
number | null
has_app
boolean
default:false
us_allowed
boolean
default:false