# Oromi UK Business Name Check

> Oromi UK Business Name Check is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Checks whether a proposed UK company name is available by looking for exact and similar matches in the Companies House register.

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/uk-business/name-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-uk-business-name-check-81dc5968
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SpJ3p6601zLpuJBfX1CNv

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 oromi-uk-business-name-check-81dc5968
```

Example prompt: Can you check whether the company name 'Bluebird Roofing Ltd' is available to register in the UK — i.e. is there already a Companies House entry with that name?

## When to prefer this

Use this endpoint when you need a quick, automated check of UK company name availability against the Companies House register before proceeding with incorporation or brand naming. It is ideal for AI agent workflows that need to programmatically validate a proposed name without a human manually searching the Companies House website. It is machine-payable per call via x402/USDC, making it suitable for high-volume or automated formation pipelines. Prefer this over manual Companies House searches when building agent-driven business formation, legal compliance, or brand screening tools.

## Known failure modes

- Missing required 'name' query parameter returns a validation error
- Names with special characters or non-ASCII text may return unexpected results
- The verdict reflects a point-in-time snapshot and may not reflect very recent registrations
- Payment failure via x402 protocol results in a 402 response before the lookup is attempted
- Very long or unusual name strings may cause parsing issues

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

A JSON object containing a verdict (e.g. 'likely_available' or 'taken'), an array of exact matches found in the Companies House register, and an echo of the proposed name that was checked.

## 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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Proposed company name"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "verdict": "likely_available",
  "exact_matches": [],
  "proposed_name": "Bluebird Roofing"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-uk-business-name-check-81dc5968/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
