# finance.toon.haus Market News

> finance.toon.haus Market News 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 the latest market news headlines and articles relevant to financial markets

## Facts

- Endpoint: GET https://finance.toon.haus/api/market/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-26b1e5a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i2CBmTsKPbWBjC_7KvG9Y

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-26b1e5a3
```

Example prompt: What's the latest market news right now? Pull the current financial market headlines for me.

## When to prefer this

Use this endpoint when you need broad, aggregated market news rather than company-specific news (use the company news endpoint for that). Ideal for getting a general pulse on what is moving markets today without needing to specify a ticker symbol.

## Known failure modes

- Payment required (402) if x402 micropayment header is missing or invalid
- Rate limiting if called too frequently
- Empty or stale news feed during off-market hours
- Timeout if upstream news provider is slow

## How this service works

Market news

## Output

A list of market news articles or headlines covering current financial market events, likely including titles, summaries, sources, and timestamps. Response is truncated at ~10KB suggesting multiple news items.

## Example request

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

## 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-26b1e5a3/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)
