# Jobinja — 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 jobinja.ir.

**Category:** Jobs | **Website:** [jobinja.ir/](https://jobinja.ir/) | **Docs:** [parse.bot/marketplace/8a194aca-b477-4ddd-89d5-6dc312b6d104/jobinja-ir-api](https://parse.bot/marketplace/8a194aca-b477-4ddd-89d5-6dc312b6d104/jobinja-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-jobinja-ir-api-8a194aca/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_jobs

Search job posts on Jobinja. Returns paginated results (20 per page) sorted by newest. Supports filtering by keyword, job category, and location. Each result includes job ID, title, company, location, contract type, posting age, and company logo URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Job category filter in Persian (e.g. 'وب،‌ برنامه‌نویسی و نرم‌افزار'). Omitting returns all categories. |
| `keyword` | string | No | Search keyword for job title, skill, or company name (e.g. 'python', 'designer'). Omitting returns all jobs. |
| `location` | string | No | Location filter in Persian (e.g. 'تهران'). Omitting returns all locations. |
| `page` | integer | No | Page number for pagination (20 results per page). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobinja-ir-api-8a194aca/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","keyword":"<string>","location":"<string>","page":"<integer>"}'
```
