Euler Finance · Example Payload

Getchains

Chains

Getchains 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": "getChains",
  "method": "GET",
  "path": "/v3/chains",
  "summary": "List supported chains",
  "description": "",
  "tags": [
    "Chains"
  ],
  "responses": {
    "200": {
      "description": "Chains",
      "schema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Chain"
            }
          },
          "meta": {
            "$ref": "#/components/schemas/PaginationMeta"
          }
        }
      }
    }
  }
}