# Jobvision — 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 jobvision.ir.

**Category:** Jobs | **Website:** [jobvision.ir/](https://jobvision.ir/) | **Docs:** [parse.bot/marketplace/56b95276-c73b-4aa2-ae5e-dfc83ba81483/jobvision-ir-api](https://parse.bot/marketplace/56b95276-c73b-4aa2-ae5e-dfc83ba81483/jobvision-ir-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-jobvision-ir-api-56b95276/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_jobs

Search and list job postings on Jobvision.ir. Returns paginated results sorted by relevance. Each job includes title, company info, location, salary range, work type, seniority level, and job categories. When no keyword is provided, returns all available jobs sorted by relevance. Pagination is controlled by page and page_size parameters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Job title or company name search query (e.g. 'python', 'حسابدار'). Omitting returns all jobs. |
| `page` | integer | No | Page number for pagination (1-indexed). |
| `page_size` | integer | No | Number of results per page, between 1 and 50. |

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