HTTP Status Codes

Quick reference for all HTTP status codes with descriptions and categories.

Search / Lookup
All examples use BASE_URL — set it to your deployment URL, e.g. https://winnieapi-v2.yourdomain.com
GET/api/http-status
Get all HTTP status codes with their text and category.
const res = await fetch(`${BASE_URL}/api/http-status`); const data = await res.json(); // → { success: true, statuses: [{ code: 200, text: "OK", category: "2xx" }, ...] }
GET/api/http-status/:code
Look up a specific HTTP status code.
const res = await fetch(`${BASE_URL}/api/http-status/404`); const data = await res.json(); // → { success: true, code: 404, text: "Not Found", category: "4xx" }