Interface RestRequestGetFundingRates

Get Funding Rates

interface RestRequestGetFundingRates {
    market: string;
    start?: number;
    end?: number;
    limit?: number;
}

Hierarchy (view full)

Properties

market: string

Base-quote pair e.g. 'ETH-USD'

start?: number

If provided, indicates the earliest (oldest) timestamp of an object to include in the response.

  • This value is inclusive, meaning objects with timestamps that exactly match start are included in the response.
  • start MUST be earlier than end if provided.
end?: number

If provided, indicates the latest (newest) timestamp of an object to include the response.

  • This value is inclusive, meaning objects with timestamps that exactly match end are included in the response.
  • end MUST be a later timestamp than start.
limit?: number

Maximum number to return of the requested type.