Skip to main content
GET
/
v1
/
options
/
kline
Get Options K-line (OHLCV) data
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/options/kline \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "options_ticker": "<string>",
      "price_close": 123,
      "price_high": 123,
      "price_low": 123,
      "price_open": 123,
      "time_close": 123,
      "time_open": 123,
      "trades_count": 123,
      "underlying_symbol": "<string>",
      "volume_traded": 123,
      "vwap": 123
    }
  ],
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

symbol
string
required

Underlying symbol (e.g. SPY, AAPL)

options_ticker
string
required

OCC-format options ticker (e.g. O:SPY260620C00570000)

interval
enum<string>
required

Interval

Available options:
1min,
2min,
3min,
5min,
10min,
15min,
30min,
45min,
1h,
2h,
4h,
1d,
1w,
1m
start_time
integer
required

Start time (Unix seconds)

end_time
integer
required

End time (Unix seconds)

limit
integer

Limit (default 500, max 10000)

Response

Options kline data

data
object[]
error
object
pagination
any
request_id
string
success
boolean