Skip to main content
GET
https://api.sectors.app
/
v2
/
mining-license-auctions
List Mining License Auctions
curl --request GET \
  --url https://api.sectors.app/v2/mining-license-auctions/ \
  --header 'Authorization: <authorization>'
{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 7,
            "commodity": "Coal",
            "city": "Kotawaringin Timur",
            "province": "Kalimantan Tengah",
            "company_name": "Natai Baru Raya",
            "date_winner": "30 Mei 2024",
            "auction_status": "Lelang Selesai",
            "jumlah_peserta": 6
        },
        {
            "id": 4,
            "commodity": "Coal",
            "city": "Kapuas",
            "province": "Kalimantan Tengah",
            "company_name": "Element Tujuh Sembilan Indonesia",
            "date_winner": "28 Mei 2024",
            "auction_status": "Lelang Selesai",
            "jumlah_peserta": 4
        }
    ]
}
{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 7,
            "commodity": "Coal",
            "city": "Kotawaringin Timur",
            "province": "Kalimantan Tengah",
            "company_name": "Natai Baru Raya",
            "date_winner": "30 Mei 2024",
            "auction_status": "Lelang Selesai",
            "jumlah_peserta": 6
        },
        {
            "id": 4,
            "commodity": "Coal",
            "city": "Kapuas",
            "province": "Kalimantan Tengah",
            "company_name": "Element Tujuh Sembilan Indonesia",
            "date_winner": "28 Mei 2024",
            "auction_status": "Lelang Selesai",
            "jumlah_peserta": 4
        }
    ]
}
Authorization
string
required
Authorization header that should be filled with your Sectors Financial API key.

Query Parameters

commodity
string
Filter by commodity (e.g., ‘Coal’).
province
string
Filter by province name (e.g., ‘Kalimantan Tengah’).
status
string
Filter by auction status (e.g., ‘Lelang Selesai’).
page
integer
default:"1"
A page number within the paginated result set.
page_size
integer
default:"20"
Number of results to return per page. Maximum value is 30.

Response

count
integer
The total number of auctions available.
next
string | null
The URL for the next page of results, or null if no more pages.
previous
string | null
The URL for the previous page of results, or null if on the first page.
results
Auction[]
An array of mining license auction objects.