# Ruipubblico Ivass — 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 the Italian IVASS Single Register of Insurance and Reinsurance Intermediaries to find licensed insurance professionals and companies by registration number, section, or name. Verify the credentials and status of insurance intermediaries operating in Italy.

**Category:** Government & Public Data | **Website:** [ruipubblico.ivass.it/rui-pubblica/ng/#/workspace/elenco-registro-unico-intermediari](https://ruipubblico.ivass.it/rui-pubblica/ng/#/workspace/elenco-registro-unico-intermediari) | **Docs:** [parse.bot/marketplace/faa5516b-9e07-4dce-9b0a-94f03a5d412c/ruipubblico-ivass-it-api](https://parse.bot/marketplace/faa5516b-9e07-4dce-9b0a-94f03a5d412c/ruipubblico-ivass-it-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-ruipubblico-ivass-it-api-faa5516b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_intermediaries

Search insurance intermediaries in the IVASS public registry (RUI). Returns paginated results matching the given criteria. At least one of nominativo or numero_iscrizione must be provided. Supports filtering by registry section (A through G). Pagination is zero-based. The search is case-insensitive and includes partial matches on nominativo.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `nominativo` | string | No | Last name (cognome) of the intermediary to search for (e.g. Rossi). Case-insensitive, partial matches included. |
| `numero_iscrizione` | string | No | Registration number (matricola) of the intermediary (e.g. A000752135, E000752656). Alphanumeric identifier starting with a section letter. |
| `page` | integer | No | Zero-based page number for pagination. |
| `sezione` | string | No | Comma-separated list of registry sections to search. Accepted individual values: A (Agenti), B (Broker), C (Produttori diretti), D (Banche, intermediari finanziari, SIM e Poste Italiane), E (Collaboratori), F (Operatori di bancassicurazione), G (Intermediari UE). |
| `size` | integer | No | Number of results per page, between 1 and 100. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ruipubblico-ivass-it-api-faa5516b/search_intermediaries \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"nominativo":"<string>","numero_iscrizione":"<string>","page":"<integer>","sezione":"<string>","size":"<integer>"}'
```
