# Hellowork — 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 browse job listings and company profiles on HelloWork, France's leading job board. Filter by keyword, location, contract type, salary, and more.

**Category:** Jobs | **Website:** [hellowork.com/](https://hellowork.com/) | **Docs:** [parse.bot/marketplace/51306d21-9ed3-469d-a410-46d7d66764b5/hellowork-com-api](https://parse.bot/marketplace/51306d21-9ed3-469d-a410-46d7d66764b5/hellowork-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-hellowork-com-api-51306d21/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_profile

Fetch a company's profile page including name, description, highlights about the workplace, a verbatim quote, and the number of active job offers. Requires a company slug-ID constructed as lowercase-hyphenated-name-id (e.g. 'acadomia-4911').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug_id` | string | Yes | Company slug-ID (e.g. 'acadomia-4911'). Construct from search_companies results: lowercase company name with spaces replaced by hyphens, followed by '-' and the id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hellowork-com-api-51306d21/get_company_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug_id":"<string>"}'
```

### get_job_categories

Retrieve the full list of job categories (métiers) available on HelloWork. Returns a mapping of category display names to their relative URL paths. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hellowork-com-api-51306d21/get_job_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_job_details

Fetch the full detail page of a single job listing by its numeric ID. Returns the job title, full description text, structured details (location, contract type, and other metadata), and the canonical URL. Use job IDs from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | The numeric job listing ID (e.g. '80049429'), from search_jobs results[*].id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hellowork-com-api-51306d21/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_id":"<string>"}'
```

### search_companies

Search for companies by name using autocomplete suggestions. Returns matching company names and their numeric IDs. Falls back to a listing page search if autocomplete returns no results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `l` | string | No | Location filter (used in fallback search if autocomplete returns no results). |
| `query` | string | Yes | Company name to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hellowork-com-api-51306d21/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"l":"<string>","query":"<string>"}'
```

### search_jobs

Full-text search over job listings on HelloWork France. Supports filters for contract type, location, salary, date range, and sorting. Returns paginated results across multiple pages. Each result includes title, company, location, contract type, salary, and a direct URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `c` | string | No | Contract type filter. For multiple types, comma-separated (e.g. 'CDI,CDD'). |
| `d` | string | No | Date range filter. |
| `filter_hourly` | boolean | No | If true, filters out jobs with hourly-rate salaries from results. |
| `k` | string | Yes | Keyword to search for (job title, skill, etc.) |
| `l` | string | No | Location (city, department, postal code) |
| `msa` | string | No | Minimum annual salary filter (numeric string, e.g. '40000'). |
| `page_limit` | integer | No | Maximum number of pages to fetch (each page has ~30 results). |
| `ray` | string | No | Search radius in km around the location. |
| `st` | string | No | Sort order. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hellowork-com-api-51306d21/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"c":"<string>","d":"<string>","filter_hourly":"<boolean>","k":"<string>","l":"<string>","msa":"<string>","page_limit":"<integer>","ray":"<string>","st":"<string>"}'
```
