# finance.toonhaus.dev Trending Market Symbols

> finance.toonhaus.dev Trending Market Symbols is a paid API for AI agents from finance.toonhaus.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a list of currently trending stock, crypto, and other financial symbols with price, change, and percent change data for the US market.

## Facts

- Endpoint: GET https://finance.toonhaus.dev/api/market/trending
- 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/finance-toonhaus-dev-15109192
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qw-QPDR6L2WN2ne0j3TWb

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-15109192
```

Example prompt: What financial symbols are trending in the market right now — stocks, crypto, anything that's moving?

## When to prefer this

Use this endpoint when you need a real-time snapshot of which financial symbols (stocks, ETFs, crypto) are currently trending or most active in the US market, without needing to specify a particular symbol. Ideal for market overview dashboards, alerting on momentum, or surfacing investment ideas.

## Known failure modes

- No query parameters required so malformed requests are unlikely; possible 402 if payment header is missing or invalid; possible 503 if upstream market data source is unavailable; may return stale data outside market hours

## How this service works

Trending symbols

## Output

Returns a JSON object with a region field (e.g. 'US') and an array of trending symbols, each containing the ticker symbol, company/asset name, current price, absolute price change, and percent change.

## 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-15109192/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)
