Pulse Intelligence
Mining Assets

Get a mining asset's companies

Return every company-asset relation for one mining asset — the mirror of `GET /v1/companies/{id}/mining-assets/`. Current relations come first; historical ones are retained so a change of owner or operator stays visible. Unpaginated: an asset's whole relation history is returned in one call.

GET/v1/mining-assets/{id}/companies/

Authorization

apiKeyAuth
AuthorizationBearer <token>

Organization API key, format pulse_<prefix>_<secret>. Created by an organization admin in Settings -> API Keys.

In: header

Path Parameters

id*integer

Mining asset id.

Response Body

The asset's company relations. Empty `results` when it has none.

An asset's company relations, current first.

curl -X GET "https://example.com/v1/mining-assets/0/companies/" \  -H "Authorization: Bearer $PULSE_API_KEY"
{  "results": [    {      "company": {        "id": 5700,        "name": "AbraSilver Resource Corp"      },      "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    }  ],  "count": 1}