# Orchard Data – Market Movers

> Orchard Data – Market Movers is a paid API for AI agents from orchard-data.letom1176.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns a ranked list of trending market movers (symbols, last price, and percentage change) via a pay-per-call x402 API.

## Facts

- Endpoint: GET https://orchard-data.letom1176.workers.dev/api/movers
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orchard-data-market-movers-5e0705f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Li0LUT716aH0AT6wejmUT

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-market-movers-5e0705f1
```

Example prompt: What are the top trending market movers right now — give me the symbols with the biggest percentage price changes today.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call market movers feed without a subscription — especially in agentic pipelines that use x402 micropayments on Base (USDC). Ideal for bots or agents that need on-demand top-movers data without committing to a full market data subscription. Prefer alternatives (e.g. Polygon, Alpaca, CoinGecko) if you need richer historical data, full order books, or don't want per-call micropayment friction.

## Known failure modes

- 402 Payment Required if x402 USDC payment on Base is not attached or fails
- Invalid or missing properties parameter returns malformed or empty results
- Rate limiting or quota exhaustion on the Cloudflare Worker may return 429
- Network timeout on the Workers edge if the upstream data source is slow
- Empty trending_movers array if no significant movers are detected in the current window

## 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 object containing a 'trending_movers' array where each entry includes a symbol identifier, the last traded price, and the percentage change. Example: {"trending_movers":[{"last":44.2,"symbol":"MAN","change_pct":33.7}]}.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "trending_movers": [
   {
    "last": 44.2,
    "symbol": "MAN",
    "change_pct": 33.7
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-market-movers-5e0705f1/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)
