Skip to main content

Status Codes

The Anytype API uses standard HTTP status codes to indicate the success or failure of requests.

Success Codes​

HTTP StatusDescription
200The request was successful.
201A new resource was created.

Error Codes​

Error responses include a JSON body with additional details:

{
"code": "error_code",
"message": "Human-readable error message",
"object": "error",
"status": 400
}
HTTP StatuscodeDescription
400bad_requestThe request body is invalid or malformed.
401unauthorizedThe API key is missing or invalid.
403forbiddenThe API key doesn't have permission for this operation.
404object_not_foundThe requested resource does not exist.
410resource_goneThe resource has been deleted.
429rate_limit_exceededToo many requests. See Rate Limits.
500internal_server_errorAn unexpected error occurred.