Euler Finance · Example Payload

Getroot

Protocol

Getroot 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": "getRoot",
  "method": "GET",
  "path": "/v3",
  "summary": "Service metadata",
  "description": "",
  "tags": [
    "Protocol"
  ],
  "responses": {
    "200": {
      "description": "Service metadata",
      "schema": {
        "type": "object",
        "required": [
          "data",
          "meta"
        ],
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "version": {
                "type": "string"
              },
              "docs": {
                "type": "string"
              },
              "openapi": {
                "type": "string"
              },
              "health": {
                "type": "string"
              }
            }
          },
          "meta": {
            "$ref": "#/components/schemas/PaginationMeta"
          }
        }
      }
    }
  }
}