Skip to main content

Client Errors (400)

CodeHTTPDescription
INVALID_REQUEST400Invalid or missing request parameters

Rate Limiting (429)

CodeHTTPDescription
RATE_LIMIT_EXCEEDED429Too many requests (100 per 15min general, 20 per 15min strict)

Request Size (413)

CodeHTTPDescription
REQUEST_TOO_LARGE413Request URL or body exceeds size limit

Not Found (404)

CodeHTTPDescription
ENDPOINT_NOT_FOUND404Invalid API endpoint

Analysis Failures (500)

CodeHTTPDescription
ANALYSIS_FAILED500Complete security analysis failed
BUNDLER_DETECTION_FAILED500Coordinated buyer detection failed
PHISHING_CHECK_FAILED500Phishing detection failed
SIMULATION_FAILED500Transaction simulation failed

General (500)

CodeHTTPDescription
INTERNAL_SERVER_ERROR500Unhandled server error

Summary

Categories:
  • 4xx Client Errors
  • 429 Rate Limiting
  • 413 Too Large
  • 404 Not Found
  • 5xx Server Errors (analysis failures + general)
All errors return consistent JSON format:
{
  "success": false,
  "error": {
    "code": "ERROR_CODE",
    "message": "Human-readable description"
  }
}