# Welcometothejungle — 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 and discover job postings and company information from Welcome to the Jungle, including detailed job listings, company profiles with employee statistics and social links, and the ability to browse all available positions. Find the perfect role by searching jobs and companies, then access comprehensive details about positions and organizations in one place.

**Category:** Jobs | **Website:** [welcometothejungle.com/](https://welcometothejungle.com/) | **Docs:** [parse.bot/marketplace/8b5fefe9-4223-474a-bb89-0e1b2cf78f62/welcometothejungle-com-api](https://parse.bot/marketplace/8b5fefe9-4223-474a-bb89-0e1b2cf78f62/welcometothejungle-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-welcometothejungle-com-api-8b5fefe9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Get detailed company profile including presentation text, social links, creation year, employee count, and average employee age.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company slug (e.g. 'sipios') from search_companies results |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-welcometothejungle-com-api-8b5fefe9/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_company_jobs

List job postings for a specific company. Pages are 0-indexed. If nbPages is 1, only page 0 contains results; requesting page >= nbPages returns an empty jobs array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug (e.g. 'carrefour') from search_companies or search_jobs results |
| `page` | integer | No | Page number, 0-indexed. Must be less than nbPages to return results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-welcometothejungle-com-api-8b5fefe9/get_company_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","page":"<integer>"}'
```

### get_job_details

Get full details of a specific job posting including description, salary, experience level, and application URL. Requires both company_slug and job_slug which can be obtained from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug from search_jobs results (e.g. 'ferchau-france') |
| `job_slug` | string | Yes | Job slug from search_jobs results (e.g. 'developpeur-euse-python-m-f-d_toulouse') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-welcometothejungle-com-api-8b5fefe9/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","job_slug":"<string>"}'
```

### list_all_jobs

Retrieve a list of recent job postings across the entire platform, up to the specified limit. Jobs are returned in reverse-chronological order.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of jobs to retrieve |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-welcometothejungle-com-api-8b5fefe9/list_all_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### search_companies

Search for companies on the platform by name or keyword. Returns paginated results with basic company info.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hits_per_page` | integer | No | Number of results per page |
| `page` | integer | No | Page number, 0-indexed |
| `query` | string | No | Company name or keyword (e.g. 'fintech') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-welcometothejungle-com-api-8b5fefe9/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hits_per_page":"<integer>","page":"<integer>","query":"<string>"}'
```

### search_jobs

Search for job postings by keyword with pagination. Returns jobs sorted by recency. Pages are 0-indexed; requesting a page beyond nbPages returns an empty jobs array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hits_per_page` | integer | No | Number of results per page |
| `page` | integer | No | Page number, 0-indexed |
| `query` | string | No | Search keyword (e.g. 'python', 'developer') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-welcometothejungle-com-api-8b5fefe9/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hits_per_page":"<integer>","page":"<integer>","query":"<string>"}'
```
