Skip to main content
POST
/
api
/
ares
/
companies
/
vr
/ares/companies/vr
curl --request POST \
  --url https://api.anysite.io/api/ares/companies/vr \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ico": "<string>",
  "timeout": 300
}
'
[
  {
    "ico": "<string>",
    "@type": "@ares_vr_company",
    "name": "<string>",
    "legal_form": "<string>",
    "file_number": "<string>",
    "registered_at": "<string>",
    "updated_at": "<string>",
    "status": "<string>",
    "signing_rules": "<string>",
    "share_capital": {
      "@type": "@ares_share_capital",
      "amount": "<string>",
      "currency": "<string>",
      "paid_up": "<string>"
    },
    "shares": [
      {
        "@type": "@ares_share",
        "type": "<string>",
        "form": "<string>",
        "kind": "<string>",
        "count": 123,
        "nominal_value": "<string>",
        "currency": "<string>"
      }
    ],
    "statutory_members": [
      {
        "@type": "@ares_vr_member",
        "role": "<string>",
        "function": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "company_name": "<string>",
        "ico": "<string>",
        "birth_date": "<string>",
        "citizenship": "<string>",
        "membership_start": "<string>",
        "membership_end": "<string>",
        "address": {
          "@type": "@ares_address",
          "text": "<string>",
          "street": "<string>",
          "house_number": 123,
          "orientation_number": 123,
          "orientation_number_letter": "<string>",
          "city": "<string>",
          "city_part": "<string>",
          "district": "<string>",
          "region": "<string>",
          "postal_code": 123,
          "country": "<string>",
          "country_code": "<string>"
        }
      }
    ],
    "supervisory_members": [
      {
        "@type": "@ares_vr_member",
        "role": "<string>",
        "function": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "company_name": "<string>",
        "ico": "<string>",
        "birth_date": "<string>",
        "citizenship": "<string>",
        "membership_start": "<string>",
        "membership_end": "<string>",
        "address": {
          "@type": "@ares_address",
          "text": "<string>",
          "street": "<string>",
          "house_number": 123,
          "orientation_number": 123,
          "orientation_number_letter": "<string>",
          "city": "<string>",
          "city_part": "<string>",
          "district": "<string>",
          "region": "<string>",
          "postal_code": 123,
          "country": "<string>",
          "country_code": "<string>"
        }
      }
    ],
    "shareholders": [
      {
        "@type": "@ares_vr_member",
        "role": "<string>",
        "function": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "company_name": "<string>",
        "ico": "<string>",
        "birth_date": "<string>",
        "citizenship": "<string>",
        "membership_start": "<string>",
        "membership_end": "<string>",
        "address": {
          "@type": "@ares_address",
          "text": "<string>",
          "street": "<string>",
          "house_number": 123,
          "orientation_number": 123,
          "orientation_number_letter": "<string>",
          "city": "<string>",
          "city_part": "<string>",
          "district": "<string>",
          "region": "<string>",
          "postal_code": 123,
          "country": "<string>",
          "country_code": "<string>"
        }
      }
    ],
    "business_scope": [
      "<string>"
    ]
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
ico
string
required

Czech company identification number (ICO). Up to 8 digits; a leading 'CZ' is accepted.

Example:

"27074358"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

ico
string
required
@type
string
default:@ares_vr_company
name
string | null
file_number
string | null
registered_at
string | null
updated_at
string | null
status
string | null
signing_rules
string | null
share_capital
AresShareCapital · object
shares
AresShare · object[]
statutory_members
AresVrMember · object[]
supervisory_members
AresVrMember · object[]
shareholders
AresVrMember · object[]
business_scope
string[]