GMX · Example Payload

Getannualized

Performance

Getannualized is an example object payload from GMX, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

methodpathoperationIdsummarytagsparametersresponses

Example Payload

Raw ↑
{
  "method": "GET",
  "path": "/performance/annualized",
  "operationId": "GetAnnualized",
  "summary": "",
  "tags": [
    "Performance"
  ],
  "parameters": [
    {
      "in": "query",
      "name": "period",
      "required": false,
      "schema": {
        "$ref": "#/components/schemas/ApiParameterPeriod"
      }
    },
    {
      "in": "query",
      "name": "address",
      "required": false,
      "schema": {
        "type": "string"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "Success",
      "schema": {
        "items": {
          "properties": {
            "entity": {
              "type": "string"
            },
            "performance": {
              "type": "string"
            },
            "address": {
              "type": "string"
            }
          },
          "required": [
            "entity",
            "address"
          ],
          "type": "object"
        },
        "type": "array"
      }
    }
  }
}