nvNeuralVerge
Corporate registry

Companies House Filing History API — UK Filings

Every document a UK company files lands on the public register with a date and a description. This source returns that history — what was filed, when, and a link to the document itself.

You send
A UK company number
You get back
Every filing with its date, description and document link
Coverage
United Kingdom — entities on Companies House.
Price
5 pts$5 per 1,000
Charged only when the record resolves. A lookup that finds nothing is not billed.
Comparison

Ways to get this data

Three approaches teams use today, and where each one runs into trouble.

ApproachWhat it takesCostTrade-off
Companies House directlyRegister for a key and page through the filing-history endpoint yourselfUsually free, sometimes per-documentA different interface, language and data shape for every country you add
Collecting it yourselfBuild and host a crawler per register, then keep each one aliveInfrastructure and maintenanceRegisters change their pages without warning, and nobody is on the hook when yours breaks
NeuralVergeOne request, the same shape as every other source in the catalog$5 per 1,000, misses not billedCovers United Kingdom — other countries are separate sources with the same request format
Response

What you get back

Every field the response returns.

FieldTypeDescription
filingsarrayEvery filing the company has made.
filings[].datestringDate the filing was made.
filings[].descriptionstringFull description of the filing event.
filings[].typestringCategory, for example confirmation statement or annual accounts.
filings[].transaction_idstringTransaction number or barcode for the filing.
filings[].document_urlstringDirect link to the filed document.
One response envelope

Every source answers in the same shape: a session id, a readable human summary, a structured machine object and the points the call consumed. Learn it once and it holds across every source in the catalog.

Integration

How to run it

The same lookup works from the app, the API, or as a tool an agent can call mid-task.

A JSON schema passed as extract_schema_json pins the response shape, which is why one endpoint serves every register in the catalog — only the URL and the schema change. The Get API Code button in the app hands you the complete command with the schema already filled in.

curl -X POST https://api.neuralverge.ai/functions/v1/run-extract \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://find-and-update.company-information.service.gov.uk/company/08804411/filing-history",
    "instructions": "Extract data from Companies House",
    "settings": {
      "country_code": "us",
      "extract_schema_json": "{ ... }"
    }
  }'
Use cases

What teams use it for

Where this field shows up in an actual workflow.

Credit and risk review

Spot late accounts and charges before they become someone else's problem.

Due diligence packs

Assemble the document trail for a counterparty without downloading each file by hand.

Change monitoring

Watch for the filings that signal a restructure, a raise or a wind-down.

Audit evidence

Keep a dated, linked record of what the register said when you checked it.

Coverage & limits

Coverage, freshness and limits

What this source covers, how fresh it is, and where it stops.

Coverage

United Kingdom — entities on Companies House.

Freshness

Read at request time, so the answer reflects the register as it stands when you ask.

Handling

Companies House is a public register. Every response carries the source URL it was read from and a session id you can trace.

What it will not do
  • It returns the index of filings and their links, not the parsed contents of each document.
  • Filing descriptions are the register's own wording and vary in specificity.
  • Companies that have never filed anything return an empty history rather than an error.
FAQ

Questions, answered

It returns the filing index — date, description and a link to each document. To read inside a specific document, pass its link to AI Extract with a schema for what you want out of it.

Related

Related sources

Try companies house filings on your own data

One request format across every source in the catalog.

Get started