Handytool
EntwicklerKostenlosLäuft lokal

HTTP-Status-Code-Lookup

Schau jeden HTTP-Status-Code auf — 1xx bis 5xx — mit einer einfachen englischen Beschreibung.

Klasse
  • 100Continue

    Server received the request headers; client should send the body.

  • 101Switching Protocols

    The server is switching protocols as requested by the client.

  • 102Processing

    Request received but not yet processed (WebDAV).

  • 103Early Hints

    Used to return some response headers before final HTTP message.

  • 200OK

    Standard success response.

  • 201Created

    Request succeeded and a new resource was created.

  • 202Accepted

    Request accepted for processing but not completed.

  • 203Non-Authoritative Information

    Returned metadata is from a third-party copy.

  • 204No Content

    Request succeeded but no content is returned.

  • 205Reset Content

    Request succeeded; client should reset the document view.

  • 206Partial Content

    Range request succeeded; partial content returned.

  • 207Multi-Status

    Body contains multiple statuses (WebDAV).

  • 208Already Reported

    Members of a DAV binding already enumerated.

  • 226IM Used

    Server fulfilled a GET request and the response is the result of one or more instance-manipulations.

  • 300Multiple Choices

    Request has more than one possible response.

  • 301Moved Permanently

    Resource moved to a new permanent URL.

  • 302Found

    Resource is temporarily at a different URL.

  • 303See Other

    Client should follow the response to a new URL with GET.

  • 304Not Modified

    Cached version is still valid; no body returned.

  • 307Temporary Redirect

    Same method should be used at the new URL.

  • 308Permanent Redirect

    Same as 301 but the request method must not change.

  • 400Bad Request

    Server cannot or will not process due to a client error.

  • 401Unauthorized

    Authentication required and has failed or not been provided.

  • 402Payment Required

    Reserved for future use, sometimes used for paywalls.

  • 403Forbidden

    Server understood but refuses to authorize.

  • 404Not Found

    The requested resource could not be found.

  • 405Method Not Allowed

    Request method is known but not supported by the resource.

  • 406Not Acceptable

    Resource cannot produce content matching the Accept headers.

  • 407Proxy Authentication Required

    Client must authenticate with the proxy.

  • 408Request Timeout

    Server timed out waiting for the request.

  • 409Conflict

    Request conflicts with the current state of the resource.

  • 410Gone

    Resource is no longer available and will not be available again.

  • 411Length Required

    Content-Length header is required.

  • 412Precondition Failed

    A precondition in the request headers was not met.

  • 413Payload Too Large

    Request entity is larger than the server is willing to process.

  • 414URI Too Long

    URI is longer than the server is willing to interpret.

  • 415Unsupported Media Type

    Media format of the request is not supported.

  • 416Range Not Satisfiable

    Requested range cannot be served.

  • 417Expectation Failed

    Expectation in Expect header could not be met.

  • 418I'm a teapot

    Server refuses to brew coffee because it is, permanently, a teapot.

  • 421Misdirected Request

    Request was directed to a server unable to produce a response.

  • 422Unprocessable Entity

    Request was well-formed but had semantic errors.

  • 423Locked

    Resource is locked (WebDAV).

  • 424Failed Dependency

    Request failed because of a previous failed request (WebDAV).

  • 425Too Early

    Server unwilling to risk processing a replay-vulnerable request.

  • 426Upgrade Required

    Client must upgrade to a different protocol.

  • 428Precondition Required

    Server requires the request to be conditional.

  • 429Too Many Requests

    Client has sent too many requests in a given amount of time.

  • 431Request Header Fields Too Large

    Headers are too large for the server to process.

  • 451Unavailable For Legal Reasons

    Resource cannot be served for legal reasons.

  • 500Internal Server Error

    Generic server error response.

  • 501Not Implemented

    Server does not support the request method.

  • 502Bad Gateway

    Server received an invalid response from an upstream server.

  • 503Service Unavailable

    Server is overloaded or down for maintenance.

  • 504Gateway Timeout

    Upstream server did not respond in time.

  • 505HTTP Version Not Supported

    HTTP version in the request is not supported.

  • 506Variant Also Negotiates

    Internal configuration error in transparent content negotiation.

  • 507Insufficient Storage

    Server is unable to store the representation (WebDAV).

  • 508Loop Detected

    Server detected an infinite loop while processing (WebDAV).

  • 510Not Extended

    Further extensions to the request are required.

  • 511Network Authentication Required

    Client needs to authenticate to gain network access.

Aus RFC 9110 und IANA HTTP-Status-Registry.

Über HTTP-Status-Code-Lookup

Handytool's HTTP-Status-Code-Lookup ist eine schnelle Referenz für jeden HTTP-Status von 100 Continue bis 511 Network Authentication Required. Suche nach Code (404), Name (Not Found) oder Fragment der Beschreibung; filtere nach Klasse (1xx informativ, 2xx Erfolg, 3xx Umleitung, 4xx Client-Fehler, 5xx Server-Fehler). Stammt aus RFC 9110 und der IANA-HTTP-Status-Registry, einschließlich WebDAV und andere Erweiterungen, die du in echten API-Responses sehen wirst.

Funktionen von HTTP-Status-Code-Lookup

  • 01

    Suche nach Code oder Bedeutung

    Tippe einen Code, einen Namen oder ein Fragment der Beschreibung — die Liste filtert sofort. Nützlich, wenn du dich daran erinnerst, dass 422 "etwas Semantisches" bedeutet, aber den exakten Namen nicht kannst.

  • 02

    Klassen-Filter

    Verengte die Liste auf eine einzelne Klasse — 4xx wenn du einen Client-Fehler debuggst, 5xx wenn du einen Server-Bug jagst, 3xx wenn du eine Umleitungs-Kette entwirrt.

  • 03

    Einfache englische Erklärungen

    Jeder Eintrag hat eine Ein-Satz-Zusammenfassung für Entwickler — was der Code tatsächlich in der Praxis bedeutet, nicht nur die formale RFC-Wortwahl.

FAQ zu HTTP-Status-Code-Lookup

Was ist der Unterschied zwischen 401 und 403?
401 Unauthorized bedeutet, dass die Anfrage gültige Authentifizierung fehlt — melde dich an und versuche erneut. 403 Forbidden bedeutet, dass du authentifiziert bist, aber nicht berechtigt bist, auf die Ressource zuzugreifen — Anmeldedaten helfen nicht.
Wann sollte ich 422 statt 400 zurückgeben?
400 Bad Request ist für malformed Syntax (broken JSON, fehlendes erforderliches Feld). 422 Unprocessable Entity ist für syntaktisch gültige Anfragen, die Business-Validierung fehlschlagen (Email existiert bereits, Alter muss ≥ 18 sein).
Ist 418 I'm a teapot ein echter Status-Code?
Ja — definiert als April-Fool-Witz in RFC 2324 (1998) und reaffirmt in RFC 7168. Es wird von HTTP selbst nicht genutzt, aber erscheint in der IANA-Registry, und eine Handvoll Services geben es als Easter-Egg zurück.
Was passiert nach 5xx-Codes über 511?
Codes über 511 sind in der IANA-Registry unzugewiesen. Du kannst Custom-5xx-Codes von spezifischen Plattformen sehen (Cloudflare nutzt 520-527 für Upstream-Probleme), aber sie sind Herstellerspezifische Erweiterungen, nicht Standard-HTTP.

Verwandte Werkzeuge

Entwickler

Weitere Tools entdecken

Alle Werkzeuge