Skip to main content
GET
/
gateway
/
v1
/
market
/
options
Options Market Data
curl --request GET \
  --url https://api.ask.surf/gateway/v1/market/options
{
  "data": [
    {
      "exchange": "<string>",
      "open_interest": 123,
      "symbol": "<string>",
      "updated_at": 123,
      "volume_24h": 123,
      "max_pain_price": 123,
      "put_call_ratio": 123
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123
  },
  "$schema": "<string>"
}

Query Parameters

symbol
enum<string>
required

Token symbol. Can be BTC, ETH, SOL, XRP, BNB, DOGE, ADA, or AVAX.

Available options:
BTC,
ETH,
SOL,
XRP,
BNB,
DOGE,
ADA,
AVAX
Example:

"BTC"

sort_by
enum<string>
default:volume_24h

Field to sort results by

Available options:
open_interest,
volume_24h
Example:

"volume_24h"

order
enum<string>
default:desc

Sort order

Available options:
asc,
desc
Example:

"desc"

Response

OK

data
object[] | null
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/SimpleListResponseMarketOptionsItem.json"