Euler Finance · Example Payload

Getrewardsbreakdown

Rewards

Getrewardsbreakdown 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": "getRewardsBreakdown",
  "method": "GET",
  "path": "/v3/rewards/breakdown",
  "summary": "Per-user reward breakdowns",
  "description": "",
  "tags": [
    "Rewards"
  ],
  "parameters": [
    {
      "name": null,
      "in": null,
      "required": false
    },
    {
      "name": "account",
      "in": "query",
      "required": true,
      "example": "string"
    },
    {
      "name": "vault",
      "in": "query",
      "required": false,
      "example": "string"
    }
  ],
  "responses": {
    "200": {
      "description": "Reward breakdowns",
      "schema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "meta": {
            "$ref": "#/components/schemas/PaginationMeta"
          }
        }
      }
    }
  }
}