特色数据 API
AICoin开放API提供了完整的特色数据接口,整合了多种高级分析工具和市场洞察,包括交易信号、特色主力数据及跨市场比较,为用户提供更深入的市场洞见和策略支持。
获取多空比数据
此接口用于获取市场多空比数据,包括当前、一天前和一周前的多空比数据。
请求参数
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
detail
- Type
- object
- Description
数据详情
- Name
last
- Type
- string
- Description
当前多空比
- Name
last_day
- Type
- string
- Description
一天前多空比
- Name
last_week
- Type
- string
- Description
一周前多空比
请求
curl -G https://open.aicoin.com/api/v2/mix/ls-ratio \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"data": {
"detail": {
"last": "1.23",
"last_day": "1.15",
"last_week": "0.95"
}
}
}
获取导航栏数据
此接口返回导航栏数据。
请求参数
- Name
lan
- Type
- string
- Description
语言,cn是中文,en是英文
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- array
- Description
返回数据
- Name
key
- Type
- string
- Description
主键
- Name
key_type
- Type
- string
- Description
主键类型,1是交易对,3是指数
- Name
coin_show
- Type
- string
- Description
币种简称
- Name
last
- Type
- string
- Description
最新价
- Name
coin_name
- Type
- string
- Description
币种简称
- Name
market_name
- Type
- string
- Description
平台名称
- Name
currency_str
- Type
- string
- Description
定价单位
- Name
trades
- Type
- array
- Description
k线图
请求
curl -G https://open.aicoin.com/api/v2/mix/nav \
-d "lan=cn" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"data": [{
"key": "btc_usdt",
"key_type": "1",
"coin_show": "BTC",
"last": "42000.00",
"coin_name": "Bitcoin",
"market_name": "Binance",
"currency_str": "USDT",
"trades": []
}]
}
获取灰度信托数据
此接口返回灰度信托相关数据。
请求参数
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
数据
- Name
detail
- Type
- object
- Description
数据详情
- Name
key
- Type
- string
- Description
主键
- Name
show
- Type
- string
- Description
简称
- Name
name
- Type
- string
- Description
名称
- Name
last
- Type
- string
- Description
最新价格
- Name
open
- Type
- string
- Description
今日开盘
- Name
high
- Type
- string
- Description
今日最高
- Name
low
- Type
- string
- Description
今日最低
- Name
degree_24h
- Type
- string
- Description
24H涨幅
请求
curl -G https://open.aicoin.com/api/v2/mix/grayscale-trust \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"data": {
"detail": {
"key": "gbtc",
"show": "GBTC",
"name": "Grayscale Bitcoin Trust",
"last": "36.85",
"open": "36.50",
"high": "37.20",
"low": "36.25",
"degree_24h": "2.5"
}
}
}
获取灰度数据
此接口返回指定币种的灰度持仓数据。
请求参数
- Name
coins
- Type
- string
- Description
币种列表,用逗号连接,支持 btc,ltc,eth,bch,xrp,xlm,zec,zen,etc
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
detail
- Type
- object
- Description
详情数据
- Name
btc
- Type
- object
- Description
币种数据
- Name
total
- Type
- string
- Description
持仓量
- Name
day_change
- Type
- string
- Description
日涨跌
- Name
percent
- Type
- string
- Description
持仓占比,取值为小数,展示为百分比需要乘以 100%
请求
curl -G https://open.aicoin.com/api/v2/mix/gray-scale \
-d "coins=btc,eth" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"data": {
"detail": {
"btc": {
"total": "643,572",
"day_change": "1,234",
"percent": "0.0325"
}
}
}
}
获取爆仓数据
此接口返回市场爆仓数据统计信息。
请求参数
- Name
currency
- Type
- string
- Description
定价单位,可选值:
cny
(人民币) 或usd
(美元),默认cny
- Name
type
- Type
- integer
- Description
查询类型,可选值:
1
(按币种) 或2
(按平台),默认全部
- Name
coinKey
- Type
- string
- Description
币种主键,按币种查询时使用
- Name
marketKey
- Type
- string
- Description
市场主键,按平台查询时使用
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
- Name
detail
- Type
- object
- Description
- Name
liq1h
- Type
- string
- Description
1小时总爆仓量
- Name
liqLong1h
- Type
- string
- Description
1小时多方爆仓量
- Name
liqShort1h
- Type
- string
- Description
1小时空方爆仓量
- Name
liq24h
- Type
- string
- Description
24小时总爆仓量
- Name
liqLong24h
- Type
- string
- Description
24小时多方爆仓量
- Name
liqShort24h
- Type
- string
- Description
24小时空方爆仓量
- Name
maxLiq
- Type
- string
- Description
24小时最大单笔爆仓量
- Name
maxLiqMarket
- Type
- string
- Description
24小时最大爆仓平台(原版)
- Name
liq24HMaxMarket
- Type
- string
- Description
24小时最大爆仓平台(新版,marketKey)
- Name
liq24HMaxTpKey
- Type
- string
- Description
24小时最大爆仓交易对
请求
curl -G https://open.aicoin.com/api/v2/mix/liq \
-d "currency=cny" \
-d "type=1" \
-d "coinKey=btc" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"detail": {
"liq1h": "2327157.10349",
"liqLong1h": "2327157.10349",
"liqShort1h": "2327157.10349",
"liq24h": "2327157.10349",
"liqLong24h": "2327157.10349",
"liqShort24h": "2327157.10349",
"maxLiq": "2327157.10349",
"maxLiqMarket": "欧易OKX-BTC",
"liq24HMaxMarket": "okcoinfutures",
"liq24HMaxTpKey": "btcswapusdt:okcoinfutures"
}
}
}
获取股市数据
此接口返回股市指数数据。
请求参数
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
数据
- Name
detail
- Type
- object
- Description
数据详情
- Name
key
- Type
- string
- Description
主键
- Name
name
- Type
- string
- Description
名称
- Name
last
- Type
- string
- Description
最新指数
- Name
degree
- Type
- string
- Description
今日涨幅
请求
curl -G https://open.aicoin.com/api/v2/mix/stock-market \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"detail": {
"key": "000001",
"name": "上证指数",
"last": "3087.02",
"degree": "-0.0123"
}
}
}
获取信号预警数据
此接口返回信号预警相关数据。
请求参数
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
list
- Type
- array
- Description
数据列表
- Name
tp_key
- Type
- string
- Description
交易对主键
- Name
sub_type
- Type
- string
- Description
指标
- Name
side
- Type
- string
- Description
方向 sell|buy
- Name
ews_price
- Type
- string
- Description
触发价格
- Name
ews_time
- Type
- string
- Description
触发时间
请求
curl -G https://open.aicoin.com/api/v2/signal/signalAlert \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"list": [
{
"tp_key": "ethusdt:binance",
"sub_type": "macd:5:fork:12,26,9",
"side": "sell",
"ews_price": "1671.710000000000",
"ews_time": "1692622501"
}
]
}
}
获取信号预警配置
获取信号预警的配置信息。
请求参数
- Name
lan
- Type
- string
- Description
语言,cn是中文,en是英文
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
alertConfig
- Type
- array
- Description
预警配置信息列表
- Name
config
- Type
- array
- Description
触发条件信息列表
- Name
appPicLink
- Type
- string
- Description
触发条件示例图片
- Name
label
- Type
- string
- Description
触发条件标签
- Name
name
- Type
- string
- Description
触发条件名称
- Name
picLink
- Type
- string
- Description
触发条件示例图片
- Name
signalType
- Type
- string
- Description
信号行情类型
- Name
triggerKey
- Type
- string
- Description
信号key
- Name
period
- Type
- array
- Description
预警周期,单位:分钟
请求
curl -G https://open.aicoin.com/api/v2/signal/signalAlertConf \
-d "lan=cn" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"alertConfig": [
{
"config": [
{
"appPicLink": "https://static.aicoinstorge.com/signal_alert_trigger_img/20220915/166322507728235.png",
"label": "",
"name": "单MA金叉死叉",
"picLink": "https://static.aicoinstorge.com/signal_alert_trigger_img/20220801/165933725580834.png",
"signalType": "trend",
"triggerKey": "single_ma"
}
],
"indicatorKey": "ma",
"label": "",
"name": "MA",
"sort": "1"
}
],
"period": [1, 3, 5, 10, 15, 30, 60, 120, 180, 240, 360, 720, 1440]
}
}
删除信号预警
此接口用于删除已设置的信号预警。
请求参数
- Name
id
- Type
- integer
- Description
预警ID
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
result
- Type
- string
- Description
删除状态("true" 或 "false")
请求
curl -G https://open.aicoin.com/api/v2/signal/delSignalAlert \
-d "id=145963" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"result": "true"
}
}
获取指标胜率信号数据
获取指标胜率信号数据。
请求参数
- Name
coin_type
- Type
- string
- Description
币种(如 bitcoin)
- Name
latest_time
- Type
- string
- Description
从哪里开始的时间戳(毫秒级,不加就是最新100条,建议使用返回的latest_time进一步进行查询,使用latest_time会查询当前的时间往后100条数据)
- Name
signal_key
- Type
- string
- Description
信号主键(depth_win_one 智胜1号、depth_win_two 智胜2号、depth_buy_one 共赢1号、order_buy_one 共赢2号、td_buy_one 共赢3号、lsur_one 智胜3号)
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
mapping
- Type
- array
- Description
数据列表相关字段
- Name
list
- Type
- array
- Description
数据列表
- Name
supportList
- Type
- array
- Description
支持的信号和币种
- Name
strategy
- Type
- string
- Description
支持的信号
- Name
coinType
- Type
- string
- Description
支持的币种
- Name
category
- Type
- string
- Description
支持的信号和币种类别(spot 现货、futures 合约)
请求
curl -G https://open.aicoin.com/api/v2/signal/strategySignal \
-d "coin_type=bitcoin" \
-d "signal_key=depth_win_one" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"mapping": [
"id",
"signal_time",
"signal_type",
"side",
"capital_rate",
"history_win_rate",
"advise_win_rate",
"advise_loss_rate",
"state",
"price"
],
"list": [
[
"81544",
"1638644195685",
"depth_win_one",
"sell",
"11.471949",
"0.641414",
"0.0900",
"-0.1000",
"0",
""
]
],
"supportList": [
{
"strategy": "depth_buy_one",
"coinType": "ethereum",
"category": "spot"
},
{
"strategy": "td_buy_one",
"coinType": "binanceCoin",
"category": "spot"
}
]
}
}
添加信号预警
此接口用于添加新的信号预警。
请求参数
- Name
subType
- Type
- string
- Description
预警的子类型,格式为 indicatorKey:period:triggerKey:params。其中:
- indicatorKey:指标key
- period:周期(分钟)
- triggerKey:触发条件key
- params:参数(可选)
示例:ma:1:single_ma:7
- Name
symbol
- Type
- string
- Description
交易对主键
- Name
remark
- Type
- string
- Description
预警备注(可选)
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
result
- Type
- string
- Description
添加状态("true" 或 "false")
请求
curl -G https://open.aicoin.com/api/v2/signal/addSignalAlert \
-d "symbol=btcusdt:binance" \
-d "subType=ma:1440:single_ma:7" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"result": "true"
}
}
获取信号预警设置列表
此接口用于获取已设置的信号预警列表。
请求参数
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
list
- Type
- array
- Description
预警列表
- Name
id
- Type
- string
- Description
预警ID
- Name
tpKey
- Type
- string
- Description
交易对
- Name
setPrice
- Type
- string
- Description
设置的价格
- Name
subType
- Type
- string
- Description
预警类型
- Name
setTime
- Type
- string
- Description
设置时间
- Name
count
- Type
- string
- Description
预警总数
请求
curl -G https://open.aicoin.com/api/v2/signal/getSignalAlertSetList \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"list": [
{
"id": "139840",
"tpKey": "btcusdt:binance",
"setPrice": "201723.230",
"subType": "ma:1440:single_ma:24",
"setTime": "1696925566"
}
],
"count": "300"
}
}
获取异动信号数据
获取异动信号数据。
请求参数
- Name
type
- Type
- string
- Description
类型(1:放量上攻;2:放量下探;3:盘中大涨;4:盘中大跌;5:快速反弹;6:高台跳水;7:近期新高;8:近期新低;9:极速拉升;10:极速下跌;11:大单买入;12:大单卖出;17:快速流入;18:快速流出;23:大额爆仓(多单);24:大额爆仓(空单))
- Name
currency
- Type
- string
- Description
定价(cny: 人民币,usd: 美元,默认usd)
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
list
- Type
- array
- Description
数据列表
- Name
id
- Type
- string
- Description
ID
- Name
key
- Type
- string
- Description
交易对主键
- Name
created_at
- Type
- string
- Description
时间
- Name
show
- Type
- string
- Description
币种简称
- Name
currency_str
- Type
- string
- Description
定价
- Name
type
- Type
- string
- Description
类型
- Name
price
- Type
- string
- Description
价格
- Name
trade
- Type
- string
- Description
成交额
- Name
degree_24h
- Type
- string
- Description
24h涨跌幅
请求
curl -G https://open.aicoin.com/api/v2/signal/changeSignal \
-d "type=1" \
-d "currency=cny" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"list": [
{
"id": "107842292",
"key": "maskswapusdt:binance",
"created_at": "1692690436",
"show": "MASK",
"currency_str": "USDT",
"type": "11",
"price": "19.92",
"trade": "1012012.49",
"degree_24h": "0.51"
}
]
}
}
🔥主力大单跟踪
此接口用于获取指定交易对的最新100条主力大单数据。
请求参数
- Name
symbol
- Type
- string
- Description
交易对,如 btcusdt:okex
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
map
- Type
- array
- Description
交易对配置信息
- Name
coin
- Type
- string
- Description
币种
- Name
coin_type
- Type
- string
- Description
平台
- Name
platform
- Type
- string
- Description
最高价
- Name
show_state
- Type
- string
- Description
1 展示 0 不展示
- Name
list
- Type
- array
- Description
主力大单列表
- Name
start_time
- Type
- string
- Description
起始时间(毫秒)
- Name
hold_time
- Type
- string
- Description
持续时间(毫秒)
- Name
miss_time
- Type
- string
- Description
消失时间(毫秒)
- Name
show_state
- Type
- string
- Description
是否展示,0不展示,1展示,默认:1
- Name
trade_type
- Type
- string
- Description
币种类型, 现货(spot), 合约(futures),其他(others)
- Name
depth_price
- Type
- string
- Description
委单价格
- Name
depth_type
- Type
- string
- Description
委单方向
- Name
depth_state
- Type
- string
- Description
委单状态
- Name
trade_price
- Type
- string
- Description
委单出现时的最新成交价
- Name
trade_start_time
- Type
- string
- Description
大单开始成交时间
- Name
depth_amount
- Type
- string
- Description
初次数量(合约:张)
- Name
depth_turnover
- Type
- string
- Description
订单金额(美元定价)
- Name
last_amount
- Type
- string
- Description
最新数量(合约:张)
- Name
last_turnover
- Type
- string
- Description
最新成交金额(美元定价)
- Name
high_amount
- Type
- string
- Description
当前价最大挂单量(合约:张)
- Name
high_turnover
- Type
- string
- Description
当前价最大挂单金额(美元定价)
- Name
trade_amount
- Type
- string
- Description
成交数量(合约:张)
- Name
trade_turnover
- Type
- string
- Description
成交金额(美元定价)
- Name
trade_count
- Type
- string
- Description
成交笔数
- Name
high_trade_amount
- Type
- string
- Description
最大成交数量(合约:张)
- Name
high_trade_turnover
- Type
- string
- Description
最大成交金额(美元定价)
- Name
position_sub
- Type
- string
- Description
持仓值变化(张)
请求
curl -G https://open.aicoin.com/api/v2/order/bigOrder \
-d "symbol=btcusdt:okex" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"map": [
"coin",
"coin_type",
"platform",
"show_state"
],
"list": [
[
"start_time",
"hold_time",
"miss_time",
"show_state",
"trade_type",
"depth_price",
"depth_type",
"depth_state",
"trade_price",
"trade_start_time",
"depth_amount",
"depth_turnover",
"last_amount",
"last_turnover",
"high_amount",
"high_turnover",
"trade_amount",
"trade_turnover",
"trade_count",
"high_trade_amount",
"high_trade_turnover",
"position_sub"
]
]
}
}
🔥大单成交
此接口用于获取指定交易对的最新100条大单成交数据。
请求参数
- Name
symbol
- Type
- string
- Description
交易对,如 btcusdt:okex
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- object
- Description
返回数据
- Name
map
- Type
- array
- Description
映射字段
- Name
list
- Type
- array
- Description
成交大单列表
请求
curl -G https://open.aicoin.com/api/v2/order/aggTrade \
-d "symbol=btcusdt:okex" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"map": [
"id",
"trade_type",
"start_price",
"max_price",
"slippage_price",
"max_vol",
"total_vol",
"total_count",
"total_turnover"
],
"list": [
[
"1692652288969",
"bid",
"26108.30000000",
"26108.30000000",
"7.80000000",
"1.95035513",
"20.79895406",
"56",
"543095.33573703"
]
]
}
}
指定交易对列表的行情数据
此接口用于获取指定交易对列表的行情数据。
请求参数
- Name
key_list
- Type
- string
- Description
交易对主键,用英文逗号连接多个交易对,一次最多支持100个。必需(通过接口api/v2/trading-pair 获取,对应字段key)
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- array
- Description
返回数据
- Name
key
- Type
- string
- Description
交易对主键
- Name
last_raw
- Type
- string
- Description
最新价-平台价
- Name
last_cny
- Type
- string
- Description
最新价-人民币
- Name
last_usd
- Type
- string
- Description
最新价-美元
请求
curl -G https://open.aicoin.com/api/v2/trading-pair/ticker \
-d "key_list=btcusdt:okex,btcusdt:huobipro" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": [
{
"key": "btcusdt:okex",
"last_raw": "1000",
"last_cny": "7000",
"last_usd": "7000"
}
]
}
获取交易对信息
此接口用于获取交易对的基础信息。
请求参数
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- array
- Description
返回数据
- Name
key
- Type
- string
- Description
交易对主键
- Name
cn_name
- Type
- string
- Description
交易对中文名称
- Name
en_name
- Type
- string
- Description
交易对英文名称
- Name
show
- Type
- string
- Description
交易对简称
请求
curl -G https://open.aicoin.com/api/v2/trading-pair/getTradingPair \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": [
{
"key": "luna2swapusdt:okcoinfutures",
"en_name": "USDT SWAP",
"cn_name": "USDT永续",
"show": "LUNA"
}
]
}
获取平台下的交易对列表
此接口用于获取指定平台下的所有交易对列表。
请求参数
- Name
market
- Type
- string
- Description
平台主键(通过接口api/v2/market 获取,对应字段key)
- Name
currency
- Type
- string
- Description
定价,通过返回内容获取
- Name
show
- Type
- string
- Description
币种简称,通过返回内容获取
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- array
- Description
返回数据
- Name
key
- Type
- string
- Description
交易对主键
- Name
name
- Type
- string
- Description
交易对币种名称
- Name
currency
- Type
- string
- Description
交易对币种定价
- Name
en_name
- Type
- string
- Description
交易对币种英文名称
- Name
cn_name
- Type
- string
- Description
交易对币种中文名称
- Name
show
- Type
- string
- Description
交易对简称
- Name
trade_type
- Type
- string
- Description
交易对类型(spot 现货, futures 合约)
请求
curl -G https://open.aicoin.com/api/v2/trading-pair \
-d "market=okex" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": [
{
"key": "btcusdt:okex",
"currency": "usdt",
"en_name": "Bitcoin",
"cn_name": "比特币",
"show": "btc",
"trade_type": "spot"
}
]
}
[WebSocket] 大额成交
此接口用于订阅指定交易对的大额成交数据。
请求参数
- Name
op
- Type
- string
- Description
操作类型,sub:订阅,unsub:取消订阅
- Name
type
- Type
- string
- Description
固定为 aggtrade
- Name
params
- Type
- array
- Description
交易对数组
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
mapping
- Type
- array
- Description
字段映射数组
- Name
timestamp
- Type
- integer
- Description
时间戳
- Name
id
- Type
- string
- Description
记录ID
- Name
coin_type
- Type
- string
- Description
币种类型
- Name
trade_type
- Type
- string
- Description
买卖方向(bid,ask)
- Name
start_price
- Type
- string
- Description
开始价格
- Name
stop_price
- Type
- string
- Description
最后价格
- Name
max_price
- Type
- string
- Description
单笔最大数量时的价格
- Name
slippage_price
- Type
- string
- Description
滑点价格
- Name
max_amount
- Type
- string
- Description
单笔最大数量(合约:张)
- Name
max_vol
- Type
- string
- Description
单笔最大数量(币)
- Name
total_amount
- Type
- string
- Description
累加数量(合约:张)
- Name
total_vol
- Type
- string
- Description
累加数量(币)
- Name
total_count
- Type
- string
- Description
累加笔数
- Name
total_turnover
- Type
- string
- Description
总成交额
WebSocket
{
"AccessKeyId": "975988f45090561684b7d8f4e45b85c2",
"SignatureNonce": "2",
"Signature": "M2Y5NDg0YzQ2MzA2MjUzZDQ4N2MzMWQwZWZhMjc0ZTE1NTA2ZWY5OA==",
"Timestamp": "1697704726",
"op": "sub",
"type": "aggtrade",
"params": ["btcusdt:okex"]
}
推送数据
{
"mapping": [
"timestamp",
"id",
"coin_type",
"trade_type",
"start_price",
"stop_price",
"max_price",
"slippage_price",
"max_amount",
"max_vol",
"total_amount",
"total_vol",
"total_count",
"total_turnover"
],
"list": [
[
"1585450970650",
"1394",
"okb",
"bid",
"4.08900000",
"4.08900000",
"4.08900000",
"0.00000000",
"9953.00000000",
"9953.00000000",
"9953.00000000",
"9953.00000000",
"1",
"40697.81700000"
]
]
}
[WebSocket] 主力大单
此接口用于订阅主力大单数据。
请求参数
- Name
op
- Type
- string
- Description
订阅类型,可选值:
- sub:订阅
- unsub:取消订阅
- Name
type
- Type
- string
- Description
固定为 "bigorders"
- Name
params
- Type
- array
- Description
交易对数组
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
id
- Type
- string
- Description
记录ID
- Name
start_time
- Type
- string
- Description
起始时间(毫秒)
- Name
hold_time
- Type
- string
- Description
持续时间(毫秒)
- Name
miss_time
- Type
- string
- Description
消失时间(毫秒)
- Name
show_state
- Type
- string
- Description
是否展示,0不展示,1展示,默认:1
- Name
depth_price
- Type
- string
- Description
委单价格
- Name
depth_type
- Type
- string
- Description
委单方向
- Name
depth_state
- Type
- string
- Description
委单状态
- Name
trade_price
- Type
- string
- Description
委单出现时的最新成交价
- Name
trade_start_time
- Type
- string
- Description
大单开始成交时间
- Name
depth_amount
- Type
- string
- Description
初次数量(合约:张)
- Name
depth_turnover
- Type
- string
- Description
订单额(美元定价)
- Name
last_amount
- Type
- string
- Description
最新数量(合约:张)
- Name
last_turnover
- Type
- string
- Description
最新数量(美元定价)
- Name
high_amount
- Type
- string
- Description
当前价最大挂单量(合约:张)
- Name
high_turnover
- Type
- string
- Description
当前价最大挂单量(美元定价)
- Name
trade_amount
- Type
- string
- Description
成交数量(合约:张)
- Name
trade_turnover
- Type
- string
- Description
成交金额(美元定价)
- Name
trade_count
- Type
- string
- Description
成交笔数
- Name
high_trade_amount
- Type
- string
- Description
最大成交(合约:张)
- Name
high_trade_turnover
- Type
- string
- Description
最大成交金额(美元定价)
- Name
position_sub
- Type
- string
- Description
持仓值变化(张)
- Name
position_sub_turnover
- Type
- string
- Description
最大成交金额(美元定价)
- Name
fake_price
- Type
- string
- Description
订单矩形高度
请求
{
"AccessKeyId": "975988f45090561684b7d8f4e45b85c2",
"SignatureNonce": "2",
"Signature": "M2Y5NDg0YzQ2MzA2MjUzZDQ4N2MzMWQwZWZhMjc0ZTE1NTA2ZWY5OA==",
"Timestamp": "1697704726",
"op": "sub",
"type": "bigorders",
"params": ["btcusdt:okex"]
}
推送数据
[
{
"id": "1234",
"start_time": "1585450970650",
"hold_time": "60000",
"miss_time": "1585451030650",
"show_state": "1",
"depth_price": "50000.00",
"depth_type": "buy",
"depth_state": "active",
"trade_price": "49995.00",
"trade_start_time": "1585450970650",
"depth_amount": "100",
"depth_turnover": "5000000.00",
"last_amount": "95",
"last_turnover": "4750000.00",
"high_amount": "100",
"high_turnover": "5000000.00",
"trade_amount": "5",
"trade_turnover": "250000.00",
"trade_count": "3",
"high_trade_amount": "2",
"high_trade_turnover": "100000.00",
"position_sub": "5",
"position_sub_turnover": "250000.00",
"fake_price": "50100.00"
}
]
[WebSocket] 异动信号
此接口用于订阅异动信号数据。
请求参数
- Name
op
- Type
- string
- Description
订阅类型,可选值:
- sub:订阅
- unsub:取消订阅
- Name
type
- Type
- string
- Description
固定为 "changeSignal"
- Name
params
- Type
- array
- Description
异动类型数组,可选值:
- 1:放量上攻
- 2:放量下探
- 3:盘中大涨
- 4:盘中大跌
- 5:快速反弹
- 6:高台跳水
- 7:近期新高
- 8:近期新低
- 9:极速拉升
- 10:极速下跌
- 11:大单买入
- 12:大单卖出
- 17:快速流入
- 18:快速流出
- 23:大额爆仓(多单)
- 24:大额爆仓(空单)
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
id
- Type
- string
- Description
记录ID
- Name
key
- Type
- string
- Description
交易对主键
- Name
created_at
- Type
- string
- Description
创建时间
- Name
show
- Type
- string
- Description
币种简称
- Name
currency_str
- Type
- string
- Description
定价币种
- Name
type
- Type
- string
- Description
异动类型
- Name
price
- Type
- string
- Description
价格
- Name
trade
- Type
- string
- Description
成交额
- Name
degree_24h
- Type
- string
- Description
24小时涨跌幅
请求
{
"AccessKeyId": "975988f45090561684b7d8f4e45b85c2",
"SignatureNonce": "2",
"Signature": "M2Y5NDg0YzQ2MzA2MjUzZDQ4N2MzMWQwZWZhMjc0ZTE1NTA2ZWY5OA==",
"Timestamp": "1697704726",
"op": "sub",
"type": "changeSignal",
"params": ["12", "18"]
}
推送数据
{
"id": "107842292",
"key": "maskswapusdt:binance",
"created_at": "1692690436",
"show": "MASK",
"currency_str": "USDT",
"type": "11",
"price": "19.92",
"trade": "1012012.49",
"degree_24h": "0.51"
}
[WebSocket] 信号预警
此接口用于订阅信号预警数据。
请求参数
- Name
op
- Type
- string
- Description
订阅类型,可选值:
- sub:订阅
- unsub:取消订阅
- Name
type
- Type
- string
- Description
固定为 "signalAlert"
- Name
params
- Type
- array
- Description
信号预警ID数组,如 ["100"]
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
tp_key
- Type
- string
- Description
交易对主键
- Name
sub_type
- Type
- string
- Description
指标:周期(粒度:分钟):触发条件:参数
- Name
side
- Type
- string
- Description
方向,可选值:sell、buy
- Name
ews_price
- Type
- string
- Description
触发价格
- Name
ews_time
- Type
- string
- Description
触发时间
请求
{
"AccessKeyId": "975988f45090561684b7d8f4e45b85c2",
"SignatureNonce": "2",
"Signature": "M2Y5NDg0YzQ2MzA2MjUzZDQ4N2MzMWQwZWZhMjc0ZTE1NTA2ZWY5OA==",
"Timestamp": "1697704726",
"op": "sub",
"type": "signalAlert",
"params": ["100"]
}
推送数据
{
"tp_key": "ethusdt:binance",
"sub_type": "macd:5:fork:12,26,9",
"side": "sell",
"ews_price": "1671.710000000000",
"ews_time": "1692622501"
}
[WebSocket] 指标胜率
此接口用于订阅指标胜率数据。
请求参数
- Name
op
- Type
- string
- Description
订阅类型,可选值:
- sub:订阅
- unsub:取消订阅
- Name
type
- Type
- string
- Description
固定为 "strategySignal"
- Name
params
- Type
- array
- Description
格式:币种主键+策略主键,如 ["bitcoin:depth_win_one"]
- Name
AccessKeyId
- Type
- string
- Description
用户访问密钥ID
- Name
SignatureNonce
- Type
- string
- Description
签名随机数
- Name
Timestamp
- Type
- string
- Description
请求时间戳(秒),有效期30秒
- Name
Signature
- Type
- string
- Description
使用 HmacSHA1 + Base64 生成的签名,请参考如何获取 API 认证参数
返回数据
- Name
id
- Type
- string
- Description
ID,相同ID表示同一买卖对
- Name
signal_time
- Type
- string
- Description
时机
- Name
signal_type
- Type
- string
- Description
指标类型:
- depth_win_one:智胜1号
- depth_win_two:智胜2号
- depth_buy_one:共赢1号
- order_buy_one:共赢2号
- td_buy_one:共赢3号
- lsur_one:智胜3号
- Name
side
- Type
- string
- Description
买卖方向:
- buy:买入
- sell:卖出
- Name
capital_rate
- Type
- string
- Description
累计收益
- Name
history_win_rate
- Type
- string
- Description
历史胜率
- Name
state
- Type
- string
- Description
信号状态(仅对合约生效):
- 0:生效中
- 1:已止盈
- 2:已止损
- 3:信号反转
- Name
price
- Type
- string
- Description
当前交易对的信号时间分钟收盘价
请求
{
"AccessKeyId": "975988f45090561684b7d8f4e45b85c2",
"SignatureNonce": "2",
"Signature": "M2Y5NDg0YzQ2MzA2MjUzZDQ4N2MzMWQwZWZhMjc0ZTE1NTA2ZWY5OA==",
"Timestamp": "1697704726",
"op": "sub",
"type": "strategySignal",
"params": ["bitcoin:depth_win_one"]
}
推送数据
{
"id": "12345",
"signal_time": "1692622501",
"signal_type": "depth_win_one",
"side": "buy",
"capital_rate": "0.15",
"history_win_rate": "0.75",
"state": "0",
"price": "26789.50"
}