Get a company's mining assets
Return every company-asset relation for one company — current relations first, historical ones retained so an ownership timeline can be reconstructed. Each row carries the related asset, the company's role and ownership stake, the effective dates, and the source URL evidencing the relation. Unpaginated: a company's whole portfolio is returned in one call.
Authorization
apiKeyAuth Organization API key, format pulse_<prefix>_<secret>. Created by an organization admin in Settings -> API Keys.
In: header
Path Parameters
Company id.
Response Body
The company's asset relations. Empty `results` when it has none.
A company's asset relations, current first.
curl -X GET "https://example.com/v1/companies/0/mining-assets/" \ -H "Authorization: Bearer $PULSE_API_KEY"{ "results": [ { "mining_asset": { "id": 29144, "name": "Diablillos Silver-Gold Project", "phase": "development", "stage": "pre_feasibility", "country": "Argentina", "primary_commodity": "Ag" }, "role": "operator", "role_label": "Operator", "is_owner": true, "is_current": true, "interest": "100% owner and operator of the Diablillos Silver-Gold Project", "ownership_fraction": 1, "start_date": "2016-09-01", "end_date": null, "source_url": null }, { "mining_asset": { "id": 29853, "name": "La Coipita Copper-Gold-Molybdenum Project", "phase": "exploration", "stage": "drilling", "country": "Argentina", "primary_commodity": "Cu" }, "role": "jv", "role_label": "Joint Venture", "is_owner": true, "is_current": true, "interest": "100% owner; party to 2024 option/JV with Teck to form 80/20 Newco upon option exercise", "ownership_fraction": 1, "start_date": "2020-03-02", "end_date": null, "source_url": null } ], "count": 4}GETGet company reserves and resources
Return the company's elected reserves and resources estimates, newest effective date first — one row per commodity and as-of date, carrying reserves, total resources, measured & indicated, inferred, and total inventory. Quantities are the company's **attributable** share, as contained metal in elemental kilograms, each alongside a formatted label and that tier's ore grade. Unpaginated: every estimate on file is returned in one call.
POSTSearch mining assets
Screen mining assets — projects, deposits, mines, and facilities — by a curated set of filterable fields such as commodity, geography, and lifecycle stage. Returns matching assets with the requested columns, or a default column set if none are requested.