2xx Success

HTTP 200 OK

The request has succeeded. The meaning of the success depends on the HTTP method: GET returns the resource, POST returns the result of the action, and so on. This is the most common HTTP status code.

Common Causes

  • Successful retrieval of a web page or API resource
  • Form submission processed successfully
  • API call returned data as expected

How to Fix

  1. 1No fix needed — the request succeeded
  2. 2If unexpected, verify the response body contains correct data
  3. 3Check response headers for cache and content-type correctness

Example

HTTP 200 OK
GET /api/users/1 HTTP/1.1

→ 200 OK
→ { "id": 1, "name": "Alice" }

Related Success Codes