query-token-info
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseQuery Token Info Skill
查询代币信息Skill
Overview
概述
| API | Function | Use Case |
|---|---|---|
| Token Search | Search tokens | Find tokens by name, symbol, or contract address |
| Token Metadata | Static info | Get token details,name,symbol,logo, social links, creator address |
| Token Dynamic Data | Real-time market data | Price, volume, holders, liquidity, market cap |
| Token K-Line | Candlestick charts | OHLCV data for technical analysis |
| API | 功能 | 使用场景 |
|---|---|---|
| Token Search | 搜索代币 | 通过名称、符号或合约地址查找代币 |
| Token Metadata | 静态信息查询 | 获取代币详情,包含名称、符号、logo、社交链接、创建者地址 |
| Token Dynamic Data | 实时市场数据查询 | 获取价格、交易量、持有者数量、流动性、市值数据 |
| Token K-Line | 蜡烛图查询 | 获取用于技术分析的OHLCV数据 |
Use Cases
使用场景
- Search Tokens: Find tokens by name, symbol, or contract address across chains
- Project 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
- 搜索代币:跨链通过名称、符号或合约地址查找代币
- 项目研究:获取代币元数据、社交链接和创建者信息
- 市场分析:获取实时价格、交易量、持有者分布和流动性数据
- 图表分析:获取用于技术分析的K线蜡烛图数据
Supported Chains
支持的链
| Chain Name | chainId |
|---|---|
| BSC | 56 |
| Base | 8453 |
| Solana | CT_501 |
| 链名称 | chainId |
|---|---|
| BSC | 56 |
| Base | 8453 |
| Solana | CT_501 |
API 1: Token Search
API 1: 代币搜索
Method: GET
请求方法: GET
URL:
https://web3.binance.com/bapi/defi/v5/public/wallet-direct/buw/wallet/market/token/searchRequest Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| keyword | string | Yes | Search keyword (name/symbol/contract address) |
| chainIds | string | No | Chain ID list, comma-separated, e.g., |
| orderBy | string | No | Sort field, e.g., |
Request Headers:
Accept-Encoding: identityExample Request:
bash
curl --location 'https://web3.binance.com/bapi/defi/v5/public/wallet-direct/buw/wallet/market/token/search?keyword=koge&chainIds=56,8453,CT_501&orderBy=volume24h' \
--header 'Accept-Encoding: identity'Response Example:
json
{
"code": "000000",
"data": [
{
"chainId": "56",
"contractAddress": "0xe6df05ce8c8301223373cf5b969afcb1498c5528",
"tokenId": "CC1F457B32142B93198987B7FC893B26",
"name": "48 Club Token",
"symbol": "KOGE",
"icon": "/images/web3-data/public/token/logos/CC1F457B32142B93198987B7FC893B26.png",
"price": "47.98771375939603199404",
"percentChange24h": "-0.01",
"volume24h": "53687246.955803546359104902201",
"marketCap": "162198400",
"liquidity": "13388877.147327333572157",
"tokenAddresses": [...],
"tagsInfo": {
"AI Analysis": [{"tagName": "AI Widget", "languageKey": "wmp-label-title-ai-widget"}],
"Community Recognition Level": [{"tagName": "Alpha", "languageKey": "wmp-label-title-alpha"}]
},
"links": [
{"label": "website", "link": "https://www.48.club/"},
{"label": "x", "link": "https://twitter.com/48Club_Official"}
],
"createTime": 1600611727000,
"holdersTop10Percent": "93.267178480644823",
"riskLevel": null
}
],
"success": true
}Response Fields:
| Field | Type | Description |
|---|---|---|
| chainId | string | Chain ID |
| contractAddress | string | Contract address |
| tokenId | string | Token unique ID |
| name | string | Token name |
| symbol | string | Token symbol |
| icon | string | Icon URL path |
| price | string | Current price (USD) |
| percentChange24h | string | 24-hour price change (%) |
| volume24h | string | 24-hour trading volume (USD) |
| marketCap | string | Market cap (USD) |
| liquidity | string | Liquidity (USD) |
| tagsInfo | object | Tag information |
| links | array | Social links list |
| createTime | number | Creation timestamp (ms) |
| holdersTop10Percent | string | Top 10 holders percentage (%) |
请求URL:
https://web3.binance.com/bapi/defi/v5/public/wallet-direct/buw/wallet/market/token/search请求参数:
| 参数 | 类型 | 必填 | 描述 |
|---|---|---|---|
| keyword | string | 是 | 搜索关键词(名称/符号/合约地址) |
| chainIds | string | 否 | 链ID列表,逗号分隔,例如: |
| orderBy | string | 否 | 排序字段,例如: |
请求头:
Accept-Encoding: identity请求示例:
bash
curl --location 'https://web3.binance.com/bapi/defi/v5/public/wallet-direct/buw/wallet/market/token/search?keyword=koge&chainIds=56,8453,CT_501&orderBy=volume24h' \
--header 'Accept-Encoding: identity'响应示例:
json
{
"code": "000000",
"data": [
{
"chainId": "56",
"contractAddress": "0xe6df05ce8c8301223373cf5b969afcb1498c5528",
"tokenId": "CC1F457B32142B93198987B7FC893B26",
"name": "48 Club Token",
"symbol": "KOGE",
"icon": "/images/web3-data/public/token/logos/CC1F457B32142B93198987B7FC893B26.png",
"price": "47.98771375939603199404",
"percentChange24h": "-0.01",
"volume24h": "53687246.955803546359104902201",
"marketCap": "162198400",
"liquidity": "13388877.147327333572157",
"tokenAddresses": [...],
"tagsInfo": {
"AI Analysis": [{"tagName": "AI Widget", "languageKey": "wmp-label-title-ai-widget"}],
"Community Recognition Level": [{"tagName": "Alpha", "languageKey": "wmp-label-title-alpha"}]
},
"links": [
{"label": "website", "link": "https://www.48.club/"},
{"label": "x", "link": "https://twitter.com/48Club_Official"}
],
"createTime": 1600611727000,
"holdersTop10Percent": "93.267178480644823",
"riskLevel": null
}
],
"success": true
}响应字段:
| 字段 | 类型 | 描述 |
|---|---|---|
| chainId | string | 链ID |
| contractAddress | string | 合约地址 |
| tokenId | string | 代币唯一ID |
| name | string | 代币名称 |
| symbol | string | 代币符号 |
| icon | string | 图标URL路径 |
| price | string | 当前价格(美元) |
| percentChange24h | string | 24小时价格涨跌幅(%) |
| volume24h | string | 24小时交易量(美元) |
| marketCap | string | 市值(美元) |
| liquidity | string | 流动性(美元) |
| tagsInfo | object | 标签信息 |
| links | array | 社交链接列表 |
| createTime | number | 创建时间戳(毫秒) |
| holdersTop10Percent | string | 前10大持有者占比(%) |
API 2: Token Metadata
API 2: 代币元数据
Method: GET
请求方法: GET
URL:
https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/dex/market/token/meta/infoRequest Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| chainId | string | Yes | Chain ID |
| contractAddress | string | Yes | Token contract address |
Request Headers:
Accept-Encoding: identityExample Request:
bash
curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/dex/market/token/meta/info?chainId=56&contractAddress=0xe6df05ce8c8301223373cf5b969afcb1498c5528' \
--header 'Accept-Encoding: identity'Response Example:
json
{
"code": "000000",
"data": {
"tokenId": "CC1F457B32142B93198987B7FC893B26",
"name": "48 Club Token",
"symbol": "KOGE",
"chainId": "56",
"chainIconUrl": "https://bin.bnbstatic.com/image/admin_mgs_image_upload/20250228/d0216ce4-a3e9-4bda-8937-4a6aa943ccf2.png",
"chainName": "BSC",
"contractAddress": "0xe6df05ce8c8301223373cf5b969afcb1498c5528",
"decimals": 18,
"icon": "/images/web3-data/public/token/logos/CC1F457B32142B93198987B7FC893B26.png",
"nativeAddressFlag": false,
"aiNarrativeFlag": 1,
"links": [
{"label": "website", "link": "https://www.48.club/"},
{"label": "whitepaper", "link": "https://drive.google.com/file/d/..."},
{"label": "x", "link": "https://twitter.com/48Club_Official"}
],
"previewLink": {
"website": ["https://www.48.club/"],
"x": ["https://twitter.com/48Club_Official"],
"tg": []
},
"createTime": 1600611727000,
"creatorAddress": "0xa044d502c7e23840dcd5997fb3ba85a6de5763e4",
"auditInfo": {
"isBlacklist": false,
"isWhitelist": true
},
"description": "48 Club Token (KOGE) is a cryptocurrency and operates on the BNB Smart Chain..."
},
"success": true
}Response Fields:
| Field | Type | Description |
|---|---|---|
| tokenId | string | Token unique ID |
| name | string | Token name |
| symbol | string | Token symbol |
| chainId | string | Chain ID |
| chainName | string | Chain name |
| contractAddress | string | Contract address |
| decimals | number | Token decimals |
| icon | string | Icon URL path |
| links | array | Social links list |
| createTime | number | Creation timestamp (ms) |
| creatorAddress | string | Creator address |
| description | string | Token description |
请求URL:
https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/dex/market/token/meta/info请求参数:
| 参数 | 类型 | 必填 | 描述 |
|---|---|---|---|
| chainId | string | 是 | 链ID |
| contractAddress | string | 是 | 代币合约地址 |
请求头:
Accept-Encoding: identity请求示例:
bash
curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/dex/market/token/meta/info?chainId=56&contractAddress=0xe6df05ce8c8301223373cf5b969afcb1498c5528' \
--header 'Accept-Encoding: identity'响应示例:
json
{
"code": "000000",
"data": {
"tokenId": "CC1F457B32142B93198987B7FC893B26",
"name": "48 Club Token",
"symbol": "KOGE",
"chainId": "56",
"chainIconUrl": "https://bin.bnbstatic.com/image/admin_mgs_image_upload/20250228/d0216ce4-a3e9-4bda-8937-4a6aa943ccf2.png",
"chainName": "BSC",
"contractAddress": "0xe6df05ce8c8301223373cf5b969afcb1498c5528",
"decimals": 18,
"icon": "/images/web3-data/public/token/logos/CC1F457B32142B93198987B7FC893B26.png",
"nativeAddressFlag": false,
"aiNarrativeFlag": 1,
"links": [
{"label": "website", "link": "https://www.48.club/"},
{"label": "whitepaper", "link": "https://drive.google.com/file/d/..."},
{"label": "x", "link": "https://twitter.com/48Club_Official"}
],
"previewLink": {
"website": ["https://www.48.club/"],
"x": ["https://twitter.com/48Club_Official"],
"tg": []
},
"createTime": 1600611727000,
"creatorAddress": "0xa044d502c7e23840dcd5997fb3ba85a6de5763e4",
"auditInfo": {
"isBlacklist": false,
"isWhitelist": true
},
"description": "48 Club Token (KOGE) is a cryptocurrency and operates on the BNB Smart Chain..."
},
"success": true
}响应字段:
| 字段 | 类型 | 描述 |
|---|---|---|
| tokenId | string | 代币唯一ID |
| name | string | 代币名称 |
| symbol | string | 代币符号 |
| chainId | string | 链ID |
| chainName | string | 链名称 |
| contractAddress | string | 合约地址 |
| decimals | number | 代币小数位数 |
| icon | string | 图标URL路径 |
| links | array | 社交链接列表 |
| createTime | number | 创建时间戳(毫秒) |
| creatorAddress | string | 创建者地址 |
| description | string | 代币描述 |
API 3: Token Dynamic Data
API 3: 代币动态数据
Method: GET
请求方法: GET
URL:
https://web3.binance.com/bapi/defi/v4/public/wallet-direct/buw/wallet/market/token/dynamic/infoRequest Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| chainId | string | Yes | Chain ID |
| contractAddress | string | Yes | Token contract address |
Request Headers:
Accept-Encoding: identityExample Request:
bash
curl --location 'https://web3.binance.com/bapi/defi/v4/public/wallet-direct/buw/wallet/market/token/dynamic/info?chainId=56&contractAddress=0xe6df05ce8c8301223373cf5b969afcb1498c5528' \
--header 'Accept-Encoding: identity'Response Example:
json
{
"code": "000000",
"data": {
"price": "48.00617218672732466029",
"nativeTokenPrice": "589.09115969567768209591",
"volume24h": "53803143.235015073706599196363",
"volume24hBuy": "26880240.472839229350983682189",
"volume24hSell": "26922902.762175844355615514174",
"volume4h": "7179919.170580971950485838372",
"volume1h": "3181854.878039371691111933489",
"volume5m": "84557.068962077549412188792",
"count24h": "39869",
"count24hBuy": "19850",
"count24hSell": "20019",
"percentChange5m": "0.03",
"percentChange1h": "0.02",
"percentChange4h": "0.03",
"percentChange24h": "0.01",
"marketCap": "162260777.94315716831842935701774977509483735135",
"totalSupply": "3379998.56",
"circulatingSupply": "3379998.249225519124584315",
"priceHigh24h": "48.59526604943723770716",
"priceLow24h": "47.4815509902145490401",
"holders": "78255",
"fdv": "162260792.8622504084644326891824",
"liquidity": "13393863.149264026822944",
"launchTime": 1600950241000,
"top10HoldersPercentage": "93.2621248736909194",
"kycHolderCount": "23579",
"kolHolders": "17",
"kolHoldingPercent": "0.000059",
"proHolders": "138",
"proHoldingPercent": "0.003357",
"smartMoneyHolders": "1",
"smartMoneyHoldingPercent": "0"
},
"success": true
}Response Fields:
请求URL:
https://web3.binance.com/bapi/defi/v4/public/wallet-direct/buw/wallet/market/token/dynamic/info请求参数:
| 参数 | 类型 | 必填 | 描述 |
|---|---|---|---|
| chainId | string | 是 | 链ID |
| contractAddress | string | 是 | 代币合约地址 |
请求头:
Accept-Encoding: identity请求示例:
bash
curl --location 'https://web3.binance.com/bapi/defi/v4/public/wallet-direct/buw/wallet/market/token/dynamic/info?chainId=56&contractAddress=0xe6df05ce8c8301223373cf5b969afcb1498c5528' \
--header 'Accept-Encoding: identity'响应示例:
json
{
"code": "000000",
"data": {
"price": "48.00617218672732466029",
"nativeTokenPrice": "589.09115969567768209591",
"volume24h": "53803143.235015073706599196363",
"volume24hBuy": "26880240.472839229350983682189",
"volume24hSell": "26922902.762175844355615514174",
"volume4h": "7179919.170580971950485838372",
"volume1h": "3181854.878039371691111933489",
"volume5m": "84557.068962077549412188792",
"count24h": "39869",
"count24hBuy": "19850",
"count24hSell": "20019",
"percentChange5m": "0.03",
"percentChange1h": "0.02",
"percentChange4h": "0.03",
"percentChange24h": "0.01",
"marketCap": "162260777.94315716831842935701774977509483735135",
"totalSupply": "3379998.56",
"circulatingSupply": "3379998.249225519124584315",
"priceHigh24h": "48.59526604943723770716",
"priceLow24h": "47.4815509902145490401",
"holders": "78255",
"fdv": "162260792.8622504084644326891824",
"liquidity": "13393863.149264026822944",
"launchTime": 1600950241000,
"top10HoldersPercentage": "93.2621248736909194",
"kycHolderCount": "23579",
"kolHolders": "17",
"kolHoldingPercent": "0.000059",
"proHolders": "138",
"proHoldingPercent": "0.003357",
"smartMoneyHolders": "1",
"smartMoneyHoldingPercent": "0"
},
"success": true
}响应字段:
Price Related
价格相关
| Field | Type | Description |
|---|---|---|
| price | string | Current price (USD) |
| nativeTokenPrice | string | Native token price |
| priceHigh24h | string | 24-hour high price |
| priceLow24h | string | 24-hour low price |
| 字段 | 类型 | 描述 |
|---|---|---|
| price | string | 当前价格(美元) |
| nativeTokenPrice | string | 原生代币价格 |
| priceHigh24h | string | 24小时最高价 |
| priceLow24h | string | 24小时最低价 |
Price Change
价格涨跌幅
| Field | Type | Description |
|---|---|---|
| percentChange5m | string | 5-minute price change (%) |
| percentChange1h | string | 1-hour price change (%) |
| percentChange4h | string | 4-hour price change (%) |
| percentChange24h | string | 24-hour price change (%) |
| 字段 | 类型 | 描述 |
|---|---|---|
| percentChange5m | string | 5分钟价格涨跌幅(%) |
| percentChange1h | string | 1小时价格涨跌幅(%) |
| percentChange4h | string | 4小时价格涨跌幅(%) |
| percentChange24h | string | 24小时价格涨跌幅(%) |
Volume
交易量
| Field | Type | Description |
|---|---|---|
| volume24h | string | 24-hour total volume (USD) |
| volume24hBuy | string | 24-hour buy volume |
| volume24hSell | string | 24-hour sell volume |
| volume4h | string | 4-hour volume |
| volume1h | string | 1-hour volume |
| volume5m | string | 5-minute volume |
| 字段 | 类型 | 描述 |
|---|---|---|
| volume24h | string | 24小时总交易量(美元) |
| volume24hBuy | string | 24小时买入交易量 |
| volume24hSell | string | 24小时卖出交易量 |
| volume4h | string | 4小时交易量 |
| volume1h | string | 1小时交易量 |
| volume5m | string | 5分钟交易量 |
Transaction Count
交易次数
| Field | Type | Description |
|---|---|---|
| count24h | string | 24-hour transaction count |
| count24hBuy | string | 24-hour buy count |
| count24hSell | string | 24-hour sell count |
| 字段 | 类型 | 描述 |
|---|---|---|
| count24h | string | 24小时总交易次数 |
| count24hBuy | string | 24小时买入交易次数 |
| count24hSell | string | 24小时卖出交易次数 |
Market Data
市场数据
| Field | Type | Description |
|---|---|---|
| marketCap | string | Market cap (USD) |
| fdv | string | Fully diluted valuation |
| totalSupply | string | Total supply |
| circulatingSupply | string | Circulating supply |
| liquidity | string | Liquidity (USD) |
| 字段 | 类型 | 描述 |
|---|---|---|
| marketCap | string | 市值(美元) |
| fdv | string | 完全稀释估值 |
| totalSupply | string | 总发行量 |
| circulatingSupply | string | 流通量 |
| liquidity | string | 流动性(美元) |
Holder Data
持有者数据
| Field | Type | Description |
|---|---|---|
| holders | string | Total holder count |
| top10HoldersPercentage | string | Top 10 holders percentage (%) |
| kycHolderCount | string | KYC holder count |
| kolHolders | string | KOL holder count |
| kolHoldingPercent | string | KOL holding percentage |
| devHoldingPercent | string | Dev holding percentage |
| proHoldingPercent | string | Professional investor holding percentage |
| smartMoneyHoldingPercent | string | Smart money holding percentage |
| 字段 | 类型 | 描述 |
|---|---|---|
| holders | string | 总持有者数量 |
| top10HoldersPercentage | string | 前10大持有者占比(%) |
| kycHolderCount | string | 完成KYC的持有者数量 |
| kolHolders | string | KOL持有者数量 |
| kolHoldingPercent | string | KOL持仓占比 |
| devHoldingPercent | string | 开发团队持仓占比 |
| proHoldingPercent | string | 专业投资者持仓占比 |
| smartMoneyHoldingPercent | string | 聪明钱持仓占比 |
API 4: Token K-Line (Candlestick)
API 4: 代币K线(蜡烛图)
Method: GET
请求方法: GET
URL:
https://dquery.sintral.io/u-kline/v1/k-line/candlesRequest Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| address | string | Yes | Token contract address |
| platform | string | Yes | Chain platform: |
| interval | string | Yes | Kline interval (see Interval Reference below) |
| limit | number | No | Number of candles to return (has higher priority than |
| from | number | No | Start timestamp in milliseconds |
| to | number | No | End timestamp in milliseconds |
| pm | string | No | Kline type: |
Interval Reference:
| Interval | Description |
|---|---|
| 1s | 1 second |
| 1min | 1 minute |
| 3min | 3 minutes |
| 5min | 5 minutes |
| 15min | 15 minutes |
| 30min | 30 minutes |
| 1h | 1 hour |
| 2h | 2 hours |
| 4h | 4 hours |
| 6h | 6 hours |
| 8h | 8 hours |
| 12h | 12 hours |
| 1d | 1 day |
| 3d | 3 days |
| 1w | 1 week |
| 1m | 1 month |
Platform Mapping:
| Chain | platform value |
|---|---|
| Ethereum | eth |
| BSC | bsc |
| Solana | solana |
| Base | base |
Request Headers:
Accept-Encoding: identityExample Request:
bash
curl --location 'https://dquery.sintral.io/u-kline/v1/k-line/candles?address=0x9eadbe35f3ee3bf3e28180070c429298a1b02f93&interval=1min&limit=500&platform=base&to=1772126280000' \
--header 'Accept-Encoding: identity'Response Example:
json
{
"data": [
[0.10779318, 0.10779318, 0.10778039, 0.10778039, 2554.06, 1772125800000, 3],
[0.10778039, 0.10781213, 0.10770104, 0.10770104, 2994.53, 1772125920000, 3],
[0.10770104, 0.10770104, 0.10769200, 0.10769200, 2825.65, 1772126040000, 3],
[0.10769200, 0.10777858, 0.10766827, 0.10777858, 2457.99, 1772126160000, 3],
[0.10777858, 0.10778521, 0.10764351, 0.10764351, 3106.87, 1772126280000, 4]
],
"status": {
"timestamp": "2026-02-28T05:52:25.717Z",
"error_code": "0",
"error_message": "SUCCESS",
"elapsed": "0",
"credit_count": 0
}
}Response Fields:
Each candle is an array with 7 elements in order:
| Index | Field | Type | Description |
|---|---|---|---|
| 0 | open | number | Open price |
| 1 | high | number | High price |
| 2 | low | number | Low price |
| 3 | close | number | Close price |
| 4 | volume | number | Trading volume |
| 5 | timestamp | number | Candle timestamp (ms) |
| 6 | count | number | Transaction count |
请求URL:
https://dquery.sintral.io/u-kline/v1/k-line/candles请求参数:
| 参数 | 类型 | 必填 | 描述 |
|---|---|---|---|
| address | string | 是 | 代币合约地址 |
| platform | string | 是 | 链平台: |
| interval | string | 是 | K线时间粒度(参考下方粒度说明) |
| limit | number | 否 | 返回K线数量(优先级高于 |
| from | number | 否 | 起始时间戳(毫秒) |
| to | number | 否 | 结束时间戳(毫秒) |
| pm | string | 否 | K线类型: |
粒度说明:
| 粒度值 | 描述 |
|---|---|
| 1s | 1秒 |
| 1min | 1分钟 |
| 3min | 3分钟 |
| 5min | 5分钟 |
| 15min | 15分钟 |
| 30min | 30分钟 |
| 1h | 1小时 |
| 2h | 2小时 |
| 4h | 4小时 |
| 6h | 6小时 |
| 8h | 8小时 |
| 12h | 12小时 |
| 1d | 1天 |
| 3d | 3天 |
| 1w | 1周 |
| 1m | 1个月 |
平台映射关系:
| 链 | platform参数值 |
|---|---|
| Ethereum | eth |
| BSC | bsc |
| Solana | solana |
| Base | base |
请求头:
Accept-Encoding: identity请求示例:
bash
curl --location 'https://dquery.sintral.io/u-kline/v1/k-line/candles?address=0x9eadbe35f3ee3bf3e28180070c429298a1b02f93&interval=1min&limit=500&platform=base&to=1772126280000' \
--header 'Accept-Encoding: identity'响应示例:
json
{
"data": [
[0.10779318, 0.10779318, 0.10778039, 0.10778039, 2554.06, 1772125800000, 3],
[0.10778039, 0.10781213, 0.10770104, 0.10770104, 2994.53, 1772125920000, 3],
[0.10770104, 0.10770104, 0.10769200, 0.10769200, 2825.65, 1772126040000, 3],
[0.10769200, 0.10777858, 0.10766827, 0.10777858, 2457.99, 1772126160000, 3],
[0.10777858, 0.10778521, 0.10764351, 0.10764351, 3106.87, 1772126280000, 4]
],
"status": {
"timestamp": "2026-02-28T05:52:25.717Z",
"error_code": "0",
"error_message": "SUCCESS",
"elapsed": "0",
"credit_count": 0
}
}响应字段:
每根K线为一个数组,按顺序包含7个元素:
| 索引 | 字段 | 类型 | 描述 |
|---|---|---|---|
| 0 | 开盘价 | number | 开盘价格 |
| 1 | 最高价 | number | 最高价格 |
| 2 | 最低价 | number | 最低价格 |
| 3 | 收盘价 | number | 收盘价格 |
| 4 | 交易量 | number | 交易量 |
| 5 | 时间戳 | number | K线时间戳(毫秒) |
| 6 | 交易次数 | number | 对应时间段内交易次数 |
Notes
注意事项
- Icon URL requires full domain prefix: + icon path
https://bin.bnbstatic.com - All numeric fields are string format, convert when using
- Dynamic data updates in real-time, suitable for market display
- K-Line API uses (eth/bsc/solana/base) instead of
platform, andchainIdtakes priority overlimitwhen both are providedfrom - K-Line response is a 2D array (not JSON objects) — parse by index: [open, high, low, close, volume, timestamp, count]
- 图标URL需要拼接完整域名前缀:+ 图标路径
https://bin.bnbstatic.com - 所有数值字段均为字符串格式,使用时需自行转换类型
- 动态数据为实时更新,适合用于市场行情展示
- K线API使用参数(eth/bsc/solana/base)而非
platform,当chainId和limit同时提供时,from优先级更高limit - K线响应为二维数组(非JSON对象),需按索引解析:[开盘价, 最高价, 最低价, 收盘价, 交易量, 时间戳, 交易次数]