# E Estekhdam — 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 data from e-estekhdam.com.

**Category:** Jobs | **Website:** [www.e-estekhdam.com/](https://www.e-estekhdam.com/) | **Docs:** [parse.bot/marketplace/f79dc367-c744-4302-ade1-dbfb4876b951/e-estekhdam-com-api](https://parse.bot/marketplace/f79dc367-c744-4302-ade1-dbfb4876b951/e-estekhdam-com-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-e-estekhdam-com-api-f79dc367/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_jobs

Search and list job postings. Returns 20 jobs per page. Without a query, returns the latest jobs. Supports text search and province filtering. Results are ordered by relevance when a query is provided, or by recency otherwise.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. Each page returns up to 20 jobs. |
| `province` | string | No | Province name in Persian to filter jobs by location (e.g. تهران, اصفهان, خراسان رضوی). Omitting returns jobs from all provinces. |
| `query` | string | No | Search text to filter jobs by title, company name, or position (in Persian). Omitting returns all recent jobs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-e-estekhdam-com-api-f79dc367/list_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","province":"<string>","query":"<string>"}'
```
