200 OK

Look up a status, pick the right one for an API, or hit a live endpoint that actually returns it. Add ?code=418 to this URL and the response is that status — useful for curl, interceptors, and “what does my client do on 503?” Nothing here phones home except the Try it fetch to this same page.

Which class?

200

OK

Success · RFC 9110

The request succeeded. This is the default success for GET, and for PUT/PATCH when you return the current representation.

When to use

Successful reads, updates that return a body, and most “it worked” responses.

Don’t

Prefer 201 when a new resource was created, 204 when there is no body.

Live URL

curl -i https://corecoding.com/utilities/http-status.php?code=200


    

Code use cases