Rejestr.io

Get informations about commercial companies

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 Rejestr.io data service.

In response, you will receive data in the original structure and mapped to our data model.

Input data definition

Only NIP is required to download data from Rejestr.io.

{
  "nip": "5224158027"
}

Output data

In the response from Rejestr.io, you will find detailed information about the company, its status and address details.

{
  "rejestrIo" : {
    "organization": {
        "id" : 833971,
        "shortName" : "PAYMENTLINK",
        "fullName" : "PAYMENTLINK SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ",
        "krs" : "0000321931",
        "nip" : "5224158027",
        "regon" : "973978643",
        "state" : {
        "isPublicBenefit" : false,
        "inLiquidation" : false,
        "inBankruptcy" : false,
        "inSuspension" : false,
        "isDeleted" : false,
        "legalForm" : "SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ",
        "mainPkdCode" : "Finansowa działalność usługowa, z wyłączeniem ubezpieczeń i funduszów emerytalnych"
    },
    "ceo" : {
      "id" : 2235670,
      "firstAndLastName" : "Kamil Tomasz Braniewski"
    },
    "address" : {
      "city" : "Warszawa",
      "aptNo" : "9",
      "code" : "00-258",
      "street" : "Jana Kazimierza",
      "postOffice" : "Warszawa",
      "country" : "Polska",
      "houseNo" : "23"
    },
    "firstKrsEntryDate" : "2020-01-11",
    "lastKrsEntryDate" : "2022-02-25",
    "currentRelationCount" : 3,
    "pastRelationCount" : 2,
    "type" : "organizacja"
    }
  }
}

Output data model structure

A detailed description of the response structure using the swagger standard.

openapi: 3.0.1
info:
  title: Transactionlink Rejestr.io App model definition
paths: {}
components:
  schemas:
    rejestrIo:
      type: object
      properties:
        id:
          type: integer
          example: 833971
        shortName:
          type: string
          example: 'PAYMENTLINK'
        fullName:
          type: string
          example: 'PAYMENTLINK SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ'
        krs:
          type: string
          example: '0000321931'
        nip:
          type: string
          example: '5224158027'
        regon:
          type: string
          example: '973978643'
        state:
          type: object
          properties:
            isPublicBenefit:
              type: boolean
            inLiquidation:
              type: boolean
            inBankruptcy:
              type: boolean
            inSuspension:
              type: boolean
            isDeleted:
              type: boolean
            legalForm:
              type: string
              example: 'SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ'
            mainPkdCode:
              type: string
              example: 'Finansowa działalność usługowa, z wyłączeniem ubezpieczeń i funduszów emerytalnych'
        ceo:
          type: object
          properties:
            id:
              type: integer
              example: 2235670
            firstAndLastName:
              type: string
              example: 'Kamil Tomasz Braniewski'
        address:
          type: object
          properties:
            city:
              type: string
              example: 'Warszawa'
            aptNo:
              type: string
              example: '9'
            code:
              type: string
              example: '00-258'
            street:
              type: string
              example: Jana Kazimierza
            postOffice:
              type: string
              example: 'Warszawa'
            country:
              type: string
              example: 'Polska'
            houseNo:
              type: string
              example: '23'
        firstKrsEntryDate:
          type: string
          format: data
          example: '2020-01-11'
        lastKrsEntryDate:
          type: string
          format: data
          example: '2022-02-25'
        currentRelationCount:
          type: integer
          example: 3
        pastRelationCount:
          type: integer
          example: 2
        type:
          type: string
          example: 'organizacja'