./prontouso

Consulta de Códigos de Estado HTTP

Busca códigos de estado HTTP comunes por número, nombre o palabra clave para ver qué significa cada uno y a qué categoría pertenece.

Se ejecuta localmente en tu navegador. Esta herramienta no sube tu entrada a ningún servidor.
CodeNameDescription
100ContinueThe initial part of the request was received; the client should continue with the body.
101Switching ProtocolsThe server agrees to switch protocols as requested by the client.
103Early HintsPreliminary headers sent before the final response, used for preloading resources.
200OKThe request succeeded.
201CreatedThe request succeeded and a new resource was created.
202AcceptedThe request was accepted for processing, but processing isn't complete.
204No ContentThe request succeeded but there is no content to return.
206Partial ContentOnly part of the requested resource is being returned (range requests).
301Moved PermanentlyThe resource has permanently moved to a new URL.
302FoundThe resource temporarily resides at a different URL.
303See OtherThe response can be found at a different URL, fetched with GET.
304Not ModifiedThe cached version of the resource is still valid; no body is returned.
307Temporary RedirectThe resource temporarily resides at a different URL; method must not change.
308Permanent RedirectThe resource permanently resides at a different URL; method must not change.
400Bad RequestThe server could not understand the request due to invalid syntax.
401UnauthorizedAuthentication is required and has failed or not been provided.
402Payment RequiredReserved for future use; occasionally used for payment/quota systems.
403ForbiddenThe client does not have access rights to the content.
404Not FoundThe server cannot find the requested resource.
405Method Not AllowedThe request method is known but not supported for this resource.
406Not AcceptableNo content matching the client's Accept headers was found.
408Request TimeoutThe server timed out waiting for the request.
409ConflictThe request conflicts with the current state of the resource.
410GoneThe resource is no longer available and will not be available again.
411Length RequiredThe request did not specify the length of its content.
413Payload Too LargeThe request body is larger than the server is willing to process.
414URI Too LongThe requested URI is longer than the server is willing to interpret.
415Unsupported Media TypeThe media format of the request body is not supported.
416Range Not SatisfiableThe requested range cannot be fulfilled.
418I'm a TeapotA humorous status defined in RFC 2324; not seriously used by real servers.
422Unprocessable ContentThe request was well-formed but contains semantic errors.
425Too EarlyThe server is unwilling to process a request that might be replayed.
429Too Many RequestsThe client has sent too many requests in a given time (rate limiting).
431Request Header Fields Too LargeThe request's header fields are too large.
451Unavailable For Legal ReasonsThe resource is unavailable for legal reasons (e.g. censorship).
500Internal Server ErrorThe server encountered an unexpected condition.
501Not ImplementedThe server does not support the functionality required.
502Bad GatewayThe server, acting as a gateway, received an invalid response upstream.
503Service UnavailableThe server is not ready to handle the request (overload or maintenance).
504Gateway TimeoutThe server, acting as a gateway, did not get a response in time.
505HTTP Version Not SupportedThe server does not support the HTTP protocol version used.

Cómo consultar un código de estado HTTP

Busca códigos de estado HTTP comunes por número, nombre o palabra clave para ver qué significa cada uno.

Rangos de códigos de estado

  • 1xx: informativo
  • 2xx: éxito
  • 3xx: redirección
  • 4xx: error del cliente
  • 5xx: error del servidor

Usos comunes

  • Entender qué significa realmente un código de estado en un registro de servidor o respuesta de API.
  • Decidir qué código de estado devolver desde tu propia API para una situación dada.

Bueno saberlo

Algunos códigos se usan rara vez en la práctica (como el 418), mientras que otros son esenciales para el comportamiento correcto del cliente, como el 304 para caché o el 429 para limitación de tasa.

Notas de referencia

Esta es una lista de referencia estática — ningún dato que escribas se envía a ningún lado.

Preguntas frecuentes

¿Esto lista cada código de estado posible?

Cubre los códigos usados comúnmente que encontrarás en el desarrollo web cotidiano, no cada código jamás registrado.

¿Puedo buscar por una descripción parcial?

Sí — buscar "timeout" o "redirect", por ejemplo, encuentra cada código de estado coincidente.

¿Se incluyen códigos personalizados o no estándar?

No — aquí solo se listan los códigos registrados formalmente en IANA, no los códigos específicos de aplicación o no estándar que usan algunas APIs.