Skip to main content
Infinite Creator uses conventional HTTP response codes to indicate the success or failure of an API request. In general:
  • 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

CodeDescriptionComment
2xxSuccessEverything worked as expected.
400Bad RequestThe request was unacceptable, often due to missing a required parameter.
401UnauthorizedNo valid API key provided.
403ForbiddenThe API key doesn’t have permissions to perform the request.
404Not FoundThe requested resource doesn’t exist.
424External Dependency FailedThe request couldn’t be completed due to a failure in a dependency external to Infinite Creator.
429Too Many RequestsToo many requests hit the API too quickly. We recommend using exponential backoff.
500, 502, 503, 504Server ErrorsSomething went wrong on our end.

Attributes

code
nullable string
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.
message
nullable string
A human-readable message providing more details about the error.
context
nullable dictionary
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.