Resources & Reserves Index
GET /v2/mining/resources-reserves/
Returns a discovery list of provinces showing which years and commodities have data.
This index endpoint does not accept any query parameters.
{
"Aceh": {
"Gold": [2024, 2023, 2022],
"Copper": [2024, 2023]
},
"Banten": {
"Gold": [2024, 2023]
}
}
Authorization header that should be filled with your Sectors Financial API
key.
Province Data Detail
GET /v2/mining/resources-reserves/{province}/
Returns resources and reserves data for a single province, nested by year then by commodity.
{
"province": "Aceh",
"data": {
"2024": {
"Gold": {
"exploration_target": 493110000.0,
"total_inventory": 12345000.0,
"resources": 250.5,
"reserves": 50.2,
"unit": "Mt"
}
}
}
}
Path Parameters
Filter mining sites by exact province name (e.g., Kalimantan Timur).
Query Parameters
Restrict results to a specific year.
Restrict results to a specific commodity (e.g., Gold, Nickel, Coal).
Response
The name of the requested province.
A nested object where keys are years, containing commodity data.
Show Commodity properties