Skip to main content
POST
/
api
/
companies_house
/
companies
/
officers
/companies_house/companies/officers
curl --request POST \
  --url https://api.anysite.io/api/companies_house/companies/officers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company_number": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "@companies_house_officer",
    "officer_role": "<string>",
    "appointed_on": "<string>",
    "resigned_on": "<string>",
    "is_active": false,
    "address": {
      "@type": "@companies_house_officer_address",
      "premises": "<string>",
      "address_line_1": "<string>",
      "locality": "<string>",
      "postal_code": "<string>"
    },
    "officer_id": "<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"

count
integer
required

Max number of officers to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:@companies_house_officer
officer_role
string | null
appointed_on
string | null
resigned_on
string | null
is_active
boolean
default:false
address
CompaniesHouseOfficerAddress · object
officer_id
string | null