Docs / Guide

Error Codes

HTTP Status Codes

Use the status code to decide whether to fix, wait, or retry.

StatusMeaningAction
400Invalid requestCorrect fields or values.
401Authentication failedReplace the key or token.
402Insufficient creditsAdd credits or change plan.
403Account or permission blockedVerify email or required access.
404Resource not foundCheck the path or ID.
422Schema validation failedMatch the documented request schema.
429Concurrency or rate limitHonor Retry-After.
5xxTemporary server failureRetry with backoff.

Error Shape

curl -i "https://api.datablue.dev/v1/auth/me" \
  -H "Authorization: Bearer INVALID_KEY"
Example response
{
  "detail": "Invalid or expired API key"
}