The OnePerfectSlice API enforces concurrency limits on slice runs and has server-side timeouts on long-running queries. Per-request rate limits are not currently enforced but may be introduced in the future.Documentation Index
Fetch the complete documentation index at: https://docs.oneperfectslice.ai/llms.txt
Use this file to discover all available pages before exploring further.
Concurrency limits
Each team can run up to 5 slice runs at the same time. Attempting to start a 6th returns a429 error:
GET /slice-runs?status=running before starting new ones.
Per-request rate limits
The API does not currently enforce per-request rate limits. When they are introduced, this page will be updated with:- Per-token request limits and window duration
- Rate limit headers (
X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset) - Recommended backoff strategies
429 Too Many Requests responses with a retry-after delay.
Timeouts
Some endpoints involve database queries or downstream processing that can time out under load. When this happens, the API returns503 with a specific error code:
| Error code | Endpoint | What happened |
|---|---|---|
PREVIEW_COUNT_TIMEOUT | Preview count | Filter count query took too long |
RUN_LIST_TIMEOUT | List runs | Run history query took too long |
RUN_LOOKUP_TIMEOUT | Get run | Run detail lookup took too long |
EVIDENCE_TIMEOUT | Get evidence | Evidence retrieval took too long |
POST_SEARCH_TIMEOUT | Search posts | Post search took too long |
FILTER_LOOKUP_TIMEOUT | Filter endpoints | Filter lookup took too long |