# Macaroon Network – Companies House Live Company Profile

> Macaroon Network – Companies House Live Company Profile 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).

Fetches current public-register facts for a single UK company by exact company number from the official Companies House Public Data API, returning status, type, SIC codes, incorporation date, registered-office location, and filing compliance facts.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/companies-house-live-profile-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-company-profile-f400d11b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uoxKp1b7go64gc8Mgk-sz

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-company-profile-f400d11b -d '<json body>'
```

Example prompt: Can you pull the official Companies House profile for UK company number 09876543 — I need to know if it's still active, what its SIC codes are, its registered postcode, and whether its accounts or confirmation statement are overdue?

## When to prefer this

Choose this endpoint when you need live, authoritative UK company register data from Companies House — particularly for due diligence, KYC, supplier verification, or compliance checks — and need it via a pay-per-call x402 micropayment model without managing your own Companies House API credentials.

## Known failure modes

- Invalid or non-existent company number returns an error or empty result
- Companies House API downtime causes service unavailability
- Malformed request body (missing required fields) returns a validation error
- Rate limiting or payment failure prevents the call from completing

## How this service works

Fetch current public-register facts for one UK company by exact company number from the official Companies House Public Data API. Returns company status and type, incorporation date, SIC codes, registered-office locality and postcode, and accounts and confirmation-statement due or overdue facts.

## Output

A structured JSON object containing the company's name, current status (e.g. active, dissolved), company type, date of incorporation, list of SIC codes, registered-office locality and postcode, and boolean or date fields indicating whether accounts and confirmation statements are due or overdue.

## 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-company-profile-f400d11b/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)
