Binance Crypto Price

v1.0.3

Query real-time cryptocurrency prices using the Binance API. Get latest prices for Bitcoin, Ethereum, and all BN listed cryptocurrencies. No API key required.

1· 573·2 current·2 all-time
byZhe (Phil) Yang@yangzhe1991
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (Binance price queries) align with the included script and SKILL.md. The script only calls Binance public API endpoints and formats output for single or multiple symbols.
Instruction Scope
SKILL.md directs running the included script and the script only performs HTTP GETs to the Binance API and prints results; it does not read local files, access other services, or exfiltrate data.
Install Mechanism
There is no install spec (instruction-only), which is low risk. The shipped script declares a dependency on requests (commented and enforced at runtime). No remote downloads, archive extraction, or unusual install steps are present.
Credentials
No environment variables, credentials, or config paths are requested. The skill does not require keys or tokens to query Binance public endpoints.
Persistence & Privilege
Skill is not always-enabled and is user-invocable. It does not attempt to modify other skills or system-wide configuration.
Assessment
The skill appears coherent and only queries the public Binance API, but its source is unknown. Before installing or running: (1) review the included script (you can see it in scripts/cryptoprice.py) and confirm it matches expectations, (2) run it in a restricted environment or sandbox if you are cautious, (3) install the requests library from a trusted source (pip install requests), and (4) if you need stronger assurance, ask the publisher for a homepage or source repository and verify checksums or a signed release. Note: no API keys are required and the skill does not request or store secrets.

Like a lobster shell, security has layers — review code before you run it.

latestvk975x6ka9jzjj1fswtcg6x1z9d82awch
573downloads
1stars
4versions
Updated 1mo ago
v1.0.3
MIT-0

CryptoPrice - Cryptocurrency Price Query

Query real-time cryptocurrency prices using the official Binance API.

Quick Start

Query Popular Coin Prices

uv run ~/.openclaw/skills/cryptoprice/scripts/cryptoprice.py

Query Specific Coin

# Query Bitcoin
uv run ~/.openclaw/skills/cryptoprice/scripts/cryptoprice.py BTCUSDT

# Query Ethereum
uv run ~/.openclaw/skills/cryptoprice/scripts/cryptoprice.py ETHUSDT

# Shorthand (auto-completes USDT)
uv run ~/.openclaw/skills/cryptoprice/scripts/cryptoprice.py BTC

JSON Format Output

uv run ~/.openclaw/skills/cryptoprice/scripts/cryptoprice.py --json
uv run ~/.openclaw/skills/cryptoprice/scripts/cryptoprice.py BTC --json

List All Trading Pairs

uv run ~/.openclaw/skills/cryptoprice/scripts/cryptoprice.py --list

Supported Coins

Popular coins displayed by default:

  • BTC - Bitcoin
  • ETH - Ethereum
  • BNB - Binance Coin
  • SOL - Solana
  • XRP - Ripple
  • DOGE - Dogecoin
  • ADA - Cardano
  • AVAX - Avalanche
  • DOT - Polkadot
  • LINK - Chainlink

API Data Source

  • Binance Spot API: https://api.binance.com/api/v3/ticker/price
  • No API Key required
  • Real-time data with low latency

Comments

Loading comments...