# Oromi UK Company Lookup

> Oromi UK Company Lookup 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).

Fetches Companies House data for a UK company by company number, returning status, officers, SIC codes, and company name.

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/uk-business/company
- 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-company-lookup-138ad0cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LPtvQXHf6GERLyhuQsRfn

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-company-lookup-138ad0cb
```

Example prompt: Can you look up UK company number 12345678 on Companies House and tell me whether it's active, who the officers are, and what industry it's in?

## When to prefer this

Use this endpoint when you need official UK company registry data — status, officers, and SIC codes — for a specific company number, and want a machine-payable, agent-friendly API that settles per-call in USDC without subscription overhead. Prefer this over scraping Companies House directly or using subscription-based data providers when you need lightweight, on-demand lookups integrated into an agentic workflow.

## Known failure modes

- Invalid or non-existent company number returns an error or empty result
- Rate limiting or payment failure via x402 protocol may cause request rejection
- Companies House API downtime may result in upstream errors
- Malformed query parameter (non-string or missing number field) causes validation error

## 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

Returns a JSON object containing the company's official name, current status (e.g. active/dissolved), a list of officers, and an array of SIC codes indicating industry classification.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "active",
  "officers": [],
  "sic_codes": [
   "62012"
  ],
  "company_name": "EXAMPLE LTD"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-uk-company-lookup-138ad0cb/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)
