Skip to main content

Errors

Truee errors are JSON responses with a stable shape.

{
"success": false,
"error": "Missing or invalid API key",
"code": "UNAUTHORIZED",
"timestamp": "2026-05-25T12:00:00.000Z"
}

Common errors

StatusCodeMeaning
400VALIDATION_ERRORRequest body or query parameters are invalid.
401UNAUTHORIZEDMissing, invalid, expired, or disabled API key.
403FORBIDDENThe API key is valid but not allowed for this action.
404NOT_FOUNDThe requested business or resource does not exist.
429RATE_LIMITEDThe account has reached a request or query quota.
500INTERNAL_ERRORUnexpected server failure. Retry with backoff.

Retry guidance

Retry 429 and 500 responses with exponential backoff. Do not retry validation or authentication failures until the request is corrected.