Pulse Intelligence
Mining Assets

Get mining asset economic assessments

Return every published economic-assessment scenario for a single mining asset, newest effective date first, each with its price deck, cost metrics, and NPV curve nested inline. Money figures are whole units of the stated currency; `canonical_*_in_usd` figures are normalized to USD on a 100% project basis. Unpaginated: every scenario is returned in one call.

GET/v1/mining-assets/{id}/economic-assessments/

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 economic-assessment scenarios. Empty `results` when none is on file.

Every published economic-assessment scenario for one mining asset, newest effective date first, each with its price deck, cost metrics, and NPV curve nested inline.

curl -X GET "https://example.com/v1/mining-assets/0/economic-assessments/" \  -H "Authorization: Bearer $PULSE_API_KEY"
{  "results": [    {      "effective_date": "2026-06-30",      "published_date": "2026-07-21",      "study_type": "feasibility",      "source_kind": "study_restatement",      "scenario_label": "Base Case",      "is_base_case": true,      "capex_currency": "US$",      "initial_capex": 544000000,      "sustaining_capex": 186000000,      "closure_capex": null,      "total_capex": 730000000,      "is_total_capex_stated": true,      "canonical_initial_capex_in_usd": 544000000,      "canonical_sustaining_capex_in_usd": 186000000,      "canonical_closure_capex_in_usd": null,      "canonical_total_capex_in_usd": 730000000,      "irr_pre_tax": 0.323,      "irr_post_tax": 0.276,      "npv_discount_rate": 0.05,      "npv_terms": "real",      "npv_currency": "US$",      "npv_pre_tax": 1520000000,      "npv_post_tax": 1190000000,      "canonical_npv_pre_tax_in_usd": 1520000000,      "canonical_npv_post_tax_in_usd": 1190000000,      "mine_life_years": 14,      "payback_period_years": 2.6,      "throughput_tonnes_per_annum": 4380000,      "strip_ratio": 3.4,      "process_recovery_fraction": 0.861,      "head_grade_label": "93 g/t Ag",      "lom_production_label": "168 Moz",      "lom_production_in_kg": 5225000,      "average_annual_production_label": "13.4 Moz",      "average_annual_production_in_kg": 416800,      "first_production_date": "2029-01-01",      "corporate_tax_rate_fraction": 0.35,      "royalty_description": "3% provincial mine-mouth royalty",      "revenue_currency": "US$",      "lom_revenue": 5900000000,      "lom_ebitda": 3100000000,      "average_annual_ebitda": 221000000,      "canonical_lom_revenue_in_usd": 5900000000,      "canonical_lom_ebitda_in_usd": 3100000000,      "canonical_average_annual_ebitda_in_usd": 221000000,      "capex_ownership_basis": "100_percent",      "npv_ownership_basis": "100_percent",      "revenue_ownership_basis": "100_percent",      "ownership_interest_fraction": null,      "price_assumptions": [        {          "commodity_symbol": "Ag",          "price": 27.5,          "currency": "USD",          "denominator_unit": "oz",          "raw_quote_unit": "US$/oz",          "contained_species": null,          "price_per_kg_in_usd": 884.15,          "canonical_rejection_reason": null,          "display_label": "Ag $27.50/oz"        }      ],      "cost_metrics": [        {          "cost_metric": "aisc",          "cost_metric_label": "All-in Sustaining Cost",          "value": 12.4,          "currency": "USD",          "commodity_symbol": "Ag",          "denominator_unit": "oz",          "denominator_basis": "payable",          "credit_basis": "by_product",          "contained_species": null,          "is_life_of_mine_average": true,          "is_equivalent": false,          "period_description": "LOM average",          "raw_cost_unit": "US$/oz",          "cost_per_kg_in_usd": 398.67,          "canonical_rejection_reason": null,          "display_label": "AISC $12.40/oz (LOM)"        }      ],      "npv_curve": [        {          "discount_rate": 0.05,          "npv_pre_tax": 1520000000,          "npv_post_tax": 1190000000,          "canonical_npv_pre_tax_in_usd": 1520000000,          "canonical_npv_post_tax_in_usd": 1190000000        },        {          "discount_rate": 0.08,          "npv_pre_tax": 1090000000,          "npv_post_tax": 842000000,          "canonical_npv_pre_tax_in_usd": 1090000000,          "canonical_npv_post_tax_in_usd": 842000000        }      ],      "source_publication_id": 2386047,      "source_url": "https://money.tmx.com/quote/ABRA/news/7573417094767115#page=112",      "page_number": 112    }  ],  "count": 1}