Skip to main content
POST
/
api
/
ares
/
companies
/
rzp
/ares/companies/rzp
curl --request POST \
  --url https://api.anysite.io/api/ares/companies/rzp \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ico": "<string>",
  "timeout": 300
}
'
[
  {
    "ico": "<string>",
    "@type": "@ares_rzp_company",
    "name": "<string>",
    "legal_form": "<string>",
    "subject_type": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "active_license_count": 123,
    "total_license_count": 123,
    "licenses": [
      {
        "@type": "@ares_trade_license",
        "subject": "<string>",
        "kind": "<string>",
        "created_at": "<string>",
        "updated_at": "<string>",
        "responsible_persons": [
          {
            "@type": "@ares_responsible_person",
            "first_name": "<string>",
            "last_name": "<string>",
            "title": "<string>",
            "birth_date": "<string>",
            "citizenship": "<string>",
            "valid_from": "<string>",
            "valid_to": "<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_rzp_company
name
string | null
subject_type
string | null
created_at
string | null
updated_at
string | null
active_license_count
integer | null
total_license_count
integer | null
licenses
AresTradeLicense · object[]