# x402node Batch Crypto Spot Prices

> x402node Batch Crypto Spot Prices is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Fetches live spot prices for multiple cryptocurrency symbols (BTC, ETH, SOL, and more) in a single API call

## Facts

- Endpoint: GET https://api.x402node.dev/market/prices-batch
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402node-batch-crypto-spot-prices-5174400b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wfjAEX3EtHjSK9akC4-KW

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 x402node-batch-crypto-spot-prices-5174400b
```

Example prompt: Can you grab the current live spot prices for BTC, ETH, and SOL all at once so I can see how my watchlist is doing right now?

## When to prefer this

Use this endpoint when you need prices for 2 or more cryptocurrencies simultaneously — it consolidates what would otherwise be N separate API calls into one, making it ideal for portfolio monitors, watchlists, and dashboards that need fresh multi-asset pricing in real time.

## Known failure modes

- Invalid or unsupported symbol returns error or null entry for that ticker
- Payment failure results in 402 response requiring USDC payment
- Rate limiting if too many requests are made in short succession
- Downstream OKX data feed outage may cause stale or missing prices

## How this service works

Live spot prices for multiple crypto symbols in a single call (BTC, ETH, SOL and more) - one request instead of N for agents monitoring a portfolio or watchlist, real-time data that changes every second. batch prices, multiple prices, portfolio prices, bulk price, price watchlist, multi coin price Accepts payment on Base or Solana — either network works.

## Output

Returns real-time spot prices for all requested cryptocurrency symbols in a single response, including current price data that updates every second — eliminating the need for multiple sequential price calls.

## Example request

```json
{
 "symbols": "BTC,ETH,SOL"
}
```

## 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": {
      "coins": {
       "type": "string",
       "description": "Coins (optional)"
      },
      "symbols": {
       "type": "string",
       "description": "Comma-separated symbols, e.g. BTC,ETH,SOL (default BTC,ETH,SOL)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402node-batch-crypto-spot-prices-5174400b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
