# Orchard Data WSB Mentions

> Orchard Data WSB Mentions is a paid API for AI agents from orchard-data.letom1176.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns a ranked list of the most-mentioned stock ticker symbols on WallStreetBets (Reddit), ordered by mention count.

## Facts

- Endpoint: GET https://orchard-data.letom1176.workers.dev/api/wsb-mentions
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orchard-data-wsb-mentions-0df5a9af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-4bDqrJhSCBH1YZhJRS6m

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 orchard-data-wsb-mentions-0df5a9af
```

Example prompt: What stocks are getting the most mentions on WallStreetBets right now? Give me the ranked list with mention counts.

## When to prefer this

Choose this endpoint when you need a quick, ranked snapshot of which stock tickers are generating the most discussion on r/WallStreetBets, particularly for retail sentiment signals, meme stock monitoring, or social-driven trading strategies. It is ideal for agents that need structured, machine-readable mention counts rather than raw Reddit scraping. At $0.003 per call it is cost-effective for frequent polling.

## Known failure modes

- Payment failure (402) if x402 USDC micropayment on Base is not completed
- Rate limiting or worker errors returning 5xx if the upstream Reddit data pipeline is unavailable
- Empty or stale data if the WSB scrape has not refreshed recently
- Malformed response if the worker deployment is misconfigured

## How this service works

Market data for AI agents, paid per-call via x402 (USDC on Base). Free index at /, free spec here.

## Output

A JSON array of ranked ticker objects, each containing a rank integer, a stock symbol string, and a mention count integer — e.g. [{rank:1, symbol:'MU', mentions:673}, {rank:2, symbol:'NVDA', mentions:402}]. The list is ordered descending by mention volume.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "wsb_mentions": [
   {
    "rank": 1,
    "symbol": "MU",
    "mentions": 673
   },
   {
    "rank": 2,
    "symbol": "NVDA",
    "mentions": 402
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-wsb-mentions-0df5a9af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orchard-data.letom1176.workers.dev](https://www.zero.xyz/host/orchard-data.letom1176.workers.dev/llms.txt)
