Funding Rate

Query perp products 24hr funding rate.

Rate limits

  • 1200 requests/min or 200 requests/10secs per IP address. (weight = 2)

See more details in API Rate limits

Single Product

Request

Query perp product 24hr funding rate.

POST [ARCHIVE_ENDPOINT]

Body

{
  "funding_rate": {
    "product_id": 4
  }
}

Request Parameters

ParameterTypeRequiredDescription

product_id

number

Yes

Id of perp product to fetch funding rate for.

Response

{
  "product_id": 4,
  "funding_rate_x18": "2447900598160952",
  "update_time": "1680116326"
}

Multiple Products

Request

POST [ARCHIVE_ENDPOINT]

Body

{
  "funding_rates": {
    "product_ids": [2, 4]
  }
}

Request Parameters

ParameterTypeRequiredDescription

product_ids

number[]

Yes

Ids of perp products to fetch funding rate for.

Response

Note: the response is a map of product_id -> funding_rate for each requested product.

{
  "2": {
    "product_id": 2,
    "funding_rate_x18": "-697407056090986",
    "update_time": "1692825387"
  },
  "4": {
    "product_id": 4,
    "funding_rate_x18": "-484622975414981",
    "update_time": "1692825387"
  }
}

Response Fields

Field nameDescription

product_id

Id of the perp product this funding rate corresponds to.

funding_rate_x18

Latest funding rate for the specified product, multiplied by 10^18

update_time

Epoch time in seconds this funding rate was last updated at

Last updated