# Tashkent Hh — 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.

> Search for qualified candidate profiles and resumes directly from HH.uz, Uzbekistan's leading job portal, to find and review potential employees for your hiring needs. Access detailed candidate information including skills, work experience, and qualifications all in one place.

**Category:** Jobs | **Website:** [tashkent.hh.uz/](https://tashkent.hh.uz/) | **Docs:** [parse.bot/marketplace/08fb180a-9915-4bd9-8a84-9dcc5c36d37c/tashkent-hh-uz-api](https://parse.bot/marketplace/08fb180a-9915-4bd9-8a84-9dcc5c36d37c/tashkent-hh-uz-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-tashkent-hh-uz-api-08fb180a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_resumes

Search for employee resumes/CVs by keyword query. Returns paginated resume listings with title, age, job search status, total experience, and activity dates. Pages are 0-indexed; anonymous access limits visible results to a few pages. Each page returns up to ~20 results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `experience_period` | string | No | Filter resumes by experience period. Common values: 'all_time', '1_year', '3_years', '5_years'. |
| `order_by` | string | No | Sort order for results. Omitted defaults to relevance. |
| `page` | integer | No | 0-indexed page number for pagination. |
| `query` | string | Yes | Search query for resumes — job title, skill, or keyword (e.g. 'python developer', 'бухгалтер'). |
| `search_period` | string | No | Filter by resume activity period in days. '0' means all time, '1' means last day, '7' means last week, '30' means last month. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tashkent-hh-uz-api-08fb180a/search_resumes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"experience_period":"<string>","order_by":"<string>","page":"<integer>","query":"<string>","search_period":"<string>"}'
```
