Ищите и просматривайте HTTP-коды состояния и их значения от 1xx до 5xx.
Как использовать HTTP-статусы
Введите код состояния или часть его названия.
Просматривайте подходящие коды, окрашенные по категориям.
Используйте как быструю справку при разработке или отладке 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/ru/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 и обратно в .env в обоих направлениях полностью в браузере.
Генерируйте HMAC для сообщения и секретного ключа с SHA-1, SHA-256, SHA-384 или SHA-512 в браузере.
Хешируйте пароль с bcrypt и проверяйте пароль по bcrypt-хешу полностью в браузере.
Конвертируйте команду curl в эквивалентный код JavaScript fetch полностью в браузере.