$0.004
per call · USD Coin on Base
Return the core registered profile of a UK company from the Companies House register: name, status with derived is_active and is_striking_off, type, jurisdiction, incorporation and cessation dates, SIC codes with their official UK SIC 2007 descriptions, registered office address, previous names, and the accounts and confirmation-statement summary. One call for the standard KYB company record. Use when: You have a UK company number and need the standard registered record.
Endpoint
GET https://api.eckari.com/v1/companies/uk/:companyNumber2
Calls / 30d
1
Unique payers / 30d
Aug 18
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/:companyNumber", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://api.eckari.com/v1/companies/uk/:companyNumber" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"data": {
"accounts": {
"accounting_reference_date": {
"day": 26,
"month": 2
},
"last_accounts": {
"made_up_to": "2026-02-28",
"period_end_on": "2026-02-28",
"period_start_on": "2025-02-27",
"type": "group"
},
"next_accounts": {
"due_on": "2027-08-26",
"overdue": false,
"period_end_on": "2027-02-26",
"period_start_on": "2026-03-01"
}
},
"can_file": true,
"company_name": "TESCO PLC",
"company_number": "00445790",
"confirmation_statement": {
"last_made_up_to": "2026-06-18",
"next_due": "2027-07-02",
"next_made_up_to": "2027-06-18",
"overdue": false
},
"date_of_cessation": null,
"date_of_creation": "1947-11-27",
"is_active": true,
"is_striking_off": false,
"jurisdiction": "england-wales",
"previous_company_names": [
{
"ceased_on": "1983-08-25",
"effective_from": "1981-12-14",
"name": "TESCO STORES (HOLDINGS) PUBLIC LIMITED COMPANY"
}
],
"registered_office_address": {
"address_line_1": "Tesco House, Shire Park",
"address_line_2": "Kestrel Way",
"care_of": null,
"country": "United Kingdom",
"locality": "Welwyn Garden City",
"po_box": null,
"postal_code": "AL7 1GA",
"premises": null,
"region": null
},
"registered_office_is_in_dispute": false,
"registered_office_single_line": "Tesco House, Shire Park, Kestrel Way, Welwyn Garden City, AL7 1GA, United Kingdom",
"resources": {
"charges": true,
"filing_history": true,
"insolvency": false,
"officers": true,
"persons_with_significant_control": true,
"persons_with_significant_control_exemptions": true,
"persons_with_significant_control_statements": false
},
"sic_codes": [
{
"code": "47110",
"description": "Retail sale in non-specialised stores with food, beverages or tobacco predominating"
}
],
"status": "active",
"status_detail": null,
"subtype": null,
"type": "plc",
"undeliverable_registered_office_address": false
},
"meta": {
"capability": "company.uk.profile",
"freshness": "live",
"source": "companies_house",
"version": "2.0.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?