$npx -y skills add binance/binance-skills-hub --skill binance-tokenized-securities-infoQuery Ondo tokenized US stock data on Binance Web3. Covers: supported stock token list, RWA metadata (company info, attestation reports), market and per-asset trading status (with corporate action codes for earnings, dividends, splits), real-time on-chain data (token price, holde
| 1 | # Binance Tokenized Securities Info Skill |
| 2 | |
| 3 | ## Overview |
| 4 | |
| 5 | | API | Function | Use Case | |
| 6 | |---------------------|---------------------------|-----------------------------------------------------------------| |
| 7 | | Token Symbol List | List all tokenized stocks | Browse Ondo supported tickers, filter by type | |
| 8 | | RWA Meta | Tokenized stock metadata | Company info, concepts, attestation reports | |
| 9 | | Market Status | Overall market open/close | Check if Ondo market is currently trading | |
| 10 | | Asset Market Status | Per-asset trading status | Detect corporate actions (earnings, dividends, splits, mergers) | |
| 11 | | RWA Dynamic V2 | Full real-time data | On-chain price, holders, US stock fundamentals, order limits | |
| 12 | | Token K-Line | Candlestick charts | OHLC data for on-chain token price technical analysis | |
| 13 | |
| 14 | ## Recommended Workflows |
| 15 | |
| 16 | | Scenario | Steps | |
| 17 | |--------------------------------------------------|----------------------------------------------------------------------------| |
| 18 | | Look up a stock's fundamentals and on-chain data | API 1 (get `chainId` + `contractAddress` by ticker) → API 5 (dynamic data) | |
| 19 | | Check if a stock token is tradable | API 3 (overall market status) → API 4 (per-asset status with reason code) | |
| 20 | | Research a tokenized stock | API 1 (find token) → API 2 (company metadata + attestation reports) | |
| 21 | | Get K-Line chart data | API 1 (find token) → API 6 (K-Line with interval) | |
| 22 | |
| 23 | ## Use Cases |
| 24 | |
| 25 | 1. **List Supported Stocks**: Get all Ondo tokenized tickers with chain and contract info |
| 26 | 2. **Company Research**: Get company metadata, CEO, industry, concept tags, and attestation reports |
| 27 | 3. **Market Status Check**: Determine if the Ondo market is open, closed, or in pre/post-market session |
| 28 | 4. **Corporate Action Detection**: Check if a specific asset is paused or limited due to earnings, dividends, stock splits, mergers, or maintenance |
| 29 | 5. **Real-Time Data**: Get on-chain price, holder count, circulating supply, US stock P/E, dividend yield, 52-week range, and order limits |
| 30 | 6. **Technical Analysis**: Fetch token K-Line (candlestick) data with configurable intervals and time ranges |
| 31 | |
| 32 | ## Key Concept: Token ≠ Share |
| 33 | |
| 34 | Each token represents `multiplier` shares of the underlying stock, **not exactly 1 share**. Most tokens have a multiplier near 1.0 (cumulative dividend adjustment), but stock-split tokens can be 5.0 or 10.0 (e.g. multiplier = 10.0 means 1 token = 10 shares). |
| 35 | |
| 36 | ``` |
| 37 | referencePrice = tokenInfo.price ÷ sharesMultiplier |
| 38 | ``` |
| 39 | |
| 40 | See Notes §6 for common multiplier categories. |
| 41 | |
| 42 | ## Supported Chains |
| 43 | |
| 44 | | Chain | chainId | |
| 45 | |----------|---------| |
| 46 | | Ethereum | 1 | |
| 47 | | BSC | 56 | |
| 48 | |
| 49 | --- |
| 50 | |
| 51 | ## API 1: Token Symbol List |
| 52 | |
| 53 | ### Method: GET |
| 54 | |
| 55 | **URL**: |
| 56 | ``` |
| 57 | https://www.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/market/token/rwa/stock/detail/list/ai |
| 58 | ``` |
| 59 | |
| 60 | **Request Parameters**: |
| 61 | |
| 62 | | Parameter | Type | Required | Description | |
| 63 | |-----------|---------|----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |
| 64 | | type | integer | No | Filter by platform: `1` = Ondo Finance (currently the only supported tokenized stock provider). Omit to return all platforms. **Use `type=1` to retrieve only Ondo tokens.** | |
| 65 | |
| 66 | **Headers**: `Accept-Encoding: identity` |
| 67 | |
| 68 | **Example**: |
| 69 | ```bash |
| 70 | curl 'https://www.binance. |