HTTP स्टेटस कोड और उनके अर्थ खोजें और देखें, 1xx से 5xx तक।
HTTP Status का उपयोग कैसे करें
एक स्टेटस कोड या उसके नाम का हिस्सा टाइप करें।
मिलान कोड, श्रेणी के अनुसार रंगीन, ब्राउज़ करें।
API बनाते या डीबग करते समय त्वरित संदर्भ के रूप में उपयोग करें।
A searchable reference of HTTP status codes, the three-digit numbers a server returns with every response to say what happened, from 1xx through 5xx, with their standard messages and grouped by category.
It is a fast lookup while you build or debug an API or website: type a code or part of its name and the matching entries appear, so you do not have to remember every number.
The categories tell you most of the story at a glance: 1xx informational, 2xx success, 3xx redirection, 4xx client errors (the request was wrong) and 5xx server errors (the server failed). Each group is shown in its own color so you can scan quickly.
Some codes come up constantly: 200 OK, 201 Created, 301 and 302 redirects, 304 Not Modified for caching, 400 Bad Request, 401 and 403 for auth, 404 Not Found, 409 Conflict, 422 for validation, 429 Too Many Requests, and 500, 502 and 503 on the server side.
A frequent source of confusion is 401 versus 403: 401 Unauthorized means you have not authenticated, while 403 Forbidden means you are authenticated but not allowed. Another is 301 versus 302: a permanent versus a temporary redirect, which search engines treat very differently.
The reference is static data shipped with the page, so searching is instant and works offline.
अक्सर पूछे जाने वाले सवाल
1xx सूचनात्मक, 2xx सफलता, 3xx पुनर्निर्देशन, 4xx क्लाइंट त्रुटियां और 5xx सर्वर त्रुटियां हैं। प्रत्येक अपने रंग में दिखाई जाती है।
401 Unauthorized का मतलब है आप प्रमाणित नहीं हैं, जबकि 403 Forbidden का मतलब है आप प्रमाणित हैं लेकिन संसाधन तक पहुंच की अनुमति नहीं है।
418 I'm a Teapot एक अप्रैल फूल मजाक मानक से आता है। यह व्यवहार में उपयोग नहीं किया जाता लेकिन व्यापक रूप से जाना जाता है।
इस टूल को एम्बेड करें
इस टूल को अपनी वेबसाइट में जोड़ें। नीचे दिया स्निपेट कॉपी करें; यह अपने आप अपडेट रहता है।
<iframe src="https://monu.tools/embed/hi/http-status-codes" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>संबंधित टूल
.env फ़ाइल को JSON में और JSON को वापस .env में बदलें, दोनों दिशाओं में, पूरी तरह आपके ब्राउज़र में।
SHA-1, SHA-256, SHA-384 या SHA-512 का उपयोग करके संदेश और सीक्रेट key के लिए HMAC जनरेट करें, आपके ब्राउज़र में।
bcrypt से password hash करें और bcrypt hash के विरुद्ध password सत्यापित करें, पूरी तरह आपके ब्राउज़र में।
curl कमांड को समकक्ष JavaScript fetch कोड में बदलें, पूरी तरह आपके ब्राउज़र में।