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

# Lithuania Company Data – Enhanced Profiles Removed, Search and Lite Profile Updates

> Lithuania company data migrated to new provider. Enhanced Profiles removed; Search and Lite Profile responses updated with improved V2 structure.

## 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

We've improved the structure and data quality of Search responses for Lithuania companies.

### Response structure changes

The search response structure has been updated for better consistency:

**Before:**

```json theme={null}
{
  "data": [
      {
        "id": "LT|MTI2MzUwNzMxfFNFQ1I",
        "companyName": "UAB \"Interneto vizija\"",
        "companyNumber": "126350731",
        "address": "Vilniaus m. sav. Vilniaus m., Lithuania",
        "registrationAuthority": "State Enterprise Centre of Registers"
      }
    ]
```

**After:**

```json theme={null}
{
  "data": [
      {
        "id": "LT|MTI2MzUwNzMxfFNFQ1I",
        "companyName": "UAB \"Interneto vizija\"",
        "companyNumber": "126350731",
        "address": "Kaunas, Taikos pr. 147, LT-51142",
        "status": "Registered",
        "type": "Private Limited Liability Company",
        "startDate": "2002-11-22",
        "registrationAuthority": "State Enterprise Centre of Registers"
      }
    ]
}
```

### Key changes

The addressField is improved. Additional fields for status and type are provided.

The `status` and `type` fields are now populated:

```json theme={null}
{
  "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 (V2 format):**

```json theme={null}
{
    "data": {
      "activity": [
        {}
      ],
      "address": {
        "fullAddress": "Vilniaus apskr. Vilniaus miesto sav. Vilnius Krivių g. 5",
        "buildingName": "Vilnius",
        "streetName": " Krivių g. 5"
      },
      "companyNumber": "307030013",
      "companyName": "UAB Whitebridge Network",
      "legalForm": {
        "original": "Private Limited Liability Company"
      },
      "legalStatus": {
        "original": "No legal proceedings",
        "normalized": "Active"
      },
      "registrationAuthority": "State Enterprise Centre of Register"
    }
}
```

**After (V2 format):**

```json theme={null}
{
    "data": {
        "activity": [
          {
            "code": "58.29",
            "description": "Other software publishing",
            "type": "Primary"
          }
        ],
        "address": {
          "type": "Registered Address",
          "fullAddress": "Vilniaus apskr. Vilniaus miesto sav. Vilnius Krivių g. 5",
          "rawAddressLines": [
            "5",
            "Krivių",
            "Vilnius",
            "Vilniaus miesto sav.",
            "Vilniaus"
          ],
          "streetNumber": "5",
          "streetName": "Krivių",
          "city": "Vilnius",
          "postcode": "LT-01204",
          "municipality": "Vilniaus miesto sav.",
          "region": "Vilniaus",
          "country": "Lithuania"
        },
        "companyNumber": "307030013",
        "companyName": "UAB Whitebridge Network",
        "otherIdentifiers": [],
        "foundationDate": {
          "original": "2024-11-19"
        },
        "registrationDate": {
          "original": "2024-11-19"
        },
        "legalForm": {
          "original": "Private Limited Liability Company"
        },
        "legalStatus": {
          "original": "Registered",
          "normalized": "Active"
        },
        "registrationAuthority": "State Enterprise Centre of Register"
      }
}
```

### Field mapping changes

#### Legal form and status

**Key changes:**

* Status normalization remains title case (`"Active"`)

#### Address structure

The address structure has been enhanced with better parsing and structured fields:

**Key improvements:**

* `type` field is now included to specify the address type (e.g., "Registered Address")
* Structured fields added: `streetNumber`, `city`, `postcode`, `municipality`, `region`, and `country`
* `rawAddressLines` array provides the original address components
* `buildingName` field is deprecated in favor of structured fields

#### Activity data

Activity (NACE code) information is now populated

**Key improvements:**

* Activity codes (`code`) and descriptions (`description`) are now populated
* Activity `type` is included (e.g., "Primary")
* `classificationScheme` field is specified (e.g., "NACE")
* Empty activity arrays may still occur for some companies

## Additional resources

* [Lite Profile Documentation](/documentation/features/verify-basic-details-v2)
* [Search API Documentation](/documentation/features/search-for-a-company-v2)
