# finance.toonhaus.dev - Company News Articles

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

Retrieves recent news articles for a specific company or stock symbol

## Facts

- Endpoint: GET https://finance.toonhaus.dev/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-toonhaus-dev-8717438c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9rD_qL7HI1_ug9XJTdCjP

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-toonhaus-dev-8717438c
```

Example prompt: Can you pull the latest news articles for Tesla (TSLA) so I can see what's been happening with the company recently?

## When to prefer this

Use this endpoint when you need recent news headlines and articles specifically tied to a single company or stock ticker. Prefer this over the sibling 'Market news' endpoint when the user wants company-specific coverage rather than broad market or macro news.

## Known failure modes

- Invalid or unrecognized stock symbol returns empty results or error
- No recent news available for a thinly traded or obscure company
- Payment not processed (402) if x402 authorization header is missing or invalid
- Rate limiting if too many requests are made in a short period
- Network timeout if the upstream news data provider is slow

## How this service works

Company news articles

## Output

A list of recent news articles related to the queried company or stock symbol, likely including headlines, publication dates, source names, and article URLs or summaries.

## 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-toonhaus-dev-8717438c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toonhaus.dev](https://www.zero.xyz/host/finance.toonhaus.dev/llms.txt)
