GMX · Schema

TradesListResponse

DeFiPerpetual ExchangeDEXTradingLeverageLiquidity PoolsGLPGM TokensGLVArbitrumAvalancheWeb3

Properties

Name Type Description
hasMore boolean
nextCursor string
trades array
View JSON Schema on GitHub

JSON Schema

TradesListResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/gmx/json-schema/TradesListResponse.json",
  "title": "TradesListResponse",
  "properties": {
    "hasMore": {
      "type": "boolean"
    },
    "nextCursor": {
      "type": "string",
      "nullable": true
    },
    "trades": {
      "items": {
        "$ref": "#/components/schemas/TradeResponse"
      },
      "type": "array"
    }
  },
  "required": [
    "hasMore",
    "nextCursor",
    "trades"
  ],
  "type": "object"
}