$0.006
per call · USD Coin on Base
Charges registered against a UK company at Companies House — mortgages, debentures and other security — with dates, classification, particulars and the persons entitled. Register-wide outstanding/satisfied/part-satisfied counts lead the answer, and each charge carries a derived is_outstanding because the register records discharge under two status keys. Use when: Establish whether a UK company has outstanding security over its assets, and who holds it.
Endpoint
GET https://api.eckari.com/v1/companies/uk/:company_number/charges6
Calls / 30d
2
Unique payers / 30d
Aug 27
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.eckari.com/v1/companies/uk/:company_number/charges", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://api.eckari.com/v1/companies/uk/:company_number/charges?limit=3" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"data": {
"company_number": "00445790",
"items": [
{
"charge_code": null,
"charge_number": 9,
"classification": [
{
"description": "Account security agreement",
"type": "charge-description"
}
],
"created_on": "2009-11-04",
"delivered_on": "2009-11-06",
"id": "5QU1lSudRI2jTIfUv_AOVxfLxVE",
"is_outstanding": true,
"particulars": [
{
"description": "Right title benefit and interest in and to the account being the euro designated account in the name of the company with sort code 40-05-15 account number 67851117, and the deposit. See image for full details.",
"flags": [],
"type": "short-particulars"
}
],
"persons_entitled": [
{
"name": "Tesco Trustee Company of Ireland Limited as Trustee of the Tesco Ireland Limited Senior Executive Pension Scheme"
}
],
"satisfied_on": null,
"secured_details": [
{
"description": "All sums due or to become due under the terms of the aforementioned instrument creating or evidencing the charge",
"type": "amount-secured"
}
],
"status": "outstanding"
},
{
"charge_code": null,
"charge_number": 8,
"classification": [
{
"description": "Account security agreement",
"type": "charge-description"
}
],
"created_on": "2009-11-04",
"delivered_on": "2009-11-06",
"id": "co-_yIXMvPnNBqPuNZqOcwFwqtM",
"is_outstanding": true,
"particulars": [
{
"description": "Right title benefit and interest in and to the account being the euro designated account in the name of the company with sort code 40-05-15 account number 67851125, and the deposit. See image for full details.",
"flags": [],
"type": "short-particulars"
}
],
"persons_entitled": [
{
"name": "Tesco Ireland Pension Trustees Limited as Trustee of the Tesco Ireland Limited Pension Plan"
}
],
"satisfied_on": null,
"secured_details": [
{
"description": "All sums due or to become due under the terms of the aforementioned instrument creating or evidencing the charge",
"type": "amount-secured"
}
],
"status": "outstanding"
},
{
"charge_code": null,
"charge_number": 7,
"classification": [
{
"description": "Account security agreement",
"type": "charge-description"
}
],
"created_on": "2009-03-27",
"delivered_on": "2009-03-27",
"id": "tgY95yhyQRDPJUDlFArt5RgNDy8",
"is_outstanding": false,
"particulars": [
{
"description": "All present and future right title benefit and interest in and to the account and the deposit see image for full details.",
"flags": [],
"type": "short-particulars"
}
],
"persons_entitled": [
{
"name": "Tesco Ireland Pension Trustees Limited as Trustee of the Tesco Ireland Limited Executive Scheme"
}
],
"satisfied_on": "2009-11-25",
"secured_details": [
{
"description": "All monies due or to become due from the company to the chargee under the terms of the aforementioned instrument creating or evidencing the charge",
"type": "amount-secured"
}
],
"status": "fully-satisfied"
}
],
"outstanding_count": 2,
"page": {
"has_more": true,
"limit": 3,
"next_offset": 3,
"offset": 0,
"returned": 3,
"total": 9
},
"part_satisfied_count": 0,
"query": {
"detail": "summary",
"status": "all"
},
"satisfied_count": 7
},
"meta": {
"capability": "company.uk.charges",
"freshness": "live",
"source": "companies_house",
"version": "3.1.0"
}
}Payment details
0x9d6b6fdb04040a55d58b24ff4c90c08cf6083c8fUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Data & Enrichment and the homepage with a featured placement.
More from Eckari & similar services
Eckari · UK Directors
api-staging.eckari.com
Return the officers registered against a UK company on the Companies House register — directors, secretaries, LLP members and corporate officers — with role, appointment and resignation dates, nationality, country of residence, occupation, month/year of birth and public correspondence address. Active officers by default; include_resigned adds history. Paging is explicit: has_more and next_offset say whether more matching officers remain. Use when: Who are the directors of this UK company?
Eckari · FX Reference Rate
api-staging.eckari.com
European Central Bank euro foreign exchange reference rate for a pair - the latest published fix or any date in the last 90 days. The ECB publishes EUR/XXX only, so inverse and cross rates are computed by Eckari from the same fix and named in rate_derivation. Reference rates, one per TARGET working day around 16:00 CET, not tradable market rates. Source and reuse conditions travel in meta.attribution. Use when: What is the ECB reference rate for EUR to USD?
Eckari · UK Status
api-staging.eckari.com
Return the current legal status of a UK company from the Companies House register — active, dissolved, liquidation, administration, receivership, voluntary-arrangement and others — with status detail, cessation date, a derived is_active (true for the live-on-the-register statuses active, open and registered) and a derived is_striking_off for an active company with a proposal to strike off. One call, one authoritative register answer. Use when: Is this UK company still active?