# Crypto Data Node x402 — Spot Price Lookup

> Crypto Data Node x402 — Spot Price Lookup 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 current spot price of a cryptocurrency symbol (e.g. BTC, ETH, SOL) sourced from Binance, paid per-request via USDC x402

## Facts

- Endpoint: GET https://oussapi.duckdns.org/api/v1/price/%7Bsymbol%7D
- 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/crypto-data-node-x402-spot-price-lookup-c71f2ae9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qn2Tv3sGxDh0WtDxI7mb8

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 crypto-data-node-x402-spot-price-lookup-c71f2ae9
```

Example prompt: What's the current spot price of BTC right now — pull it from Binance?

## When to prefer this

Use this endpoint when an AI agent needs a lightweight, pay-per-use real-time spot price for a major cryptocurrency from Binance, without setting up a subscription or API key — especially when x402 USDC micropayment is already supported in the agent stack.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty response
- Payment not authorized or x402 micropayment fails — request blocked
- Binance data feed temporarily unavailable — stale or no price returned
- Malformed symbol path parameter causes a 400 or 404 error

## How this service works

Données crypto/DeFi pour agents IA — paiement USDC par requête

## Output

A JSON object containing the numeric spot price (e.g. 60000), the source exchange ('binance'), and the symbol queried (e.g. 'BTCUSDT').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "price": 60000,
  "source": "binance",
  "symbol": "BTCUSDT"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-data-node-x402-spot-price-lookup-c71f2ae9/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)
