# BlindOracle Business Registry Lookup

> BlindOracle Business Registry Lookup is a paid API for AI agents from api.craigmbrown.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Extracts public business-registry records (SEC, state Secretary-of-State, UK Companies House) from a buyer-supplied public records URL, wrapped in the BlindOracle trust envelope

## Facts

- Endpoint: POST https://api.craigmbrown.com/v1/services/data.business-registry
- 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/blindoracle-business-registry-lookup-9cf7cd9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_30ruVt8mpRoEDVOngRN_I

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 blindoracle-business-registry-lookup-9cf7cd9d -d '<json body>'
```

Example prompt: Pull the official business registry record for Acme Corp using this SEC EDGAR link https://www.sec.gov/cgi-bin/browse-edgar?company=acme+corp and give me the extracted details with the BlindOracle trust verification.

## When to prefer this

Choose this endpoint when you need tamper-evident, trust-wrapped extraction of official public business registry records from SEC EDGAR, US state Secretaries of State, or UK Companies House — particularly when downstream compliance, due diligence, or audit workflows require a cryptographic trust envelope (BlindOracle bo_trust) alongside the extracted data. Prefer this over generic web scrapers when auditability and scan-verdict provenance matter.

## Known failure modes

- Invalid or inaccessible registry URL returns an error status
- URL points to a non-public or paywalled record, causing extraction failure
- Entity name does not match records at the supplied URL
- Registry site is temporarily unavailable or rate-limiting requests
- Supplied URL is not a recognized public registry source (SEC/SoS/Companies House)
- Malformed input schema causes request rejection

## How this service works

Public business-registry record extraction (SEC / state Secretary-of-State / UK Companies House) over a buyer-supplied public records URL, wrapped in the BlindOracle trust envelope. Public records only.

## Output

A JSON object containing the extracted business registry data, a BlindOracle trust envelope (bo_trust) with content SHA-256 hash, content scan status, scan verdict, source attribution, and powered_by field, plus a deliverable_type indicator confirming the response is structured data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "entity": {
   "type": "string"
  },
  "registry_url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "properties": {
   "status": {
    "type": "string"
   },
   "bo_trust": {
    "type": "object"
   },
   "deliverable_type": {
    "type": "string"
   }
  }
 },
 "example": {
  "deliverable_type": "..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blindoracle-business-registry-lookup-9cf7cd9d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.craigmbrown.com](https://www.zero.xyz/host/api.craigmbrown.com/llms.txt)
