# BizIntel API – NASDAQ Feed

> BizIntel API – NASDAQ Feed 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-15).

Fetches curated NASDAQ market news articles and financial feed data for AI agent consumption

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/finance/nasdaq-feed
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-nasdaq-feed-58f1e3ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EsVeDHRasomPwEC_oEPW4

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-nasdaq-feed-58f1e3ee -d '<json body>'
```

Example prompt: Can you pull the latest NASDAQ market news feed right now so I can see what headlines are moving the market today?

## When to prefer this

Choose this endpoint when you need quick, structured NASDAQ news headlines for an AI agent workflow without managing API keys — especially when operating in a pay-per-call x402 USDC micropayment environment on Base. Prefer it over full brokerage APIs when you only need news headlines rather than real-time price quotes or order execution.

## Known failure modes

- Empty articles array if no current feed data is available
- 'supported: false' response if the feed type is not supported
- Payment failure if USDC balance on Base is insufficient for the $0.02 per-call fee
- Stale data indicated by older data_as_of timestamp during market off-hours
- Malformed request body may result in a 400-level error

## How this service works

Parses recent market news articles from the official Nasdaq RSS outbound feed.

## Output

Returns a JSON object containing an array of news articles (each with a title), a supported flag, a confidence rating (e.g. 'high'), a data_as_of timestamp indicating the recency of the data, warnings if any, and a disclaimer that the information is for informational purposes only and not financial advice.

## 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",
     "properties": {}
    },
    "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": {
   "articles": [
    {
     "title": "Market Opens Higher"
    }
   ]
  },
  "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-nasdaq-feed-58f1e3ee/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)
