> For the complete documentation index, see [llms.txt](https://docs.datarhei.com/core/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.datarhei.com/core/api/ping.md).

# Ping

The `/ping` endpoint returns a plain text `pong` response. This can be used for liveliness and/or latency checks.

{% tabs %}
{% tab title="Curl" %}

```
curl http://127.0.0.1:8080/ping
```

{% endtab %}

{% tab title="PyClient" %}

```python
from core_client import Client

client = Client(
    base_url="http://127.0.0.1:8080"
)
client.login()

core_ping = client.ping()
print(core_ping)
```

{% endtab %}

{% tab title="GoClient" %}
This is currently not implemented.
{% endtab %}
{% endtabs %}
