Net Asset Value Hourly

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 timestamp field. The endpoint only returns a maximum of 2000 records Example URL

Response Fields

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

This is a sample response for asset vnfa-btca-15-h

Query Parameters

Headers

{
    "result": "success",
    "message": "Success",
    "data": [
        {
            "id": 49104,
            "symbol": "vnfa-btca-15-h",
            "created_at": "2023-03-01T08:00:00.000Z",
            "open": 100.72,
            "low": 100.61,
            "high": 100.97,
            "close": 100.83,
            "timestamp": 1677657600000,
            "date": "2023-03-01",
            "hour": 8
        }
    ],
    "params": {
        "symbol": "vnfa-btca-15-h"
    }
}

Please read the following for detailed information on parameters.

Last updated