# Indeed (French) — 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 job listings and get detailed information about positions, companies, and alternance opportunities on Indeed France, all in one place. Access comprehensive company profiles and job details to find your next career move or research employers.

**Category:** Jobs | **Website:** [fr.indeed.com/](https://fr.indeed.com/) | **Docs:** [parse.bot/marketplace/02ea6f51-9e6a-404b-b2ee-d3d50778380a/fr-indeed-com-api](https://parse.bot/marketplace/02ea6f51-9e6a-404b-b2ee-d3d50778380a/fr-indeed-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-fr-indeed-com-api-02ea6f51/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_profile

Retrieve company profile information from Indeed France including display name, rating, industry sector, and counts of reviews and job listings. The company_slug is obtained from get_job_details or from a company's Indeed URL path.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | The company slug from get_job_details company_slug field or the company URL path (e.g. 'Matera', 'Cabinet-Noailly') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fr-indeed-com-api-02ea6f51/get_company_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>"}'
```

### get_job_details

Retrieve full details for a specific job offer using its job key. Returns the complete job description (HTML and plain text), salary information, benefits, job type, and company information including company_slug for use with get_company_profile. The job key is a 16-character hex string obtained from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_key` | string | Yes | The unique job key (16-character hex string) from search_jobs results[*].job_key |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fr-indeed-com-api-02ea6f51/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_key":"<string>"}'
```

### search_alternance_today

Specialized search for alternance (apprenticeship) job offers published within the last 24 hours. Delegates to search_jobs with query='alternance' and fromage=1. Useful for monitoring new apprenticeship opportunities as they are posted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location to search in (e.g. 'Paris', 'Lyon') |
| `start` | integer | No | Result offset for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fr-indeed-com-api-02ea6f51/search_alternance_today \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","start":"<integer>"}'
```

### search_jobs

Search for job listings on Indeed France by keyword and location. Returns paginated results (approximately 15 per page) with job keys, titles, companies, locations, salary snippets, and publication dates. Pagination uses an offset-based system via the start parameter. An empty query returns all recent listings in the specified location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `fromage` | integer | No | Limit results to jobs posted within the last N days (e.g. 1 for today, 7 for last week) |
| `location` | string | No | Location to search in (e.g. 'Paris', 'Lyon') |
| `query` | string | No | Job title or keywords (e.g. 'comptable', 'developpeur') |
| `start` | integer | No | Result offset for pagination (increments of 10-15). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fr-indeed-com-api-02ea6f51/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"fromage":"<integer>","location":"<string>","query":"<string>","start":"<integer>"}'
```
