Skip to main content
We structure all errors which occur in our application into a JSON object with keys:
  • code (integer) - the HTTP status code
  • description (string or dict) - a longer description of what went wrong
  • name (string) - the error name

Examples

404

422

429

We have different rate limits per API endpoint and per customer. If you want to know what your rate limit is, and how much of it you have remaining, we provide response headers for each request you send us indicating this.
  • x-ratelimit-limit: the number of requests per minute you can send
  • x-ratelimit-remaining: the number of requests remaining within the current rate limit window
  • x-ratelimit-reset: the Unix timestamp datetime when you limit resets
For example, if you receive:
It means the endpoint you’re calling has a rate limit of 100 per minute. You have 99 requests left in the current window. And your limit will be replenished at 1675334140 which is Thursday, 2 February 2023 10:35:40. We use a Fixed Window algorithm to manage rate limits.

500