200

OK

2xx · Success

The request succeeded.

What does HTTP 200 OK mean?

The standard response for a successful HTTP request. What "success" means depends on the method: for GET the resource is returned, for POST the result of the action is returned.

2xx responses mean the request was successfully received, understood, and accepted. This is the range you want to see for healthy requests.

When you'll see HTTP 200

  • A successful GET returns the requested resource
  • A successful POST or PUT returns the result of the action

Example

GET /api/users/1 HTTP/1.1

→ HTTP/1.1 200 OK
Content-Type: application/json

Related 2xx status codes

Look up and search every HTTP status code in one place.

Open the HTTP Status Code tool