# finance.toonhaus.dev Analyst Recommendations

> finance.toonhaus.dev Analyst Recommendations 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-13).

Returns analyst buy/sell/hold recommendations for a given stock symbol

## Facts

- Endpoint: GET https://finance.toonhaus.dev/api/stock/recommendations
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toonhaus-dev-255f81ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q-e6tM8XZks3sSp2xyoeG

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-255f81ac
```

Example prompt: What are the current analyst recommendations for NVDA — how many analysts say buy, hold, or sell?

## When to prefer this

Use this endpoint when you need Wall Street analyst buy/sell/hold recommendation data for a specific stock. Prefer this over earnings or price target endpoints when the user specifically wants to know analyst sentiment or consensus ratings breakdown rather than price targets or financial metrics.

## Known failure modes

- Missing or invalid ticker symbol returns an error
- Unknown or delisted ticker may return empty results
- API returns 402 Payment Required if x402 payment not provided
- Rate limiting or quota exhaustion may return 429
- Network or upstream data provider outage returns 5xx

## How this service works

Analyst recommendations

## Output

A structured list or summary of analyst recommendations for the queried stock, including counts or breakdowns of buy, hold, sell, strong buy, and strong sell ratings from 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-255f81ac/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)
