Skip to main content
POST
/
api
/
companies_house
/
companies
/
search
/companies_house/companies/search
curl --request POST \
  --url https://api.anysite.io/api/companies_house/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "company_number": "<string>",
    "name": "<string>",
    "@type": "@companies_house_search_company",
    "company_status": "<string>",
    "company_type": "<string>",
    "date_of_creation": "<string>",
    "address_snippet": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Company name search query

Example:

"Tesco"

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

Response

Successful Response

company_number
string
required
name
string
required
@type
string
default:@companies_house_search_company
company_status
string | null
company_type
string | null
date_of_creation
string | null
address_snippet
string | null