Skip to main content
GET
/
v1
/
options
/
stocks
/
top-volume
Get Top Volume Options for Stocks
curl --request GET \
  --url https://api.tradearies.dev/v1/options/stocks/top-volume \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <api-key>'
[
  {
    "symbol": "<string>",
    "type": "<string>",
    "sicCode": "<string>",
    "isETF": true,
    "sector": "<string>",
    "logoUrl": "<string>",
    "change": 123,
    "changePercent": 123,
    "lastPrice": 123,
    "previousClose": 123,
    "timestamp": 123,
    "volume": 123,
    "description": "<string>",
    "tag": "<string>"
  }
]

Authorizations

X-API-Key
string
header
required
Authorization
string
header
required

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

Query Parameters

size
integer
default:10

Number of results to return

Required range: 1 <= x <= 99

Response

Top volume options for stocks retrieved successfully

symbol
string
required

The trading symbol

type
string
required

The symbol type

change
number
required

Price change from previous close

changePercent
number
required

Percentage change from previous close

lastPrice
number
required

Most recent trading price

previousClose
number
required

Previous closing price

timestamp
number
required

Timestamp of the last update

volume
number
required

Trading volume

sicCode
string

Standard Industrial Classification code

isETF
boolean

Whether the symbol is an ETF

sector
string

The sector of the asset

logoUrl
string

URL to the company logo

description
string

Company or security description

tag
string

Category tag for the symbol

I