Documentation Index
Fetch the complete documentation index at: https://docs.finseo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Rate Limits
Rate limits protect the API and ensure fair usage. Limits are applied per API key based on your plan.API access requires a paid plan (Creator or higher). Free accounts cannot create API keys.
Limits by plan
| Plan | Prompts | Requests / Minute | Requests / Day |
|---|---|---|---|
| Creator | 25 | 60 | 5,000 |
| Business | 100 | 120 | 25,000 |
| Agency | Unlimited | 300 | 100,000 |
| Enterprise | 500 | 600 | 200,000 |
Prompt limits
The number of prompts you can track via the API is limited by your plan. The API enforces the same limits as the dashboard. Attempting to add a prompt beyond your limit returns an error:Rate limit headers
Every API response includes rate limit information:| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests per minute for your plan |
X-RateLimit-Remaining | Remaining requests in current window |
X-RateLimit-Reset | Unix timestamp when the window resets |
Exceeding limits
When rate limited, the API returns429 Too Many Requests:
Retry-After header with seconds to wait.
Best practices
- Cache responses when possible — tracking data updates once daily
- Use the export endpoint for bulk data instead of many individual requests
- Implement exponential backoff on
429responses - Use tags to filter data server-side instead of fetching everything