GnistAI GnistAI
Log in

Companies House (UK)

UK Companies House — company search, profiles, officers, and filing history.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 type: api wrapper type type api wrapper api wrapper lifecycle: flagship lifecycle lifecycle flagship flagship Business

Data source: UK Companies House

REST Bridge Endpoint https://context.gnist.ai/rest/companies-house/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (5)

search_uk_companies

Search for UK companies by name on Companies House.

Companies House is the UK's official company registry, covering 5+ million
companies including PLCs, LTDs, LLPs, and foreign branches registered in
England, Wales, Scotland, and Northern Ireland.

Args:
query: Company name to search for.
limit: Number of results (1–100, default 10).

Returns:
Dict with 'count' and 'companies' list. Each result includes company_number,
title, company_status, company_type, date_of_creation, and address_snippet.

ParameterTypeRequiredDescription
querystringrequiredCompany name to search for (e.g. "Tesco", "Barclays", "Rolls-Royce").
limitintegeroptionalNumber of results to return (1–100, default 10). (default: 10)
Request Body
{
  "query": "example"
}
lookup_uk_company

Look up a UK company by its Companies House company number.

Returns the full company profile including name, status, type, SIC codes,
registered address, jurisdiction, and previous names.

Company numbers are 8 characters — numeric for English/Welsh companies,
prefixed with SC (Scotland), NI (Northern Ireland), or other codes.

Args:
company_number: The Companies House company number.

Returns:
Dict with full company profile, or {"error": "not_found"} if not found.

ParameterTypeRequiredDescription
company_numberstringrequiredUK company number (e.g. "00445790" for Tesco PLC, "SC123456" for a Scottish company).
Request Body
{
  "company_number": "123456789"
}
list_uk_company_officers

List directors, secretaries, and other officers for a UK company.

Returns current and past officers with their roles, appointment dates,
nationality, and occupation. Resigned officers include their resignation date.

Args:
company_number: The Companies House company number.
limit: Number of results (1–100, default 20).

Returns:
Dict with 'company_number', 'count', and 'officers' list.

ParameterTypeRequiredDescription
company_numberstringrequiredUK company number.
limitintegeroptionalNumber of officers to return (1–100, default 20). (default: 20)
Request Body
{
  "company_number": "123456789"
}
list_uk_company_filings

List filing history for a UK company.

Returns recent filings including accounts, annual returns, officer changes,
and other regulatory submissions to Companies House.

Args:
company_number: The Companies House company number.
category: Optional filter by filing category.
limit: Number of results (1–100, default 20).

Returns:
Dict with 'company_number', 'count', and 'filings' list.

ParameterTypeRequiredDescription
company_numberstringrequiredUK company number.
categoryanyoptionalFilter by filing category: "accounts", "officers", "address", "annual-return", "capital", "change-of-name", "incorporation", "liquidation", "miscellaneous", "mortgage", "resolution".
limitintegeroptionalNumber of filings to return (1–100, default 20). (default: 20)
Request Body
{
  "company_number": "123456789"
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/companies-house/search_uk_companies" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"query": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/companies-house/search_uk_companies",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "query": "example"
},
)
print(resp.json())

Related Toolkits (Business)

Resources