Skip to main content
GET
/
v2
/
mining
/
resources-reserves
/
{province}
Resources & Reserves Detail
curl --request GET \
  --url https://api.sectors.app/v2/mining/resources-reserves/{province}/ \
  --header 'Authorization: <api-key>'
{
  "province": "Aceh",
  "data": {
    "2024": {
      "Gold": {
        "exploration_target": 493110000,
        "total_inventory": 12345000,
        "resources": 250.5,
        "reserves": 50.2,
        "unit": "Mt"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

API key passed directly in the Authorization header (without Bearer prefix).

Path Parameters

province
string
required

Exact province name (e.g., Kalimantan Timur). Case-insensitive.

Query Parameters

commodity_type
string

Restrict results to a specific commodity.

year
integer

Restrict results to a specific year.

Response

Nested resources and reserves data: {province, data: {year: {commodity: {...}}}}.

{key}
any