# Market Movers (Gainers & Losers)

> Market Movers (Gainers & Losers) is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns today's biggest stock market gainers and losers with price, change, and volume data sourced live from Yahoo Finance.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/movers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market-movers-gainers-losers-c4569745
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9m1keRMCjSyGXmdb4uxdS

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 market-movers-gainers-losers-c4569745
```

Example prompt: What are the top 20 biggest stock market gainers and losers right now? I want ticker, price, change, and volume for each.

## When to prefer this

Choose this endpoint when you need a broad, real-time snapshot of the entire market's biggest movers without specifying a particular ticker. Ideal for trading dashboards, watchlist generation, momentum screening, and daily market briefings. Prefer this over ticker-specific endpoints when the user wants to discover which stocks are moving, not analyze a known stock. Best for intraday use cases where recency matters.

## Known failure modes

- Limit parameter exceeds 25 — may return error or cap at maximum
- Yahoo Finance data source unavailable or rate-limited — may return stale or empty data
- Market closed (pre/post-market or weekend) — data may reflect last session or be unavailable
- Invalid limit value (non-integer or negative) — likely returns 400 error
- Network timeout on Yahoo Finance scrape — returns error or partial results

## How this service works

Day's biggest gainers and losers screened from the entire market, live from Yahoo Finance. Each mover includes ticker, company name, current price, intraday change amount and %, and volume — the market context every trader needs. Not ticker-specific. Supports optional limit per list (default 10, max 25). $0.01/call.

## Output

Returns two lists — gainers and losers — each containing up to the requested number of stocks (default 10, max 25). Each entry includes the ticker symbol, company name, current price, intraday dollar change, intraday percent change, and trading volume. Data is sourced live from Yahoo Finance and reflects current intraday market conditions.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max entries per gainers/losers list, default 10, max 25."
      }
     }
    }
   },
   "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/market-movers-gainers-losers-c4569745/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)
