Skip to main content
POST
/
api
/
companies_house
/
companies
/companies_house/companies
curl --request POST \
  --url https://api.anysite.io/api/companies_house/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company_number": "<string>",
  "timeout": 300
}
'
[
  {
    "company_number": "<string>",
    "name": "<string>",
    "@type": "@companies_house_company",
    "company_status": "<string>",
    "company_type": "<string>",
    "date_of_creation": "<string>",
    "date_of_cessation": "<string>",
    "registered_office_address": {
      "@type": "@companies_house_address",
      "address_line_1": "<string>",
      "address_line_2": "<string>",
      "locality": "<string>",
      "postal_code": "<string>",
      "country": "<string>"
    },
    "sic_codes": [
      "<string>"
    ],
    "previous_company_names": [
      "<string>"
    ],
    "has_charges": false,
    "has_insolvency_history": false,
    "confirmation_statement_next_due": "<string>",
    "accounts_next_due": "<string>",
    "accounts_last_made_up_to": "<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
company_number
string
required

Company registration number

Example:

"00445790"

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_company
company_status
string | null
company_type
string | null
date_of_creation
string | null
date_of_cessation
string | null
registered_office_address
CompaniesHouseAddress · object
sic_codes
string[]
previous_company_names
string[]
has_charges
boolean
default:false
has_insolvency_history
boolean
default:false
confirmation_statement_next_due
string | null
accounts_next_due
string | null
accounts_last_made_up_to
string | null