Zum Inhalt springen
GET /v1/asset

One asset by symbol

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/solend-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "asset": "SOL",
        "chain": "Solana",
        "market": "main",
        "source": "Solend",
        "address": "8PbodeaosQP19SjYFx855UMqWxH2HynZLdBXmsrbac36",
        "protocol": "Solend / Save",
        "price_usd": 66.473917,
        "borrow_apy_pct": 4.95,
        "supply_apy_pct": 2.94,
        "utilization_pct": 74.64,
        "total_borrow_usd": 10209412.19,
        "total_supply_usd": 13677819.52
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:18.513Z",
        "request_id": "545db522-4506-4761-bdf1-e3f62c71d43e"
    },
    "status": "ok",
    "message": "Asset retrieved successfully",
    "success": true
}