My App

List all available products

Retrieve a list of all trading products available on the exchange, including their metadata and 24-hour statistics.

GET
/products
OBSIDIAN-KEY<token>

In: header

OBSIDIAN-SECRET<token>

In: header

Response Body

application/json

application/json

curl -X GET "https://api.dev.obsidian.exchange/products"
{
  "products": [
    {
      "index": "string",
      "id": "string",
      "display_name": "string",
      "display_base_asset_symbol": "string",
      "enabled": true,
      "visible": true,
      "post_only": true,
      "base_asset_symbol": "string",
      "quote_asset_symbol": "string",
      "base_increment": "string",
      "price_increment": "string",
      "max_leverage": "string",
      "min_order_size": "string",
      "volume_24h": "string",
      "quote_volume_24h": "string",
      "change_24h": "string",
      "high_24h": "string",
      "low_24h": "string",
      "last_price": "string",
      "open_interest": "string",
      "funding_interval": "string",
      "next_funding_time": "string",
      "last_cumulative_funding": "string",
      "predicted_funding_rate": "string",
      "mark_price": "string",
      "index_price": "string",
      "oi_cap": "string"
    }
  ]
}
{
  "code": 0,
  "message": "string",
  "details": [
    {
      "@type": "string",
      "property1": null,
      "property2": null
    }
  ]
}