# BizIntel API – Company Wikipedia Extract

> BizIntel API – Company Wikipedia Extract 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).

Fetches and extracts a structured summary of a company from its Wikipedia page given the page title

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/company/wikipedia
- 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-company-wikipedia-extract-20ad6edc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ldldTwN-2cJcNyy2Flln9

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-company-wikipedia-extract-20ad6edc -d '<json body>'
```

Example prompt: Pull the Wikipedia extract for Apple_Inc. so I can get a quick overview of what the company does.

## When to prefer this

Use this endpoint when you need a quick, structured natural-language overview of a well-known company and the company has a Wikipedia presence. It is ideal for enriching company profiles, performing lightweight due diligence, or populating agent memory with factual background. Prefer this over unstructured web scraping when you want a clean, confidence-scored extract without parsing HTML. Not suitable for private companies without Wikipedia pages or when you need real-time financial data.

## Known failure modes

- Wikipedia page title not found — returns supported:false or empty extract
- Ambiguous title matching wrong article — confidence may be lower
- Company has no Wikipedia page — endpoint returns unsupported result
- Malformed or missing 'title' field in request body — validation error
- Rate limiting or payment failure via x402 — HTTP 402 or 429 response

## How this service works

Resolves Wikipedia description summary and founding details for a company title.

## Output

Returns a JSON object containing a plain-text extract of the company's Wikipedia page, a confidence level (e.g. 'high'), a data_as_of date string, any warnings, a supported flag, and a legal disclaimer reminding users this is informational only.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "title"
     ],
     "properties": {
      "title": {
       "type": "string",
       "description": "Company Wikipedia page title name (e.g. Apple_Inc.)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "extract": "Apple Inc. is an American multinational technology company..."
  },
  "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-company-wikipedia-extract-20ad6edc/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)
