Volume
Get real-time call/put volume snapshot for today.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | US stock symbol, e.g. AAPL.US, TSLA.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"symbol": "AAPL.US",
"call_volume": 284512,
"put_volume": 195830
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | option_volume_rsp |
| 400 | Bad request | None |
Schemas
option_volume_rsp
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | true | Security symbol |
| call_volume | int64 | true | Total call volume for today |
| put_volume | int64 | true | Total put volume for today |