Single Assets Hourly

The single assets hourly endpoint returns values for a specific single asset index that is calculated on an hourly 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_hourly/

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

Query Parameters

Headers

{
    "result": "success",
    "message": "Success",
    "data": [
        {
            "id": 1923803,
            "created_at": "2022-11-18T11:00:09.744Z",
            "symbol": "btc-usd-p-h",
            "value": 16761.73,
            "timestamp": 1668769209743,
            "date": "2022-11-18",
            "hour": 11
        }
    ],
    "params": {
        "symbol": "btc-usd-p-h"
    }
}

Please read the following for detailed information on parameters.

Last updated