Skip to main content
POST
/
api
/
zachestnyibiznes
/
companies
/
representation
/zachestnyibiznes/companies/representation
curl --request POST \
  --url https://api.anysite.io/api/zachestnyibiznes/companies/representation \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@zachestnyibiznes_representation",
    "director": {
      "@type": "@zachestnyibiznes_person",
      "name": "<string>",
      "inn": "<string>",
      "role": "<string>",
      "since_at": "<string>"
    },
    "registrar": {
      "@type": "@zachestnyibiznes_registrar",
      "name": "<string>",
      "inn": "<string>",
      "ogrn": "<string>"
    },
    "founders": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company INN (10/12 digits) or OGRN (13/15 digits), or a full company URL

Minimum string length: 1
Examples:

"7707083893"

"1027700132195"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@zachestnyibiznes_representation
director
ZachestnyibiznesPerson · object
registrar
ZachestnyibiznesRegistrar · object
founders
ZachestnyibiznesFounder · object[]