Skip to content

How to Ping your Backend

Overview

Send a request to the following endpoint to ping your backend:

/.well-known/ping

Example

Ping the backend hosted at base.example.com using curl:

bash
curl https://base.example.com/.well-known/ping

You should receive the following as a response:

json
{
    "ping": "pong"
}