# oussapi Batch Binance Spot Prices

> oussapi Batch Binance Spot Prices is a paid API for AI agents from oussapi.duckdns.org, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Fetches current spot prices from Binance for multiple cryptocurrency symbols in a single batch request

## Facts

- Endpoint: GET https://oussapi.duckdns.org/api/v1/prices
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oussapi-batch-binance-spot-prices-ea80fd35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2hKCQHA6VEAAepuCJPjAc

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 oussapi-batch-binance-spot-prices-ea80fd35
```

Example prompt: What are the current Binance spot prices for BTC, ETH, and SOL all at once?

## When to prefer this

Use this endpoint when you need prices for multiple cryptocurrencies simultaneously and want to minimize API round-trips. Prefer this over the single-symbol real-time endpoint when querying 2+ assets. Best for portfolio valuation, arbitrage checks, or multi-asset dashboards where batch efficiency matters.

## Known failure modes

- Invalid or unrecognized symbol ticker returns an error or is omitted from results
- Missing 'symbols' query parameter returns a 400 bad request
- Payment not provided or rejected returns a 402 Payment Required
- Binance data feed unavailable causes a 503 or timeout
- Rate limiting may occur if called excessively

## How this service works

Batch Binance spot prices. Query: symbols=BTC,ETH,SOL

## Output

Returns current Binance spot prices for the requested cryptocurrency symbols in a single response, likely as a map or list of ticker-to-price pairs.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbols"
     ],
     "properties": {
      "symbols": {
       "type": "string",
       "description": "Comma-separated tickers"
      }
     }
    }
   },
   "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/oussapi-batch-binance-spot-prices-ea80fd35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oussapi.duckdns.org](https://www.zero.xyz/host/oussapi.duckdns.org/llms.txt)
