# Eckari UK Company Accounts Filing Status

> Eckari UK Company Accounts Filing Status is a paid API for AI agents from api.eckari.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns the accounts filing status of a UK company from Companies House, including accounting reference date, last accounts filed, next due date, and overdue flag.

## Facts

- Endpoint: GET https://api.eckari.com/v1/companies/uk/:companyNumber/accounts
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eckari-uk-company-accounts-filing-status-6f076231
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5BoA77y4QfYo6PBtd29v8

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability eckari-uk-company-accounts-filing-status-6f076231
```

Example prompt: Can you check whether the accounts for UK company number 09876543 are up to date and when the next filing is due?

## When to prefer this

Use this endpoint when you need the accounts filing position of a UK-registered company — specifically the due dates, filing history type, and overdue status — rather than financial content. Prefer this over generic company data endpoints when compliance monitoring, credit checks, or due diligence workflows require knowing whether a company is current with its annual accounts obligation at Companies House.

## Known failure modes

- Invalid or malformed company number (e.g. contains spaces, exceeds 8 alphanumeric characters) returns INVALID_INPUT before any payment is charged
- Company number not found in Companies House register returns a not-found error
- Company has never filed accounts — fields for last accounts may be null or absent
- Upstream Companies House API unavailability may cause transient errors
- Whitespace-only input is rejected as INVALID_INPUT

## How this service works

Return the accounts filing status of a UK company from the Companies House register — the accounting reference date, the last accounts filed (type and period), the next accounts due date and a derived overdue flag. This is the filing position, not the financial statements: no turnover, profit or balance-sheet figures are published here. Use when: When are this UK company's accounts due?

## Output

Returns the Companies House accounts filing position for the specified UK company: the accounting reference date, details of the most recently filed accounts (type and period covered), the next accounts due date, and a derived boolean flag indicating whether accounts are currently overdue. Does not include financial statement data such as turnover, profit, or balance-sheet figures.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "company_number"
     ],
     "properties": {
      "company_number": {
       "type": "string",
       "pattern": "^\\s*(?:[0-9]{1,8}|[A-Za-z][0-9]{7}|[A-Za-z]{2}[0-9]{6}|[A-Za-z]{2}[0-9]{5}[A-Za-z]|[A-Za-z]{2}[0-9]{4}[A-Za-z]{2})\\s*$",
       "maxLength": 10,
       "minLength": 1,
       "description": "Companies House company number, also called the company registration number (CRN). Accepted shapes are the register's own — 1-8 digits (zero-padded to 8, e.g. 445790 → 00445790), one letter + 7 digits (R0000001), two letters + 6 digits (SC002180, NI000001, OC123456, OE000001), or the registered-society suffix forms (two letters + 5 digits + 1 letter; two letters + 4 digits + 2 letters). Case-insensitive; surrounding whitespace is ignored (which is why maxLength is 10); internal spaces and punctuation are not accepted. Any other value (for example PROBE) is rejected as INVALID_INPUT before payment and before any upstream call."
      }
     },
     "additionalProperties": false
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eckari-uk-company-accounts-filing-status-6f076231/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.eckari.com](https://www.zero.xyz/host/api.eckari.com/llms.txt)
