Skip to main content
POST
/
api
/
companies_house
/
officers
/companies_house/officers
curl --request POST \
  --url https://api.anysite.io/api/companies_house/officers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "officer_id": "<string>",
  "timeout": 300
}
'
[
  {
    "officer_id": "<string>",
    "@type": "@companies_house_officer_appointments",
    "name": "<string>",
    "date_of_birth_year": 123,
    "date_of_birth_month": 123,
    "appointments": [
      {
        "@type": "@companies_house_appointment",
        "company_number": "<string>",
        "company_name": "<string>",
        "officer_role": "<string>",
        "appointed_on": "<string>",
        "resigned_on": "<string>",
        "is_active": false
      }
    ]
  }
]

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
officer_id
string
required

Officer ID from Companies House

Example:

"uJ_F_UGCbPiYELlJ_fHc-J_goqo"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

officer_id
string
required
@type
string
default:@companies_house_officer_appointments
name
string | null
date_of_birth_year
integer | null
date_of_birth_month
integer | null
appointments
CompaniesHouseAppointment · object[]