Skip to main content
GET
/
v2
/
mining
/
resources-reserves
National Resources and Reserves
curl --request GET \
  --url https://api.sectors.app/v2/mining/resources-reserves/ \
  --header 'Authorization: <authorization>'
{
    "Aceh": {
        "Gold": [2024, 2023, 2022],
        "Copper": [2024, 2023]
    },
    "Banten": {
        "Gold": [2024, 2023]
    }
}

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
string
required
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

province
string
required
Filter mining sites by exact province name (e.g., Kalimantan Timur).

Query Parameters

year
integer
Restrict results to a specific year.
commodity_type
string
Restrict results to a specific commodity (e.g., Gold, Nickel, Coal).

Response

province
string
The name of the requested province.
data
object
A nested object where keys are years, containing commodity data.