Skip to Content

Option Volume Daily

Get historical daily call/put volume and open interest data for a US stock's options.

CLI
longbridge option volume daily AAPL.US
longbridge option volume daily TSLA.US --count 60

Parameters

SDK method parameters.

NameTypeRequiredDescription
symbolstringYESUS stock symbol, e.g. AAPL.US, TSLA.US
countintegerNONumber of trading days to return (default: 20)

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "symbol": "AAPL.US",
    "list": [
      {
        "date": "2026-05-07",
        "call_volume": 284512,
        "put_volume": 195830,
        "call_open_interest": 1824500,
        "put_open_interest": 1532100,
        "pc_vol": "0.6886",
        "pc_oi": "0.8398"
      }
    ]
  }
}

Response Status

StatusDescriptionSchema
200Successoption_volume_daily_rsp
400Bad requestNone

Schemas

option_volume_daily_rsp

NameTypeRequiredDescription
symbolstringtrueSecurity symbol
listobject[]trueDaily volume records
∟ datestringtrueDate in YYYY-MM-DD format
∟ call_volumeint64trueCall volume on that day
∟ put_volumeint64truePut volume on that day
∟ call_open_interestint64trueCall open interest
∟ put_open_interestint64truePut open interest
∟ pc_volstringtruePut/call volume ratio
∟ pc_oistringtruePut/call open interest ratio