Error Handling
Every failure is a JSON envelope with a stable code, a more specific reason, and a request_id. Branch on code and reason; never on message, whose wording may change. This page is generated from the API's OpenAPI specification and its reason registry.
The envelope
Every non-2xx response has this shape, and success is always false.
{ "success": false, "error": { "code": "FORBIDDEN", "reason": "PLAN_REQUIRED", "message": "This endpoint requires 'studio' tier or above. Your tier: 'builder'", "details": { "requiredTier": "studio", "currentTier": "builder" } }}codeMachine-readable error code, e.g.
NOT_FOUND,RATE_LIMITED,SUBSCRIPTION_REQUIRED. Branch on this, never onmessage.reasonWhich situation, within
code. Stable and machine-readable: branch on this, never onmessage. Each error response lists the reasons it can carry, and the error reference says what to do about each.messageHuman-readable account of what went wrong. The wording may change; treat it as text for a log or a person, not as a value to match on.
detailsStructured context for the reason: the invalid fields for
INVALID_PARAMETER,requiredTierforPLAN_REQUIRED.request_idQuote this to support: it finds the request in our logs.
Status codes
The HTTP statuses an error can carry, the situations each one covers, and how many endpoints declare it.
| Status | Description | Reasons | Endpoints |
|---|---|---|---|
| 400 | Validation error | 132 | |
| 401 | Missing or invalid API key | 118 | |
| 403 | The credential is valid and the caller is not permitted. Three causes, none of which reissuing a key changes: the plan is below the endpoint's tier, the account is suspended, or the key is not attached to the thing being acted on, meaning a user account for /v1/me or a shop for /v1/vendor. Distinct from 401, which means the credential is missing, malformed or expired and a new one can work. | 118 | |
| 404 | Resource not found | 60 | |
| 413 | The request body is larger than this endpoint accepts, which is 1 MB for a JSON body. Refused from Content-Length before the body is read, so nothing was stored and the request can be split and resent. error.maxBytes carries the limit. | 8 | |
| 429 | Rate limit exceeded | 133 | |
| 500 | Internal server error | 133 |
Error codes
code is the family and never changes. When a request fails without a more specific situation, the reason is the family's default, listed here.
| Code | Status | Default reason |
|---|---|---|
| 400 | INVALID_REQUEST | |
| 401 | AUTH_REQUIRED | |
| 403 | ACTION_NOT_ALLOWED | |
| 403 | PAGINATION_DEPTH_EXCEEDED | |
| 403 | PLAN_REQUIRED | |
| 404 | RESOURCE_NOT_FOUND | |
| 409 | CONFLICT | |
| 413 | PAYLOAD_TOO_LARGE | |
| 429 | DAILY_CAP_EXCEEDED | |
| 429 | MCP_DAILY_CAP_EXCEEDED | |
| 429 | RATE_LIMITED | |
| 429 | REPORT_RATE_LIMITED | |
| 429 | RATE_LIMITED | |
| 500 | INTERNAL_ERROR | |
| 503 | DEPENDENCY_UNAVAILABLE |
All 39 reasons
Every reason the API can send, by status: what happened, and what to do next. A reason is part of the published contract. New ones are added; none are renamed.
A path, query or body field failed validation.
detailsnames each field and what was wrong with it.What to doCorrect the named fields and send the request again.
The request body is not valid JSON.
What to doSend a JSON body with
Content-Type: application/json.The request is well-formed but asks for something the endpoint refuses; the message says what.
What to doChange the request as the message describes.
This endpoint needs a credential and none was sent.
What to doSend an API key in
X-API-Key, or sign in.No API key was sent.
What to doSend your key in the
X-API-Keyheader.The API key is not one we issued, or it has been deleted.
What to doCheck the key for a typo, or create a new one in your account.
The key was switched off by the account that owns it.
What to doRe-enable it in your account, or use another key.
The key has passed its expiry date.
What to doCreate a new key in your account.
This endpoint needs a signed-in session.
What to doSign in, then retry.
The session is no longer valid.
What to doSign in again.
The credential verified, but the account behind it no longer exists.
What to doSign in again, or contact support.
The one-time access link has expired or was already used.
What to doRequest a new link.
A proxy or marketplace credential was presented and does not verify.
What to doThrough a marketplace such as RapidAPI, contact the API provider: the proxy is misconfigured.
The credential is valid and its plan is below what this endpoint needs.
details.requiredTiernames the plan.What to doUpgrade the plan. A new key on the same plan will get the same answer.
The account behind this credential has been suspended.
What to doContact support. Rotating the key will not help.
The key is valid but no user account owns it, so account endpoints (
/v1/me) have nothing to act on.What to doUse a key created from your account.
The key is valid but no shop names it, so seller endpoints (
/v1/vendor) have no shop to act for.What to doName the key in Profile > Seller on the shop it should act for, then check
GET /v1/vendor/shops.The shop exists and has not been approved yet.
What to doWait for approval. Nothing needs to be sent again.
The resource exists and belongs to another account or shop.
What to doUse an id your account owns.
The download belongs to a product this account has not bought.
What to doBuy the product, then retry.
The plan's allowance for this kind of item is used up.
What to doRemove one, or upgrade for a larger allowance.
The plan does not page this deep into a list.
What to doNarrow the list with filters, or upgrade for deeper paging.
Staff-only endpoint.
What to doSign in with a staff account.
This is an impersonation session, which may look but never change anything.
What to doMake the change from your own account.
A browser request carried a GunSpec origin without the signature our own apps send.
What to doCall the API with an API key.
This client, user agent or address is blocked.
What to doContact support if you think this is a mistake.
The action is not permitted on this resource; the message says why.
What to doDo not retry unchanged.
The path is right and no record has that id.
What to doCheck the id. The list and search endpoints return valid ones.
No endpoint answers this method and path.
What to doCheck the path and method against the API reference.
The request conflicts with existing data, such as a slug already in use.
What to doChange the conflicting value and retry.
The request body is larger than this endpoint accepts.
maxBytescarries the limit.What to doSplit the request into smaller ones.
Too many requests this minute for the plan.
What to doWait for
Retry-Afterseconds, then retry.The plan's daily request allowance is used up. It resets at midnight UTC.
What to doWait for the reset, or upgrade for a larger allowance.
The plan's daily allowance for calls through the MCP server is used up. It resets at midnight UTC; direct API requests still count against the plan's own allowance.
What to doWait for the reset, call the API directly, or upgrade for a larger MCP allowance.
Too many sequential pages in a short time.
What to doSlow the walk down, or use a larger
per_page.A data report for this section was already filed in the last 24 hours.
What to doWait a day, or add to the report already filed.
Something failed on our side. It has been logged against
request_id.What to doRetry with backoff. Quote
request_idif it persists.
A service this endpoint depends on is temporarily unavailable.
What to doRetry after a short wait.
The API is paused for maintenance.
What to doWait for
Retry-Afterseconds, then retry.
Request IDs
Every response carries an X-Request-Id header and every error body echoes it as request_id. Quote it to support: it finds the request in our logs.
Retry-After
Retry-After is the only rate-limit header the API sends: on a 429 it is the seconds to wait before the next allowed request (60 for the per-minute limit, 3600 for the daily cap), and a 503 during maintenance carries it too. There is no X-RateLimit-Remaining; the edge limiter reports whether a request was allowed, not how much of the window is left. For consumption against your monthly allowance, poll GET /v1/me/usage.