Skip to main content
GET
/
v2
/
mining
/
license-auctions
Mining License Auctions
curl --request GET \
  --url https://api.sectors.app/v2/mining/license-auctions/ \
  --header 'Authorization: <api-key>'
{
  "results": [
    {
      "commodity_type": "Nickel",
      "city": "Luwu Timur",
      "province": "Sulawesi Selatan",
      "company_name": "Aneka Tambang",
      "winner_date": "2024-06-20",
      "licensed_area_ha": 4252,
      "license_number": "56.K/MB.01/MEM.B/2023",
      "area_type": "WIUPK",
      "kdi": "14409850000",
      "wiup_code": "1473242122023001",
      "auction_status": "Lelang Selesai",
      "participant_count": 3,
      "winner": true,
      "company_slug": "pt-aneka-tambang-tbk"
    }
  ],
  "pagination": {
    "total_count": 1,
    "showing": 1,
    "limit": 20,
    "offset": 0,
    "has_next": false,
    "has_previous": false,
    "next_offset": null,
    "previous_offset": null
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

province
string

Filter by province (e.g., Sulawesi Selatan). Case-insensitive.

commodity_type
string

Filter by commodity (e.g., Nickel, Coal). Case-insensitive.

order_by
enum<string>

Sort field. Prefix with - for descending. Default: -winner_date.

Available options:
-commodity_type,
-licensed_area_ha,
-participant_count,
-winner_date,
commodity_type,
licensed_area_ha,
participant_count,
winner_date
limit
integer
default:20

Number of results to return. Maximum: 30.

offset
integer
default:0

Number of results to skip.

area_type
string

Filter by area type (e.g., WIUPK). Case-insensitive.

status
string

Filter by auction status (e.g., Lelang Selesai). Case-insensitive.

participant
string

Filter auctions where a company name (partial match) participated.

qualified
boolean

When true, only return auctions where the participant passed qualification. Requires participant.

min_participants
integer

Only return auctions with at least this many participants.

Response

Paginated list of mining license auctions.

{key}
any