Discover/IVASS API
live

IVASS APIruipubblico.ivass.it

Search the Italian IVASS Single Register of Insurance Intermediaries (RUI) by name, registration number, or section. Returns paginated intermediary records.

This API takes change requests — .
Endpoint health
verified 6d ago
search_intermediaries
1/1 passing latest checkself-healing
Endpoints
1
Updated
1mo ago

What is the IVASS API?

The IVASS RUI API provides access to Italy's public Single Register of Insurance and Reinsurance Intermediaries through 1 endpoint, search_intermediaries, returning paginated records that include registration numbers, registry sections, and intermediary names. You can search by last name (nominativo), registration number (numero_iscrizione), or filter by one or more of the seven registry sections (A through G). Each response includes total_elements and total_pages for full pagination control.

Try it
Zero-based page number for pagination.
Number of results per page, between 1 and 100.
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).
Last name (cognome) of the intermediary to search for (e.g. Rossi). Case-insensitive, partial matches included.
Registration number (matricola) of the intermediary (e.g. A000752135, E000752656). Alphanumeric identifier starting with a section letter.
api.parse.bot/scraper/87bfc75a-c861-429b-9459-ec4b97e0cda7/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/87bfc75a-c861-429b-9459-ec4b97e0cda7/search_intermediaries?page=0&size=5&sezione=A&nominativo=Rossi&numero_iscrizione=A000752135' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ruipubblico-ivass-it-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.ivass_insurance_intermediaries_registry_api import Ivass, Sezione

client = Ivass()

# Search intermediaries by last name in section A (Agenti)
for intermediary in client.intermediaries.search(nominativo="Rossi", sezione=Sezione.A, size=5, limit=10):
    print(intermediary.nominativo, intermediary.numero_iscrizione, intermediary.descrizione_sezione, intermediary.codice_fiscale)
All endpoints · 1 totalmissing one? ·

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.

Input
ParamTypeDescription
pageintegerZero-based page number for pagination.
sizeintegerNumber of results per page, between 1 and 100.
sezionestringComma-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).
nominativostringLast name (cognome) of the intermediary to search for (e.g. Rossi). Case-insensitive, partial matches included.
numero_iscrizionestringRegistration number (matricola) of the intermediary (e.g. A000752135, E000752656). Alphanumeric identifier starting with a section letter.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current zero-based page number",
    "size": "integer, page size used",
    "items": "array of intermediary records with fields: numero_iscrizione, sezione, descrizione_sezione, nominativo, cognome, nome, codice_fiscale, data_inizio, data_nascita, comune_nascita, sigla_nascita, ragione_sociale_compagnia, attivita_esercita, url_web_site",
    "total_pages": "integer, total number of pages available",
    "total_elements": "integer, total number of matching records"
  },
  "sample": {
    "data": {
      "page": 0,
      "size": 10,
      "items": [
        {
          "nome": "NICOLA",
          "cognome": "ROSSI",
          "sezione": "A",
          "nominativo": "ROSSI NICOLA",
          "data_inizio": "05/06/2024",
          "data_nascita": "03/08/1998",
          "url_web_site": "",
          "sigla_nascita": "RO",
          "codice_fiscale": "RSSNCL98M03L359J",
          "comune_nascita": "TRECENTA",
          "attivita_esercita": "Assicurativa",
          "numero_iscrizione": "A000752135",
          "descrizione_sezione": "Agenti",
          "ragione_sociale_compagnia": ""
        }
      ],
      "total_pages": 1,
      "total_elements": 1
    },
    "status": "success"
  }
}

About the IVASS API

What the API Returns

The search_intermediaries endpoint queries the IVASS RUI public registry and returns a paginated list of intermediary records. Each response envelope contains page, size, total_pages, and total_elements alongside an items array of matching intermediary records. At least one of nominativo or numero_iscrizione must be provided per request — the API will not return a full registry dump.

Search Parameters

You can narrow results using three main filters. nominativo accepts a partial, case-insensitive last name, so searching Rossi will return all registered intermediaries whose surname matches. numero_iscrizione accepts an alphanumeric registration number such as A000752135 or E000752656, where the leading letter corresponds to one of the seven registry sections. The optional sezione parameter accepts a comma-separated list of section codes (A, B, C, D, E, F, G), letting you restrict results to specific intermediary categories — for example, section A covers insurance agents and section B covers brokers.

Pagination

Results are paginated using zero-based page indexing. The size parameter controls how many records are returned per page, with a maximum of 100. Use total_pages and total_elements from the response to iterate through large result sets programmatically.

Registry Coverage

The RUI is maintained by IVASS (Istituto per la Vigilanza sulle Assicurazioni), Italy's insurance regulatory authority. The register covers all licensed insurance and reinsurance intermediaries authorized to operate in Italy, including individuals and companies across all seven sections of the register.

Reliability & maintenanceVerified

The IVASS API is a managed, monitored endpoint for ruipubblico.ivass.it — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ruipubblico.ivass.it changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ruipubblico.ivass.it API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Verify whether a specific Italian insurance agent or broker holds a valid RUI registration before engaging their services
  • Look up a registration number from a policy document to confirm the intermediary's section and authorization status
  • Build a compliance workflow that cross-checks client-submitted intermediary credentials against the official IVASS register
  • Enumerate all intermediaries in a specific RUI section (e.g., section B brokers) for market research or lead generation
  • Integrate RUI validation into an insurance onboarding form to flag unregistered or incorrectly identified intermediaries
  • Monitor the RUI for newly registered intermediaries matching a particular surname for due-diligence workflows
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does IVASS provide an official public developer API for the RUI registry?+
IVASS does not publish a documented developer API for the RUI public register. The data is available through the public web interface at ruipubblico.ivass.it, but there is no official REST API with keys, documentation, or SLA.
What does the `sezione` parameter control, and what are the valid values?+
The sezione parameter filters results to one or more of the seven RUI sections: A (insurance agents), B (brokers), C (direct-writer employees), D (ancillary intermediaries), E, F, and G. Pass a comma-separated string such as A,B to include multiple sections in one request. If omitted, results span all sections.
Is it possible to retrieve a full list of all registered intermediaries without a name or registration number?+
Not currently. The endpoint requires at least one of nominativo or numero_iscrizione to be provided; open-ended registry dumps are not supported. You can fork this API on Parse and revise it to add a broader listing endpoint if the underlying registry exposes one.
Does the API return detailed intermediary profile data such as address, contact information, or authorization history?+
The current search_intermediaries endpoint returns the fields present in the registry search results: registration number, section, and intermediary name, wrapped in pagination metadata. Detailed profile pages — including address, appointment history, or sanctions — are not covered by this endpoint. You can fork the API on Parse and revise it to add a detail-lookup endpoint for that data.
How fresh is the data returned by this API?+
The data reflects the IVASS RUI public registry as it exists at the time of the request. IVASS updates the register when intermediaries are added, modified, or removed, but the API does not expose a timestamp for individual records, so you cannot determine when a specific entry was last changed from the response alone.
Page content last updated . Spec covers 1 endpoint from ruipubblico.ivass.it.
Related APIs in Government PublicSee all →
api.nasa.gov API
Access NASA's suite of open data APIs — including the Astronomy Picture of the Day, Near Earth Object tracking, DONKI space weather events, EPIC Earth imagery, Mars weather, the NASA Image and Video Library, the Exoplanet Archive, and EONET natural events.
developer.company-information.service.gov.uk API
Search for UK registered companies and retrieve detailed information including company profiles, officer names, and their dates of birth. Access comprehensive corporate records directly from the official Companies House register to verify business details and identify key personnel.
sec.gov API
Search for publicly traded companies and instantly access their SEC filings with details like filing type, date, description, and accession numbers. Find the regulatory documents you need to research company financial information and compliance records.
usaspending.gov API
usaspending.gov API
companieshouse.gov.uk API
Search for UK companies and officers, then access detailed information including company profiles, filing history, charges, and officers with significant control. Get comprehensive corporate records and appointment details all in one place.
mars.nasa.gov API
Explore real-time images, weather data, and location tracking from NASA's Perseverance and Curiosity rovers on Mars, while discovering mission details, rock sample findings, and the latest news from the Mars Exploration Program. Access rover photos, scientific discoveries, and multimedia content to stay updated on current Mars exploration activities.
find-and-update.company-information.service.gov.uk API
Search and access detailed information about UK companies registered at Companies House, including company profiles, filing histories, officers, and financial charges. Filter companies by name, status, type, SIC code, and more.
capitol.texas.gov API
Search and monitor Texas Legislature bills, track their progress through legislative stages, and retrieve detailed action histories. Look up legislator contact information, district details, committee assignments, and full committee membership rosters.