List companies

List companies in registries based on search criteria

Input

User needs to provide one of

  • companyNumber

  • regon

  • companyName

AttributeTypeDescription

companyName

String

Search phrase (at least 3 characters)

regon

String

REGON number

companyNumber

String

Company number, Polish NIP

companyType

String

Company type, possible values:

  • SOLE_PROPRIETORSHIP

  • CIVIL_COMPANY

Output

Ceidg

AttributeTypeDescription

companies

array

List of companies

count

number

Results count

Company

AttributeTypeDescription

id

string

The unique identifier of the sole proprietorship

name

string

The name of the sole proprietorship

registerDate

string

The date when the sole proprietorship was registered

object

The address of the sole proprietorship as registered with the authorities

object

The correspondence address of the sole proprietorship

object

Information about the owner of the sole proprietorship

array of objects

The citizenship(s) of the owner

array of objects

The activity classifications of the sole proprietorship

status

string

The current status of the sole proprietorship

registryAddress

AttributeTypeDescription

street

string

The street address of the registry

city

string

The city where the registry is located

country

string

The country where the registry is located

postalCode

string

The postal code of the registry

terc

string

The TERC code of the registry

simc

string

The SIMC code of the registry

ulic

string

The ULIC code of the registry

correspondenceAddress

AttributeTypeDescription

street

string

The street address of the correspondence

city

string

The city where the correspondence is located

country

string

The country where the correspondence is located

postalCode

string

The postal code of the correspondence

terc

string

The TERC code of the correspondence

simc

string

The SIMC code of the correspondence

ulic

string

The ULIC code of the correspondence

owner

AttributeTypeDescription

name

string

The first name of the owner

surname

string

The last name of the owner

nip

string

The NIP number of the owner

regon

string

The REGON number of the owner

citizenship

AttributeTypeDescription

symbol

string

The two-letter symbol of the citizenship

country

string

The name of the country associated with the citizenship

activityClassifications

AttributeTypeDescription

value

string

The value of the activity classification

type

string

The type of the activity classification

Example response

{
    "ceidg": {
        "companies": [
            {
                "id": "84e25402-e8c0-4f11-b012-6b2f88645c8f",
                "name": "PAWEŁ NIEWOLIŃSKI, WSPÓLNIK SPÓŁKI CYWILNEJ \"PIZZA PLACE'",
                "registerDate": "2006-06-01",
                "registryAddress": {
                    "street": "ul. Gołębia 13",
                    "city": "Puszczykowo",
                    "country": "PL",
                    "postalCode": "62-040",
                    "voivodeship": "WIELKOPOLSKIE",
                    "terc": "3021021",
                    "simc": "0971376",
                    "ulic": "05761"
                },
                "correspondenceAddress": {
                    "street": "ul. Sosnowa 21",
                    "city": "Lesko",
                    "country": "PL",
                    "postalCode": "35-500",
                    "terc": "1827011",
                    "simc": "0853510"
                },
                "owner": {
                    "name": "PAWEŁ",
                    "surname": "NIEWOLIŃSKI",
                    "nip": "7772793547",
                    "regon": "300317928"
                },
                "citizenship": [],
                "activityClassifications": [],
                "status": "ACTIVE"
            },
            {
                "id": "bbbab5ed-50ec-4d92-a908-9e0d86501ed0",
                "name": "MERKATUS Krzysztof Bet, WSPÓLNIK SPÓŁKI CYWILNEJ \"PIZZA PLACE\"",
                "registerDate": "2007-10-01",
                "registryAddress": {
                    "street": "ul. Dolna Wilda 88/81",
                    "city": "Poznań",
                    "country": "PL",
                    "postalCode": "61-501",
                    "voivodeship": "WIELKOPOLSKIE",
                    "terc": "3064011",
                    "simc": "0969400"
                },
                "owner": {
                    "name": "Krzysztof",
                    "surname": "Bet",
                    "nip": "6661986395",
                    "regon": "301035149"
                },
                "citizenship": [],
                "activityClassifications": [],
                "status": "ACTIVE"
            }
        ],
        "count": 2
    }
}

Last updated