My App

List all available collateral assets

Retrieve a list of all collateral assets available on the perpetual exchange, including their metadata and related information.

GET
/assets
OBSIDIAN-KEY<token>

In: header

OBSIDIAN-SECRET<token>

In: header

Response Body

application/json

application/json

curl -X GET "https://api.dev.obsidian.exchange/assets"
{
  "assets": [
    {
      "asset": "string",
      "address": "string",
      "logo_uri": "string",
      "decimals": 0,
      "margin_ratio": "string",
      "minimum_withdrawal": "string",
      "withdrawal_fee": "string"
    }
  ]
}
{
  "code": 0,
  "message": "string",
  "details": [
    {
      "@type": "string",
      "property1": null,
      "property2": null
    }
  ]
}