Skip to main content
GET
/
v1
/
options
/
{symbol}
/
contracts
/
{date}
Get Options Contract Symbols
curl --request GET \
  --url https://api.aries.com/v1/options/{symbol}/contracts/{date} \
  --header 'Authorization: Bearer <token>'
{
  "contracts": [
    {
      "ticker": "O:AAPL250117C00150000",
      "strike": 150,
      "type": "call"
    },
    {
      "ticker": "O:AAPL250117P00150000",
      "strike": 150,
      "type": "put"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

symbol
string
required

The underlying stock symbol (e.g., AAPL, TSLA, SPY)

date
string<date>
required

The expiration date in YYYY-MM-DD format

Response

200 - application/json

Successful response

contracts
object[]