Symbols

Get info about available symbols and product configuration

Rate limits

  • 1200 requests/min or 30 requests/sec per IP address. (weight = 2)

See more details in API Rate limits

Request

Connect

WEBSOCKET [GATEWAY_WEBSOCKET_ENDPOINT]

Message

{
  "type": "symbols",
  "product_ids": [1, 2, 3, 4],
  "product_type": "spot"
}

Request Parameters

Response

Note:

  • All products have are quoted against USDC, except for product 0.

{
  "status": "success",
  "data": {
    "symbols": {
      "WETH": {
        "type": "spot",
        "product_id": 3,
        "symbol": "WETH",
        "price_increment_x18": "100000000000000000",
        "size_increment": "10000000000000000",
        "min_size": "100000000000000000",
        "min_depth_x18": "5000000000000000000000",
        "max_spread_rate_x18": "2000000000000000",
        "maker_fee_rate_x18": "0",
        "taker_fee_rate_x18": "300000000000000",
        "long_weight_initial_x18": "900000000000000000",
        "long_weight_maintenance_x18": "950000000000000000"
      },
      "WBTC": {
        "type": "spot",
        "product_id": 1,
        "symbol": "WBTC",
        "price_increment_x18": "1000000000000000000",
        "size_increment": "1000000000000000",
        "min_size": "10000000000000000",
        "min_depth_x18": "5000000000000000000000",
        "max_spread_rate_x18": "2000000000000000",
        "maker_fee_rate_x18": "0",
        "taker_fee_rate_x18": "300000000000000",
        "long_weight_initial_x18": "900000000000000000",
        "long_weight_maintenance_x18": "950000000000000000"
      }
    }
  },
  "request_type": "query_symbols"
}

Response fields

Symbols

All numerical values are returned as strings and scaled by 1e18.

Learn more about the Vertex Maker Program here

Last updated