Skip to content
GET /v1/history

A pool APY and TVL over time

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/yieldpool-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/yieldpool-api/v1/history" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/yieldpool-api/v1/history", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/yieldpool-api/v1/history");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/yieldpool-api/v1/history",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "APY (base + reward) and TVL for this pool over time, daily. timestamp is ISO-8601.",
        "pool": "747c1d2a-c668-4682-b9f9-296708a3dd90",
        "count": 90,
        "source": "DeFiLlama",
        "history": [
            {
                "apy": 2.41,
                "tvl_usd": 21352820748,
                "apy_base": 2.41,
                "timestamp": "2026-03-17T23:02:15.891Z",
                "apy_reward": null
            },
            {
                "apy": 2.39,
                "tvl_usd": 20199105328,
                "apy_base": 2.39,
                "timestamp": "2026-03-18T23:01:36.014Z",
                "apy_reward": null
            },
            {
                "apy": 2.46,
                "tvl_usd": 19786603356,
                "apy_base": 2.46,
                "timestamp": "2026-03-19T23:01:39.838Z",
                "apy_reward": null
            },
            {
                "apy": 2.45,
                "tvl_usd": 19852582547,
                "apy_base": 2.45,
                "timestamp": "2026-03-20T23:01:46.905Z",
                "apy_reward": null
            },
            {
                "apy": 2.38,
                "tvl_usd": 19743823926,
                "apy_base": 2.38,
                "timestamp": "2026-03-21T23:01:52.679Z",
                "apy_reward": null
            },
            {
                "apy": 2.93,
                "tvl_usd": 18763094759,
                "apy_base": 2.93,
                "timestamp": "2026-03-22T23:01:24.053Z",
                "apy_reward": null
            },
            {
                "apy": 2.5,
                "tvl_usd": 19761025070,
                "apy_base": 2.5,
                "timestamp": "2026-03-23T23:01:22.588Z",
                "apy_reward": null
            },
            {
                "apy": 2.44,
                "tvl_usd": 19717508855,
                "apy_base": 2.44,
                "timestamp": "2026-03-24T23:02:56.246Z",
                "apy_reward": null
            },
            {
                "apy": 2.42,
                "tvl_usd": 19842698181,
                "apy_base": 2.42,
                "timestamp": "2026-03-25T23:01:39.283Z",
                "apy_reward": null
            },
            {
                "apy": 2.46,
                "tvl_usd": 18955321206,
                "apy_base": 2.46,
                "timestamp": "2026-03-26T23:01:37.486Z",
                "apy_reward": null
            },
            {
                "apy": 2.46,
                "tvl_usd": 18238284039,
                "apy_base": 2.46,
                "timestamp": "2026-03-27T23:01:22.844Z",
                "apy_reward": null
            },
            {
                "apy": 2.41,
                "tvl_usd": 18451341645,
                "apy_base": 2.41,
                "timestamp": "2026-03-28T23:01:28.566Z",
                "apy_reward": null
            },
            {
                "apy": 2.38,
                "tvl_usd
…