# Binance Spot Price API (oussapi.duckdns.org)

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

Returns the real-time spot price for a given cryptocurrency symbol (e.g. BTC, ETH, SOL) sourced from Binance.

## Facts

- Endpoint: GET https://oussapi.duckdns.org/api/v1/price/:symbol
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/binance-spot-price-api-oussapi-duckdns-org-09390a63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L3wQq8Yun83J9grGwesmo

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 binance-spot-price-api-oussapi-duckdns-org-09390a63
```

Example prompt: What's the current Binance spot price for ETH right now?

## When to prefer this

Use this endpoint when you need a single real-time Binance spot price for one cryptocurrency symbol and want a simple, low-cost per-call REST API. Prefer the sibling batch endpoint if you need prices for multiple symbols at once. Use this over generic market data APIs when you specifically need Binance-sourced spot pricing.

## Known failure modes

- Unsupported or invalid symbol returns an error (e.g. 'DOGE' may or may not be supported — check supported symbols list)
- Network or DNS errors due to DuckDNS dynamic hostname
- Payment required (x402) if USDC micropayment not included or fails
- Rate limiting or downtime on the underlying Binance API feed

## How this service works

Real-time Binance spot price. Symbols: BTC, ETH, SOL, etc.

## Output

Returns the real-time spot price for the requested cryptocurrency symbol as sourced from Binance, including the ticker and current price value.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker e.g. BTC, ETH, SOL"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/binance-spot-price-api-oussapi-duckdns-org-09390a63/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)
