# Stock Analyst Price Target

> Stock Analyst Price Target 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).

Returns analyst consensus price targets (high, low, mean, median) for a given stock symbol

## Facts

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

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-4db28fee
```

Example prompt: What are the analyst price targets for NVDA — give me the high, low, mean, and median consensus estimates from Wall Street analysts?

## When to prefer this

Use this endpoint when you need analyst consensus price target data (high/low/mean/median) for a specific stock. Prefer this over general market data endpoints when you specifically need Wall Street analyst forward-looking price estimates rather than current prices or historical data.

## Known failure modes

- Missing or invalid ticker symbol returns an error or empty result
- Ticker with no analyst coverage returns null or empty target fields
- Rate limiting or payment failure results in 402 response
- Unsupported or delisted symbol may return no data

## How this service works

Analyst target high/low/mean/median

## Output

Returns a structured response containing analyst-aggregated price target figures for the queried stock, including the high target, low target, mean target, and median target price as reported 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-toonhaus-dev-4db28fee/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)
