Skip to main content
POST
/
api
/
ares
/
companies
/
res
/ares/companies/res
curl --request POST \
  --url https://api.anysite.io/api/ares/companies/res \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ico": "<string>",
  "timeout": 300
}
'
[
  {
    "ico": "<string>",
    "@type": "@ares_res_company",
    "name": "<string>",
    "legal_form": "<string>",
    "financial_authority": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "institutional_sector": "<string>",
    "employee_count_category": "<string>",
    "main_cz_nace": "<string>",
    "cz_nace": [
      "<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>"
    }
  }
]

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_res_company
name
string | null
financial_authority
string | null
created_at
string | null
updated_at
string | null
institutional_sector
string | null
employee_count_category
string | null
main_cz_nace
string | null
cz_nace
string[]
address
AresAddress · object