- Developer newsUpdates to the API
- Estonia Company Data – Search, Lite Profile, and Enhanced Profile Updates
- Lithuania Company Data – Enhanced Profiles Removed, Search and Lite Profile Updates
- Luxembourg Enhanced Profile – Shareholder Data Improvements
- Enhanced UK Company Data – Director Information Improvements
- New Canada integration for search, lite profile and company profile documents
- Italian company identifier changed from codice fiscale to REA
- IntroductionAbout the Companies V1 API
- Company searchSearch for a company by name or number
- Cache searchSearch for a company globally
- Lite ProfileBasic company verification details
- Enhanced ProfileCompany profiles with representatives and shareholders
- Filing searchOrder registry extracts and filings
- UBO VerifyFind the ultimate beneficial owners via corporate ownership structure
- About testingInformation about the Kyckr test environment
- Supported jurisdictionsJurisdictions and regional codes
- Response codesExtra information in the responseCodeField
- FAQsFrequently asked questions about the V1 API
Lithuania Company Data – Enhanced Profiles Removed, Search and Lite Profile Updates
Overview
Following the Lithuanian register's removal from the EBR network, we've migrated Lithuania company data to a new provider. Enhanced Profiles are no longer available; Search and Lite Profile have been updated.
Enhanced Profiles Removal
Important: Enhanced Profiles are no longer available for Lithuania (ISO code LT). If you're currently using Enhanced Profiles for Lithuania companies, you'll need to migrate to Lite Profiles.
If you need the detailed information previously available in Enhanced Profiles, please contact your account manager to discuss alternative solutions.
Search results
Response structure changes
The search response structure has been updated due to the new provider.
Before:
{
"companiesField": [
{
"addressesField": [
{
"countryField": "Lithuania",
"lineField": [
{
"lineField": "Vilniaus m. sav. Vilniaus m.",
"typeField": "",
"typeCodeField": ""
}
],
"typeField": "Registered Office Short Description",
"addressInOneLineField": "Vilniaus m. sav. Vilniaus m., Lithuania",
"addressLine1Field": "",
"addressLine2Field": "",
"addressLine3Field": "",
"addressLine4Field": "",
"cityTownField": "Vilniaus m. sav. Vilniaus m."
}
],
"aliasesField": [
null
],
"codeField": "126350731",
"companyIDField": "126350731",
"dateField": "26/11/2025",
"nameField": "UAB \"Interneto vizija\"",
"officialField": false,
"registrationAuthorityField": "State Enterprise Centre of Registers",
"registrationAuthorityCodeField": "SECR"
}
]
}After:
{
"companiesField": [
{
"addressesField": [
{
"addressInOneLineField": "Vilnius, S. Moniukos g. 27-6, LT-08115",
"addressLine1Field": ""
}
],
"codeField": "126350731",
"companyIDField": "126350731",
"legalFormField": "Private Limited Liability Company",
"legalStatusField": "Registered",
"dateField": "26/11/2025",
"nameField": "UAB \"Interneto vizija\"",
"officialField": false,
"registrationAuthorityField": "State Enterprise Centre of Registers",
"registrationNumberField": "126350731"
}
]
}Key changes
The addressField is improved. Note that lineField is deprecated and no longer populated
The status and type fields are now populated:
{
"legalStatusField": "Registered",
"legalFormField": "Private Limited Liability Company"
}Lite profile changes
The response structure has been updated due to the new provider.
Response structure changes
Before (V1 format):
{
"data": {
"companyProfileField": {
"activityField": [
{
"codeField": "",
"descriptionField": ""
}
],
"addressesField": [
{
"countryField": "",
"lineField": [
{
"lineField": "",
"typeField": "",
"typeCodeField": ""
}
],
"addressInOneLineField": "Kauno apskr. Kauno miesto sav. Kaunas Taikos pr. 147",
"addressLine1Field": "Kaunas",
"addressLine2Field": " Taikos pr. 147",
"addressLine3Field": "LT-51142",
"addressLine4Field": "",
"cityTownField": "",
"regionStateField": "",
"postcodeField": ""
}
],
"codeField": "110884491",
"dateField": "2025-11-26T04:38:18.0294293Z",
"foundationDateField": "",
"legalFormField": "Private Limited Liability Company",
"legalStatusField": "No legal proceedings",
"normalizedLegalStatusField": "ACTIVE",
"nameField": "Uždaroji akcinė bendrovė Kauno termofikacijos elektrinė",
"officialField": false,
"registrationAuthorityField": "State Enterprise Centre of Register"
},
"transactionIdField": "0"
}After (V1 format):
{
"data": {
"companyProfileField": {
"activityField": [
{
"codeField": "35.11",
"descriptionField": "Production of electricity from non-renewable sources"
}
],
"addressesField": [
{
"countryField": "Lithuania",
"typeField": "Registered Address",
"addressInOneLineField": "Kauno apskr. Kauno miesto sav. Kaunas Taikos pr. 147",
"addressLine1Field": "147 Taikos",
"cityTownField": "Kaunas",
"regionStateField": "Kauno miesto sav.",
"postcodeField": "LT-51142"
}
],
"aliasesField": [],
"codeField": "110884491",
"dateField": "2026-01-20T11:36:15.1701960+00:00",
"foundationDateField": "2002-11-22",
"legalFormField": "Private Limited Liability Company",
"legalStatusField": "Registered",
"normalizedLegalStatusField": "Active",
"nameField": "U\u017edaroji akcin\u0117 bendrov\u0117 Kauno termofikacijos elektrin\u0117",
"officialField": false,
"registrationAuthorityField": "State Enterprise Centre of Register",
"registrationDateField": "2002-11-22",
"registrationNumberField": "110884491",
"otherIdentifiersField": []
},
"transactionIdField": "332436",
"responseCodeField": "100"
},
}Field mapping changes
Company identification
Key changes:
registrationNumberFieldis now included, providing the registration number separately fromcodeField
Legal form and status
Key changes:
- Status normalization now uses title case (
"Active") instead of uppercase ("ACTIVE")
Address structure
The address structure has been improved with better parsing and more populated fields:
Key improvements:
countryFieldis now populated (previously empty)typeFieldis now included to specify the address type (e.g., "Registered Address")lineFieldarray is deprecated and no longer populatedcityTownField,regionStateField, andpostcodeFieldare now properly parsed and populated
Activity data
Activity (NACE code) information is now properly populated:
Key improvements:
- Activity codes (
codeField) and descriptions (descriptionField) are now populated - Field names remain consistent with V1 format (
*Fieldsuffix) - Empty activity arrays may still occur for some companies
Additional fields
New fields added:
aliasesField: Array of company aliases (may be empty)otherIdentifiersField: Array of other company identifiers (may be empty)