Skip to main content
GET
/
v1
/
perps
/
contracts
Get Contracts
curl --request GET \
  --url https://api.ondoperps.xyz/v1/perps/contracts \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": [
    {
      "market": "AAPL-USD.P",
      "productType": "perpetual",
      "contractType": "linear",
      "baseCurrency": "AAPL",
      "quoteCurrency": "USDC",
      "disabled": false,
      "lastPrice": "227.50",
      "baseVolume": "12500.00",
      "quoteVolume": "2843750.00",
      "usdVolume": "2843750.00",
      "bid": "227.40",
      "ask": "227.60",
      "high": "230.00",
      "low": "225.00",
      "openInterest": "2394.23",
      "openInterestUsd": "544683.50",
      "indexPrice": "227.55",
      "indexCurrency": "USD",
      "fundingRate": "0.0000125",
      "nextFundingRate": "0.0000130",
      "nextFundingRateTimestamp": "2025-03-05T16:00:00Z",
      "makerFee": "0.0002",
      "takerFee": "0.0005",
      "priceChangePercent": "1.12"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

sparkline
boolean

If true, include sparkline price data in the response

Example:

false

Response

List of perpetual futures contracts

success
boolean
required

Whether the request was successful

Example:

true

error
string

Error message, present only on failure

Example:

""

error_code
string

Semantic error code. See each endpoint's error responses for the specific codes it can return.

deprecated
string

Deprecation notice, if applicable

Example:

""

result
object[]