币种数据 API
AICoin开放API提供了完整的币种数据接口,让您能够轻松获取加密货币的各类信息。本文档将详细介绍币种相关的所有 API 端点,包括如何查询币种列表、获取实时行情等功能。
GET/v2/coin
获取币种列表
此接口返回支持的所有币种基础信息。
请求参数
- 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
coin_key
- Type
- string
- Description
币种主键
- Name
hash_key
- Type
- string
- Description
币种哈希键
- Name
show
- Type
- string
- Description
币种简称
- Name
cn_name
- Type
- string
- Description
币种中文名称
- Name
en_name
- Type
- string
- Description
币种英文名称
请求
GET
/v2/coincurl -G https://open.aicoin.com/api/v2/coin \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"data": [
{
"coin_key": "bitcoin",
"show": "BTC",
"cn_name": "比特币",
"en_name": "Bitcoin",
"hash_key": "A92455EC"
}
]
}
GET/v2/coin/ticker
获取币种相关数据
此接口用于获取币种的实时行情数据,包括价格、涨跌幅、成交量等信息。
请求参数
- Name
coin_list
- Type
- string
- Description
币种主键列表,用英文逗号连接,最多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
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- array
- Description
返回数据
- Name
coin_key
- Type
- string
- Description
币种主键
- Name
price_cny
- Type
- string
- Description
最新价(人民币)
- Name
price_usd
- Type
- string
- Description
最新价(美元)
- Name
degree_24h_cny
- Type
- string
- Description
24小时涨跌幅(人民币)
- Name
degree_24h_usd
- Type
- string
- Description
24小时涨跌幅(美元)
- Name
supply_cny
- Type
- string
- Description
市值(人民币)
- Name
supply_usd
- Type
- string
- Description
市值(美元)
- Name
trade_24h_cny
- Type
- string
- Description
24小时成交额(人民币)
- Name
trade_24h_usd
- Type
- string
- Description
24小时成交额(美元)
- Name
vol_24h
- Type
- string
- Description
24小时成交量
- Name
usdt_funding_rate
- Type
- string
- Description
U本位费率
- Name
usd_funding_rate
- Type
- string
- Description
币本位费率
请求
GET
/v2/coin/tickercurl -G https://open.aicoin.com/api/v2/coin/ticker \
-d coin_list=bitcoin,litecoin \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"data": [
{
"coin_key": "bitcoin",
"price_cny": "54810.01",
"price_usd": "7930.59",
"degree_24h_cny": "0.70",
"degree_24h_usd": "0.66",
"supply_cny": "970788045869",
"supply_usd": "140465618756",
"trade_24h_cny": "123163682659.427876",
"trade_24h_usd": "17851217131.209215",
"vol_24h": "3669627.78",
"usdt_funding_rate": "0.01",
"usd_funding_rate": "0.02"
}
]
}
GET/v2/coin/config
获取币种简介数据
此接口用于获取币种的基础配置信息,包括简介、白皮书、发行信息等。
请求参数
- Name
coin_list
- Type
- string
- Description
币种主键列表,用英文逗号连接,最多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
success
- Type
- boolean
- Description
接口状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误提示信息
- Name
data
- Type
- array
- Description
返回数据
- Name
coin_key
- Type
- string
- Description
币种主键
- Name
show
- Type
- string
- Description
币种简称,空字符串表示没有数据
- Name
cnName
- Type
- string
- Description
币种中文名,空字符串表示没有数据
- Name
enName
- Type
- string
- Description
币种英文名,空字符串表示没有数据
- Name
describe
- Type
- string
- Description
币种简介,空字符串表示没有数据
- Name
whitePaper
- Type
- string
- Description
白皮书地址,空字符串表示没有数据
- Name
officialUrl
- Type
- string
- Description
官网,空字符串表示没有数据
- Name
publishAmount
- Type
- string
- Description
发行量,空字符串表示没有数据
- Name
distribution
- Type
- array
- Description
代币分配
- Name
ico
- Type
- string
- Description
类型,空字符串表示没有数据
- Name
foundation
- Type
- string
- Description
占比,空字符串表示没有数据
请求
GET
/v2/coin/configcurl -G https://open.aicoin.com/api/v2/coin/config \
-d coin_list=bitcoin \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"data": [
{
"coin_key": "bitcoin",
"show": "BTC",
"cnName": "比特币",
"enName": "Bitcoin",
"describe": "比特币(BitCoin)的概念最初由中本聪在2009年提出...",
"whitePaper": "https://bitcoin.org/files/bitcoin-paper/bitcoin_zh_cn.pdf",
"officialUrl": "https://bitcoin.org/en/",
"publishAmount": "21000000",
"distribution": [
{
"ico": "团队",
"foundation": "8.3"
}
]
}
]
}