# Macaroon Network – Companies House Live Search

> Macaroon Network – Companies House Live Search is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Searches current public UK company metadata from the official Companies House Public Data API and returns normalized company identity, status, type, address, and official record link.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/companies-house-live-search-v1
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-companies-house-live-search-33d3f690
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V2mDNrJ3TqoYevgqTcxzK

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 macaroon-network-companies-house-live-search-33d3f690 -d '<json body>'
```

Example prompt: Can you look up 'Rolls-Royce Holdings' on Companies House and tell me their company number, current status, registered address, and when they were incorporated?

## When to prefer this

Use this endpoint when you need live, authoritative UK company data directly from Companies House — particularly for due diligence, compliance checks, or verifying a company's legal existence and status. Prefer this over cached or third-party company databases when data freshness matters. It is specifically scoped to UK-registered companies; for US or international entities, use alternative registries.

## Known failure modes

- Company not found — returns empty results if no match exists on the register
- Ambiguous name returns multiple results — caller must disambiguate by company number
- Companies House API rate limiting or downtime — may return error or timeout
- Dissolved or struck-off companies may appear with limited metadata
- Input query too vague — broad searches may return many low-relevance results

## How this service works

Search current public UK company metadata from the official Companies House Public Data API. Returns a bounded normalized result with company identity, status, type, creation date, registered-address summary, official record link, retrieval time, and content hash.

## Output

Returns a normalized object containing: company name, company number, company status (e.g. active, dissolved), company type (e.g. ltd, plc), incorporation date, a summary of the registered address, a direct link to the official Companies House record, the retrieval timestamp, and a content hash for cache/integrity verification. Results are bounded to a set number of matches per query.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/macaroon-network-companies-house-live-search-33d3f690/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.macaroonnetwork.com](https://www.zero.xyz/host/api.macaroonnetwork.com/llms.txt)
