Documentation Index
Fetch the complete documentation index at: https://docs.simplehost.dev/llms.txt
Use this file to discover all available pages before exploring further.
Rate Limit Headers
Every API response includes rate limit information:| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed per hour |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the window resets |
Limits by Plan
| Plan | Requests per Hour |
|---|---|
| Anonymous (no API key) | 5 per IP address |
| Free | 60 |
| Hobby ($5/mo) | 200 |
When You Hit the Limit
You’ll receive a429 response:
X-RateLimit-Reset header for when you can retry.
Exempt Endpoints
File upload endpoints (PUT /api/v1/_upload/*) are not rate limited. They are already gated by upload tokens and expiry timestamps.
Tips
- Batch your operations where possible
- Use hash deduplication to reduce the number of API calls when updating sites
- The publish script handles everything in a single create → upload → finalize flow