Each plan has a daily request limit. Limits reset at 00:00 UTC.Documentation Index
Fetch the complete documentation index at: https://docs.polydata.live/llms.txt
Use this file to discover all available pages before exploring further.
| Plan | Daily limit |
|---|---|
| Free | 100 |
| Daily | 1,000 |
| Monthly | 50,000 |
| Unlimited | 500,000 |
Checking your usage
When you exceed the limit
You’ll get a429 Too Many Requests:
Best practices
Use bulk endpoints
Instead of querying individual ticks one by one, use:/v1/tickswith a wide time range — single request returns up to 100,000 ticks/v1/ticks/export— streaming download of any size
Cache responses locally
Historical data doesn’t change. Cache responses in your application (e.g., Redis, SQLite, or just a JSON file).Use OHLCV instead of raw ticks for charting
If you only need price candles, query/v1/ohlcv directly instead of computing them from ticks. Pre-aggregated, lower bandwidth.