Documentation Index
Fetch the complete documentation index at: https://developer.kyckr.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
We’ve upgraded our connection to the BVI Financial Services Commission (FSC) data, providing access to official company information through the FSC Public Search portal.
What this means
API customers can now:
- Search for companies in the BVI register
- Retrieve a Lite Profile (onboarding profile) for BVI companies
- Retrieve a filing list of available documents to order
Available data
| Capability | Description |
|---|
| Search | Locate BVI companies using either company name or registration number (supports both numeric and alphanumeric formats such as L658) |
| Onboarding Profile | Essential company details structured for KYC workflows, including legal form, current registration status, and previous names where available |
| Filing List | Receive a list of available documents that can be ordered |
ISO code for API requests: VG
Search best practices
- Use the core company name without legal form suffixes (e.g., search “Far East Consortium” rather than “Far East Consortium (BVI) Limited”).
- Note that registry formatting may differ from your records (e.g., “FAR EAST CONSORTIUM (B.V.I.) LIMITED” vs “Far East Consortium (BVI) Limited”).
- If a full name search returns no results, try searching with just the distinctive company name portion.
For customers currently using our manual ordering process: exact name matches previously handled by our team will now require you to verify the company name format in the BVI register before searching.
Technical details
Search
Endpoint: https://api.kyckr.com/v2/companies (search with jurisdiction filter for BVI)
Example response:
{
"correlationId": "019c28fe-77bb-719c-936d-2b4e9ea8be21",
"cost": {
"type": "credit",
"value": 0
},
"timeStamp": "2026-02-04T14:11:34.7872265Z",
"details": "Success",
"data": [
{
"id": "VG|MjAzODM5MHw",
"companyName": "Sample Company Limited",
"companyNumber": "1234567"
}
]
}
Lite Profile
Endpoint: https://api.kyckr.com/v2/companies/{kyckrId}/lite
Example response:
{
"orderId": 333288,
"correlationId": "019c28fe-afab-719c-b9b6-28553c00f7da",
"cost": {
"type": "lite",
"value": 1
},
"timeStamp": "2026-02-04T14:11:48.0204969Z",
"details": "Success",
"data": {
"activity": [
{}
],
"address": {},
"companyNumber": "1234567",
"companyName": "Sample Company Limited",
"legalForm": {
"original": "BVI Business Company"
},
"legalStatus": {
"original": "Dissolved"
},
"registrationAuthority": "The BVI Financial Services Commission",
"previousNames": [
"Sample Company 2 Limited"
]
}
}
Filing Search (Documents)
Endpoint: https://api.kyckr.com/v2/companies/{kyckrId}/documents
Example response:
{
"correlationId": "019c294c-5214-719c-ae90-d8641d2d8f12",
"cost": {
"type": "credit",
"value": 0
},
"timeStamp": "2026-02-04T15:36:54.7145206Z",
"details": "Success",
"data": [
{
"id": "fFJPV09GRl9Wa2RmUTFBPV9RMjl0Y0dGdWVTQlFjbTltYVd4bElDOGdVMlZoY21Ob0lGSmxjRzl5ZEE9PV9NakF6T0RNNU1BPT1fX19fUzFsRFQwWkdfVmtkZlExQT18VkdfQ1B8NTA4fENvbXBhbnkgUHJvZmlsZSAvIFNlYXJjaCBSZXBvcnQ=",
"cost": {
"type": "credit",
"value": 40.00
},
"name": "Company Profile / Search Report",
"deliveryTimeMinutes": 60,
"documentFormat": [
"application/pdf"
]
},
{
"id": "fFJPV09GRl9Wa2RmUTBkVF9RMlZ5ZEdsbWFXTmhkR1VnYjJZZ1IyOXZaQ0JUZEdGdVpHbHVadz09X01qQXpPRE01TUE9PV9fX19TMWxEVDBaR19Wa2RmUTBkVHxWR19DR1N8NTA4fENlcnRpZmljYXRlIG9mIEdvb2QgU3RhbmRpbmc=",
"cost": {
"type": "credit",
"value": 80.00
},
"name": "Certificate of Good Standing",
"deliveryTimeMinutes": 5760,
"documentFormat": [
"application/pdf"
]
},
{
"id": "fFJPV09GRl9Wa2RmUVc5Ql9UV1Z0YjNKaGJtUjFiU0JoYm1RZ2IzSWdRWEowYVdOc1pYTWdiMllnUVhOemIyTnBZWFJwYjI0PV9NakF6T0RNNU1BPT1fX19fUzFsRFQwWkdfVmtkZlFXOUJ8VkdfQW9BfDUwOHxNZW1vcmFuZHVtIGFuZCBvciBBcnRpY2xlcyBvZiBBc3NvY2lhdGlvbg==",
"cost": {
"type": "credit",
"value": 80.00
},
"name": "Memorandum and or Articles of Association",
"deliveryTimeMinutes": 5760,
"documentFormat": [
"application/pdf"
]
},
{
"id": "fFJPV09GRl9Wa2RmUWs5RV9VbVZuYVhOMFpYSWdiMllnUkdseVpXTjBiM0p6X01qQXpPRE01TUE9PV9fX19TMWxEVDBaR19Wa2RmUWs5RXxWR19CT0R8NTA4fFJlZ2lzdGVyIG9mIERpcmVjdG9ycw==",
"cost": {
"type": "credit",
"value": 60.00
},
"name": "Register of Directors",
"deliveryTimeMinutes": 5760,
"documentFormat": [
"application/pdf"
]
}
]
}
Additional resources