Skip to main content
POST
/
api
/
cro
/
companies
/
names
/cro/companies/names
curl --request POST \
  --url https://api.anysite.io/api/cro/companies/names \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "name_id": "<string>",
    "@type": "@cro_company_name",
    "name": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "middle_name": "<string>",
    "is_current": false,
    "effective_from": "<string>",
    "effective_to": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

CRO entity id or public registered number

Examples:

"139795"

"104547"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name_id
string
required
@type
string
default:@cro_company_name
name
string | null
first_name
string | null
last_name
string | null
middle_name
string | null
is_current
boolean
default:false
effective_from
string | null
effective_to
string | null