HTTP status codes / 2xx — Success

200 OK

What it means

The request succeeded and the response carries the result. The everyday status of the web.

What causes it

Everything worked.

How to fix it

If your app misbehaves despite 200s, the error is hiding in the response body — APIs that return 200 with {"error": …} are common and regrettable.