Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
binance avatar

Query Token Info

  • 6k installs
  • 942 repo stars
  • Updated July 23, 2026
  • binance/binance-skills-hub

query-token-info is a Binance Web3 CLI skill exposing four read-only token endpoints: search, meta, dynamic, and kline for multi-chain token research and market analysis.

About

Query Token Info is a Binance Web3 agent skill that fronts four read-only token endpoints through one Node.js CLI. Agents pick a subcommand and pass JSON parameters to search tokens by keyword, symbol, or contract address across Ethereum, BSC, Base, and Solana; fetch static metadata including name, logo, social links, and creator; pull real-time market data such as price, 24h change, volume, holder count, and liquidity; or retrieve OHLCV candlestick series for technical chart analysis. The skill documents required chainId values, CLI invocation patterns, icon URL prefixing with https://bin.bnbstatic.com, numeric string conversion before arithmetic, kline 2D array structure, and interval options from 1s through 1m. Use when users request token prices, contract lookups, holder distribution, creator attribution, social profiles, or candlestick windows with configurable limits and time bounds for market research workflows.

  • Search tokens by keyword, symbol, or contract across Ethereum, BSC, Base, and Solana
  • Four CLI subcommands: search, meta, dynamic, and kline with shared chainId values
  • Static metadata covers logo, social links, creator info, and official website
  • Real-time market data includes price, volume, holder count, and liquidity fields
  • Kline returns OHLCV candles with intervals from 1s through 1m and configurable limits

Query Token Info by the numbers

  • 5,985 all-time installs (skills.sh)
  • +103 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #6 of 483 Web3 & Blockchain skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

query-token-info capabilities & compatibility

Capabilities
search tokens by keyword, symbol, or contract ad · fetch static token metadata and social links · retrieve real time price, volume, holders, and l · return ohlcv candlestick arrays for chart analys · support ethereum, bsc, base, and solana chainid
Use cases
trading · data analysis · research
From the docs

What query-token-info says it does

Four read-only token endpoints fronted by one CLI.
SKILL.md
npx skills add https://github.com/binance/binance-skills-hub --skill query-token-info

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs6k
repo stars942
Security audit2 / 3 scanners passed
Last updatedJuly 23, 2026
Repositorybinance/binance-skills-hub

What it does

Per-token search, metadata, market data, and OHLCV candlesticks across Ethereum, BSC, Base, and Solana via one CLI.

Who is it for?

Crypto researchers and trading agents answering price, contract, holder, creator, social link, or candlestick questions on Ethereum, BSC, Base, or Solana.

Skip if: On-chain writes, wallet transactions, portfolio management, or tokens outside the four supported chains and documented CLI subcommands.

When should I use this skill?

User asks for token price, search by keyword or contract, kline chart data, creator info, social links, holder count, or liquidity for a specific token.

What you get

One documented CLI invocation returns chain-aware token search results, static profiles, real-time price and liquidity metrics, or OHLCV series ready for technical analysis.

  • JSON token search results
  • chain-filtered metadata

By the numbers

  • Documents 3 exit codes: 0, 1, and 3
  • search command accepts chainIds like 56, 1, 8453, and CT_501

Files

SKILL.mdMarkdownGitHub ↗

Query Token Info Skill

Overview

Four read-only token endpoints fronted by one CLI. The agent picks a subcommand and passes a JSON blob; with this skill user can:

Search Tokens: Find tokens by name, symbol, or contract address across chains. Token Research: Get token metadata, social links, and creator info. Market Analysis: Real-time price, volume, holder distribution, and liquidity data. Chart Analysis: K-Line candlestick data for technical analysis.

When to Use This Skill

User intentCommand
Search a token by keyword, symbol, or contract addresssearch
Get static metadata (name, symbol, logo, social links, creator)meta
Get real-time market data (price, volume, holders, liquidity)dynamic
Get candlestick chart / OHLCV datakline

Supported Chains

ChainchainId
Ethereum1
BSC56
Base8453
SolanaCT_501

All four commands (search, meta, dynamic, kline) use the same chainId values.

How to Call APIs

node <skill-dir>/scripts/cli.mjs <command> '<json_params>'

Example:

node <skill-dir>/scripts/cli.mjs search '{"keyword":"<keyword>","chainIds":"56"}'

Commands

CommandPurposeRequired argsExample
searchSearch tokens by keywordkeyword (optional: chainIds, orderBy)node <skill-dir>/scripts/cli.mjs search '{"keyword":"<keyword>","chainIds":"1,56,8453,CT_501"}'
metaStatic token metadatachainId, contractAddressnode <skill-dir>/scripts/cli.mjs meta '{"chainId":"56","contractAddress":"0x..."}'
dynamicReal-time market datachainId, contractAddressnode <skill-dir>/scripts/cli.mjs dynamic '{"chainId":"56","contractAddress":"0x..."}'
klineCandlestick datachainId, contractAddress, interval (optional: limit, from, to, pm)node <skill-dir>/scripts/cli.mjs kline '{"chainId":"56","contractAddress":"0x...","interval":"1min","limit":500}'

Rules

  • Icon URL: icon fields are relative paths. Prepend https://bin.bnbstatic.com for a usable URL.
  • Numbers as strings: All numeric market fields (price, volume24h, marketCap, etc.) are

returned as strings. Convert before arithmetic.

  • Kline is a 2D array, not JSON objects. Each candle: [open, high, low, close, volume, timestamp_ms, count].
  • Kline time window: limit takes priority over from when both are provided. Use to

with limit to fetch the N most recent candles ending at to. pm selects price (p, default) or market-cap (m) series.

  • Intervals supported by kline: 1s, 1min, 3min, 5min, 15min, 30min, 1h, 2h,

4h, 6h, 8h, 12h, 1d, 3d, 1w, 1m.

Full CLI Reference

See `references/cli.md` for per-subcommand invocations, parameter tables, return-field tables, and real response samples.

Related skills

How it compares

Use query-token-info when agents need a lightweight Binance token lookup CLI rather than full exchange trading SDKs or manual REST integration.

FAQ

Which chains does query-token-info support?

Ethereum (chainId 1), BSC (56), Base (8453), and Solana (CT_501). All four commands use the same chainId values.

How do I invoke the CLI?

Run node <skill-dir>/scripts/cli.mjs <command> '<json_params>' where command is search, meta, dynamic, or kline.

What kline intervals are available?

1s, 1min, 3min, 5min, 15min, 30min, 1h, 2h, 4h, 6h, 8h, 12h, 1d, 3d, 1w, and 1m with optional limit, from, to, and pm parameters.

Is Query Token Info safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.