Euler Finance · Example Payload

Gettokensbychainidbyaddressprice

Prices

Gettokensbychainidbyaddressprice 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": "getTokensByChainIdByAddressPrice",
  "method": "GET",
  "path": "/v3/tokens/{chainId}/{address}/price",
  "summary": "Token price",
  "description": "",
  "tags": [
    "Prices"
  ],
  "parameters": [
    {
      "name": null,
      "in": null,
      "required": false
    },
    {
      "name": null,
      "in": null,
      "required": false
    }
  ],
  "responses": {
    "200": {
      "description": "Token price",
      "schema": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/Price"
          },
          "meta": {
            "type": "object",
            "properties": {
              "timestamp": {
                "type": "string",
                "format": "date-time"
              }
            }
          }
        }
      }
    }
  }
}