# JeetScreener Top Movers

> JeetScreener Top Movers is a paid API for AI agents from jeetscreener.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns the market's top gainers and losers with percent change, price, volume, and ranking across assets.

## Facts

- Endpoint: GET https://jeetscreener.io/api/market/top-movers
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jeetscreener-io-3d70863f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pXU_8SmyREw790FkSJmjx

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 jeetscreener-io-3d70863f
```

Example prompt: Show me today's biggest market movers from JeetScreener — which stocks are gaining and losing the most right now, with their percent change and volume?

## When to prefer this

Use this endpoint when you need a broad, ranked snapshot of the entire market's biggest price movers — both up and down — without specifying a particular ticker. Ideal for market overview dashboards, momentum screening, or detecting unusual activity across all assets.

## Known failure modes

- Service unavailable or no data returns empty gainers/losers arrays
- Payment failure returns 402 with payment required details
- Transient market data feed outage may return stale or partial results

## How this service works

Lists the market's top movers — largest gainers and losers with percent change, volume, and ranking across assets.

## Output

Returns two arrays — gainers and losers — each containing objects with ticker symbol, current price, trading volume, and percent change. Entries are sorted by magnitude of price movement, with extreme movers (e.g. -99% or +90%) at the top.

## Example request

```json
{}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [],
 "properties": {}
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "losers",
  "gainers"
 ],
 "properties": {
  "losers": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "price",
     "ticker",
     "volume",
     "changePercent"
    ],
    "properties": {
     "price": {
      "type": "number"
     },
     "ticker": {
      "type": "string"
     },
     "volume": {
      "type": "number"
     },
     "changePercent": {
      "type": "number"
     }
    }
   }
  },
  "gainers": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "price",
     "ticker",
     "volume",
     "changePercent"
    ],
    "properties": {
     "price": {
      "type": "number"
     },
     "ticker": {
      "type": "string"
     },
     "volume": {
      "type": "number"
     },
     "changePercent": {
      "type": "number"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jeetscreener-io-3d70863f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jeetscreener.io](https://www.zero.xyz/host/jeetscreener.io/llms.txt)
