# TradingAgents Multi-Agent Stock Analyzer

> TradingAgents Multi-Agent Stock Analyzer is a paid API for AI agents from tradingagents-x402.fly.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Runs a multi-agent AI analysis pipeline on a publicly traded ticker and returns a BUY/HOLD/SELL decision with confidence, rationale, and per-agent reports

## Facts

- Endpoint: POST https://tradingagents-x402.fly.dev/api/analyze-ticker
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradingagents-multi-agent-stock-analyzer-9d2c8d8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xuTzS5b63Lp0KQd8zW_W_

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 tradingagents-multi-agent-stock-analyzer-9d2c8d8d -d '<json body>'
```

Example prompt: Run a full multi-agent trading analysis on NVDA using all four analyst modules — market, social, news, and fundamentals — and tell me whether I should buy, hold, or sell based on today's data.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-perspective investment research report on a single ticker and want a synthesized BUY/HOLD/SELL decision with confidence — rather than raw price data, real-time quotes, or portfolio management. Ideal for pre-investment due diligence or a second opinion before a trade.

## Known failure modes

- Invalid or unrecognized ticker symbol — returns an error or empty analysis
- Date provided is in the future or non-market day — may return incomplete data
- Analyst module names misspelled or invalid — request may fail or silently drop the module
- Timeout if upstream data sources are slow — endpoint has 60-180s latency so callers should use long timeouts
- Payment not attached or rejected — x402 payment required, returns 402 if USDC payment is missing

## How this service works

Price $0.03 USDC per request. Synthetic degraded ticker demo for { ticker, date?, analysts? }. Returns a synthetic degraded demo payload; no live market data or TradingAgents execution. Not financial advice.

## Output

Returns a final BUY/HOLD/SELL decision with a confidence score, a structured rationale explaining the conclusion, and individual reports from each analyst module (market, social, news, fundamentals) that contributed to the decision.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "Optional analysis date in YYYY-MM-DD format; defaults to today"
  },
  "ticker": {
   "type": "string",
   "description": "Public equity or crypto ticker symbol, for example NVDA"
  },
  "analysts": {
   "type": "array",
   "items": {
    "enum": [
     "market",
     "social",
     "news",
     "fundamentals"
    ],
    "type": "string"
   },
   "description": "Optional analyst modules to run"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "date": "2026-05-15",
  "input": {
   "type": "http",
   "method": "POST",
   "bodyFields": {
    "ticker": "NVDA",
    "analysts": [
     "market",
     "news",
     "fundamentals"
    ]
   }
  },
  "ticker": "NVDA",
  "reports": {
   "news": "Data-center capex guidance upgraded...",
   "sentiment": "StockTwits bull/bear ratio 3.2:1...",
   "technical": "Above 50/200 SMA, RSI 62...",
   "risk_review": "Position size capped at 3% portfolio",
   "trader_plan": "Long entry $920, target $1080, stop $880",
   "fundamentals": "Q1 earnings beat by 12%..."
  },
  "summary": "Strong fundamentals, bullish momentum, positive sentiment despite macro headwinds.",
  "decision": "BUY",
  "confidence": "high"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradingagents-multi-agent-stock-analyzer-9d2c8d8d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tradingagents-x402.fly.dev](https://www.zero.xyz/host/tradingagents-x402.fly.dev/llms.txt)
