# SuVerse Crypto Batch Price Feed

> SuVerse Crypto Batch Price Feed is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches real-time USD prices, 24h change, market cap, and trading volume for up to 50 cryptocurrencies in a single POST call, covering 17,000+ tokens via CoinGecko.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-crypto-price-batch
- Price: $0.005/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-d4e25459
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1jkwCzlVPxT9QOyEgYZzW

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

Example prompt: Pull the current USD prices, 24-hour change, market cap, and volume for bitcoin, ethereum, solana, chainlink, uniswap, and avalanche-2 all at once so I can update my portfolio dashboard.

## When to prefer this

Prefer this endpoint when you need prices for multiple cryptocurrencies simultaneously — especially 2 to 50 tokens — making it far more cost-efficient than one call per coin. Ideal for portfolio trackers, trading bots with watchlists, and dashboards that need to refresh many assets at once. Covers 17,000+ tokens via CoinGecko, making it suitable for long-tail altcoins as well as majors.

## Known failure modes

- Invalid or unrecognized coin IDs return an error or are omitted from results
- Exceeding 50 coin IDs per call may result in a 400 bad request or truncated response
- Network timeout if CoinGecko upstream is slow or rate-limited
- Payment failure (insufficient USDC balance) results in 402 Payment Required
- Coins not indexed by CoinGecko will not be found

## How this service works

Current USD prices for up to 50 coin IDs in one call. Price, 24h change, market cap, 24h volume per coin. AI agent portfolio tracker, watchlist bot, dashboard refresher, comparative analytics. 17,000+ tokens via CoinGecko. Batch crypto price API.

## Output

Returns a structured response with one record per coin ID containing: current USD price, 24-hour percentage change, market capitalization in USD, and 24-hour trading volume in USD. Up to 50 coins returned in a single response.

## Example request

```json
{
 "ids": [
  "bitcoin",
  "ethereum",
  "solana",
  "chainlink",
  "uniswap",
  "avalanche-2"
 ]
}
```

## 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-d4e25459/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)
