# SuVerse Crypto Market Rankings

> SuVerse Crypto Market Rankings 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-15).

Returns top N cryptocurrencies ranked by market cap with comprehensive metrics including price, volume, percentage changes, supply, ATH/ATL, and market dominance.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-crypto-market-rankings
- 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/proxy-suverse-io-06005d0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wTDg6OPYNaDTbIqMyP4cN

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-06005d0c -d '<json body>'
```

Example prompt: Give me the top 50 cryptocurrencies ranked by market cap right now, including their prices, 24-hour volume, weekly and monthly percentage changes, circulating supply, and market dominance.

## When to prefer this

Use this endpoint when you need a ranked leaderboard of top cryptocurrencies by market cap with multi-timeframe momentum data in a single call. Prefer this over individual coin lookups when building screening tools, market reports, or momentum trackers across many assets simultaneously.

## Known failure modes

- Invalid N value outside 10–250 range returns an error
- Payment failure via x402 protocol blocks the request
- Upstream data provider outage results in stale or missing data
- Malformed POST body returns 400 bad request

## How this service works

Top N crypto by market cap with price, 24h volume, 1h/24h/7d/30d % changes, fully diluted valuation, circulating supply, ATH/ATL, dominance. AI agent leaderboard, opportunity screener, market report, momentum tracker. 10-250 coins per call. CoinGecko data.

## Output

A ranked list of N cryptocurrencies (10–250) each with: current price, 24h trading volume, 1h/24h/7d/30d percent changes, fully diluted valuation, circulating supply, all-time high/low data, and market dominance percentage.

## Example request

```json
{
 "N": 50
}
```

## 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-06005d0c/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)
