# 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

> A simple endpoint to check if the API is responsive.

```json
{"openapi":"3.0.0","info":{"title":"GURUPAY API","version":"0.2.0"},"tags":[{"name":"API","description":"General API information and utilities."}],"servers":[{"url":"https://public-api.gurupay.eu","description":"Production API Server"},{"url":"https://public-api-dev.gurupay.eu","description":"Sandbox API Server"}],"security":[],"paths":{"/api/v1/ping":{"get":{"tags":["API"],"summary":"Ping API","description":"A simple endpoint to check if the API is responsive.","operationId":"API.Util.Ping","responses":{"200":{"description":"Successful response indicating the API is up.","content":{"application/json":{"schema":{"properties":{"status":{"type":"string"}},"type":"object"}}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.gurupay.eu/api-reference/health-check.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
