Skip to main content
GET
/
v1
/
fundingRates
curl
curl "https://api.testnet.arcus.xyz/v1/fundingRates?market=BTC-USD&limit=100"
{
  "fundingRates": [
    {
      "marketId": 32767,
      "marketDisplayName": "<string>",
      "fundingRate": "<string>",
      "time": 123
    }
  ]
}

Query Parameters

market
string
required

Market name (case-insensitive, e.g. BTC-USD) or numeric marketId.

Example:

"BTC-USD"

from
integer<int64>

Start timestamp filter (epoch ms, inclusive).

Required range: x >= 0
to
integer<int64>

End timestamp filter (epoch ms, inclusive).

Required range: x >= 0
limit
integer
default:1000

Maximum number of entries to return. Default and maximum are both 1000; requests above the maximum are silently clamped.

Required range: 1 <= x <= 1000

Response

Historical funding rates.

fundingRates
object[]
required