Skip to main content
POST
/
api
/
cro
/
companies
/
search
/cro/companies/search
curl --request POST \
  --url https://api.anysite.io/api/cro/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "name": "RYANAIR",
  "number": "104547",
  "name_search_type": 3
}
'
[
  {
    "entity_id": "<string>",
    "@type": "@cro_search_result",
    "reg_number": "<string>",
    "name": "<string>",
    "type": "<string>",
    "type_id": 123,
    "status": "<string>",
    "status_id": 123,
    "reg_date": "<string>",
    "register_name": "<string>",
    "register_id": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of results

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
name
string | null

Company or business name to search for

Example:

"RYANAIR"

number
string | null

Registered number to search for

Example:

"104547"

name_search_type
enum<integer>
default:3

How the name is matched: contains, starts_with or exact

Available options:
0,
1,
3
register
enum<string> | null

Restrict results to a single register. Omit to search all registers

Available options:
companies,
business_names,
external_companies,
reserved_names,
limited_partnerships

Response

Successful Response

entity_id
string
required
@type
string
default:@cro_search_result
reg_number
string | null
name
string | null
type
string | null
type_id
integer | null
status
string | null
status_id
integer | null
reg_date
string | null
register_name
string | null
register_id
integer | null