Authentication#
We use a private key in order to authenticate. To create a private key, follow these steps:💡 Make sure to save this key as it will never be displayed again.
3. Autenticate your requestsTo authenticate your requests add the private key as a Bearer
tokenAuthorization: Bearer pk_C4nvSTABZr3L6roCsJYq2puqFPB25rdR_744daa39b51e45d79d157f1d3af4c630
Pages start at 0 so if you want to query the first results, make sure to set page: 0
Pages can be at most 100 in sizeRate Limiting#
Each user has a limit of 15 requests per minute. If you go above the threshold you will recieve a 429 - Too Many Requests response
:{
"statusCode": "TOO_MANY_REQUESTS",
"error": "Too many requests: wait at least 21 seconds",
"code": "request.TooManyRequests",
"datetime": 1714976844836
}
Every request returns a X-Rate-Limit-Remaining
header which lets you know how many tokens you have left.X-Rate-Limit-Remaining: 13
Date Range Queries#
For reliable performance, when querying any endpoints with startTimestamp
and endTimestamp
, they must be at most 48 hours apart.Modified at 2025-02-01 01:33:00