# Orchard Data Trending Tickers

> Orchard Data Trending Tickers is a paid API for AI agents from orchard-data.netlify.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Returns currently trending stock tickers aggregated from StockTwits trending symbols and Reddit r/wallstreetbets hot posts with ticker mention counts

## Facts

- Endpoint: GET https://orchard-data.netlify.app/api/trending
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orchard-data-trending-tickers-cbfae31e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LW9Oo-d79xlt9gg6FKz36

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-trending-tickers-cbfae31e
```

Example prompt: What stocks are trending right now on StockTwits and r/wallstreetbets? Pull me the current hot tickers with their mention counts.

## When to prefer this

Choose this endpoint when you need a real-time snapshot of which tickers retail traders are actively discussing across both StockTwits and Reddit simultaneously, especially r/wallstreetbets. Ideal for sentiment-driven trading signals, momentum screening, or understanding retail investor hype. It aggregates two key retail sentiment sources in a single call, saving you from querying each platform separately.

## Known failure modes

- Upstream data source (StockTwits or Reddit) unavailable, leading to partial or empty results
- Rate limiting or API quota exceeded returning a 429 error
- Stale data if the aggregation pipeline has not refreshed recently
- Payment not accepted or invalid x402 payment header returning 402
- Network timeout connecting to Netlify-hosted function

## How this service works

Trending tickers right now: StockTwits trending symbols + r/wallstreetbets hot posts with ticker mention counts. JSON.

## Output

A JSON object containing trending ticker symbols sourced from StockTwits trending symbols and r/wallstreetbets hot posts, including mention counts indicating how frequently each ticker is being discussed across those communities.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-trending-tickers-cbfae31e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orchard-data.netlify.app](https://www.zero.xyz/host/orchard-data.netlify.app/llms.txt)
