Response Codes

This page will detail the standard response codes for the API. You should refer to this when you get an unexpected error.

200: OK

The request was successful!

{ "code": 200, "message": "OK" }

201: CREATED

The requested resource has been created.

{ "code": 201, "message": "Created" }

202: ACCEPTED

The request has been accepted - continue.

{ "code": 202, "message": "Accepted" }

204: NO CONTENT

The requested resource has been deleted/no longer exists.

{ "code": 204, "message": "No content" }

400: BAD REQUEST

The request was not formatted correctly. Read the docs and try again.

{ "code": 400, "message": "Bad request" }

401: UNAUTHORIZED

The provided authorization was not correct. Can be sent if a user fails to authenticate.

{ "code": 401, "message": "Unauthorized" }

402: PAYMENT REQUIRED

You need an upgraded plan for this.

{ "code": 402, "message": "Payment required" }

403: FORBIDDEN

You do not have access to this resource

{ "code": 403, "message": "Forbidden" }

404: NOT FOUND

Resource not found. Make sure the search item or URL is correct

{ "code": 404, "message": "Not found"}

410: GONE

The resource has expired. Likely a password has been changed since the specified token was made.

{ "code": 410, "message": "Gone" }

429: TOO MANY REQUESTS

You are being ratelimited. Please slow down or contact support to increase limits.

{ "code": 429, "message": "Too many requests" }

507: OUT OF STORAGE

This user has run out of custom attributes. Upgrade plan for more.

{ "code": 507, "message": "Out of storage"}

Other Errors

If you are getting other error codes, check server status or contact support. This is usually due to a hosting outage.

Last updated

Was this helpful?