Staking Yields Daily

The staking yields daily endpoint returns staking rates for different protocols.

The endpoint requires an API key, and the protocol's symbol is specified using the symbol parameter. If the limit parameter is not specified, the latest value is returned. To ensure the 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/staking_yields_daily/

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

Query Parameters

Headers

{
    "result": "success",
    "message": "Success",
    "data": [
        {
            "id": 55,
            "created_at": "2023-02-20T14:00:00.792Z",
            "symbol": "ada-apr-2-d",
            "value": 3.65,
            "timestamp": 1676901600599,
            "date": "2023-02-20"
        }
    ],
    "params": {
        "symbol": "ada-apr-2-d"
    }
}

Please read the following for detailed information on parameters.

Last updated