# ScriptMasterLabs Binance Ticker API (x402)

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

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

## Facts

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

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-api-x402-74383acc
```

Example prompt: What's the current Binance price for BTCUSDT right now? Pull the live ticker data for me.

## When to prefer this

Choose this endpoint when you need real-time Binance spot ticker prices for a specific trading pair and are operating in a pay-per-call x402 micropayment context. It is ideal for AI agents that need lightweight, on-demand crypto price lookups without a subscription or API key — settling automatically in USDC on Base.

## Known failure modes

- Invalid or unsupported trading pair symbol returns an error or empty result
- Payment failure via x402 (insufficient USDC balance) causes a 402 Payment Required response
- Network or upstream Binance API downtime may cause unavailability
- Missing required 'symbol' query parameter may return a default (BTCUSDT) or error depending on implementation

## 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 the current ticker data for the requested Binance trading pair (e.g. BTCUSDT), including the latest market price as sourced from Binance. Response is a JSON object with ticker fields such as symbol and price.

## 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-api-x402-74383acc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acp-x402-scriptmasterlabs.onrender.com](https://www.zero.xyz/host/acp-x402-scriptmasterlabs.onrender.com/llms.txt)
