内容模块 API
AICoin内容模块API提供了完整的内容数据接口,包括快讯、资讯等多种内容类型。通过这些API,您可以轻松获取和集成AICoin平台的各类资讯内容,为用户提供及时、专业的加密货币市场资讯服务。
AI 币种解读
获取AI对币种的解读和预测。
请求参数
- Name
coinKeys
- Type
- array
- Description
币种ID列表(对应:获取币种列表接口里面的 coin_key)
- Name
language
- Type
- string
- Description
返回数据所需的语言(CN:简体中文,EN:英文,TC:繁体中文;默认为简体中文)
- 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
coinKey
- Type
- string
- Description
主键
- Name
coinShow
- Type
- string
- Description
币种显示名称
- Name
coinLogo
- Type
- string
- Description
币种logo
- Name
price
- Type
- string
- Description
价格
- Name
degree
- Type
- string
- Description
涨跌幅
- Name
interpret
- Type
- string
- Description
解读
- Name
trend
- Type
- string
- Description
涨跌色 [rise, fall]
- Name
predition
- Type
- string
- Description
预测
请求
curl -X POST https://api.aicoin.com/v2/content/ai-coins \
-H "Content-Type: application/json" \
-d '{
"coinKeys": ["apecoin"],
"language": "CN",
"AccessKeyId": "975988f45090561684b7d8f4e45b85c2",
"SignatureNonce": "2",
"Timestamp": "1612149637",
"Signature": "M2Y0ODNlYTUwNDFiMTg5MjRmMGQxNmY1YTMyMzc1NTc5NTUzNDAzYw=="
}'
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"list": [
{
"coinKey": "apecoin",
"coinShow": "APE",
"coinLogo": "http://static.aicoinstorge.com/coin/20220317/164748720890293.png",
"price": "9.24",
"degree": "-20.62",
"interpret": "APE最近推出Ape Chain Layer 3和获得Covalent支持,短期可考虑在价格回调时逢低布局,长期关注生态系统扩大和资金净流入情况。",
"trend": "rise",
"predition": "AI看涨"
}
]
}
}
获取资讯列表
获取资讯列表-专属的RSS链接。
请求参数
- Name
page
- Type
- integer
- Description
当前显示第几页
- Name
pageSize
- Type
- integer
- Description
页面大小(最大值为20)
- 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
title
- Type
- string
- Description
资讯标题
- Name
description
- Type
- string
- Description
摘要
- Name
image
- Type
- string
- Description
封面图片
- Name
pubDate
- Type
- integer
- Description
发布时间
请求
curl -G https://open.aicoin.com/api/v2/content/square/market/news-list \
-d "page=1" \
-d "pageSize=20" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"data": [
{
"title": "比特币突破4万美元",
"description": "比特币价格在经过长期盘整后突破4万美元关口...",
"image": "https://example.com/btc-40k.jpg",
"pubDate": 1612149637
}
]
}
获取快讯
获取仅由 AICoin 发布的快讯信息。
请求参数
- Name
language
- Type
- string
- Description
语言选项:cn(中文)、tc(繁体)、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
data
- Type
- array
- Description
返回的数据数组
- Name
id
- Type
- integer
- Description
快讯ID
- Name
title
- Type
- string
- Description
快讯标题
- Name
content
- Type
- string
- Description
快讯内容
- Name
language
- Type
- string
- Description
语言类型
- Name
createtime
- Type
- integer
- Description
发布时间
- Name
columnist
- Type
- object
- Description
作家信息
- Name
nick_name
- Type
- string
- Description
作家昵称
- Name
avatar
- Type
- string
- Description
作家头像
- Name
avatar_black
- Type
- string
- Description
黑夜模式头像
- Name
success
- Type
- boolean
- Description
接口调用状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误信息
请求
curl -G https://open.aicoin.com/api/v2/content/newsflash \
-d "language=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": [
{
"id": 987654,
"title": "比特币突破4.7万美元 创近两年新高",
"content": "据CoinGecko数据显示,比特币(BTC)价格突破47,000美元,创下2022年3月以来新高。分析师认为,这一涨势主要受到现货ETF获批预期和比特币减半周期临近等因素推动...",
"language": "zh-cn",
"createtime": 1704790800,
"columnist": {
"nick_name": "加密货币分析师",
"avatar": "https://static.aicoin.com/avatars/crypto-analyst-123.jpg",
"avatar_black": "https://static.aicoin.com/avatars/crypto-analyst-123-dark.jpg"
}
}
]
}
获取快讯(行业快讯)
获取行业相关的快讯信息。
请求参数
- Name
language
- Type
- string
- Description
语言选项:cn(中文)、tc(繁体)、en(英文)
- Name
id
- Type
- integer
- Description
快讯ID
- Name
createtime
- Type
- integer
- 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
id
- Type
- integer
- Description
快讯ID
- Name
title
- Type
- string
- Description
快讯标题
- Name
content
- Type
- string
- Description
快讯内容
- Name
language
- Type
- string
- Description
语言类型
- Name
createtime
- Type
- integer
- Description
发布时间
- Name
flashType
- Type
- integer
- Description
快讯类型:
-
0: 未分类
-
1: 小币种大额涨跌幅推送
-
3: 换手率异动推送
更多类型…
-
4: 币种价格新高/新低推送
-
5: 期权最大痛点数据推送
-
6: CME持仓周报数据推送
-
7: 期权持仓异动推送
-
8: 成交量异动推送
-
10: 指数新高新低
-
14: 筹码分布推送
-
15: 市场总体爆仓数据推送
-
16: BTC插针信号推送
-
18: 币种关口涨跌破
-
19: 下周重点关注
-
20: 资金流向快讯推送
-
21: 币种上新检测
-
22: 主力快讯
-
23: 币种涨跌幅监控(币种价格异动)
-
24: 最大痛点数据
-
25: 爆仓单推送
-
26: OKX期货总持仓量
-
27: 后市信心不足(主力对后市信心较强)
-
28: 要闻速递
-
- Name
columnist
- Type
- object
- Description
作家信息
- Name
nick_name
- Type
- string
- Description
作家昵称
- Name
avatar
- Type
- string
- Description
作家头像
- Name
avatar_black
- Type
- string
- Description
黑夜模式头像
请求
curl -G https://open.aicoin.com/api/v2/content/flashList \
-d "language=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": [
{
"id": 987654,
"title": "比特币突破4.7万美元 创近两年新高",
"content": "据CoinGecko数据显示,比特币(BTC)价格突破47,000美元,创下2022年3月以来新高。分析师认为,这一涨势主要受到现货ETF获批预期和比特币减半周期临近等因素推动...",
"language": "zh-cn",
"createtime": 1704790800,
"flashType": 1,
"columnist": {
"nick_name": "加密货币分析师",
"avatar": "https://static.aicoin.com/avatars/crypto-analyst-123.jpg",
"avatar_black": "https://static.aicoin.com/avatars/crypto-analyst-123-dark.jpg"
}
}
]
}
获取资讯列表
获取资讯列表信息。
请求参数
- Name
page
- Type
- integer
- Description
当前显示第几页
- Name
pageSize
- Type
- integer
- Description
页面大小(最大值为20)
- 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
data
- Type
- array
- Description
返回的数据数组
- Name
id
- Type
- integer
- Description
资讯id
- Name
title
- Type
- string
- Description
资讯标题
- Name
describe
- Type
- string
- Description
摘要
- Name
cover
- Type
- string
- Description
封面图片
- Name
createtime
- Type
- integer
- Description
发布时间
- Name
language
- Type
- integer
- Description
中英文资讯(10或者0 中文 11 英文)
- Name
columnist
- Type
- object
- Description
作家信息
- Name
nick_name
- Type
- string
- Description
作家昵称
- Name
avatar
- Type
- string
- Description
作家头像
- Name
avatar_black
- Type
- string
- Description
黑夜模式头像
- Name
success
- Type
- boolean
- Description
接口调用状态
- Name
errorCode
- Type
- integer
- Description
状态码
- Name
error
- Type
- string
- Description
错误信息
请求
curl -G https://open.aicoin.com/api/v2/content/news-list \
-d "page=1" \
-d "pageSize=20" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": [
{
"id": 55836,
"title": "比特币突破4.5万美元,创近两年新高",
"describe": "比特币价格在亚洲交易时段突破4.5万美元关口,创下2022年4月以来新高。分析师认为,此轮上涨主要受到现货ETF获批预期和比特币减半周期临近等因素推动。",
"cover": "https://static.aicoinstorge.com/article/20231208/btc_price_45k.jpg",
"createtime": 1702022400,
"language": 10,
"columnist": {
"nick_name": "Sarah Chen",
"avatar": "https://static.aicoinstorge.com/columnist/20230615/sarah_chen.jpg",
"avatar_black": "https://static.aicoinstorge.com/columnist/20230615/sarah_chen_dark.jpg"
}
}
]
}
获取资讯详情
获取资讯详细内容。
请求参数
- 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
id
- Type
- integer
- Description
资讯id
- Name
title
- Type
- string
- Description
资讯标题
- Name
describe
- Type
- string
- Description
摘要
- Name
cover
- Type
- string
- Description
封面图片
- Name
createtime
- Type
- integer
- Description
发布时间
- Name
content
- Type
- string
- Description
内容
- Name
language
- Type
- integer
- Description
中英文资讯(10或者0 中文 11 英文)
- Name
columnist
- Type
- object
- Description
作家信息
- Name
nick_name
- Type
- string
- Description
作家昵称
- Name
avatar
- Type
- string
- Description
作家头像
- Name
avatar_black
- Type
- string
- Description
黑夜模式头像
请求
curl -G https://open.aicoin.com/api/v2/content/news-detail \
-d "id=55848" \
-d "AccessKeyId=YOUR_ACCESS_KEY_ID" \
-d "SignatureNonce=RANDOM_NONCE" \
-d "Timestamp=CURRENT_TIMESTAMP" \
-d "Signature=YOUR_SIGNATURE"
响应
{
"success": true,
"errorCode": 200,
"error": "",
"data": {
"id": 55848,
"title": "比特币突破4.5万美元大关",
"cover": "https://static.aicoinstorge.com/article/20231208/btc_45k.jpg",
"source": "AICoin资讯",
"createtime": 1702022400,
"describe": "比特币价格创下近两年新高...",
"content": "比特币价格在亚洲交易时段突破4.5万美元关口,创下2022年4月以来新高。分析师认为,此轮上涨主要受到现货ETF获批预期和比特币减半周期临近等因素推动...",
"language": 10,
"columnist": {
"nick_name": "Sarah Chen",
"avatar": "https://static.aicoinstorge.com/columnist/20230615/sarah_chen.jpg",
"avatar_black": "https://static.aicoinstorge.com/columnist/20230615/sarah_chen_dark.jpg"
}
}
}