Skip to main content
POST
/
api
/
krs
/
companies
/
representation
/krs/companies/representation
curl --request POST \
  --url https://api.anysite.io/api/krs/companies/representation \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "krs": "<string>",
  "timeout": 300,
  "register": "P"
}
'
[
  {
    "@type": "@krs_governance",
    "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

@type
string
default:@krs_governance
representation
KrsRepresentation · object
supervisory_bodies
KrsSupervisoryBody · object[]
proxies
KrsOfficer · object[]