# Financial Data x402 – Analyst Data Endpoint

> Financial Data x402 – Analyst Data Endpoint is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns analyst price targets, short interest, upgrade/downgrade history, and recommendation trends for a given stock ticker, paid per-call via x402/USDC.

## Facts

- Endpoint: GET https://x402financialdata.com/analyst/%7Bticker%7D
- 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/financial-data-x402-analyst-data-endpoint-e94fece2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fJaW7lV573ptgNJ52-NnO

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 financial-data-x402-analyst-data-endpoint-e94fece2
```

Example prompt: What are the current analyst price targets and buy/sell/hold recommendations for TSLA, including any recent upgrades or downgrades?

## When to prefer this

Choose this endpoint when you need structured analyst consensus data — price targets, short interest, and rating changes — for a publicly traded stock without setting up an API key or subscription. Ideal for pay-as-you-go AI agent workflows that need occasional equity research data, especially when integrated with x402 micropayment flows on Base or Solana. Prefer this over subscription-based financial data APIs when call volume is low or unpredictable.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Payment failure via x402 protocol results in a 402 response and no data
- Ticker for non-US or OTC securities may return partial or missing data
- Short interest data may be delayed or unavailable for thinly traded stocks
- Upgrades/downgrades list may be empty if no recent analyst actions exist

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

A JSON object containing: the current date (as_of), the requested ticker, analyst price targets (low, high, mean, number of analysts, recommendation key like 'buy'), short interest data (short ratio, shares short, short percent of float, month-over-month change), a list of recent upgrades/downgrades with firm name, action, and grade changes, and a recommendation trend breakdown by period (strong buy, buy, hold, sell, strong sell counts).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-21",
  "ticker": "TSLA",
  "price_targets": {
   "low": 125,
   "high": 600,
   "mean": 425.2154,
   "num_analysts": 39,
   "recommendation_key": "buy"
  },
  "short_interest": {
   "short_ratio": 1.66,
   "shares_short": 79109257,
   "short_percent_of_float": 2.37,
   "shares_short_change_pct": 2.809,
   "shares_short_prior_month": 76947758
  },
  "upgrades_downgrades": [
   {
    "date": "2026-07-21",
    "firm": "GLJ Research",
    "action": "reit",
    "to_grade": "Sell",
    "from_grade": "Sell"
   },
   {
    "date": "2026-07-14",
    "firm": "Morgan Stanley",
    "action": "main",
    "to_grade": "Equal-Weight",
    "from_grade": "Equal-Weight"
   }
  ],
  "recommendation_trend": [
   {
    "buy": 17,
    "hold": 19,
    "sell": 4,
    "label": "current_month",
    "period": "0m",
    "strong_buy": 5,
    "strong_sell": 2
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-analyst-data-endpoint-e94fece2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
