HTTP स्थिति कोड
API और CDN में सबसे आम कोड। दुर्लभ प्रयोगात्मक कोड शामिल नहीं।
| कोड | नाम | अर्थ |
|---|---|---|
| 200 | OK | Success with body |
| 201 | Created | Resource created |
| 204 | No Content | Success, empty body |
| 301 | Moved Permanently | Permanent redirect |
| 302 | Found | Temporary redirect |
| 304 | Not Modified | Use cached copy |
| 400 | Bad Request | Client request invalid |
| 401 | Unauthorized | Auth required / failed |
| 403 | Forbidden | Authenticated but denied |
| 404 | Not Found | No such resource |
| 405 | Method Not Allowed | Wrong HTTP method |
| 408 | Request Timeout | Client too slow |
| 409 | Conflict | State conflict |
| 410 | Gone | Permanently removed |
| 422 | Unprocessable Entity | Semantics invalid |
| 429 | Too Many Requests | Rate limited |
| 500 | Internal Server Error | Server fault |
| 502 | Bad Gateway | Upstream invalid |
| 503 | Service Unavailable | Overloaded / down |
| 504 | Gateway Timeout | Upstream timeout |
टिप्पणियाँ
- 401 बनाम 403: प्रमाणीकरण अनुपस्थित/विफल बनाम लॉगिन है पर अनुमति नहीं।
- मूल सर्वर न मिलने पर CDN 5xx दे सकता है।