# BizIntel API – OpenCorporates Company Lookup

> BizIntel API – OpenCorporates Company Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Looks up company registration records (name, company number) from the OpenCorporates corporate registry database by company name or identifier.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/company/open-corporates
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-opencorporates-company-lookup-24eb350f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4PoK92d3U7MWd9yXc4en8

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 bizintel-api-opencorporates-company-lookup-24eb350f -d '<json body>'
```

Example prompt: Can you look up the official corporate registration number for Stripe, Inc. in the OpenCorporates registry?

## When to prefer this

Use this endpoint when you need to retrieve official corporate registration numbers and legal entity names from the OpenCorporates global registry. Prefer this over general web search when you need structured, registry-sourced data with a confidence score and freshness date. Best for due diligence, B2B enrichment, or verifying a company's legal existence without needing to manage API keys.

## Known failure modes

- Company not found in OpenCorporates registry — returns found: false with empty companies array
- Ambiguous company name matching multiple entities — returns multiple results requiring disambiguation
- Registry temporarily unsupported — returns supported: false
- Payment failure over x402/USDC — request rejected before processing
- Rate or network timeout on the workers.dev edge node

## How this service works

Searches corporate entities in open directories to resolve active corporate status and jurisdiction.

## Output

Returns a JSON object with a 'found' boolean, a list of matching companies each containing their official name and company number, a confidence level (e.g. 'high'), a data freshness date (e.g. '2026-06'), any warnings, and a disclaimer about the informational nature of the data.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Company name to search"
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "found": true,
   "companies": [
    {
     "name": "STRIPE, INC.",
     "company_number": "C3224901"
    }
   ]
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-opencorporates-company-lookup-24eb350f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
