Health check

The Ping API is a lightweight health check endpoint. It allows you to verify that the Guru Pay API is reachable and operational.

This endpoint does not require authentication and typically used for:

  • Basic uptime monitoring.

  • Early-stage integration testing.

Ping API

get

A simple endpoint to check if the API is responsive.

Responses
200
Successful response indicating the API is up.
application/json
get
GET /api/v1/ping HTTP/1.1
Host: 
Accept: */*
200

Successful response indicating the API is up.

{
  "status": "pong"
}

Last updated

Was this helpful?