Skip to main content
GET
/
v2
/
mining
/
sales-destination
/
{slug}
Company Sales Destinations
curl --request GET \
  --url https://api.sectors.app/v2/mining/sales-destination/{slug}/ \
  --header 'Authorization: <api-key>'
{
  "year": 2024,
  "data": {
    "China": {
      "revenue_usd": null,
      "percentage_of_total_revenue": null,
      "volume": null,
      "percentage_of_sales_volume": 16,
      "commodity_type": "Coal",
      "unit": "Mt"
    },
    "India": {
      "revenue_usd": null,
      "percentage_of_total_revenue": null,
      "volume": null,
      "percentage_of_sales_volume": 11,
      "commodity_type": "Coal",
      "unit": "Mt"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

slug
string
required

The company's unique identifier slug (e.g., adaro-energy).

Query Parameters

year
integer

The year to retrieve. Defaults to the latest available year.

Response

Sales destination data nested by country for the requested year.

year
integer
required

Reporting year.

data
object
required

Sales data keyed by country name. Each entry contains revenue_usd, percentage_of_total_revenue, volume, percentage_of_sales_volume, commodity_type, and unit.