Skip to main content
POST
/
api
/
companies_house
/
companies
/
pscs
/companies_house/companies/pscs
curl --request POST \
  --url https://api.anysite.io/api/companies_house/companies/pscs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company_number": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "@companies_house_psc",
    "name": "<string>",
    "kind": "<string>",
    "natures_of_control": [
      "<string>"
    ],
    "notified_on": "<string>",
    "ceased_on": "<string>",
    "is_active": false,
    "address": {
      "@type": "@companies_house_psc_address",
      "locality": "<string>",
      "postal_code": "<string>",
      "country": "<string>"
    },
    "nationality": "<string>",
    "country_of_residence": "<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:

"07495895"

count
integer
required

Max number of PSCs to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@companies_house_psc
name
string | null
kind
string | null
natures_of_control
string[]
notified_on
string | null
ceased_on
string | null
is_active
boolean
default:false
address
CompaniesHousePscAddress · object
nationality
string | null
country_of_residence
string | null