Companies House charges API

Charges

Operations 2

GET /company/{company_number}/charges Charges
GET /company/{company_number}/charges/{charge_id}

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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/companies-house-charges-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

companies-house-charges-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Companies House Public Data Charges 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: charges
  description: Charges
paths:
  /company/{company_number}/charges:
    get:
      summary: Charges
      description: List of charges for a company.
      x-operationName: list
      tags:
      - charges
      parameters:
      - name: company_number
        in: path
        description: The company number that the charge list is required for.
        paramType: path
        required: true
        schema:
          type: string
      - title: items_per_page
        description: The number of charges to return per page.
        paramType: query
        required: false
      - title: start_index
        description: The index into the entire result set that this result page starts.
        paramType: query
        required: false
      responses:
        '200':
          description: Resource returned
          content:
            application/json:
              schema:
                $ref: http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/charges.json#/definitions/chargeList
        '401':
          description: Unauthorised
        '404':
          description: Resource not found
  /company/{company_number}/charges/{charge_id}:
    get:
      description: Individual charge information for company.
      tags:
      - charges
      parameters:
      - name: company_number
        description: The company number that the charge is required for.
        paramType: path
        required: true
        schema:
          type: string
      - name: charge_id
        description: The id of the charge details that are required.
        paramType: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Resource returned
          content:
            application/json:
              schema:
                $ref: http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/charges.json#/definitions/chargeDetails
        '401':
          description: Unauthorised
        '404':
          description: Resource not found
components:
  securitySchemes:
    api_key:
      type: apiKey
      name: api_key
      in: header