Skip to main content
Spidra returns consistent error responses using standard HTTP status codes and descriptive messages. If something goes wrong with your request—like invalid input, missing authentication, or rate limits—you’ll receive a clear JSON error object.

Error Response Format

{
	"status": "error",
	"message": "Detailed error explanation"
}

Common Error Codes

Status CodeDescription
400 Bad RequestThe request was malformed or missing required parameters.
401 UnauthorizedAuthentication failed. Check your API key.
403 ForbiddenYou do not have permission to access this resource.
404 Not FoundThe requested resource does not exist.
429 Too Many RequestsYou have exceeded your rate limit.
500 Internal Server ErrorAn unexpected error occurred on the server.