Skip to main content
GET
/
v1
/
options
/
trades
Get Options Trades
curl --request GET \
  --url https://api.aries.com/v1/options/trades \
  --header 'Authorization: Bearer <token>'
{
  "nextUrl": "http://localhost:8087/v1/options/trades?next=YXA9MTAwMCZhcz1vcHRpb25zLXRyYWRlcyZsaW1pdD0xMDAwJm9yZGVyPWRlc2Mmc29ydD10aW1lc3RhbXAmdGltZXN0YW1wLmx0ZT0yMDIzLTAxLTExVDE2JTNBMDMlM0E0My4zOTRa&ticker=O%3AAAPL230120C00150000",
  "requestId": "dbfa60aa037390553e639aae76021193",
  "results": [
    {
      "conditions": [
        232
      ],
      "exchange": 308,
      "participantTimestamp": 1674248368870000000,
      "price": 0.01,
      "sipTimestamp": 1674248368870000000,
      "size": 2
    },
    {
      "conditions": [
        209
      ],
      "exchange": 301,
      "participantTimestamp": 1673453023394000000,
      "price": 0.04,
      "sipTimestamp": 1673453023394000000,
      "size": 11
    }
  ],
  "status": "OK"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

ticker
string
required

Options ticker symbol

Example:

"O:AAPL230120C00150000"

timestamp
string

Query by timestamp (YYYY-MM-DD or nanoseconds)

Example:

"2024-01-15"

timestampFrom
string

From this timestamp (inclusive)

Example:

"2024-01-01"

timestampAfter
string

After this timestamp (exclusive)

Example:

"2024-01-01"

timestampTo
string

To this timestamp (inclusive)

Example:

"2024-01-31"

timestampBefore
string

Before this timestamp (exclusive)

Example:

"2024-01-31"

order
enum<string>

Sort order

Available options:
asc,
desc
Example:

"asc"

limit
integer

Maximum number of results

Required range: 1 <= x <= 50000
Example:

1000

sort
string

Sort field

Example:

"timestamp"

next
string

Pagination cursor

Response

200 - application/json

Successful response

nextUrl
string

URL for next page of results

requestId
string

Unique request ID

results
object[]

Array of options trade objects

status
string

Status of the response