# Oromi UK Business Due Diligence

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

Performs a due diligence assessment on a UK company using its Companies House number, returning company status and red-flag concerns

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/uk-business/due-diligence
- Price: $0.1/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-due-diligence-4f5ecf61
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ayPYlrnn2smxcsvxvJwDV

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-due-diligence-4f5ecf61
```

Example prompt: Can you run a due diligence check on the UK company with Companies House number 00445790 — I want to know their status and whether there are any red flags before we sign a contract with them?

## When to prefer this

Use this endpoint when you need a structured, AI-agent-friendly due diligence summary for a UK-registered company, particularly when you already have the Companies House company number and want a quick risk assessment with red-flag detection. Prefer this over raw Companies House API access when you need a pre-analyzed assessment rather than raw filing data, and when paying per-call in USDC via x402 is acceptable.

## Known failure modes

- Invalid or non-existent Companies House number returns an error or empty result
- Payment failure via x402 protocol results in HTTP 402 response
- Company number format incorrect (must be string, e.g. '00445790')
- Network timeout if Companies House API is slow to respond
- Optional website parameter may return domain-check errors if the site is unreachable

## 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 with the company's registered name and status (e.g. active, dissolved), an overall assessment label such as 'no_red_flags_found', and a list of specific concerns or red flags identified during the check.

## 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"
      },
      "website": {
       "type": "string",
       "description": "Optional company website for domain + site checks"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "company": {
   "name": "TESCO PLC",
   "status": "active"
  },
  "assessment": {
   "overall": "no_red_flags_found",
   "concerns": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-uk-business-due-diligence-4f5ecf61/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)
