Skip to main content

Start here

This guide contains public integration notes for Mauritius. 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.

Mauritius 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.

Data Sources

Mauritius uses a single official registry as its data source. There is no multi-source priority chain — all data comes from the CBRD.
  • CBRD (Corporate and Business Registration Department) — Operated under the Ministry of Finance, Economic Planning and Development, the CBRD is the central company register for Mauritius. The online search portal provides company search, detailed company profiles, and printable extracts. The system retrieves structured data including company name, legal form, status, registration date, registered address, stated capital, business activity, office bearers, and shareholders.
Performance expectations: Mauritius is slower than most countries. Searches take several seconds, and full company profiles and document generation take about 30 to 60 seconds. The Speed section of the pricing page has the current figures.

Company Identifiers

Query Identifiers

File No. format: /v2/company accepts the CBRD File No. and nothing else — a register track letter (C for companies, P for partnerships) followed by up to 6 digits, matching ^[A-Za-z]\d{2,6}$ (e.g. C117853, C61811). Anything else returns 400 Bad Request with the expected format.The File No. is not the Business Registration Number. The BRN (125473, or C07068818) identifies a business registration under the Business Registration Act, and a company with several registered businesses has several of them — so it is not a per-entity key.Other numbers you may hold — a BRN, a File No. written without its letter prefix (61811), or an FSC global-business licence number (61811 C1/GBL, 217346GBC) — resolve to the File No. through /v2/search. Search first, then call /v2/company with the id it returns.

Identifiers in API Response

Once you retrieve company data, the identifiers object contains all available identifiers for that entity:
The response key is spelled brn for backwards compatibility, but the value it carries is the CBRD File No.

Search Capabilities

Search resolves what /v2/company will not accept. If you hold a BRN or an FSC global-business licence number, search for it and use the returned id — that id is always the CBRD File No.
Mauritius searches are slower than most countries. Budget several seconds per search (see the Speed section of the pricing page). Prefer a single identifier search over repeated name queries.

Company Status

Company status is determined deterministically from the statusCode field in the CBRD data. No AI inference is involved for status mapping.
The status mapping is fully deterministic with no AI involvement. Dormant companies are still considered active (registered but temporarily inactive). Unknown status codes fall back to checking if the code equals LIVE to determine the active flag, and use the raw status code as the local name. Mauritius returns localName and active only: no statusDetails object is returned.
Mauritius legal forms are determined deterministically from the combination of orgCategoryCode and orgTypeCode fields in the CBRD data. No AI enrichment is used.

By Organization Category

By Organization Type

The legal form is constructed by combining the organization type and category (e.g., “Private Company (Domestic Company)”). The standardization logic is fully deterministic: PUBLIC maps to Corporation, PRIVATE maps to Limited Liability Company, CIVIL and COMMERCIAL map to Partnership, FOREIGN maps to Branch or Representative Office, and GBC/GLOBAL/GLOBAL BUSINESS COMPANY maps to Limited Liability Company. When neither category nor type matches a known code, the standardized form falls back to Other.
Legal representatives are extracted from the office bearers listed in the CBRD company details. The extraction is deterministic — no AI is used for role mapping.

Role Mapping

All office bearers are classified as legal representatives. There is no distinction between “legal representative” and “other key person” for Mauritius — the CBRD does not provide enough role granularity to make this split. The role mapping uses substring matching on the designation field (case-insensitive).

Extraction Logic

Corporate office bearers are returned with type: "company" and their legal name.
Resigned officers are excluded. Office bearers with a resignationDate are automatically filtered out. Only currently active officers are included in the response.

Other Key Persons

Mauritius does not distinguish between legal representatives and other key persons. All office bearers from the CBRD are returned as legal representatives. The otherKeyPersons array is not populated.

Shareholders

Shareholders are extracted from the shareholder list in the CBRD company details using AI parsing for type classification (individual vs. company).

Extraction Logic

Ownership Fields

Shareholder type classification (individual vs. company) is AI-inferred. The structured fields (number of shares, percentage, value) come directly from the CBRD. If the register publishes shareholders but they cannot be parsed, the shareholders datapoint fails as unavailable while company and legalRepresentatives still succeed. An empty array means the register published no shareholders, which is common for Global Business Companies.

Activity Code Mapping

Mauritius does not return activity codes. The CBRD records the nature of business as free text, which is returned in activityDescription (multiple activities are separated by semicolons).
The CBRD does not use a standardized activity classification system, and no NACE or ISIC codes are returned for Mauritius. The activities object is not populated.

Data Availability Matrix

Legend: ✅ Available | ❌ Not Available | ⚠️ Conditionally Available | Async = Asynchronous processing (~30-60 seconds)

Documents by Company Type

All Companies (File Number)

The Company Details Extract is generated from the CBRD’s printable company details view. This is the only document type currently available for Mauritius. Estimated delivery time is approximately 60 seconds.

Example API Responses

All examples use placeholder data. Query: POST /v2/company with { "id": "<id>", "countryCode": "MU", "dataPoints": ["company", "legalRepresentatives"] }
Note: GBC companies commonly use USD as their stated capital currency. Legal form standardization maps to Limited Liability Company.
Note: Foreign companies are mapped to Branch or Representative Office. Shareholder data may be limited or unavailable.
Note: Defunct companies have active: false. Limited data may be available compared to active companies. Legal representatives and shareholders may be empty.
Documents are returned when "dataPoints": ["availableDocuments"] is requested.

Quirks & Gotchas