Get Aggregate Lookups
Get Aggregate Lookups
GET https://data.closingbell.co/api/v1/lookups/aggregates
Gets aggregate lookups within a specified time range grouped by unique user_id or group_id.
Query Parameters
Name
Type
Description
api_key
string
Your API key.
from
string
A date formatted as YYYY-MM-DD. Defaults to today.
to
string
A date formatted as YYYY-MM-DD. Defaults to now.
unique_by
string
Group results by user_id or group_id. Defaults to user_id.
{
"success": true,
"code": 200,
"data": [
{
"symbol": "AAPL",
"count": 20
},
...
]
}Last updated
Was this helpful?