Single Assets Daily

The single assets daily endpoint returns values for a specific single asset index 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://www.vinterapi.com/api/v3/single_assets_daily/

This is a sample response for asset btc-usd-p-d

Query Parameters

Headers

{
    "result": "success",
    "message": "Success",
    "data": [
        {
            "id": 3140634,
            "created_at": "2022-11-17T16:00:12.401Z",
            "symbol": "btc-usd-p-d",
            "value": 16581.89,
            "timestamp": 1668700812400,
            "date": "2022-11-17"
        }
    ],
    "params": {
        "symbol": "btc-usd-p-d"
    }
}

Please read the following for detailed information on parameters.

Last updated