NewKit / Reference / HTTP Status Codes

HTTP Status Codes

What each HTTP code means (404, 500…). · Processed in your browser.

Code Name Meaning
100ContinueContinúa la petición / Keep going
101Switching ProtocolsCambio de protocolo (WebSocket) / Protocol switch
200OKPetición exitosa / Success
201CreatedRecurso creado / Resource created
202AcceptedAceptada, aún en proceso / Accepted, processing
204No ContentÉxito sin cuerpo / Success, no body
206Partial ContentContenido parcial (rangos) / Range request
301Moved PermanentlyRedirección permanente / Permanent redirect
302FoundRedirección temporal / Temporary redirect
303See OtherVer otra URL (GET) / See other
304Not ModifiedUsar caché / Use cache
307Temporary RedirectRedirección temporal (mantiene método) / keeps method
308Permanent RedirectRedirección permanente (mantiene método) / keeps method
400Bad RequestPetición malformada / Malformed request
401UnauthorizedFalta autenticación / Authentication required
403ForbiddenSin permiso / No permission
404Not FoundNo existe / Does not exist
405Method Not AllowedMétodo no permitido / Method not allowed
406Not AcceptableNo hay formato aceptable / Not acceptable
409ConflictConflicto de estado / State conflict
410GoneEliminado permanentemente / Permanently gone
415Unsupported Media TypeTipo de medio no soportado / Unsupported type
418I'm a teapotSoy una tetera (RFC 2324) / Teapot
422Unprocessable EntityValidación fallida / Validation failed
429Too Many RequestsDemasiadas peticiones (rate limit)
451Unavailable For Legal ReasonsBloqueado por motivos legales / Legal block
500Internal Server ErrorError del servidor / Server error
501Not ImplementedNo implementado / Not implemented
502Bad GatewayUpstream inválido / Invalid upstream
503Service UnavailableNo disponible / Unavailable
504Gateway TimeoutTiempo de espera agotado / Gateway timeout
511Network Authentication RequiredRequiere login de red / Network auth

What is HTTP Status Codes?

HTTP status codes are three-digit responses that indicate the result of a request: 1xx informational, 2xx success, 3xx redirection, 4xx client errors and 5xx server errors. Knowing them is essential for debugging APIs and understanding what a server responds.

This quick reference gathers the most frequent codes with their name and meaning, from the familiar 404 (not found) to 429 (too many requests) or 502 (bad gateway). Use it to interpret any service's response at a glance.

The most looked-up ones: 200 (OK), 301/302 (permanent/temporary redirect), 401 (authentication required) versus 403 (authenticated but no permission), 404 (not found), 429 (too many requests) and 500/502/503 (server errors). When debugging an API, pair it with our HTTP headers inspector.

Frequently asked questions

What does error 404 mean?

Not Found: the server could not find the requested resource at that URL.

What about error 500?

Internal Server Error: a generic server-side failure while processing the request.

What is the difference between 301 and 302?

301 is a permanent redirect (passes SEO to the destination); 302 is temporary (the origin stays canonical).

What do the 2xx, 4xx and 5xx ranges mean?

2xx = success, 3xx = redirection, 4xx = client error and 5xx = server error.

Is it free?

Yes, all NewKit tools are completely free.

Is my data sent to a server?

No. Processing happens 100% in your browser, so it is safe even for sensitive data.