Discover/ruipubblico.ivass.it API
live

ruipubblico.ivass.it APIruipubblico.ivass.it

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

Endpoints
1
Updated
20h ago
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 values: A, B, C, D, E, F, G.
Last name (cognome) of the intermediary to search for (e.g. Rossi). Case-insensitive, part
Registration number (matricola) of the intermediary (e.g. A000752135, E000752656). Alphanu
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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/87bfc75a-c861-429b-9459-ec4b97e0cda7/search_intermediaries' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalclick to expand

Search insurance intermediaries in the IVASS public registry. Returns paginated results matching the given criteria. At least one of nominativo or numero_iscrizione must be provided.

Input
ParamTypeDescription
pagestringZero-based page number for pagination.
sizestringNumber of results per page, between 1 and 100.
sezionestringComma-separated list of registry sections to search. Accepted values: A, B, C, D, E, F, G.
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",
    "size": "integer",
    "items": "array of intermediary records",
    "total_pages": "integer",
    "total_elements": "integer"
  },
  "sample": {
    "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
  }
}

About the ruipubblico.ivass.it 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.

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.

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,000250 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.
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.
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
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.
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.
sbir.gov API
Search and retrieve federal Small Business Innovation Research (SBIR) and Small Business Technology Transfer (STTR) awards by keyword, funding agency, or award details to discover past-funded projects and their outcomes. Browse current funding opportunity topics to identify research areas and find relevant grants for your small business.