/v1/list
All metals at once
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/metals-api/v1/list" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/metals-api/v1/list", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/metals-api/v1/list");
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/metals-api/v1/list",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 5,
"metals": [
{
"name": "Gold",
"unit": "troy ounce",
"price": 4337.7002,
"symbol": "XAU",
"price_usd": 4337.7002,
"updated_at": "2026-06-09T03:03:08Z"
},
{
"name": "Silver",
"unit": "troy ounce",
"price": 67.831,
"symbol": "XAG",
"price_usd": 67.831,
"updated_at": "2026-06-09T03:03:08Z"
},
{
"name": "Platinum",
"unit": "troy ounce",
"price": 1765,
"symbol": "XPT",
"price_usd": 1765,
"updated_at": "2026-06-09T03:03:11Z"
},
{
"name": "Palladium",
"unit": "troy ounce",
"price": 1247,
"symbol": "XPD",
"price_usd": 1247,
"updated_at": "2026-06-09T03:03:10Z"
},
{
"name": "Copper",
"unit": "pound",
"price": 6.2313,
"symbol": "HG",
"price_usd": 6.2313,
"updated_at": "2026-06-09T03:03:10Z"
}
],
"currency": "USD"
},
"meta": {
"timestamp": "2026-06-09T03:03:24.699Z",
"request_id": "c584469d-c754-4a7b-b73e-f1d9b72ea068"
},
"status": "ok",
"message": "Metals listed successfully",
"success": true
}