# Group — 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 current job and internship opportunities at BNP Paribas by filtering across contract types, countries, business domains, and keywords. Access detailed information about specific positions to help you find the right career opportunity at the organization.

**Category:** Jobs | **Website:** [group.bnpparibas/emploi-carriere/toutes-offres-emploi/stage/expertise-financiere-et-technique/france](https://group.bnpparibas/emploi-carriere/toutes-offres-emploi/stage/expertise-financiere-et-technique/france) | **Docs:** [parse.bot/marketplace/a37a5220-7bc1-46e2-861c-19ac2088d52c/group-bnpparibas-api](https://parse.bot/marketplace/a37a5220-7bc1-46e2-861c-19ac2088d52c/group-bnpparibas-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-group-bnpparibas-api-a37a5220/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Get full details for a specific job offer by its slug (obtained from search_jobs results). Returns structured data including description, requirements, posting date, and apply URL. Each call fetches and parses a single job page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Job offer slug from search_jobs results (e.g. stage-assistant-e-recherche-actions-h-f). |

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

### search_jobs

Search for job listings on the BNP Paribas careers portal with filters. Returns results with title, location, contract type, brand, and URL for each offer. The server paginates internally up to max_pages pages of 10 results each; the response contains all fetched results in one array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `contract_type` | string | No | Contract type filter. |
| `country` | string | No | Country filter. Accepts a country slug (e.g. france, germany) or a numeric ID. Leave empty to search globally. |
| `domain` | string | No | Job domain/category filter. Accepts a domain slug or a numeric ID. Leave empty to search across all domains. |
| `keyword` | string | No | Keyword search query to filter job listings. |
| `max_pages` | integer | No | Maximum number of pages to fetch (each page returns up to 10 results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-group-bnpparibas-api-a37a5220/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"contract_type":"<string>","country":"<string>","domain":"<string>","keyword":"<string>","max_pages":"<integer>"}'
```
