# Money AI UK Company Search

> Money AI UK Company Search is a paid API for AI agents from money-ai-shop.money-ai.workers.dev, paid per call via x402, $0.030001/call, status unknown (last checked 2026-09-15).

Search the UK Companies House register by name to find up to 20 matching companies with their numbers, status, and type

## Facts

- Endpoint: POST https://money-ai-shop.money-ai.workers.dev/s/uk-company-search
- Price: $0.030001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/money-ai-uk-company-search-1b6bf323
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sycrE-XidlFUpiRSHsK_0

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 money-ai-uk-company-search-1b6bf323 -d '<json body>'
```

Example prompt: Can you search the UK Companies House register for companies called 'Aspgate' and show me their company numbers, status, and type — return up to 10 matches?

## When to prefer this

Use this endpoint when you need to resolve a UK company name to a Companies House company number, or when you need to discover which registered UK entities share a name. Prefer this over a full company detail lookup when you don't yet have the company number. It is faster and cheaper than fetching full company profiles and is the correct first step in a two-stage lookup (search by name, then fetch details by number using the sibling endpoint).

## Known failure modes

- No matches found if the name is too specific or misspelled — returns empty result set
- Snapshot may be days behind live Companies House data for very recently incorporated or dissolved companies
- Limit parameter exceeding 20 is rejected or capped
- Missing required 'name' field causes a validation error
- Name prefix searches may return unexpected results for very common words

## How this service works

Find UK companies by name: up to 20 matches with their company numbers, status and type, so a name can be resolved to a number. Answered from the Companies House register snapshot, not a model, so it is the same every time; the response says which snapshot. Use it for: Which UK companies are called Aspgate?; Find the company number for Acme Trading

## Output

A JSON array of up to 20 matching UK companies from the Companies House register snapshot, each containing the company name, company number, current status (e.g. active, dissolved), and company type. The response also indicates which snapshot date the data was drawn from, ensuring deterministic and reproducible results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "description": "company name or the start of one"
  },
  "limit": {
   "type": "integer",
   "description": "how many matches, max 20"
  },
  "skill": {
   "type": "string",
   "const": "uk-company-search",
   "description": "which service to run"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/money-ai-uk-company-search-1b6bf323/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from money-ai-shop.money-ai.workers.dev](https://www.zero.xyz/host/money-ai-shop.money-ai.workers.dev/llms.txt)
