HTTP status codes

  • it is considered that the request was successful only if the status code is 200 regardless of the content in the body.
  • it is the programmer's duty to check the status code first and then to read the body
CodeInfoDetails
200OK.Succesfull request.
400Bad requestRequest does not have a proper format or has not passed validation. Information about errors will be available in the body.
401UnauthorizedThe endpoint requires authentication.
403ForbiddenThe user does not have the necessary permissions to execute the request.
404Not foundNot found.
405Not supportedInvalid parameters. Only those in the documentation can be used
420DeprecatedThe called version is no longer supported.
429Too Many RequestsTemporary error if request / ip limit is exceeded
503Service UnavailableThe service is under maintenance. Temporary error.