Marketplace
No threads yet
Live

get_deposit_details

nedradv.ru

Gets full mineral deposit details and technical reserve data from https://nedradv.ru for a 32-character deposit ID. Returns every non-empty metadata field and technical section exposed by the source, including location, geology, reserves, notes, and source information.

Parameters1
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_deposit_details?

Gets full mineral deposit details and technical reserve data from https://nedradv.ru for a 32-character deposit ID. Returns every non-empty metadata field and technical section exposed by the source, including location, geology, reserves, notes, and source information. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass deposit_id and get the result back without maintaining a scraper.

Response

{
  "name": "<string>",
  "metadata": {},
  "sections": {},
  "deposit_id": "<string>",
  "detail_url": "<string>",
  "mineral_types": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b1d581d4-d28e-4079-a4aa-563e2ba82c6a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b1d581d4-d28e-4079-a4aa-563e2ba82c6a",
    "variables": {
        "deposit_id": "f2f5e2370b07304ef3b5b8e491532f3d"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="b1d581d4-d28e-4079-a4aa-563e2ba82c6a") — the "get_deposit_details" function, which gets full mineral deposit details and technical reserve data from https://nedradv.ru for a 32-character deposit ID. Returns every non-empty metadata field and technical section exposed by the source, including location, geology, reserves, notes, and source information..

It takes deposit_id (str). Return the result as structured JSON.