Active Net Asset Value

The active net asset value endpoint returns information on all active instruments where Vinter performs Net Asset Value calculations.

The endpoint returns the symbol for all active instruments you can use when you query other NAV endpoints. The endpoint does not require an API key and does not accept any parameters. Example URL

Response Fields

FieldTypeDescription

internal_symbol

string

The internal symbol for the instrument

external_symbol

string

The external symbol for the instrument

full_name

string

The full name of the instrument

ISIN

string

International Securities Identification Number

GET https://www.vinterapi.com/api/v3/active_nav/

{
  "result": "success",
  "message": "Success",
  "data": [
    {
      "internal_symbol": "vnfa-aeti-15-d",
      "external_symbol": "AETI",
      "full_name": "Selected Crypto Assets ETI",
      "isin": "DE000A3GZET8"
    },
    {
      "internal_symbol": "vnfa-aeti-15-h",
      "external_symbol": "AETI",
      "full_name": "Selected Crypto Assets ETI",
      "isin": "DE000A3GZET8"
    },
    {
      "internal_symbol": "vnfa-btca-15-d",
      "external_symbol": "BTCA",
      "full_name": "15 FiCAS Active Crypto ETP",
      "isin": "CH0548689600"
    },
    {
      "internal_symbol": "vnfa-btca-15-h",
      "external_symbol": "BTCA",
      "full_name": "15 FiCAS Active Crypto ETP",
      "isin": "CH0548689600"
    }
  ],
  "params": {
    
  }
}

Last updated