Skip to main content
POST
/
api
/
krs
/
companies
/krs/companies
curl --request POST \
  --url https://api.anysite.io/api/krs/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "krs": "<string>",
  "timeout": 300,
  "register": "P"
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@krs_company",
    "register_type": "<string>",
    "legal_form": "<string>",
    "regon": "<string>",
    "nip": "<string>",
    "is_opp": true,
    "registered_at": "<string>",
    "last_entry_at": "<string>",
    "state_as_of": "<string>",
    "registered_office_address": {
      "@type": "@krs_address",
      "country": "<string>",
      "voivodeship": "<string>",
      "county": "<string>",
      "commune": "<string>",
      "locality": "<string>",
      "street": "<string>",
      "building_number": "<string>",
      "apartment_number": "<string>",
      "postal_code": "<string>",
      "post_office": "<string>"
    },
    "email": "<string>",
    "website": "<string>",
    "share_capital": {
      "@type": "@krs_money",
      "value": 123,
      "currency": "<string>"
    },
    "paid_capital": {
      "@type": "@krs_money",
      "value": 123,
      "currency": "<string>"
    },
    "purpose": "<string>",
    "activities": [
      {
        "@type": "@krs_activity",
        "description": "<string>",
        "pkd_code": "<string>"
      }
    ],
    "representation": {
      "@type": "@krs_representation",
      "organ_name": "<string>",
      "representation_method": "<string>",
      "members": [
        {
          "@type": "@krs_officer",
          "name": "<string>",
          "role": "<string>",
          "proxy_type": "<string>",
          "is_suspended": true
        }
      ]
    },
    "supervisory_bodies": [
      {
        "@type": "@krs_supervisory_body",
        "name": "<string>",
        "members": [
          {
            "@type": "@krs_officer",
            "name": "<string>",
            "role": "<string>",
            "proxy_type": "<string>",
            "is_suspended": true
          }
        ]
      }
    ],
    "proxies": [
      {
        "@type": "@krs_officer",
        "name": "<string>",
        "role": "<string>",
        "proxy_type": "<string>",
        "is_suspended": true
      }
    ]
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
krs
string
required

KRS registration number

Examples:

"0000028860"

"28860"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
register
enum<string>
default:P

Register section: P for companies, S for associations and foundations

Available options:
P,
S

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@krs_company
register_type
string | null
regon
string | null
nip
string | null
is_opp
boolean | null
registered_at
string | null
last_entry_at
string | null
state_as_of
string | null
registered_office_address
KrsAddress · object
email
string | null
website
string | null
share_capital
KrsMoney · object
paid_capital
KrsMoney · object
purpose
string | null
activities
KrsActivity · object[]
representation
KrsRepresentation · object
supervisory_bodies
KrsSupervisoryBody · object[]
proxies
KrsOfficer · object[]