HTTP Status Code Cheat Sheet

1️⃣ 1xx – Informational

Rarely used in support.

2️⃣ 2xx – Success

When to report: 200/201 → good, 202 → may indicate delayed processing.

3️⃣ 3xx – Redirection

When to report: Only if redirection is causing errors or loops.

4️⃣ 4xx – Client Errors

Most commonly reported in helpdesk: 401, 403, 404, 429.

5️⃣ 5xx – Server Errors

Report all 5xx errors to devs immediately; include URL, method, timestamp.

Helpful Tips