Skip to content

Response Codes

The Slipcase API uses conventional HTTP response codes to indicate the success or failure of a request.

CodeMeaning
200OK — Everything worked as expected
400Bad Request — Your request is invalid
401Unauthorized — Your API key is wrong
402Request Failed — The parameters were valid but the request failed
403Forbidden — The API key doesn’t have permissions to perform the request
404Not Found — The requested resource doesn’t exist
406Not Acceptable — You requested a format that isn’t available
429Too Many Requests — Too many requests hit the API too quickly. We recommend an exponential backoff of your requests
500Internal Server Error — We had a problem with our server. Try again later
503Service Unavailable — We’re temporarily offline for maintenance. Please try again later

Error responses return a JSON body with an error field:

{
"error": "Invalid endpoint"
}