Skip to content
GET /v1/list

All metals at once

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

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

Get an API key

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

Example response

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