latestOpenAPI 3.1.02026-08-1051108155.9 KB

6e6f8dad92bf

Funding

Returns a list funding rates for a product over a time period

get/v1/funding

Query parameters

order'asc' | 'desc'

Direction to paginate through objects

limitinteger

Limit the number of objects to return

cursorstring

Pointer to the current object in pagination dataset

productIdstring uuid required

Id representing the registered product

range'DAY' | 'WEEK' | 'MONTH' required
Example:DAY

The range of time of funding rates to retrieve

orderBy'createdAt'
Example:createdAt

Order by field

Response

hasNextboolean required

Whether there are more objects to paginate through

nextCursorstring

Pointer to the next page in pagination dataset

Example response

{
  "data": [
    {
      "createdAt": 1712019600000,
      "fundingRate1h": "0.013876480"
    }
  ],
  "hasNext": true
}