Skip to main content
POST
/
api
/
coinglass
/
funding-rates
/coinglass/funding-rates
curl --request POST \
  --url https://api.anysite.io/api/coinglass/funding-rates \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300
}
'
[
  {
    "symbol": "<string>",
    "@type": "@coinglass_funding_rate",
    "image": "<string>",
    "usdt_margined_price": 123,
    "usdt_margined_index_price": 123,
    "coin_margined_price": 123,
    "coin_margined_index_price": 123,
    "usdt_margined": [],
    "coin_margined": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Coin ticker symbol

Minimum string length: 1
Example:

"BTC"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

symbol
string
required
@type
string
default:@coinglass_funding_rate
image
string | null
usdt_margined_price
number | null
usdt_margined_index_price
number | null
coin_margined_price
number | null
coin_margined_index_price
number | null
usdt_margined
CoinglassExchangeFundingRate · object[]
coin_margined
CoinglassExchangeFundingRate · object[]