# BizIntel API – Company News Buzz

> BizIntel API – Company News Buzz 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 recent news mentions and buzz for a named company, returning dated headlines and confidence-scored results.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/company/news-buzz
- 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-news-buzz-aeb416ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S1W7F9KvBKkCTC7_bvkub

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-news-buzz-aeb416ff -d '<json body>'
```

Example prompt: What's the latest news buzz around Nvidia? Pull recent headlines and mentions for them.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call lookup of recent news headlines and media buzz for a specific named company, without maintaining a news API subscription or API key. It is well-suited for on-demand due diligence, pre-meeting research, or light competitive monitoring tasks where real-time exhaustive coverage is not required.

## Known failure modes

- Unknown or very obscure company name returns low confidence or empty mentions list
- Company name ambiguity (e.g. common words) may return unrelated results with lower confidence
- Data freshness may lag by days or weeks for smaller companies
- Network or worker timeout returns a 5xx error
- Payment failure via x402 if USDC balance is insufficient

## How this service works

Checks media mentions and RSS news buzz matching the company name.

## Output

Returns a list of dated news mention objects (each with a date and headline title), along with a supported flag, confidence level (e.g. 'high'), data freshness date, and a disclaimer. Any warnings about data quality or limitations are also surfaced.

## 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": [
      "company"
     ],
     "properties": {
      "company": {
       "type": "string",
       "description": "Company name (e.g. Google)"
      }
     }
    },
    "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": {
   "mentions": [
    {
     "date": "2026-06-18",
     "title": "Nvidia hits all-time high"
    }
   ]
  },
  "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-news-buzz-aeb416ff/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)
