Skip to content

Error Response

All endpoints respond with a ProblemDetails format and specific status code in case of error.

Common error status:

  • 401 - Unauthorized
    • usually with bad apiKey
  • 400 - Bad Request
  • 500 - Internal Server Error
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{
  "type": "string",
  "title": "string",
  "status": [400|401|500],
  "detail": "string",
  "instance": "string",
  "errors": {
    "{KEY}": [
      "{VALUE}"
    ],
    "{KEY}": [
      "{VALUE}"
    ],
  }
}