# ScriptMasterLabs Binance Ticker — ACP x402

> ScriptMasterLabs Binance Ticker — ACP x402 is a paid API for AI agents from acp-x402-discovery.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns real-time price ticker data for a Binance trading pair, paid per-call in USDC via x402 protocol

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/binance-ticker
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-binance-ticker-acp-x402-792c7fcb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yh-L-RDuS7qih9nlmFC2B

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 scriptmasterlabs-binance-ticker-acp-x402-792c7fcb
```

Example prompt: What's the current Binance ticker price for BTCUSDT right now?

## When to prefer this

Choose this endpoint when you need real-time Binance spot ticker data for a specific trading pair and want to pay per-call in USDC via the x402 micropayment protocol — ideal for AI agents that need live crypto prices without a long-term API subscription, or when operating in a crypto-native, on-chain payment environment on Base.

## Known failure modes

- Invalid or unsupported trading pair symbol returns an error or empty result
- Payment not settled in USDC on Base causes a 402 Payment Required response
- Binance upstream downtime or rate limiting may cause delayed or failed responses
- Missing required 'symbol' query param defaults to BTCUSDT but may return unexpected data if omitted intentionally
- x402 facilitator unavailability blocks all calls regardless of input validity

## How this service works

Pay-per-call crypto, RWA, federal, SEC, and compliance APIs. Settled in USDC on Base via x402. Hyphen routes only (e.g. /x402/rwa-aggregates, /x402/gas-tracker).

## Output

Returns a real-time price ticker snapshot from Binance for the requested trading pair symbol, including current price and related market data fields for that pair (e.g. BTCUSDT). Response schema is flexible/untyped ({example: {}}) so the exact fields mirror the Binance ticker API response.

## 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": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "default": "BTCUSDT",
       "example": "BTCUSDT"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-binance-ticker-acp-x402-792c7fcb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acp-x402-discovery.onrender.com](https://www.zero.xyz/host/acp-x402-discovery.onrender.com/llms.txt)
