# Irantalent — 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.

> Irantalent provides 1 callable API endpoint through the Parse marketplace.

**Category:** Jobs | **Website:** [www.irantalent.com/farsi](https://www.irantalent.com/farsi) | **Docs:** [parse.bot/marketplace/0de25f1a-f633-4250-bc9e-6306e4333542/irantalent-com-api](https://parse.bot/marketplace/0de25f1a-f633-4250-bc9e-6306e4333542/irantalent-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-irantalent-com-api-0de25f1a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_jobs

List job postings from IranTalent. Returns paginated results sorted by relevance. Supports keyword search and province filtering. Each page returns up to 30 jobs. When no keyword is provided, returns all available jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Search keyword to filter jobs by title or description (e.g. 'python', 'مدیر'). Omitting returns all jobs. |
| `page` | integer | No | Page number for pagination. Each page contains up to 30 results. |
| `province_id` | string | No | Province location ID to filter jobs by region (e.g. '216' for Tehran, '229' for Isfahan, '1' for Outside of Iran). Omitting returns jobs from all provinces. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-irantalent-com-api-0de25f1a/list_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","page":"<integer>","province_id":"<string>"}'
```
