What kind of data I will get

By using this integration, you will get information about commercial companies. This data will be taken from the GusRegon data service.

In response, you will receive data mapped to our data model

Input data definition

Only NIP is required to download data from GusRegon.

{
 "nip": "5224158027" 
}

Output data

Response from GusRegon may vary depending on the type of company you are looking for.

Below is example response for the company registered as legal entity. It contains basic information about the company, its contact information, address and activity.

{
  "gusRegon": {
    "regon": "385349514",
    "nip": "5252812929",
    "krs": {
        "krsNumber": "0000823971",
        "krsInsertDate": "2020-01-16",
        "krsFirstEntryDate": "2020-01-16"
    },
    "endDate": "",
    "phone": "500123123",
    "email": "[email protected]",
    "companyName": "TRANSACTIONLINK SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ",
    "creationDate": "2020-01-16",
    "startDate": "2020-01-16",
    "legalForm": "SPÓŁKI Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ",
    "address": {
        "country": "POLSKA",
        "city": "Warszawa",
        "postal": "00-229",
        "street": "Rynek Nowego Miasta 9/9"
    },
    "type": "P",
    "activityCeidg": false,
    "activityAgricultural": false,
    "activityOther": false
    }
}

Here is example response for the company registered for natural person. Besides basic information about the company like REGON, address, contact information, legal form, activity etc. you can also find there first name, second name and last name of the owner of the company.

{
  "regon": "368638855",
  "nip": "6572714838",
  "krs": {
      "krsNumber": "001671117/2017",
      "krsInsertDate": "2017-10-31",
      "krsFirstEntryDate": "2017-10-31"
  },
  "endDate": "",
  "phone": "",
  "email": "",
  "firstName": "ADAM",
  "secondName": "SŁAWOMIR",
  "surname": "GĘBAL",
  "companyName": "Adam Gębal Consulting",
  "creationDate": "2017-10-31",
  "startDate": "2017-11-02",
  "legalForm": "OSOBY FIZYCZNE PROWADZĄCE DZIAŁALNOŚĆ GOSPODARCZĄ",
  "address": {
      "country": "POLSKA",
      "city": "Kielce",
      "postal": "25-370",
      "street": "ul. Stefana Żeromskiego 29/64"
  },
  "type": "Sole proprietorship",
  "activityCeidg": true,
  "activityAgricultural": false,
  "activityOther": false
}