Skip to main content
GET /api/v1/spot_assets

Query Parameters

ParameterTypeRequiredDescription
”include_inactive”booleanNoInclude inactive spot assets. Defaults to false.
”collateral_enabled_only”booleanNoOnly return assets enabled as collateral. Defaults to false.

Response

  • Status 200: Success
{
  "success": true,
  "data": [
    {
      "symbol": "SOL",
      "tick_size": "0.01",
      "lot_size": "0.01",
      "active": true,
      "collateral_enabled": true,
      "ltv_ratio": "0.80",
      "created_at": 1716200000000,
      "updated_at": 1716200000000
    }
  ],
  "error": null,
  "code": null
}
FieldTypeDescription
”symbol”stringSpot asset symbol
”tick_size”decimal stringMinimum price increment
”lot_size”decimal stringMinimum quantity increment
”active”booleanWhether the asset is currently active for trading
”collateral_enabled”booleanWhether the asset can be used as unified margin collateral
”ltv_ratio”decimal stringLoan-to-value ratio when used as collateral (e.g. “0.80” = 80%)
“created_at”integerTimestamp in milliseconds
”updated_at”integerTimestamp in milliseconds
Results are sorted alphabetically by symbol.
  • Status 500: Internal server error

Code Example (Python)

import requests

response = requests.get(
    "/api/v1/spot_assets",
    headers={"Accept": "*/*"},
)

data = response.json()