Categoria: Sviluppo

Ricerca Codici di Stato HTTP

Idea internaManca uno strumento?

Cerca ogni codice di stato HTTP e il suo significato

Cerca l'intera gamma dei codici di stato HTTP — da 1xx a 5xx — per numero, nome o parola chiave, e leggi una breve spiegazione pratica del significato di ciascuno. Funziona interamente nel tuo browser a partire da una tabella di riferimento inclusa.

62 codici

CodiceNomeCategoriaSignificato
100Continue1xx InformativoThe initial part of the request was received; the client should continue.
101Switching Protocols1xx InformativoThe server is switching protocols as requested by Upgrade.
102Processing1xx InformativoThe server has received the request and is still processing it.
103Early Hints1xx InformativoPreload or preconnect hints sent before the final response.
200OK2xx SuccessoThe request succeeded.
201Created2xx SuccessoThe request succeeded and a new resource was created.
202Accepted2xx SuccessoThe request was accepted for processing but is not complete.
203Non-Authoritative Information2xx SuccessoThe payload was transformed by a proxy from the origin response.
204No Content2xx SuccessoThe request succeeded but there is no content to send.
205Reset Content2xx SuccessoThe client should reset the document view that sent the request.
206Partial Content2xx SuccessoOnly part of the resource is being sent, per a Range header.
207Multi-Status2xx SuccessoA WebDAV response conveying status for multiple sub-requests.
208Already Reported2xx SuccessoA WebDAV binding was already enumerated in a previous reply.
226IM Used2xx SuccessoThe server fulfilled the request using instance manipulations.
300Multiple Choices3xx RedirezioneThe request has more than one possible response.
301Moved Permanently3xx RedirezioneThe resource has been permanently moved to a new URL.
302Found3xx RedirezioneThe resource is temporarily at a different URL.
303See Other3xx RedirezioneThe response can be found under a different URL using GET.
304Not Modified3xx RedirezioneThe resource has not changed since the last request; use the cache.
305Use Proxy3xx RedirezioneDeprecated: the requested resource must be accessed through a proxy.
307Temporary Redirect3xx RedirezioneThe resource is temporarily at a different URL; method must not change.
308Permanent Redirect3xx RedirezioneThe resource has permanently moved; method must not change.
400Bad Request4xx Errore del clientThe server cannot process the request due to a client error.
401Unauthorized4xx Errore del clientAuthentication is required and has failed or not been provided.
402Payment Required4xx Errore del clientReserved for future use.
403Forbidden4xx Errore del clientThe server understood the request but refuses to authorize it.
404Not Found4xx Errore del clientThe server can not find the requested resource.
405Method Not Allowed4xx Errore del clientThe request method is not supported for this resource.
406Not Acceptable4xx Errore del clientNo content matching the Accept headers was found.
407Proxy Authentication Required4xx Errore del clientThe client must authenticate with the proxy first.
408Request Timeout4xx Errore del clientThe server timed out waiting for the request.
409Conflict4xx Errore del clientThe request conflicts with the current state of the resource.
410Gone4xx Errore del clientThe resource is no longer available and will not come back.
411Length Required4xx Errore del clientThe request did not specify the length of its content.
412Precondition Failed4xx Errore del clientA precondition in the request headers was not met.
413Payload Too Large4xx Errore del clientThe request entity is larger than the server can handle.
414URI Too Long4xx Errore del clientThe requested URI is longer than the server can interpret.
415Unsupported Media Type4xx Errore del clientThe media format of the request is not supported.
416Range Not Satisfiable4xx Errore del clientThe requested range cannot be satisfied.
417Expectation Failed4xx Errore del clientThe Expect header could not be met by the server.
418I'm a Teapot4xx Errore del clientAn April Fools' joke status code from RFC 2324.
421Misdirected Request4xx Errore del clientThe request was directed at a server unable to produce a response.
422Unprocessable Entity4xx Errore del clientThe request was well-formed but semantically incorrect.
423Locked4xx Errore del clientThe resource that is being accessed is locked.
424Failed Dependency4xx Errore del clientThe request failed because a prior dependent request failed.
425Too Early4xx Errore del clientThe server is unwilling to risk processing a replayable request.
426Upgrade Required4xx Errore del clientThe client should switch to a different protocol.
428Precondition Required4xx Errore del clientThe origin server requires the request to be conditional.
429Too Many Requests4xx Errore del clientThe client has sent too many requests in a given time.
431Request Header Fields Too Large4xx Errore del clientThe header fields are too large for the server.
451Unavailable For Legal Reasons4xx Errore del clientThe resource is unavailable for legal reasons.
500Internal Server Error5xx Errore del serverThe server encountered an unexpected condition.
501Not Implemented5xx Errore del serverThe server does not support the functionality required.
502Bad Gateway5xx Errore del serverThe server, acting as a gateway, got an invalid response.
503Service Unavailable5xx Errore del serverThe server is not ready to handle the request.
504Gateway Timeout5xx Errore del serverThe server, acting as a gateway, did not get a response in time.
505HTTP Version Not Supported5xx Errore del serverThe HTTP version used in the request is not supported.
506Variant Also Negotiates5xx Errore del serverTransparent content negotiation resulted in a circular reference.
507Insufficient Storage5xx Errore del serverThe server is unable to store the representation needed.
508Loop Detected5xx Errore del serverThe server detected an infinite loop while processing the request.
510Not Extended5xx Errore del serverFurther extensions to the request are required.
511Network Authentication Required5xx Errore del serverThe client needs to authenticate to gain network access.

Tutto ciò che c'è in questa pagina viene elaborato nel tuo browser. Niente viene caricato.

A cosa serve

Ogni risposta HTTP porta un codice di stato a tre cifre che dice al client cosa è successo: 2xx per il successo, 3xx per una redirezione, 4xx per un errore del client, 5xx per un guasto del server. Questo strumento raccoglie i codici registrati presso IANA insieme a una descrizione in linguaggio semplice, così puoi verificare il significato di un codice o trovare quello giusto da restituire senza uscire dal tuo editor.

Come si usa

  1. Digita un codice di stato, il suo nome, oppure una parola chiave come "rate limit".
  2. Se vuoi, restringi i risultati a una sola categoria (1xx–5xx).
  3. Leggi la breve spiegazione del codice corrispondente.

Privacy

Questo strumento funziona interamente nel tuo browser. Quello che inserisci non viene mai caricato, salvato o condiviso: chiudendo la scheda sparisce.

Domande frequenti

Da dove viene questo elenco?
Da una tabella locale dei codici registrati presso IANA, che copre ogni codice restituito da una tipica API web o interazione con il browser. Non effettua alcuna chiamata a un server.
Qual è la differenza tra 401 e 403?
401 Unauthorized significa che la richiesta necessita di credenziali di autenticazione valide; 403 Forbidden significa che il server ha capito chi sei ma rifiuta comunque di autorizzare l'azione.
Perché esiste il 418?
"I'm a Teapot" deriva da una RFC del pesce d'aprile del 1998. Viene usato raramente sul serio, anche se alcune API lo usano come easter egg.