Códigos de estado HTTP

Consulta los códigos de respuesta HTTP más comunes con explicaciones cortas — útil para depurar peticiones, documentar APIs y revisar respuestas del servidor.

Use the jump links to move between response classes and keep a quick lookup nearby while working with APIs.

HTTP response code table

Code Name Meaning

1xx Informational

Informational responses indicate that the request was received and processing can continue.

2xx Success

Success responses indicate the request was received, understood and accepted.

3xx Redirection

Redirection responses tell the client that additional action is needed to complete the request.

4xx Client Errors

Client error responses indicate a problem with the request itself, authentication or permissions.

5xx Server Errors

Server error responses indicate the server failed while trying to handle an apparently valid request.

Ejemplos

200 OK
404 Not Found
503 Service Unavailable

Preguntas frecuentes

¿Qué es HTTP 404?

HTTP 404 significa que el recurso solicitado no se encontró en la URL indicada.

¿Cuál es la diferencia entre 301 y 302?

Un redireccionamiento 301 es permanente, mientras que 302 normalmente indica un cambio temporal.

¿Qué significa 503?

HTTP 503 significa que el servicio no está disponible temporalmente, a menudo por mantenimiento o sobrecarga.