Active Single Assets

The active single assets endpoint returns information on all single assets indexes.

The endpoint returns the index symbols that you can use when you query other endpoints. The endpoint does not require an API key and does not accept any parameters. Example URL

Response Fields

FieldTypeDescription

symbol

string

The index symbol

contrib

array

Contributing markets, the market symbol is constructed as "base currency"-"quote currency"-"exchange"

GET https://vinterapi.com/api/v3/active_single_assets/

{
  "result": "success",
  "message": "Success",
  "data": [
    {
      "symbol": "waves-usd-p-d",
      "contrib": [
        "waves-usd-p-r"
      ]
    }
  ],
  "params": {
    
  }
}

Last updated