# market2000.xyz Get Market Movers

> market2000.xyz Get Market Movers is a paid API for AI agents from market2000.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns today's top stock market gainers, losers, and most-active securities with price, change, volume, and market cap data.

## Facts

- Endpoint: GET https://market2000.xyz/get_market_movers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market2000-xyz-get-market-movers-c39b8480
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PK5lZhP6Uq9Osw2_XRS1P

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 market2000-xyz-get-market-movers-c39b8480
```

Example prompt: What are today's biggest stock market gainers and losers right now — show me the top movers with their price changes and trading volume.

## When to prefer this

Use this endpoint when you need a real-time snapshot of the day's top-performing, worst-performing, and most-active stocks in a single call. Prefer it over generic financial data APIs when you want pre-ranked movers without having to sort a full universe of tickers yourself. Ideal for market morning briefings, watchlist generation, or alerting workflows. Pay-per-call via x402 on Base makes it suitable for low-frequency agentic use without subscription overhead.

## Known failure modes

- Payment failure (x402): insufficient USDC balance or wallet not configured for Base network
- Market closed: data may be stale or endpoint may return last-session data
- Empty arrays: if called outside market hours or during early pre-market when no movers are identified
- Network timeout: API may be slow during high-volatility market conditions
- Rate limiting: excessive calls may be throttled

## How this service works

Returns current stock market movers, including gainers, losers, and active names. Includes price, change, volume, market cap, and market status metadata.

## Output

A JSON object containing: timestamp of data, market status (open/closed), arrays of top gaining stocks, top losing stocks, and most active stocks — each with symbol, company name, current price, absolute price change, percent change, volume, and market cap where available. Also includes a 'cached' flag indicating whether the data is live or served from cache.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer",
       "description": "Number of results per category, 1–25 (default 10)"
      },
      "category": {
       "enum": [
        "gainers",
        "losers",
        "active",
        "all"
       ],
       "type": "string",
       "description": "Which list to return: 'gainers' (top % up), 'losers' (top % down), 'active' (highest volume), or 'all' (default)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "as_of": {
       "type": "string"
      },
      "active": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "symbol",
         "price",
         "change_pct"
        ],
        "properties": {
         "name": {
          "type": "string"
         },
         "price": {
          "type": "number"
         },
         "change": {
          "type": "number",
          "description": "Absolute price change today"
         },
         "symbol": {
          "type": "string"
         },
         "volume": {
          "type": [
           "integer",
           "null"
          ]
         },
         "avg_volume": {
          "type": [
           "integer",
           "null"
          ],
          "description": "3-month avg daily volume"
         },
         "change_pct": {
          "type": "number",
          "description": "% change today (e.g. 4.2 = +4.2%)"
         },
         "market_cap": {
          "type": [
           "integer",
           "null"
          ]
         }
        }
       }
      },
      "cached": {
       "type": "boolean"
      },
      "losers": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "symbol",
         "price",
         "change_pct"
        ],
        "properties": {
         "name": {
          "type": "string"
         },

… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-06-07T14:35:00+00:00",
  "active": [
   {
    "name": "SPDR S&P 500 ETF Trust",
    "price": 540,
    "change": 2.1,
    "symbol": "SPY",
    "volume": 120000000,
    "change_pct": 0.39,
    "market_cap": null
   }
  ],
  "cached": false,
  "losers": [
   {
    "name": "Intel Corporation",
    "price": 22.1,
    "change": -3.15,
    "symbol": "INTC",
    "volume": 80000000,
    "change_pct": -12.5,
    "market_cap": 92000000000
   }
  ],
  "gainers": [
   {
    "name": "NVIDIA Corporation",
    "price": 1234.56,
    "change": 98.2,
    "symbol": "NVDA",
    "volume": 45000000,
    "change_pct": 8.65,
    "market_cap": 3000000000000
   }
  ],
  "market_status": "open"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market2000-xyz-get-market-movers-c39b8480/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from market2000.xyz](https://www.zero.xyz/host/market2000.xyz/llms.txt)
