# claw402 Alpaca Market Movers

> claw402 Alpaca Market Movers is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns top market movers (gainers/losers) from Alpaca Markets, payable per-call with USDC via x402

## Facts

- Endpoint: GET https://claw402.ai/api/v1/alpaca/movers
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-alpaca-market-movers-6822b25d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J0_66I894ep21ofitkAyO

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 claw402-alpaca-market-movers-6822b25d
```

Example prompt: What are the top 10 stock movers in the US equity market right now? Pull the latest data from Alpaca.

## When to prefer this

Choose this endpoint when you need real-time or near-real-time top market movers data sourced from Alpaca Markets and want to avoid API key registration by paying micro-amounts of USDC per call via x402 protocol. Ideal for lightweight, pay-as-you-go financial agents that need gainers/losers data without a subscription.

## Known failure modes

- Payment not received or insufficient USDC — 402 response with payment required details
- Invalid market_type value — may return empty data array or error code
- No movers data available outside market hours — empty data array returned
- Malformed query parameters — 400 bad request
- Upstream Alpaca data unavailable — error code in response body

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

A JSON object with a code field and a data array containing top market movers — likely including ticker symbols, price change percentages, and related market movement metadata for the requested number of top movers and market type.

## 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": {
      "top": {
       "type": "string"
      },
      "market_type": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

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