# finance.toon.haus Company News Articles

> finance.toon.haus Company News Articles is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches recent news articles for a specific company or stock symbol

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/news
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toon-haus-696f8cd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yk61GJ8-qXl6IXxMcB8H6

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 finance-toon-haus-696f8cd7
```

Example prompt: Can you pull the latest company news articles for Apple (AAPL) from finance.toon.haus so I can see what's been happening with them recently?

## When to prefer this

Use this endpoint when you need recent news articles specifically tied to a company or stock symbol, especially within a financial data pipeline that already uses finance.toon.haus for other market data like options, earnings, or insider transactions. Ideal for building stock research summaries or monitoring news sentiment around holdings.

## Known failure modes

- Missing or invalid stock symbol returns empty results or error
- Rate limiting or payment failure (402) if USDC balance is insufficient
- No news available for obscure or delisted symbols
- Network timeout or upstream data provider outage

## How this service works

Company news articles

## Output

A list of recent news articles associated with a company or stock, including headlines, sources, publication timestamps, and article summaries or links.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-toon-haus-696f8cd7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toon.haus](https://www.zero.xyz/host/finance.toon.haus/llms.txt)
