For the complete documentation index, see llms.txt. This page is also available as Markdown.

Ping

Verify that the OpenAlgo API key resolves to an active broker session.

Endpoint

POST /api/v1/ping
curl -X POST 'http://127.0.0.1:5000/api/v1/ping' \
  -H 'Content-Type: application/json' \
  -d '{"apikey":"<your_app_apikey>"}'
{
  "status": "success",
  "data": {
    "message": "pong",
    "broker": "zerodha"
  }
}

This is not an anonymous process-health endpoint. An invalid key or revoked/missing broker session returns HTTP 403.

Back to: API documentation

Last updated