Skip to main content
GET
/
vq
/
options
/
{symbol}
/
chain
Get options chain
curl --request GET \
  --url https://api.vectrade.io/v1/vq/options/{symbol}/chain \
  --header 'X-API-Key: <api-key>'
{
  "symbol": "<string>",
  "expirations": [
    "2023-12-25"
  ],
  "chain": [
    {
      "contractSymbol": "<string>",
      "strike": 123,
      "expiration": "2023-12-25",
      "bid": 123,
      "ask": 123,
      "lastPrice": 123,
      "volume": 123,
      "openInterest": 123,
      "impliedVolatility": 123,
      "delta": 123,
      "gamma": 123,
      "theta": 123
    }
  ]
}

Authorizations

X-API-Key
string
header
required

VecTrade API key (e.g., vq_live_...)

Path Parameters

symbol
string
required

Query Parameters

expiration
string<date>

Filter by expiration date

type
enum<string>
Available options:
call,
put

Response

Options chain data

symbol
string
expirations
string<date>[]
chain
object[]