Skip to content

Error Responses

All four APIs return errors in JSON:API error format.

json
{
  "errors": [
    {
      "status": "404",
      "code": "not_found",
      "detail": "Resource not found: posts/missing"
    }
  ]
}

Common Error Codes

HTTP StatusCodeDescription
400invalid_dataRequest body failed schema validation
400bad_requestMalformed request or unsupported operation
400validation_errorField-level validation failure (Assets API)
404not_foundResource does not exist
500internal_errorUnexpected server error

Released under the MIT License.