Skip to main content
GET
/
v1
/
options
/
chain
Get Option Chain
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/options/chain \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "cursor": "<string>",
      "results": [
        {
          "break_even_price": 123,
          "daily_data": {
            "change": 123,
            "change_percent": 123,
            "close": 123,
            "high": 123,
            "last_updated": 123,
            "low": 123,
            "open": 123,
            "previous_close": 123
          },
          "details": {
            "contract_type": "<string>",
            "exercise_style": "<string>",
            "expiration_date": "<string>",
            "shares_per_contract": 123,
            "strike_price": 123,
            "symbol": "<string>"
          },
          "fmv": 123,
          "greeks": {
            "delta": 123,
            "gamma": 123,
            "theta": 123,
            "vega": 123
          },
          "implied_volatility": 123,
          "open_interest": 123,
          "underlying_asset": {
            "change_to_break_even": 123,
            "last_updated": 123,
            "price": 123,
            "symbol": "<string>",
            "timeframe": "<string>"
          }
        }
      ]
    }
  ],
  "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

Stock ticker symbol (uppercase)

option_ticker
string

Option ticker symbol (uppercase)

start_expiration_date
integer<int64>

Start expiration date (Unix timestamp in seconds)

end_expiration_date
integer<int64>

End expiration date (Unix timestamp in seconds)

contract_type
enum<string>

Contract type filter

Available options:
put,
call
min_strike_price
number<float64>

Minimum strike price

max_strike_price
number<float64>

Maximum strike price

cursor
string

Pagination cursor

limit
integer<int64>
required

Maximum number of results (1-1000)

Response

Successfully retrieved option chain

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