# Orias — 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 find verified French insurance, banking, and finance intermediaries with their registration status, service offerings, and mandate details. Get comprehensive profile information to verify credentials and check what services each intermediary is authorized to provide.

**Category:** Government & Public Data | **Website:** [orias.fr/](https://orias.fr/) | **Docs:** [parse.bot/marketplace/08dbed93-af7f-4ac6-8f53-328e44f745bc/orias-fr-api](https://parse.bot/marketplace/08dbed93-af7f-4ac6-8f53-328e44f745bc/orias-fr-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-orias-fr-api-08dbed93/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_intermediary_details

Retrieve the full profile of an intermediary by its SIREN number. Returns basic information (address, legal form, NAF code) and all registration categories with their status, services, mandates, and associations. The SIREN is obtained from search_intermediaries results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `id` | string | Yes | The SIREN of the intermediary (obtained from search_intermediaries items[*].id). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-orias-fr-api-08dbed93/get_intermediary_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"<string>"}'
```

### search_intermediaries

Full-text search across the ORIAS intermediary registry. Matches by name, SIREN, or ORIAS number. Returns 20 items per page. Requires two internal HTTP round-trips (homepage for session token, then search POST). Use wildcard '%' to browse all entries. Paginates via integer page counter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | No | Search keyword: a name, SIREN number, ORIAS number, or '%' wildcard for all. |
| `step` | string | No | Type of intermediaries to search. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-orias-fr-api-08dbed93/search_intermediaries \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>","step":"<string>"}'
```
