Skip to main content
POST
/
api
/
ares
/
companies
/
ros
/ares/companies/ros
curl --request POST \
  --url https://api.anysite.io/api/ares/companies/ros \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ico": "<string>",
  "timeout": 300
}
'
[
  {
    "ico": "<string>",
    "@type": "@ares_ros_company",
    "legal_form": "<string>",
    "status": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "statutory_members": [
      {
        "@type": "@ares_ros_member",
        "first_name": "<string>",
        "last_name": "<string>",
        "birth_date": "<string>",
        "company_name": "<string>",
        "ico": "<string>"
      }
    ],
    "establishments": [
      {
        "@type": "@ares_establishment",
        "icp": 123,
        "started_at": "<string>",
        "ended_at": "<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>"
        }
      }
    ],
    "data_boxes": [
      {
        "@type": "@ares_data_box",
        "id": "<string>",
        "type": "<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_ros_company
status
string | null
created_at
string | null
updated_at
string | null
statutory_members
AresRosMember · object[]
establishments
AresEstablishment · object[]
data_boxes
AresDataBox · object[]