Skip to main content
POST
/
api
/
companies_house
/
companies
/
filing_history
/companies_house/companies/filing_history
curl --request POST \
  --url https://api.anysite.io/api/companies_house/companies/filing_history \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company_number": "<string>",
  "count": 2,
  "timeout": 300,
  "category": "<string>"
}
'
[
  {
    "transaction_id": "<string>",
    "@type": "@companies_house_filing_history_item",
    "date": "<string>",
    "type": "<string>",
    "description": "<string>",
    "document_url": "<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 filings to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
category
string | null

Filing category filter (accounts, confirmation-statement, officers, etc.)

Response

Successful Response

transaction_id
string
required
@type
string
default:@companies_house_filing_history_item
date
string | null
type
string | null
description
string | null
document_url
string | null