/v1/ping
GET
/v1/ping
const url = 'http://localhost:8787/v1/ping';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8787/v1/pingResponses
Section titled “Responses”Liveness check.
Media typeapplication/json
object
ok
required
boolean
ts
required
string
Example
{ "ok": true}