# finance.toon.haus Stock Price Target

> finance.toon.haus Stock Price Target 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).

Returns analyst price target data (high, low, mean, median) for a given stock symbol

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/price-target
- 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-f1915614
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rJPYuK4OP78wPntLvn-DN

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

Example prompt: What are the analyst price targets for NVDA right now — give me the high, low, mean, and median so I can see where Wall Street thinks the stock is headed?

## When to prefer this

Use this endpoint when you need structured analyst price target data (high/low/mean/median) for a specific stock. Prefer this over scraping financial news sites or using general web search when you need clean, machine-readable consensus analyst data for equity research, comparison, or investment decision support.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Ticker with no analyst coverage may return null or missing target fields
- Network or server error returns a non-200 HTTP status
- Payment failure (x402) prevents the request from being processed

## How this service works

Analyst target high/low/mean/median

## Output

Returns analyst consensus price target data for the queried stock ticker, including the high target, low target, mean target, and median target as set by covering analysts.

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