# Suverse Crypto 24h Movers

> Suverse Crypto 24h Movers is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the top 10 biggest gaining and top 10 biggest losing cryptocurrencies by 24-hour percentage change, filtered by minimum market cap to exclude micro-caps.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-crypto-24h-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/proxy-suverse-io-5b1aa7e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Esnygz9RQ7ppQoXAojwnf

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 proxy-suverse-io-5b1aa7e9 -d '<json body>'
```

Example prompt: Show me the top 10 biggest crypto gainers and losers in the last 24 hours, filtered to coins with a meaningful market cap so we're not looking at pump-and-dump micro-caps.

## When to prefer this

Use this endpoint when an AI trading agent or financial analyst needs a fast, filtered snapshot of the day's biggest crypto market movers. Prefer this over full market data feeds when the goal is momentum detection, news-driven move identification, or sector rotation analysis — especially when you need to exclude micro-cap noise via the market cap floor filter.

## Known failure modes

- Market data provider unavailable — upstream data feed outage returns 503
- Invalid or missing POST body parameters — returns 400 with parameter error
- Market cap floor set too high — returns empty or truncated lists
- Payment not processed — x402 payment required error if USDC payment fails
- Rate limiting — too many requests in short succession may return 429

## How this service works

Top 10 24h gainers + top 10 24h losers in crypto by % change with market cap floor to filter micro-cap noise. Returns price, market cap, volume, 24h change per coin. AI agent momentum detector, news-driven mover finder, sector rotation API, real-time movers.

## Output

Returns two ranked lists — top 10 gainers and top 10 losers — each with coin name, current price, market cap, 24h trading volume, and 24h percentage change. Data is filtered by a minimum market cap floor to ensure results reflect meaningful market movements rather than low-liquidity tokens.

## Example request

```json
{
 "input": {
  "body": {
   "limit": 10,
   "minMarketCap": 100000000
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/proxy-suverse-io-5b1aa7e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
