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

200
application/json

Top volume options for stocks retrieved successfully

The response is of type object[].