HTTP Status Codes

Every API response will have an HTTP status code.

  • 200 - OK: The request was successful.
  • 202 - Accepted: The request has been accepted for processing, but the processing has not been completed.
  • 400 - Bad Request: The request was unacceptable, often due to a missing or invalid parameter.
  • 401 - Unauthorized: The authentication header was not provided or is not a valid client for this request.
  • 403 - Forbidden: The authentication header does not have permission to make the request. This could be due to scopes or attempting an action on a resource you don't have access to.
  • 404 - Not Found: The requested resource doesn't exist.
  • 429 - Rate Limited: You have made too many requests within the threshold timeframe. Most endpoints are rate limited to 300 requests per minute.
  • 500 - Internal Server Error: Something went wrong on our end; this is rare. Contact Support.