Commodities — Precious Metals
Gold, silver & platinum — city-wise + national + history. Gold includes 24K / 22K / 18K rates.
Endpoints
GET/commodities?metal=gold
All locations for a metal. Defaults to gold.
GET/commodities?metal=silver
Switch metal —
gold · silver · platinum.GET/commodities?metal=gold&city=delhi
Single city — 24K/22K/18K gold rates.
GET/commodities/cities
List available cities for a metal.
GET/commodities/search?q=del
Fuzzy location search.
GET/commodities/history?metal=gold&city=india&days=7
Metal price history — trend charts (max 90 days).
GET/commodities/latest
Latest metal crawl status.
Query Parameters
| Parameter | Values | Default | Required | Notes |
|---|---|---|---|---|
metal | gold · silver · platinum | gold | ❌ | Metal selector |
city | delhi, mumbai, kolkata… | — | ❌ | Case-insensitive |
type | city · state | — | ❌ | Location type filter |
q | any string | — | ✅ | For /commodities/search |
days | 1–90 | 7 | ❌ | History window |
Example — Gold in Delhi
curl "https://apiw.proxynex.pro/commodities?metal=gold&city=delhi"
{
"status": "ok",
"metal": "gold",
"count": 1,
"data": [
{
"commodity": "gold",
"location": "Delhi",
"unit": "per_gram_24k",
"price": "14437.00",
"details": {
"price_22k": 13225,
"price_18k": 10831
}
}
]
}
Example — National Gold History
curl "https://apiw.proxynex.pro/commodities/history?metal=gold&city=india&days=7"
{
"status": "ok",
"metal": "gold",
"city": "india",
"data": [
{ "location": "India", "price": "14422.00", "date": "2026-08-02" },
{ "location": "India", "price": "14422.00", "date": "2026-08-01" }
]
}
Available Metals
| Metal | Unit | Details |
|---|---|---|
| gold | per_gram_24k | price_22k, price_18k in details |
| silver | per_10g | — |
| platinum | per_gram | — |