Agent skill · Data & Analytics

binance-tokenized-securities-info

Query Ondo tokenized US stock data on Binance Web3. market and per-asset trading status (with corporate action codes for earnings, dividends, splits), real-time on-chain data (token price, holders, circulating supply, market cap), US stock fundamentals (P/E, dividend yield, 52-week range), and token K-Line/candlestick charts. Use this skill when users ask about: - Tokenized stock price, holders, or on-chain data for specific tickers - Whether a stock token is tradable, paused, or halted - Ondo RWA token list or which US stocks are available on-chain - Corporate actions affecting a token (divid

binancegithub.com/binanceGitHub ↗
claude-code
Install
npx skills add binance/binance-skills-hub --skill binance-tokenized-securities-info --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 30 KB
Bundled scripts: none
Version: 1.1
Declared author: binance-web3-team
Path: skills/binance-web3/binance-tokenized-securities-info/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 947
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

Review
written from the skill's own SKILL.md · Aug 5, 2026

What it does

Instructs an AI to fetch and present data about Ondo-tokenized US stocks via Binance Web3, including token metadata, per-asset market status, overall market status, real-time on-chain data (price, holders, supply, market cap), US stock fundamentals, and K-Line/candlestick charts.

How it works

  • Uses API 1 to obtain Token Symbol List (tokenized stock tickers, chainId, contractAddress, symbol, ticker, type, multiplier).
  • Uses API 2 for RWA Meta to fetch token metadata (tokenId, name, symbol, ticker, icon, attestation reports, decimals) and companyInfo (name, description, CEO, industry, concepts).
  • Uses API 3 for Market Status to determine if the Ondo market is open and next session times.
  • Uses API 4 for Asset Market Status to check per-asset trading state (openState, marketStatus, reasonCode, nextOpenTime/nextCloseTime).
  • Uses API 5 (RWA Dynamic V2) for full real-time data: on-chain price, holders, circulating supply, US stock fundamentals like P/E, dividend yield, 52-week range, and order limits.
  • Uses API 6 for Token K-Line to fetch candlestick data with interval for charting.

The workflow emphasizes matching user questions to these APIs: identify the token by ticker, then fetch metadata, market status, and real-time data, followed by optional K-Line data.

When to use it

Use when users ask about:

  • Tokenized stock price, holders, or on-chain data for specific tickers
  • Whether a stock token is tradable, paused, or halted
  • Ondo RWA token list or which US stocks are available on-chain
  • Corporate actions affecting a token (dividends, earnings, stock splits, mergers, maintenance)
  • Stock token K-Line or candlestick chart data
  • Comparing on-chain token price vs US stock price

What it can touch

  • API 1: Token Symbol List
  • API 2: RWA Meta
  • API 3: Market Status
  • API 4: Asset Market Status
  • API 5: RWA Dynamic V2
  • API 6: Token K-Line

Caveats

  • NOT for general crypto tokens (BTC, ETH, SOL, etc.) — use query-token-info for those.
  • Multiplier concept: token represents a multiplier of shares, not exact 1:1; some tokens may have multipliers like 5.0 or 10.0; reference price calculation is token price divided by sharesMultiplier.
  • Data depends on Binance endpoints; responses include fields like openState, reasonCode, nextOpenTime, nextCloseTime, etc., which are state-dependent.
  • Timestamps are in ISO 8601 UTC and Unix ms where indicated.
From the SKILL.md

# Binance Tokenized Securities Info Skill ## Overview | API | Function | Use Case | |---------------------|---------------------------|-----------------------------------------------------------------| | Token Symbol List | List all tokenized stocks | Browse Ondo supported tickers, filter by type | | RWA Meta | Tokenized stock metadata | Company info, concepts, attestation reports | | Market Status | Overall market open/close | Check if Ondo market is currently trading | | Asset Market Status | Per-asset trading status | Detect corporate actions (earnings, dividends, splits, mergers) | | RWA Dynamic V2 | Full real-time data | On-chain price, holders, US stock fundamentals, order limits | | Token K-Line | Candlestick charts | OHLC data for on-chain token price technical analysis | ## Recommended Workflows | Scenario | Steps | |--------------------------------------------------|----------------------------------------------------------------------------| | Look up a stock's fundamentals and on-chain data | API 1 (get `chainId` + `contractAddress` by ticker) → API 5 (dynamic data) | | Check if a stock token is tradable | API 3 (overall market status) → API 4 (per-asset status with rea

What's inside
Steps it walks through
  1. Overview
  2. Recommended Workflows
  3. Use Cases
  4. Key Concept: Token ≠ Share
  5. Supported Chains
  6. API 1: Token Symbol List
  7. Method: GET
  8. API 2: RWA Meta
  9. API 3: Market Status
  10. API 4: Asset Market Status
  11. Reason Codes
  12. Corporate Actions (when ASSETPAUSED or ASSETLIMITED)
  13. API 5: RWA Dynamic V2
  14. Response Fields
Commands it runs
curl 'https://www.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/market/token/rwa/stock/detail/list/ai' \
curl 'https://www.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/market/token/rwa/meta/ai?chainId=56&contractAddress=<CONTRACT_ADDRESS>' \
curl 'https://www.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/market/token/rwa/market/status/ai' \
curl 'https://www.binance.com/bapi/defi/v2/public/wallet-direct/buw/wallet/market/token/rwa/dynamic/ai?chainId=56&contractAddress=<CONTRACT_ADDRESS>' \
More from binance-skills-hub
All skills →
About this skill
What does the binance-tokenized-securities-info skill do?

Query Ondo tokenized US stock data on Binance Web3. market and per-asset trading status (with corporate action codes for earnings, dividends, splits), real-time on-chain data (token price, holders, circulating supply, market cap), US stock fundamentals (P/E, dividend yield, 52-week range), and token K-Line/candlestick charts. Use this skill when users ask about: - Tokenized stock price, holders, or on-chain data for specific tickers - Whether a stock token is tradable, paused, or halted - Ondo RWA token list or which US stocks are available on-chain - Corporate actions affecting a token (divid

How do I install it?

Run `npx skills add binance/binance-skills-hub --skill binance-tokenized-securities-info --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From binance/binance-skills-hub, a repository with 947 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going