list_charges
Retrieve charges registered against a UK company, including lender, creation date, satisfaction status, and floating charge coverage. Empty list means no charges on record.
Instructions
List charges (secured lending, such as mortgages and debentures) registered against a company: who holds them, when created, whether satisfied, and whether a floating charge covers everything the company owns.
A company with no charges returns an empty list, not an error.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Charges per page. | |
| start_index | No | Offset for paging. Use next_start_index from a previous result. | |
| company_number | Yes | Companies House company number, e.g. 00445790 or SC123456. Spaces and missing leading zeros are fine. Get it from search_companies if you only have a name. | |
| outstanding_only | No | Drop fully satisfied charges. The counts still cover all charges. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total | Yes | ||
| charges | Yes | ||
| satisfied | Yes | ||
| outstanding | Yes | Outstanding or only part-satisfied. | |
| company_number | Yes | ||
| next_start_index | No | Pass this as start_index to get the next page. Null when there are no more results. |