Skip to main content
POST
/
api
/
cro
/
companies
/cro/companies
curl --request POST \
  --url https://api.anysite.io/api/cro/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "entity_id": "<string>",
    "@type": "@cro_company",
    "reg_number": "<string>",
    "name": "<string>",
    "type": "<string>",
    "type_id": 123,
    "status": "<string>",
    "status_ext": "<string>",
    "status_effective_date": "<string>",
    "reg_date": "<string>",
    "annual_return_due_date": "<string>",
    "expiry_date": "<string>",
    "reg_email": "<string>",
    "mobile": "<string>",
    "person_ind": false,
    "address": {
      "@type": "@cro_company_address",
      "address1": "<string>",
      "address2": "<string>",
      "address3": "<string>",
      "city": "<string>",
      "state": "<string>",
      "country": "<string>",
      "postcode": "<string>",
      "full": "<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

entity_id
string
required
@type
string
default:@cro_company
reg_number
string | null
name
string | null
type
string | null
type_id
integer | null
status
string | null
status_ext
string | null
status_effective_date
string | null
reg_date
string | null
annual_return_due_date
string | null
expiry_date
string | null
reg_email
string | null
mobile
string | null
person_ind
boolean
default:false
address
CroCompanyAddress · object