Health
Use this endpoint to verify API-key connectivity and basic service availability.
Generated from contracts in
packages/contracts/src/v1. Do not hand-edit this page.
GET /v1/health/ping
Returns service heartbeat and server time.
Response schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"ok": {
"type": "boolean",
"const": true
},
"time": {
"type": "string",
"description": "ISO 8601 timestamp of the server's current time"
}
},
"required": [
"ok",
"time"
],
"additionalProperties": false
}