# Financial Data x402 – Analyst Ratings & Short Interest

> Financial Data x402 – Analyst Ratings & Short Interest is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns analyst price targets, short interest data, upgrade/downgrade history, and recommendation trends for a given stock ticker.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/analyst/%7Bticker%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-analyst-ratings-short-interest-6a2757fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U1ODtgnSHImwKBCmrSF8W

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-ratings-short-interest-6a2757fd
```

Example prompt: What do analysts currently think about Tesla — give me the price targets, short interest, and any recent upgrades or downgrades.

## When to prefer this

Choose this endpoint when you need a consolidated analyst view — price targets, short interest, and rating history — in a single pay-per-call request without managing API keys or subscriptions. It is ideal for agents that need on-demand financial research without committing to recurring data fees. Prefer it over broker APIs when cost-per-query matters and the agent only occasionally needs analyst data.

## Known failure modes

- Invalid or unrecognized ticker returns an error or empty data
- Payment failure via x402 protocol results in a 402 response requiring USDC payment on Base or Solana
- Data may be delayed or unavailable for thinly traded or OTC stocks
- If Yahoo Finance data is unavailable upstream, the response may be incomplete or stale

## 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: current-date price targets (low, high, mean, number of analysts, recommendation key), short interest metrics (short ratio, shares short, percent of float, month-over-month change), a list of recent upgrades/downgrades with firm name and date, and a recommendation trend breakdown (strong buy, buy, hold, sell, strong sell) for the current month.

## 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-ratings-short-interest-6a2757fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
