Skip to main content
POST
/
api
/
coinglass
/
etf
/
flows
/coinglass/etf/flows
curl --request POST \
  --url https://api.anysite.io/api/coinglass/etf/flows \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "timeout": 300,
  "asset": "btc"
}
'
[
  {
    "date": 123,
    "@type": "@coinglass_etf_flow",
    "change": 123,
    "change_usd": 123,
    "issuers": []
  }
]

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
asset
enum<string>
default:btc

Spot ETF underlying asset

Available options:
btc,
eth,
sol,
xrp,
hk,
hype

Response

Successful Response

date
integer
required
@type
string
default:@coinglass_etf_flow
change
number | null
change_usd
number | null
issuers
CoinglassEtfIssuerFlow · object[]