# finance.toon.haus Analyst Recommendations

> finance.toon.haus Analyst Recommendations is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns analyst buy/sell/hold recommendations for stocks

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/recommendations
- 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-toon-haus-d25f7802
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WSenKTx0mBPOWnt54M611

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

Example prompt: What are the current analyst buy/sell/hold recommendations for NVDA?

## When to prefer this

Use this endpoint when you need Wall Street analyst buy/sell/hold consensus ratings for a specific stock. Prefer this over price-target endpoints when you want the directional recommendation rather than numeric targets. Complements the analyst target high/low/mean endpoint on the same platform.

## Known failure modes

- Missing or invalid ticker symbol returns error
- Unknown stock symbol returns empty or error response
- Rate limiting or payment failure returns 402 or 429
- Network timeout if service is unavailable

## How this service works

Analyst recommendations

## Output

Returns analyst recommendation data for a stock, including buy, hold, and sell ratings counts and overall consensus from Wall Street 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-d25f7802/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)
