Euler Finance · Example Payload

Getprotocolstats

Returns EVK lending aggregates across the selected chains. `earnTotalAssetsUsd` is reported separately and is not part of `totalSuppliedUsd` or `utilization`.

Protocol

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

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersresponses

Example Payload

Raw ↑
{
  "operationId": "getProtocolStats",
  "method": "GET",
  "path": "/v3/protocol/stats",
  "summary": "Protocol-wide EVK lending stats across chains",
  "description": "Returns EVK lending aggregates across the selected chains. `earnTotalAssetsUsd` is reported separately and is not part of `totalSuppliedUsd` or `utilization`.",
  "tags": [
    "Protocol"
  ],
  "parameters": [
    {
      "name": null,
      "in": null,
      "required": false
    }
  ],
  "responses": {
    "200": {
      "description": "Protocol stats",
      "schema": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProtocolStats"
          },
          "meta": {
            "$ref": "#/components/schemas/PaginationMeta"
          }
        }
      }
    }
  }
}