# TradingAgents x402 - Multi-Agent LLM Arbitrage Analysis

> TradingAgents x402 - Multi-Agent LLM Arbitrage Analysis 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-14).

Runs a paid multi-agent LLM pipeline to produce a structured BUY/HOLD/SELL arbitrage recommendation for a given ticker, including analyst debate, risk review, and confidence score.

## Facts

- Endpoint: POST https://tradingagents-x402.fly.dev/api/analyze-arbitrage
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradingagents-x402-multi-agent-llm-arbitrage-analysis-ffcc5fd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JoSCweIuEgzKbrtNvcRHu

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-x402-multi-agent-llm-arbitrage-analysis-ffcc5fd1 -d '<json body>'
```

Example prompt: Can you run a full multi-agent arbitrage analysis on TSLA and tell me whether I should buy, hold, or sell — including the confidence level and what the bullish and bearish cases are?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-perspective trading recommendation that combines fundamentals, sentiment, news, and technical analysis into a single structured output with an explicit BUY/HOLD/SELL decision and confidence score. It is particularly well-suited for arbitrage-focused analysis. Prefer it over simple price lookup or single-indicator tools when you want a synthesized, risk-reviewed recommendation from a multi-agent debate pipeline rather than raw data.

## Known failure modes

- Payment not received or insufficient USDC balance — request rejected before analysis runs
- Invalid or unrecognized ticker symbol — pipeline may return error or empty analysis
- LLM provider timeout or rate limit during multi-agent pipeline — partial or failed response
- Network error reaching tradingagents-x402.fly.dev — connection timeout
- Response schema only guarantees {ok: boolean} — detailed recommendation fields may be missing if pipeline fails mid-run

## How this service works

Pay $0.03 USDC, get a structured multi-agent trading recommendation for any ticker. Five specialist analysts (fundamentals / sentiment / news / technicals), bullish-vs-bearish researcher debate, trader synthesis, risk-management review, portfolio-manager final decision. Returns BUY/HOLD/SELL with confidence, rationale, and full agent transcripts. Powered by the open-source TradingAgents framework (arXiv:2412.20138).

## Output

A structured JSON object containing a BUY/HOLD/SELL decision, confidence score, rationale, individual specialist analyst reports (fundamentals, sentiment, news, technicals), a bullish vs bearish researcher debate summary, a trader synthesis, and a risk review — all generated by a multi-agent LLM pipeline.

## 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,
  "report": "Cross-market arbitrage consensus with supporting observations.",
  "ticker": "NVDA"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradingagents-x402-multi-agent-llm-arbitrage-analysis-ffcc5fd1/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)
