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.

402: PAYMENT REQUIRED

You need an upgraded plan for this.

403: FORBIDDEN

You do not have access to this resource

404: NOT FOUND

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

410: GONE

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

429: TOO MANY REQUESTS

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

507: OUT OF STORAGE

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

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