- Codes in the 2xx range indicate success.
- Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted).
- Codes in the 5xx range indicate an error with our servers or infrastructure. Refer to our status page for information regarding incidents.
HTTP Response Status Codes
| Code | Description | Comment |
|---|---|---|
| 2xx | Success | Everything worked as expected. |
| 400 | Bad Request | The request was unacceptable, often due to missing a required parameter. |
| 401 | Unauthorized | No valid API key provided. |
| 403 | Forbidden | The API key doesn’t have permissions to perform the request. |
| 404 | Not Found | The requested resource doesn’t exist. |
| 424 | External Dependency Failed | The request couldn’t be completed due to a failure in a dependency external to Infinite Creator. |
| 429 | Too Many Requests | Too many requests hit the API too quickly. We recommend using exponential backoff. |
| 500, 502, 503, 504 | Server Errors | Something went wrong on our end. |
Attributes
For some errors that could be handled programmatically, a short string indicating the error code reported. Refer to the OpenAPI documentation for the full list of error codes as they are usually specific to the operation.
A human-readable message providing more details about the error.
A dictionary containing additional information about the error. For example, if the error is due to a missing or malformed request parameter, this will include the location of that parameter.