# BizIntel API – Company Patent List

> BizIntel API – Company Patent List 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).

Retrieves a list of patents assigned to a specified company by official company name

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/company/patent-list
- 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-patent-list-dc86264a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e0da7Q16HkI7v2dBgYYUO

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-patent-list-dc86264a -d '<json body>'
```

Example prompt: Can you pull up the patent list for Apple — I want to see what patents they currently hold, including their titles and patent numbers?

## When to prefer this

Choose this endpoint when you need a structured, AI-agent-friendly list of patents by assignee name without setting up an API key. It is well-suited for quick competitive IP lookups, due diligence workflows, or enriching company profiles with patent data. Prefer it over USPTO or EPO direct queries when you want a simple pay-per-call interface with no authentication overhead and a machine-readable confidence score.

## Known failure modes

- Unknown or misspelled company name may return empty patent list or low confidence result
- Company name ambiguity (e.g. common names) may return patents for the wrong entity
- Data may be outdated if patents were filed or granted after the data_as_of date
- Unsupported company or jurisdiction may return supported:false
- Invalid request body (missing assignee field) returns a validation error
- Payment failure via x402/USDC may prevent the call from completing

## How this service works

Retrieves patents filed under the business name from the USPTO directory.

## Output

Returns a JSON object containing an array of patents, each with a title and patent number, along with a confidence rating (e.g. 'high'), a data freshness date (e.g. '2026-06'), any warnings, a supported flag, and a disclaimer that the data is informational only and should be verified with official sources or qualified professionals.

## 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": [
      "assignee"
     ],
     "properties": {
      "assignee": {
       "type": "string",
       "description": "Official company name (e.g. Apple)"
      }
     }
    },
    "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": {
   "patents": [
    {
     "title": "Processor Cache Control",
     "number": "1002345"
    }
   ]
  },
  "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-patent-list-dc86264a/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)
