# Ping

Ping is a health check endpoint.
It verifies the service is currently reachable.
This also checks that an API token is still valid.
This is a simple endpoint call.
It takes no parameters and returns no response body.
A successful call returns only a 200 OK.
That minimalism is intentional.
It is typically hit frequently and automatically rather than as part of real business logic.
This endpoint is useful as:
* an application startup check when an integration boots.
* a periodic keep-alive in a monitoring dashboard,
* a quick manual test after rotating an API key.

It shares the same error-handling shape as every other endpoint, such as response codes for 400, 401, 403, 429, or 500.
These error response codes are diagnostically useful, too.
For example, a response code of 401 indicates the API token is bad or expired.
<span class="api-seealso">See Also:</span><br>
To ping a webhook endpoint, see `POST /v2/webhooks/endpoints/{{webhookId}}/ping`

 - [GET /v2/ping](https://developer.flute.com/api-reference/v2/ping/flute-v2-get-ping.md): <a id="flute-v2-get-ping"></a> <span class="api-endpoint">GET {{<a href="#urlbases">baseURL</a>}}/v2/ping</span> This endpoint pings an endpoint to validate the API token is active and valid. Returns
