Guide
Errors
The API uses standard HTTP status codes and Problem Details response bodies for validation and request failures.
Common statuses
400means the request is malformed or invalid.401means the API key is missing or invalid.404means the resource was not found or does not belong to the caller.409means 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."
}