Discover/Nedradv API
live

Nedradv APInedradv.ru

Access comprehensive mineral deposit information from Russia's Nedradv business portal to search deposits by mineral type and region, then retrieve detailed reserve data for specific deposits. Use this service to research Russian mineral resources, compare deposits across different commodities and geographic locations, and obtain technical reserve specifications for your mining or investment analysis.

This API takes change requests — .
Endpoint health
monitored
get_deposit
list_deposits
Checks pendingself-healing
Endpoints
2
Updated
2h ago
This call costs1 credit / call— charged only on success
Try it
Page number (1-based). Each page returns up to 200 deposits.
Region ID to filter deposits (32-character hex). When set, only deposits in that region are returned.
Mineral type ID to filter deposits (32-character hex, e.g. from the mineral filter on the site). When set, only deposits of that mineral type are returned.
api.parse.bot/scraper/c39b82e2-24b5-4029-a4bf-f9426e68fddf/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c39b82e2-24b5-4029-a4bf-f9426e68fddf/list_deposits?page=1&region=853d7f00177439bd602cfe5ff200ac01&mineral=ea137769ab1dc8b338a79c54c3009281' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace nedradv-ru-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: nedradv SDK — bounded, re-runnable; every call capped."""
from parse_apis.nedradv_ru_api import Nedradv, DepositNotFound

client = Nedradv()

# List all deposits, capped at 3 items
for deposit in client.deposits.list(limit=3):
    print(deposit.id, deposit.name)

# Drill-down: get first deposit details
item = client.deposits.list(limit=1).first()
try:
    full = client.deposits.get(id=item.id)
    print(full.name, full.mineral_type, full.region)
    print("Reserves:", full.reserves[:100])
except DepositNotFound as e:
    print("not found:", e.id)

# Navigate from summary to full details via .details()
for summary in client.deposits.list(limit=2):
    detail = summary.details()
    print(detail.name, detail.mineral_type, detail.location[:60])

print("exercised: deposits.list, deposits.get, DepositSummary.details")
All endpoints · 2 totalmissing one? ·

List mineral deposits from the Nedradv database. Returns paginated results (200 per page, up to 25 pages). Optionally filter by mineral type ID or region ID. Results are auto-iterated across pages.

Input
ParamTypeDescription
pageintegerPage number (1-based). Each page returns up to 200 deposits.
regionstringRegion ID to filter deposits (32-character hex). When set, only deposits in that region are returned.
mineralstringMineral type ID to filter deposits (32-character hex, e.g. from the mineral filter on the site). When set, only deposits of that mineral type are returned.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "count": "number of deposits on this page",
    "deposits": "array of deposit summaries with id and name",
    "total_pages": "total number of pages available"
  },
  "sample": {
    "data": {
      "page": 1,
      "count": 200,
      "deposits": [
        {
          "id": "f2f5e2370b07304ef3b5b8e491532f3d",
          "name": "Абановское газовое месторожден..."
        }
      ],
      "total_pages": 25
    },
    "status": "success"
  }
}

About the Nedradv API

The Nedradv API on Parse exposes 2 endpoints for the publicly available data on nedradv.ru. Calls return JSON over HTTPS and are billed per successful response.

Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.

Related APIs
rusprofile.ru API
Search Russian companies and retrieve their detailed profiles including financial information, registration details, and director information from Rusprofile's database. Look up director credentials by their tax identification number and discover company relationships and links.
2gis.ru API
Search for businesses across Russian cities and retrieve detailed company profiles including contact information, locations, and services from the 2GIS business directory. Find exactly what you need by looking up specific companies or browsing by category to discover new businesses in any Russian city.
yandex.ru API
Search for businesses on Yandex Maps and instantly access their names, addresses, phone numbers, websites, social media links, hours of operation, and categories. Get detailed company information to find local services, verify business details, or build comprehensive business directories.
krasnoeibeloe.ru API
Search for products from Krasnoe & Beloe, locate nearby shops across different cities, and check real-time stock availability to find what you need. View detailed product information and discover which stores have items in stock so you can plan your shopping trip efficiently.
data.inpi.fr API
Search and discover French industrial property information including patents, trademarks, designs, and company registrations from the official INPI national register. Find the intellectual property data you need to research competitors, verify trademark availability, or explore patent landscapes in France.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
trademo.com API
Access comprehensive global trade data to search companies, find manufacturers by country, and review detailed trade profiles, sanctions lists, and politically exposed persons (PEP) lists. Monitor global trade indices and build a complete directory of international trading partners and compliance information.
hh.ru API
Search and filter job vacancies across hh.ru by salary, experience level, employment type, schedule, work format, region, and industry to find positions that match your criteria. Retrieve detailed information about specific job openings to compare opportunities and make informed career decisions.