Skip to content
GET /v1/asset

One asset by symbol

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/solend-api

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

Get an API key

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}