Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/companies-house-filinghistory-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
version: 1.0.0
title: Companies House Public Data charges Filing History API
description: An API suite providing read only access to search and retrieve public company data
servers:
- url: https://api.company-information.service.gov.uk
- url: http://api.company-information.service.gov.uk
security:
- api_key: []
tags:
- name: filingHistory
description: Filing history
paths:
/company/{company_number}/filing-history/{transaction_id}:
get:
summary: filingHistoryItem resource
description: Get the filing history item of a company
tags:
- filingHistory
parameters:
- name: company_number
in: path
description: The company number that the single filing is required for.
required: true
schema:
type: string
- name: transaction_id
in: path
description: The transaction id that the filing history is required for.
required: true
schema:
type: string
responses:
'200':
description: Filing history items resource returned
content:
application/json:
schema:
$ref: http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/filingHistory.json#/definitions/filingHistoryItem
'401':
description: Unauthorised
content:
application/json:
schema:
$ref: http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/errorModel.json#/definitions/error
'404':
description: Filing history not available for this company
/company/{company_number}/filing-history:
get:
summary: filingHistoryList resource
description: Get the filing history list of a company
x-operationName: list
tags:
- filingHistory
parameters:
- name: category
in: query
description: One or more comma-separated categories to filter by (inclusive).
required: false
schema:
type: string
- name: company_number
in: path
description: The company number that the filing history is required for.
required: true
schema:
type: string
- name: items_per_page
in: query
description: The number of filing history items to return per page.
required: false
schema:
type: integer
- name: start_index
in: query
description: The index into the entire result set that this result page starts.
required: false
schema:
type: integer
responses:
'200':
description: Filing history items resource returned
content:
application/json:
schema:
$ref: http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/filingHistory.json#/definitions/filingHistoryList
'401':
description: Unauthorised
content:
application/json:
schema:
$ref: http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/errorModel.json#/definitions/error
'404':
description: Filing history not available for this company
components:
securitySchemes:
api_key:
type: apiKey
name: api_key
in: header