Pulse Intelligence
Mining Assets

Get mining asset drill results

Return one page of a mining asset's drill disclosures, newest published date first, each with its holes, collar geometry, and top-level intercepts nested inline. Sub-intervals of a reported intercept are excluded so intervals are never double-counted. Paginated, because drill volume per asset is unbounded.

GET/v1/mining-assets/{id}/drill-results/

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.

Query Parameters

limit?integer

Page size, 1–100. Defaults to 25; a value outside the range is clamped, not rejected.

offset?integer

Row offset, 0 or greater. Defaults to 0; a negative value is clamped to 0.

Response Body

One page of the asset's drill disclosures. Empty `results` when none is on file.

One page of a mining asset's drill disclosures, newest first, each with its holes, collar geometry, and top-level intercepts nested inline.

curl -X GET "https://example.com/v1/mining-assets/0/drill-results/" \  -H "Authorization: Bearer $PULSE_API_KEY"
{  "results": [    {      "id": 67054,      "mining_asset": {        "id": 29144,        "name": "Diablillos Silver-Gold Project"      },      "publication": {        "id": 2385113,        "title": "AbraSilver Intersects 109 Metres of 221 g/t Silver and 0.72 g/t Gold at Oculto West, Including 14 Metres of 580 g/t Silver",        "url": "https://money.tmx.com/quote/ABRA/news/8679108393936258"      },      "published_date": "2026-07-13T11:30:00Z",      "hole_count": 5,      "intercept_count": 19,      "total_depth_max_m": 486,      "best_grade_label": "221.2000 g/t",      "best_commodity": "Ag",      "holes": [        {          "hole_code": "DDH 25-001",          "collar": {            "latitude": -25.312044,            "longitude": -66.879181,            "rl": 4102.5,            "surface_elevation_m": 4101,            "dip": -60,            "azimuth": 270,            "total_depth": 486          },          "intercepts": [            {              "depth_from": 176,              "depth_to": 285,              "interval_m": 109,              "commodity": "Ag",              "grade": 221.2,              "grade_unit": "g/t",              "compound_species": null,              "display_grade_label": "221.2000 g/t",              "true_width": 92,              "cutoff_grade": 30,              "cutoff_unit": "g/t"            }          ]        }      ]    }  ],  "count": 38,  "truncated": true,  "limit": 25,  "offset": 0}