# finance.toonhaus.dev Market News

> finance.toonhaus.dev Market News 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 current market news headlines and articles relevant to financial markets

## Facts

- Endpoint: GET https://finance.toonhaus.dev/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-toonhaus-dev-9f4ceb7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tn1plhPP-LpEOtvbNaQJt

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-9f4ceb7c
```

Example prompt: What are the latest market news headlines right now? Pull the current financial market news feed so I can see what's moving today.

## When to prefer this

Use this endpoint when you need a broad market-wide news feed rather than news for a specific company (use the company news endpoint for that). Best for getting a general pulse of what's happening across financial markets without needing to specify a ticker symbol.

## Known failure modes

- Payment required (402) if x402 micropayment header is missing or insufficient
- No query parameters supported — any attempt to filter by symbol or date may be silently ignored
- Response may be truncated for large news feeds
- Stale data if upstream news provider has a delay

## How this service works

Market news

## Output

A list of current market news articles or headlines, likely including titles, summaries, sources, and timestamps relevant to financial markets. 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-toonhaus-dev-9f4ceb7c/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)
