Euler Finance · Example Payload

Gethealthlive

Health

Gethealthlive is an example object payload from Euler Finance, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsresponses

Example Payload

Raw ↑
{
  "operationId": "getHealthLive",
  "method": "GET",
  "path": "/v3/health/live",
  "summary": "Liveness probe",
  "description": "",
  "tags": [
    "Health"
  ],
  "responses": {
    "200": {
      "description": "OK",
      "schema": {
        "type": "object",
        "required": [
          "data",
          "meta"
        ],
        "properties": {
          "data": {
            "type": "object",
            "required": [
              "status"
            ],
            "properties": {
              "status": {
                "type": "string",
                "enum": [
                  "ok"
                ]
              }
            }
          },
          "meta": {
            "$ref": "#/components/schemas/PaginationMeta"
          }
        }
      }
    }
  }
}