Leveraged Multi Assets Daily

The leveraged assets daily endpoint returns values for a specific leveraged asset that is calculated on a daily basis.

The endpoint requires an API key and it requires that the symbol of the index is specified using the symbol parameter. If the limit parameter is not specified the latest value is returned. To ensure chronological ordering of the index values you should sort the values using the timestmp field. The endpoint only returns a maximum of 2000 records Example URL

Response Fields

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

This is a sample response for asset vntr-mcc-30-x-1-d

Query Parameters

Headers

{
  "result": "success",
  "message": "Success",
  "data": [
    {
      "id": 24,
      "created_at": "2024-09-02T16:06:52.470Z",
      "symbol": "vntr-mcc-30-x-1-d",
      "value": 99.2465254750369,
      "timestamp": 1725293211864,
      "date": "2024-09-02"
    }
  ],
  "params": {
    "symbol": "vntr-mcc-30-x-1-d"
  }
}

Please read the following for detailed information on parameters.

Last updated