# Nedradv — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Government & Public Data | **Website:** [nedradv.ru/](https://nedradv.ru/) | **Docs:** [parse.bot/marketplace/04eaf232-c4fe-41ad-b6f4-dd683fe050f0/nedradv-ru-api](https://parse.bot/marketplace/04eaf232-c4fe-41ad-b6f4-dd683fe050f0/nedradv-ru-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-nedradv-ru-api-04eaf232/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_deposit

Get full details of a specific mineral deposit including reserves data, geological conditions, location, and source information. Each deposit is identified by a 32-character hex ID obtained from list_deposits.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `id` | string | Yes | 32-character hex deposit ID from list_deposits results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nedradv-ru-api-04eaf232/get_deposit \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"<string>"}'
```

### list_deposits

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `mineral` | string | No | 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. |
| `page` | integer | No | Page number (1-based). Each page returns up to 200 deposits. |
| `region` | string | No | Region ID to filter deposits (32-character hex). When set, only deposits in that region are returned. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nedradv-ru-api-04eaf232/list_deposits \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"mineral":"<string>","page":"<integer>","region":"<string>"}'
```
