Skip to main content
POST
/
api
/
companies_house
/
companies
/
charges
/companies_house/companies/charges
curl --request POST \
  --url https://api.anysite.io/api/companies_house/companies/charges \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company_number": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "charge_id": "<string>",
    "@type": "@companies_house_charge",
    "charge_number": 123,
    "status": "<string>",
    "created_on": "<string>",
    "delivered_on": "<string>",
    "satisfied_on": "<string>",
    "persons_entitled": [
      "<string>"
    ],
    "short_particulars": "<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 charges to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

charge_id
string
required
@type
string
default:@companies_house_charge
charge_number
integer | null
status
string | null
created_on
string | null
delivered_on
string | null
satisfied_on
string | null
persons_entitled
string[]
short_particulars
string | null