← Back to all status codes
2xx Series
Terminal (Do not automatically retry)

200 OK

The request has succeeded. The information returned via the response depends on the method used in the request.

🌍

SEO Impact

Ideal status for SEO. Search engines will aggressively index pages returning 200 OK.

🔧

Common Causes

  • 1Successful page load
  • 2Successful API data retrieval

Code Examples

Node.js (Express)
res.status(200).send({ message: 'Success' });
Python (FastAPI)
return {'message': 'Success'}

Related Codes