Skip to main content

Documentation Index

Fetch the complete documentation index at: https://www.latitude.sh/docs/llms.txt

Use this file to discover all available pages before exploring further.

The API enforces rate limits per API key.

Current limits

Request typeLimit
Read (GET requests)60 requests per minute
Write (POST, PUT, PATCH, DELETE requests)20 requests per minute

Rate limit responses

When you exceed the rate limit, the API returns a 429 Too Many Requests response:
{
  "errors": [{
    "code": "RATE_LIMIT_EXCEEDED",
    "title": "Rate Limit Exceeded",
    "status": "429",
    "detail": "Too many requests. Please slow down and retry.",
    "meta": { "retry_after": 60 }
  }]
}
The meta.retry_after field indicates how many seconds to wait before retrying your request.