Euler Finance · Example Payload

Gethealthdetailed

Health

Gethealthdetailed 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": "getHealthDetailed",
  "method": "GET",
  "path": "/v3/health/detailed",
  "summary": "Dependency health check",
  "description": "",
  "tags": [
    "Health"
  ],
  "responses": {
    "200": {
      "description": "OK",
      "schema": {
        "type": "object",
        "required": [
          "data",
          "meta"
        ],
        "properties": {
          "data": {
            "$ref": "#/components/schemas/DetailedHealthResponse"
          },
          "meta": {
            "$ref": "#/components/schemas/PaginationMeta"
          }
        }
      }
    }
  }
}