Search by code (e.g. 418), name, or keyword. Runs entirely in your browser — the full list is embedded on the page.
207 Multi-Status and joke/April-Fools codes like 418 I'm a teapot (defined in RFC 2324 and still reserved in RFC 9110).Look up a single code:
curl -sS https://devops.majbase.com/http-status/api/418
Returns JSON: {"code": 418, "name": "I'm a teapot", "category": "4xx", "description": "..."}, or a 404 with {"error": "..."} for an unknown code.
List every code, or filter by category and/or keyword:
curl -sS https://devops.majbase.com/http-status/api
curl -sS "https://devops.majbase.com/http-status/api?category=5xx"
curl -sS "https://devops.majbase.com/http-status/api?q=timeout"
Returns a JSON array of matching entries in the same shape as above. Combine category and q to narrow both at once.