Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.topograph.co/llms.txt

Use this file to discover all available pages before exploring further.

Current limitation (April 2026)Document-based verification is temporarily deactivated for the British Virgin Islands. The BVI FSC payment gateway has been broken on their side since March 2026 (returns HTTP 400 for every document purchase request), and their fees are very high even when the gateway works.Only the public search API is exposed today, which means you can retrieve basic company data (name, status, legal form category, company number, previous names) in onboarding mode but not directors, shareholders, registered address, or capital. We will reactivate the full verification flow once the FSC restores document purchase.

Data Sources

BVI company data comes from the British Virgin Islands Financial Services Commission (FSC), the autonomous regulatory authority that operates the Registry of Corporate Affairs.
  • BVI FSC Public Search API (publicsearch.bvifsc.vg). Free REST API providing basic company information: legal name, company number, entity type, status, and previous names. No authentication required. This is currently the only active source for BVI data and powers the onboarding profile.

Company Identifiers

Query Identifiers

BVI company numbers do not have a check digit or internal structure. The FSC has assigned identifiers across several historical registers, which is why two different formats coexist today.
FormatRegexExampleApplies To
Pure numeric^\d+$18412, 1378562BVI Business Companies (type 1), International Business Companies (type 5)
Letter-prefixed^[A-Z]\d+$L658, L732, L7805Local Companies (type 7), pre-existing under the old Companies Act
Both formats are validated before we hit the register. There is no check digit, no embedded year, no structural meaning beyond the optional letter prefix indicating a legacy Local Company.

Identifiers in API Response

Identifier TypeFormatExampleNotes
companyNumberNumeric or letter-prefixed1378562 or L658Official registration number assigned by the BVI FSC
BVI companies do not have VAT numbers, tax IDs, or other secondary identifiers in the public registry. The company number is the sole identifier.

Search Capabilities

Search TypePatternExampleMatch Type
By company number (numeric)Digits only18412Exact
By company number (prefixed)Letter + digitsL658Exact
By nameText string (min 2 chars)"BANKIM"Fuzzy
Both name and ID searches query the BVI FSC public search API in real time. There is no cached index for BVI.

Company Status

The BVI FSC returns a free-text status string. We map known values deterministically and fall back to keyword inference for unrecognized values.
Local StatusStandardizedActive
ActiveActiveYes
In Good StandingActiveYes
In Penalty - Non filing of Beneficial OwnershipInactiveNo
In Liquidation (insolvent)Under Insolvency ProceedingNo
In Liquidation (solvent)In LiquidationNo
DissolvedClosedNo
Dissolved (10 year non-pmt)ClosedNo
Dissolved (7 year non-pmt)ClosedNo
Struck off - DissolvedClosedNo
Struck off - Non Pmt A/FeeClosedNo
The public search API returns a coarse numeric type code indicating one of 5 broad categories. Detailed BVI Business Companies Act 2004 subtypes (Company Limited by Shares, Company Limited by Guarantee, Unlimited Company, Restricted Purpose Company, Segregated Portfolio Company) only appear in the trade register extract document, which is not reachable today.
Type CodeLocal NameStandardizedNotes
1BVI Business CompanyLimitedLiabilityCompanyMost common, incorporated under BCA 2004
3Limited PartnershipPartnershipLimited and general partners
4Foreign CompanyOtherForeign entity registered in BVI
5International Business CompanyLimitedLiabilityCompanyLegacy type, pre-BCA 2004, grandfathered
7Local CompanyLimitedLiabilityCompanyIncorporated under the old Companies Act, uses letter-prefixed numbers

Quirks & Gotchas

QuirkDetails
Document purchase deactivatedThe BVI FSC payment gateway is broken on their side. payment/to-web-checkout returns HTTP 400 for every request. We deactivated the document-based verification flow in March 2026 and will reactivate it once the FSC restores payment.
High document feesEven when the gateway works, BVI document fees are among the highest of any jurisdiction we cover.
Residential proxy requiredDatacenter IPs are blocked by the BVI FSC public search endpoint. All requests are routed through a residential proxy.
Privacy jurisdictionBVI is a well-known privacy jurisdiction. Even when documents are accessible, directors and shareholders visible on them are frequently nominees rather than beneficial owners.
No UBO registerBVI does not have a public UBO register. Beneficial ownership data sits in the BOSS (Beneficial Ownership Secure Search) system, which is restricted to competent authorities.
No registration date in searchThe public search API does not expose incorporation or registration dates. These only appear in the trade register extract document (currently unreachable).
No address in searchRegistered addresses are not available in the public search API.
Coarse legal formThe type field gives only a broad category. Detailed BCA 2004 subtypes are not exposed by the search API.
No activity codesBVI has no national industry classification system in its registry. Many holding companies and SPVs have no stated business description.

Data Availability

Data TypeOnboarding ProfileVerification ModeNotes
Company NameAvailableNot available
Company NumberAvailableNot available
Company StatusAvailableNot availableMapped from FSC free-text status
Legal Form (coarse)AvailableNot availableOne of 5 type codes
Previous Company NamesAvailableNot available
Registration DateNot availableNot availableWould come from document
Legal AddressNot availableNot availableWould come from document
Share CapitalNot availableNot availableWould come from document
Legal RepresentativesNot availableNot availableWould come from document
ShareholdersNot availableNot availableWould come from document
Ultimate Beneficial OwnersNot availableNot availableBVI has no public UBO register
Activity CodesNot availableNot availableBVI has no classification system
Verification mode is listed as unavailable because document purchase is deactivated. We will update this table as soon as the FSC payment gateway is fixed.

Example API Response

Query: POST /v2/company with { "id": "1987245", "countryCode": "VG", "mode": "onboarding", "dataPoints": ["company"] }
{
  "company": {
    "id": "1987245",
    "countryCode": "VG",
    "identifiers": {
      "companyNumber": "1987245"
    },
    "legalName": "PACIFIC VENTURES INC.",
    "status": {
      "localName": "Active",
      "active": true,
      "statusDetails": {
        "status": "ACTIVE"
      }
    },
    "legalForm": {
      "localName": "BVI Business Company",
      "englishTranslation": "BVI Business Company",
      "standardized": "LimitedLiabilityCompany"
    }
  }
}
This is the complete shape of the onboarding response. No address, no directors, no shareholders, no registration date, no capital. The response is instant (single HTTP call to the BVI FSC public search API via a residential proxy) and requires no document purchase.