Simple HTTP Status Code API

Get detailed information about any HTTP status code with a simple API call

GET /status/{code}

Documentation

Base URL

https://httpguide.dev

Endpoints

Get Status Code Information

GET /status/{code}

Returns detailed information about the specified HTTP status code.

Example Request:
curl https://httpguide.dev/status/404
Example Response:
{
  "code": 404,
  "status": "Not Found",
  "description": "The requested resource could not be found on the server."
}

Try It

// Response will appear here

Available Status Codes

2xx - Success

  • 200 - OK
  • 201 - Created
  • 202 - Accepted
  • 204 - No Content

3xx - Redirection

  • 301 - Moved Permanently
  • 302 - Found
  • 304 - Not Modified
  • 307 - Temporary Redirect

4xx - Client Error

  • 400 - Bad Request
  • 401 - Unauthorized
  • 403 - Forbidden
  • 404 - Not Found

5xx - Server Error

  • 500 - Internal Server Error
  • 502 - Bad Gateway
  • 503 - Service Unavailable
  • 504 - Gateway Timeout