# UKIntel Company Search

> UKIntel Company Search is a paid API for AI agents from api.ukintel.uk, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Search UK companies by name and return Companies House registration details, status, and legitimacy verdict

## Facts

- Endpoint: GET https://api.ukintel.uk/v1/company/search
- 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/ukintel-company-search-b7df3390
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4XNEMjiHbNqwhiar7WlCt

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 ukintel-company-search-b7df3390
```

Example prompt: Can you search for BrewDog on UK company records and tell me their Companies House number, current status, and whether they look legitimate — give me the top 5 matches?

## When to prefer this

Use this endpoint when you need to search for UK-registered companies by name and get back structured data including Companies House registration details and a legitimacy verdict. Prefer this over generic web search when you need structured, authoritative company data for due diligence, procurement vetting, or compliance checks on UK entities. Best suited for agent workflows that need a quick pay-per-call lookup with no API key setup.

## Known failure modes

- No matching companies found for the query — empty results array returned
- Ambiguous or very common company name returns too many results — use limit parameter to constrain
- Company exists in Companies House but FCA cross-check data unavailable — partial result returned
- Network or upstream Companies House API downtime — request times out or returns error
- Misspelled company name returns zero or irrelevant results

## How this service works

Find a UK company by name. Returns the top 5 matches from the Companies House register with number, name, status and incorporation date. Taster tier - cheap enough to try on a whim before paying for a full profile or verdict.

## Output

Returns a list of matching UK companies with their name, company number, incorporation date, and current status (e.g. active, dissolved, in administration), plus a total match count and confidence rating. Results are sourced from Companies House cross-referenced with FCA data.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Company name or fragment"
      },
      "limit": {
       "type": "integer",
       "maximum": 5,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": {
   "q": "brewdog",
   "limit": 5
  },
  "notice": "Information, not advice.",
  "result": {
   "results": [
    {
     "name": "BREWDOG PLC",
     "status": "in_administration",
     "incorporated": "2006-11-07",
     "company_number": "SC311560"
    }
   ],
   "total_matches": 42
  },
  "confidence": "high"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ukintel-company-search-b7df3390/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ukintel.uk](https://www.zero.xyz/host/api.ukintel.uk/llms.txt)
