Skip to main content

Start here

This guide contains public integration notes for Monaco. Use it for identifier formats, search behavior, and country-specific caveats. The live source of truth for coverage, pricing, data sources, documents, legal forms, roles, and status values is the pricing page.

Monaco coverage, pricing, and sources

Open the current catalog for supported datapoints, documents, sources, identifiers, and availability.
Country details below are preserved as integration notes. If a table or example conflicts with the live pricing page, use the pricing page as the source of truth and contact support.

Table of Contents

Data Sources

Monaco uses a single official registry, the RCI (Répertoire du Commerce et de l’Industrie). For a given entity, data comes from this sole source. Company profile data is extracted from the official trade register extract PDF using AI parsing.

All company types

  • RCI (Répertoire du Commerce et de l’Industrie): The official Monaco business register, operated by the Direction du Développement Economique (Business Development Agency) under the Prince’s Government of Monaco. The RCI registers all commercial activities, companies other than non-trading companies, and economic interest groups in the Principality. Registration is mandatory within two months of commencing activity. The RCI provides three access methods:
    • Search API (teleservice.gouv.mc/rci): A public JSON API that returns basic company information (name, legal form, status, RCI number, registration date). Used for search and company existence validation. No authentication required.
    • Extract Preview Page (teleservice.gouv.mc/rci/extrait/{rciNumber}): A public HTML page that provides a free preview of company information (name, legal form, activity description, address, NIS number). Used for onboarding profiles with AI enrichment of legal form, activities, and address.
    • Trade Register Extract (Paid PDF): The official certified extract (Extrait du RCI), retrieved as a paid document (see pricing) through the RCI portal. Used as the primary source for full company profiles. The PDF is parsed by AI to extract comprehensive company data including legal representatives, capital, detailed activity descriptions, and incorporation dates.
The company profile requires retrieving the trade register extract PDF (paid document, see pricing). The document is automatically retrieved and then parsed by AI for structured data extraction. Retrieved documents are deduplicated to avoid duplicate charges.

Company Identifiers

Query Identifiers

RCI Number Format Breakdown: 76S01561 = 76 (year of registration) + S (entity type: Societe) + 01561 (sequence number). The letter code indicates the entity type: S = Societe (commercial company), C = Civile (civil entity, e.g. SCP), P = Personne Physique (sole trader).
Legacy Alias Format: Some RCI numbers use SC instead of C for civil entities (e.g., 18SC21017). Topograph treats this as a legacy alias for the canonical form 18C21017. Search accepts both formats and always returns the canonical ID. All /v2/company requests and document retrieval calls require the canonical ID and will return not found if the alias is used.

Identifiers in API Response

Once you retrieve company data, the identifiers object contains all available identifiers for that entity:
Monaco does not participate in the EU VAT system. There are no VAT identifiers for Monegasque entities.

Search Capabilities

Search uses the RCI public API at teleservice.gouv.mc/rci. Both name and ID searches query the same endpoint. Name searches support French and English terms with fuzzy matching. Search is free (no cost per query).
Search Reliability: Search requests are executed with a parallel activity race (3 concurrent attempts). This mitigates transient failures from the RCI API. Results are returned from the first successful attempt, falling back to empty results only if all 3 attempts return nothing.

Quirks & Gotchas

Mappings

Company Status

Company status is determined differently depending on the data source:
  • Search API / Onboarding Profile: Status comes from the etat field in search results. Simple keyword matching: “active” or “actif” maps to Active, anything else maps to Closed.
  • Company Profile: Status is AI-parsed from the trade register extract PDF.
For the onboarding profile, status uses simple keyword matching (contains “active” or “actif” = Active, otherwise Closed). For the full company profile, status is AI-parsed from the trade register extract, providing richer detail.
Monaco legal forms are sourced from the RCI register. The local legal form name (in French) is preserved and enriched with English translation, standardized category, and ISO 20275 code via AI.
Legal form standardization and ISO 20275 assignment are AI-enriched. There is no static deterministic lookup table. The local French legal form name is always preserved verbatim from the RCI register. ISO 20275 codes may not be available for all Monaco-specific legal forms.
Monaco’s legal forms are governed by specific Monegasque legislation (e.g., Law No. 408 of 1945 for SAMs, Law No. 797 of 1966 for SARLs). While similar to French forms, they are distinct legal entities under Monegasque law. For example, the SAM (Societe Anonyme Monegasque) is unique to Monaco and differs from the French SA.
Legal representatives are extracted from the trade register extract PDF using AI parsing. This data is only available in the full company retrieval flow, not in onboarding mode requests for company.
Role classification as legal representative vs. other key person is AI-determined based on the company’s legal form context. Both individuals and corporate entities can hold legal representative roles in Monaco. The AI prompt specifically targets standard Monegasque roles: Gerant, Co-gerant, Administrateur, Administrateur-delegue, President, Vice-president, Directeur, Directeur general, Mandataire, Representant legal, and Pouvoir de signature.

Shareholders

Shareholders are not available for Monaco. The trade register extract does not contain shareholder information. Ownership data is not publicly accessible through the RCI.

Activity Code Mapping

Monaco does not use a national activity code classification in the RCI register. Activity codes are entirely AI-inferred from the company’s activity description (activityDescription), which is a free-text field in French from the RCI register.
Both NACE and ISIC codes are always AI-inferred for Monaco companies because the RCI register provides only a free-text activity description, not structured activity codes. The isAIInferred flag is always true for Monaco activity codes. Activity enrichment is available in both onboarding profile (from extract preview page) and full company profile (from trade register extract PDF).

Data Availability

Data Availability Matrix

Legend: ✅ Available | ❌ Not Available | ⚠️ Conditionally Available

Documents by Company Type

All entities registered with the RCI have access to the same document type:
Paid Document: The trade register extract is a paid retrieve (see pricing). When requesting companyProfile, this document is automatically retrieved. A lock mechanism prevents duplicate retrieves for the same company. Retrieved documents are deduplicated to avoid duplicate charges.

Example API Responses

All examples use placeholder data. Query: POST /v2/company with { "id": "<rciNumber>", "countryCode": "MC", "dataPoints": ["company", "legalRepresentatives"] }
Query: POST /v2/company with { "id": "21P07125", "countryCode": "MC", "mode": "onboarding", "dataPoints": ["company"] }
Note: Onboarding profile is a lightweight, fast response. It does not include legal representatives, capital, or incorporation date. Legal form and activities are AI-enriched from the extract preview page data.
Note: Closed companies have active: false and a status like “Radiee” (struck off). The trade register extract is still available for retrieve for closed companies.
Documents are returned when "dataPoints": ["availableDocuments"] is requested.