Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/yieldfarming-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/yieldfarming-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/yieldfarming-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/yieldfarming-api/v1/meta");
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/yieldfarming-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "pools takes asset, project, chain, stablecoin, exposure (single|multi), il_risk (yes|no), min_tvl, sort (apy|apy_mean_30d|sustained|tvl|volume), include_outliers, limit (1-300), offset. best takes the same filters + limit (ranked by 30-day APY, min_tvl default 1,000,000). project takes project (required slug), min_tvl, limit. meta takes no parameters. APYs are in percent. Spot apy can spike; apy_mean_30d is the honest smoothed figure. A 10-minute protective cache fronts the shared DeFiLlama upstream.",
        "source": "DeFiLlama yields API (yields.llama.fi/pools, non-lending), live, keyless",
        "service": "yieldfarming-api",
        "endpoints": {
            "GET /v1/best": "Highest-yielding farms ranked by sustained 30-day APY (stablecoin=true for lower risk).",
            "GET /v1/meta": "This document.",
            "GET /v1/pools": "Yield-farming screener across non-lending pools (filter + sort).",
            "GET /v1/project": "One protocol's pools summarised (project=uniswap-v3)."
        },
        "description": "DeFi yield farming — the best liquidity-pool, staking and vault yields across DeFi with the risk profile that decides if an APY is worth farming, live from DeFiLlama (no key). pools is the full screener (current + 30-day APY, impermanent-loss risk, exposure, stablecoin, TVL, volume, APY outlook), filterable by project/chain/asset/stablecoin/exposure/il_risk/min_tvl; best returns the highest-yielding farms ranked by the smoothed 30-day APY; project summarises one protocol's pools. The LP/staking/vault yield-farming cut — distinct from the money-market lending-rate API (which it excludes), TVL analytics and price feeds.",
        "upstream_status": "ok",
        "farming_pool_count": 14203,
        "top_farm_by_sustained_apy": {
            "chain": "Solana",
            "symbol": "WSOL-USDC",
            "project": "raydium-amm",
            "sustained_apy": 34.6902
        }
    },
    "meta": {
        "timestamp": "2026-06-12T19:37:55.719Z",
        "request_id": "0b27c129-d9b7-4df2-a965-623c7a041d82"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}