GMX · Example Payload

Getapy

APY

Getapy 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": "/apy",
  "operationId": "GetApy",
  "summary": "",
  "tags": [
    "APY"
  ],
  "parameters": [
    {
      "in": "query",
      "name": "period",
      "required": false,
      "schema": {
        "$ref": "#/components/schemas/ApiParameterPeriod"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "Success",
      "schema": {
        "$ref": "#/components/schemas/ApyResponse"
      }
    }
  }
}