Guide

Errors

The API uses standard HTTP status codes and Problem Details response bodies for validation and request failures.

Common statuses

  • 400 means the request is malformed or invalid.
  • 401 means the API key is missing or invalid.
  • 404 means the resource was not found or does not belong to the caller.
  • 409 means the request conflicts with the current resource state.

Problem Details

{
  "type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
  "title": "Bad Request",
  "status": 400,
  "detail": "The request could not be validated."
}