Pulse Intelligence
Mining Assets

Get mining asset reserves and resources

Return the asset'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 **100% of the deposit** (not any one owner's 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.

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

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 elected reserves estimates. Empty `results` when none is on file.

Elected reserves and resources estimates for one entity, newest effective date first.

curl -X GET "https://example.com/v1/mining-assets/0/reserves/" \  -H "Authorization: Bearer $PULSE_API_KEY"
{  "results": [    {      "commodity": {        "symbol": "string",        "name": "string"      },      "basis": "attributable",      "source_publication_id": 0,      "source_url": "string",      "source_count": 0,      "published_date": "string",      "commodity_label": "string",      "is_equivalent": true,      "effective_date": "string",      "is_effective_date_stated": true,      "reporting_standard": "string",      "resources_inclusivity": "string",      "total_inventory_kg": 0,      "total_inventory_label": "string",      "reserves_kg": 0,      "reserves_label": "string",      "reserves_grade_label": "string",      "resources_kg": 0,      "resources_label": "string",      "resources_grade_label": "string",      "measured_indicated_kg": 0,      "measured_indicated_label": "string",      "measured_indicated_grade_label": "string",      "inferred_kg": 0,      "inferred_label": "string",      "inferred_grade_label": "string"    }  ],  "count": 0}