fundingHistory

Get the funding history for a coin

Get the funding history for a coin.

Data available from 28-07-2025

POST Request

Field
Type
Description

type

string

Must be "fundingHistory"

coin

string

i.e. "BTC", "ETH"

startTime

int

Start time in ms (inclusive)

endTime

int

End time in ms (optional)

limit

int

Max results to return, default and max 500 (optional)

curl -X POST https://api.hydromancer.xyz/info \
  -H "Authorization: Bearer $HYDROMANCER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "fundingHistory",
    "coin": "BTC",
    "startTime": 0
  }'

Response Fields

Field
Type
Description

coin

string

Asset symbol

fundingRate

string

Funding rate for the period

time

int

Timestamp (ms)

Response

Last updated