Euler Finance · Example Payload

Getadminapikeysbyidusage

Auth

Getadminapikeysbyidusage 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": "getAdminApiKeysByIdUsage",
  "method": "GET",
  "path": "/v3/admin/api-keys/{id}/usage",
  "summary": "Usage stats for an API key (admin)",
  "description": "",
  "tags": [
    "Auth"
  ],
  "parameters": [
    {
      "name": "id",
      "in": "path",
      "required": true,
      "example": "string"
    },
    {
      "name": "days",
      "in": "query",
      "required": false,
      "example": 0
    }
  ],
  "responses": {
    "200": {
      "description": "Usage stats",
      "schema": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ApiKeyUsageResponse"
          }
        }
      }
    }
  }
}