Assets

Retrieve details of all available assets on Vertex, including trading fees and asset type.

Rate limits

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

See more details in API Rate limits

Request

GET [GATEWAY_V2_ENDPOINT]/assets

Response

[
  {
    "product_id": 0,
    "ticker_id": null,
    "market_type": null,
    "name": "USDC",
    "symbol": "USDC",
    "taker_fee": null,
    "maker_fee": null,
    "can_withdraw": true,
    "can_deposit": true
  },
  {
    "product_id": 2,
    "ticker_id": "BTC-PERP_USDC",
    "market_type": "perp",
    "name": "Bitcoin Perp",
    "symbol": "BTC-PERP",
    "maker_fee": 0.0002,
    "taker_fee": 0,
    "can_withdraw": false,
    "can_deposit": false
  },
  {
    "product_id": 1,
    "ticker_id": "BTC_USDC",
    "market_type": "spot",
    "name": "Bitcoin",
    "symbol": "BTC",
    "taker_fee": 0.0003,
    "maker_fee": 0,
    "can_withdraw": true,
    "can_deposit": true
  }
]

Response Fields

Last updated