---
title: "Mining Company Ownership"
method: GET
path: "/v2/mining/companies/ownership/{slug}/"
tags: ["Companies"]
---

# Mining Company Ownership

`GET /v2/mining/companies/ownership/{slug}/`

Returns the corporate ownership tree for a mining company — showing parent companies (who owns it) and subsidiaries (what it owns) with percentage stakes.

<Info>Costs 1 API credit.</Info>

## Path parameters

- `slug` string, required

## Response `200`

Ownership tree with parents and subsidiaries.

- MiningCompanyOwnership
  - `slug` string, required — Company slug.
  - `parents` OwnershipParentItem[], required
    - `name` string, required — Parent company name.
    - `slug` string, required — Parent company slug.
    - `symbol` string, nullable, required — IDX symbol.
    - `percentage_ownership` number, double, required — Ownership stake (%).
  - `subsidiaries` OwnershipSubsidiaryItem[], required
    - `name` string, required — Subsidiary company name.
    - `slug` string, required — Subsidiary company slug.
    - `symbol` string, nullable, required — IDX symbol.
    - `percentage_ownership` number, double, required — Ownership stake (%).

## Other responses

- `404` — Company not found.
- `429` — Rate limit exceeded.

---

[API](https://skmtc.dev/sectors/apis/sectors-api.md) · [All operations](https://skmtc.dev/sectors/apis/sectors-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sectors/sectors-api/revisions/49e492f19d77/schema)
