Errors and Rate Limits

Common Fetch Hive API error responses, status codes, and workflow concurrency behavior

Fetch Hive returns JSON errors for invalid or failed public API requests. Most endpoints use a simple error shape.

Error response format

{
  "error": "Invalid access."
}

Some endpoints return a more specific message based on the resource or validation failure.

Common status codes

401 Unauthorized

Fetch Hive returns 401 when the Authorization header is missing, invalid, or uses a revoked API key.

Example:

{
  "error": "Invalid access."
}

404 Not Found

Fetch Hive returns 404 when the resource does not exist for your account.

Example workflow run response:

Example request lookup response:

422 Unprocessable Entity

Fetch Hive returns 422 when the request is authenticated but invalid for that endpoint.

Examples:

Rate limits and concurrency

Workflow concurrency depends on your plan.

Plan
Concurrency cap

Lite

1

Starter

3

Pro

5

Entreprise

Custom

If you exceed your concurrency cap, Fetch Hive returns 429 Too Many Requests.

Example:

If you see this response on a workflow request, retry later or switch to async invocation so Fetch Hive can queue the run.

Last updated