开始使用RootData API
请确保在使用 API 时遵守相关的使用条款和限制,并在合适的地方提供适当的归属和引用
1. 搜索
- URL: https://api.rootdata.com/open/ser_inv
- Method: POST
- 描述: 通过名称、代币、简介搜索信息,不限次数
- 支持的版本: Basic, Plus, Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
query | string | true | 搜索关键词,可以是项目/机构名称、代币或其他相关词汇 |
响应字段
参数 | Type | 描述 |
---|---|---|
id | int | 唯一标识符 |
type | int | 1 项目; 2 机构;3人物 |
name | string | 名称 |
logo | string | logo 的 URL |
introduce | string | 介绍 |
rootdataurl | string | 对应的RootData链接 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"query": "ETH" }' https://api.rootdata.com/open/ser_inv
请求成功示例
{ "data": [ { "introduce": "Ethereum is the first decentralized...", "name": "Ethereum", "logo": "https://api.rootdata.com/uploads/public/b15/1666341829033.jpg", "rootdataurl": "https://api.rootdata.com/Projects/detail/Ethereum?k=MTI=", "id": 12, "type": 1 } ], "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
2. 获取项目
- URL: https://api.rootdata.com/open/get_item
- Method: POST
- 描述: 通过项目ID查询项目信息,消耗2 credits/次
- 支持的版本: Basic, Plus, Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
project_id | int | false | 项目的唯一标识符。如果同时提供了`project_id`和`contract_address`,则`project_id`优先。 |
include_team | bool | false | 是否包含团队成员信息,默认为 false |
include_investors | bool | false | 是否包含投资方信息,默认为 false |
contract_address | string | false | Ethereum链合约地址,可选参数。如与`project_id`参数同时存在,则以`project_id`参数为准 |
响应字段
参数 | Type | 描述 |
---|---|---|
project_id | int | 项目ID |
project_name | string | 项目名称 |
logo | string | 项目 logo 的 URL |
token_symbol | string | 代币符号 |
establishment_date | string | 成立时间 |
one_liner | string | 一句话介绍 |
description | string | 详细介绍 |
active | boolean | true:运营中;false:停止运营 |
total_funding | decimal | 融资总额 |
tags | array | 项目标签 (标签名数组) |
rootdataurl | string | 项目对应的RootData链接 |
investors | array | 投资方信息 |
social_media | array | 社交媒体链接 |
similar_project | array | 同类项目 |
ecosystem | array | 项目所属生态(数组,生态名称,不区分测试网和主网)PRO |
on_main_net | array | 实际上线网络(数组,生态名称)PRO |
plan_to_launch | array | 计划上线网络(数组,生态名称)PRO |
on_test_net | array | 上线测试网(数组,生态名称)PRO |
contract_address | string | 代币合约地址PRO |
fully_diluted_market_cap | string | 完全稀释市值PRO |
market_cap | string | 流通市值PRO |
price | string | 价格PRO |
event | array | 项目重大事件 PRO |
reports | array | 新闻动态数据 PRO |
team_members | array | 团队成员信息PRO |
token_launch_time | string | 代币发行时间 yyyy-MMPRO |
support_exchanges | array | 支持的交易所 包含(交易所名称,交易所logo)PRO |
heat | string | X热度值PRO |
heat_rank | int | X热度排名PRO |
influence | string | X影响力PRO |
influence_rank | int | X影响力排名PRO |
followers | int | X粉丝数PRO |
following | int | X关注数PRO |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"project_id":8719, "include_team":true,"include_investors":true }' https://api.rootdata.com/open/get_item
请求成功示例
{ "data": { "ecosystem": [], "one_liner": "Building hardware for cryptography", "description": "Fabric Cryptography is a start-up company focusing on developing advanced crypto algorithm hardware, especially building special computer chips for Zero-knowledge proof technology.", "rootdataurl": "https://api.rootdata.com/Projects/detail/Fabric Cryptography?k=ODcxOQ==", "total_funding": 87033106304, "project_name": "Fabric Cryptography", "investors": [ { "name": "Inflection", "logo": "https://api.rootdata.com/uploads/public/b17/1666870085112.jpg" } ], "establishment_date": "2022", "tags": [ "Infra", "zk" ], "project_id": 8719, "team_members": [ { "medium": "", "website": "https://www.fabriccryptography.com/", "twitter": "", "discord": "", "linkedin": "https://www.linkedin.com/company/fabriccryptography/" } ], "logo": "https://api.rootdata.com/uploads/public/b6/1690306559722.jpg", "social_media": { "medium": "", "website": "https://llama.xyz/", "twitter": "https://twitter.com/llama", "discord": "", "linkedin": "" }, "contract_address": "0x00aU9GoIGOKahBostrD", "fully_diluted_market_cap": "1000000", "market_cap": "1000000", "price": "1000000", "reports": [] }, "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
3. 获取机构
- URL: https://api.rootdata.com/open/get_org
- Method: POST
- 描述: 通过机构ID查询机构信息,消耗2 credits/次
- 支持的版本: Basic, Plus, Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
org_id | int | true | 机构ID |
include_team | bool | false | 是否包含团队成员信息,默认为 false |
include_investments | bool | false | 是否包含投资项目信息,默认为 false |
响应字段
参数 | Type | 描述 |
---|---|---|
org_id | int | 机构ID |
org_name | string | 机构名称 |
logo | string | 机构 logo 的 URL |
establishment_date | string | 成立时间 |
description | string | 详细介绍 |
active | boolean | true:运营中;false:停止运营 |
category | string | 类型 |
social_media | array | 社交媒体链接(官网、推特、LinkedIn) |
investments | array | 投资项目(数组,包括名称、logo) |
rootdataurl | string | 机构对应的RootData链接 |
team_members | array | 团队成员信息(数组,包括姓名、职位)PRO |
heat | string | X热度值PRO |
heat_rank | int | X热度排名PRO |
influence | string | X影响力PRO |
influence_rank | int | X影响力排名PRO |
followers | int | X关注者数量PRO |
following | int | X正在关注数量PRO |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"org_id":219,"include_team":true,"include_investments":true }' https://api.rootdata.com/open/get_org
请求成功示例
{ "data": { "org_id": 219, "team_members": [ { "name": "Shan Aggarwal", "position": "Head" }, { "name": "Jonathan King", "position": "Principal" } ], "logo": "https://rdbk.rootdata.com/uploads/public/b17/1666777683240.jpg", "description": "Coinbase Ventures is an investment arm of Coinbase that aims to invest in early-stage cryptocurrency and blockchain startups.", "rootdataurl": "https://api.rootdata.com/Investors/detail/Coinbase Ventures?k=MjE5", "org_name": "Coinbase Ventures", "category": [ "Seed Plus" ], "investments": [ { "name": "zkSync / Matter Labs", "logo": "https://public.rootdata.com/uploads/public/b16/1666624791085.jpg" } ], "establishment_date": "2018", "social_media": { "website": "https://www.coinbase.com/ventures", "twitter": "https://twitter.com/cbventures", "linkedin": "" } }, "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
4. 获取人物(Pro)
- URL: https://api.rootdata.com/open/get_people
- Method: POST
- 描述: 通过人物ID查询项目信息,消耗2 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
people_id | long | true | 人物ID |
响应字段
参数 | Type | 描述 |
---|---|---|
people_id | long | ID |
introduce | string | 人物介绍 |
head_img | string | 头像 |
one_liner | string | 简介 |
X | string | X链接 |
people_name | string | 人物名称 |
string | 领英 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"people_id":12972, "include_team":true,"include_investors":true }' https://api.rootdata.com/open/get_people
请求成功示例
{ "data": { "people_id": 12972, "introduce": "Cai Wensheng, also known as Mike Cai, is the founder and chairman of Meitu.", "head_img": "https://public.rootdata.com/images/b30/1687197351918.jpg", "one_liner": "", "X": "", "people_name": "Cai Wensheng", "linkedin": "" }, "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
5. 批量获取投资者信息(Plus, Pro)
- URL: https://api.rootdata.com/open/get_invest
- Method: POST
- 描述: 查询投资者基本信息、投资组合、投资数据分析,每条数据消耗2 credits
- 支持的版本: Plus, Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
page | int | false | 页码,默认1 |
page_size | int | false | 每页条数,默认10,最大100 |
响应字段
参数 | Type | 描述 |
---|---|---|
area | array | 地区列表 |
last_fac_date | string | 最近投资时间 |
last_invest_num | int | 近一年投资次数 |
invest_range | array | 参投规模 |
description | string | 投资者介绍 |
invest_overview | object | 投资概览 |
type | int | 类型: 1项目 2机构 3人物 |
investments | array | 对外投资项目 |
establishment_date | string | 成立时间 |
invest_num | int | 投资次数 |
invest_stics | array | 投资版图 |
invest_id | int | 投资者ID |
team_members | array | 团队成员信息 |
logo | string | 投资者Logo |
invest_name | string | 投资者名称 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"page":1,"page_size":10}' https://api.rootdata.com/open/get_invest
请求成功示例
{ "data": { "items": [ { "area": [ "Singapore", "United Arab Emirates" ], "last_fac_date": "2023-10-12 00:00:00", "last_invest_num": 25, "description": "Binance Labs is the...", "invest_overview": { "lead_invest_num": 38, "last_invest_round": 25, "his_invest_round": 141, "invest_num": 171 }, "type": 2, "investments": [ { "name": "zkSync / Matter Labs", "logo": "https://public.rootdata.com/uploads/public/b16/1666624791085.jpg" } ], "establishment_date": "2017", "invest_num": 171, "invest_stics": [ { "track": "Infrastructure", "invest_num": 69 } ], "invest_id": 229, "invest_range": [ { "lead_invest_num": 11, "amount_range": "1-3M", "lead_not_invest_num": 17, "invest_num": 28 } ], "team_members": [ { "head_img": "https://public.rootdata.com/uploads/public/b12/1669630219503.jpg", "name": "Yi He", "X": "https://twitter.com/heyibinance", "position": "Head" } ], "logo": "https://public.rootdata.com/uploads/public/b11/1666594924745.jpg", "invest_name": "Binance Labs" } ], "total": 1 }, "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
6. 批量获取投资轮次信息(Plus, Pro)
- URL: https://api.rootdata.com/open/get_fac
- Method: POST
- 描述: 批量获取投资轮次信息(默认2022年至今),每条数据消耗3 credits
- 支持的版本: Plus, Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
page | int | false | 页码,默认1 |
page_size | int | false | 每页条数,默认10,最大200 |
start_time | string | false | 融资公布日期(起) yyyy-MM |
end_time | string | false | 融资公布日期(止) yyyy-MM |
min_amount | int | false | 融资金额最小范围(美元) |
max_amount | int | false | 融资金额最大范围(美元) |
project_id | int | false | 项目Id |
响应字段
参数 | Type | 描述 |
---|---|---|
logo | string | 项目 logo 的 URL |
name | string | 项目名称 |
rounds | string | 轮次名称 |
published_time | string | 融资公布日期 |
amount | long | 融资金额(美元) |
project_id | int | 项目ID |
valuation | long | 估值(美元) |
invests | array | 投资方信息数组,包含Logo、名称 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{ }' https://api.rootdata.com/open/get_fac
请求成功示例
{ "data": { "total": 2870, "items": [ { "amount": 2500000, "valuation": 30000000, "published_time": "2023-10", "name": "Convergence", "logo": "https://public.rootdata.com/uploads/public/b6/1671983908027.jpg", "rounds": "Pre-Seed", "invests": [ { "name": "C² Ventures", "logo": "https://public.rootdata.com/uploads/public/b17/1666777874118.jpg" } ] } ] }, "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
7. 同步更新(Pro)
- URL: https://api.rootdata.com/open/ser_change
- Method: POST
- 描述: 获取单位时间内信息更新过的项目与机构名单,数据每天更新,每条数据消耗 2 credits
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
begin_time | long | true | 开始时间,时间戳 |
end_time | long | false | 结束时间,时间戳 |
响应字段
参数 | Type | 描述 |
---|---|---|
id | int | ID |
type | int | 1:项目; 2:机构 |
name | string | Type类型对应的数据名称 |
update_time | long | 更新时间,时间戳 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"begin_time":1693974909261,"end_time":1694476800000,}' https://api.rootdata.com/open/ser_change
请求成功示例
{ "data": [ { "update_time": 1693974909261, "name": "Ethereum", "id": 12, "type": 1 } ], "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
8. 热门项目Top100(Pro)
- URL: https://api.rootdata.com/open/hot_index
- Method: POST
- 描述: 热门项目Top100,消耗10 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
days | int | true | 仅支持查询近1天/7天数据,1or7 |
响应字段
参数 | Type | 描述 |
---|---|---|
project_id | long | 项目ID |
eval | double | 热度值 |
rank | int | 排名 |
logo | string | 项目Logo |
one_liner | string | 简介 |
token_symbol | string | 代币 |
project_name | string | 项目名称 |
tags | array | 项目标签 (标签名数组) |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"days":1}' https://api.rootdata.com/open/hot_index
请求成功示例
{ "data": [ { "eval": 907.936508, "project_id": 13671, "one_liner": "Hemi Network is a modular Layer...", "logo": "https://public.rootdata.com/images/b6/1721840384466.png", "rank": 1, "token_symbol": "", "project_name": "Hemi Network", "tags": [ "Infra" ] } ], "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
9. X热门项目(Pro)
- URL: https://api.rootdata.com/open/hot_project_on_x
- Method: POST
- 描述: 查询X热门项目,消耗10 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
heat | boolean | true | X 热度榜单 |
influence | boolean | true | X 影响力榜单 |
followers | boolean | true | X 粉丝数榜单 |
响应字段
参数 | Type | 描述 |
---|---|---|
heat | array | 热度榜 |
influence | array | 影响力榜 |
followers | array | 关注者数量榜 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"heat":false,"influence":true,"followers":false}' https://api.rootdata.com/open/hot_project_on_x
请求成功示例
{ "data": { "influence": [ { "score": "5615", "project_id": 3875, "one_liner": "Cryptocurrency exchange", "logo": "https://public.rootdata.com/images/b16/1666878846006.jpg", "project_name": "Coinbase" } ] }, "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
10. X热门人物(Pro)
- URL: https://api.rootdata.com/open/leading_figures_on_crypto_x
- Method: POST
- 描述: 查询X热门人物,消耗10 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
page | int | false | 页码,默认1 |
page_size | int | false | 每页条数,默认10,最大100 |
rank_type | string | true | 榜单类型"hot index" or "influence index" |
响应字段
参数 | Type | 描述 |
---|---|---|
people_id | long | ID |
score | string | 热度值/影响力指数 |
head_img | string | 头像 |
one_liner | string | 简介 |
people_name | string | 人物名称 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"page":1, "page_size":100,"rank_type":"heat" }' https://api.rootdata.com/open/leading_figures_on_crypto_x
请求成功示例
{ "data": { "total": 1000, "items": [ { "people_id": 13994, "score": "86", "head_img": "https://public.rootdata.com/images/b12/1676887718722.jpg", "one_liner": "", "people_name": "Jieyi Long" }, { "people_id": 13185, "score": "66", "head_img": "https://public.rootdata.com/images/b12/1669175527817.jpg", "one_liner": "", "people_name": "Katie Biber" } ] }, "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
11. 人物职位动态(Pro)
- URL: https://api.rootdata.com/open/job_changes
- Method: POST
- 描述: 人物职位动态,消耗5 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
recent_joinees | boolean | true | 近期入职 |
recent_resignations | boolean | true | 近期离职 |
响应字段
参数 | Type | 描述 |
---|---|---|
recent_joinees | array | 近期入职 |
recent_joinees | array | 近期入职 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"recent_joinees":true, "recent_resignations":true }' https://api.rootdata.com/open/job_changes
请求成功示例
{ "data": { "recent_resignations": [ { "people_id": 17262, "head_img": "https://public.rootdata.com/images/b6/1702801244037.jpg", "company": "Kraken", "people_name": "Curtis Ting", "position": "VP & Head of Global Operations" } ], "recent_joinees": [ { "people_id": 17316, "head_img": "https://public.rootdata.xyz/images/b35/1717668332921.jpg", "company": "HTX", "people_name": "Test", "position": "CTO" } ] }, "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
12. 近期发币项目(Pro)
- URL: https://api.rootdata.com/open/new_tokens
- Method: POST
- 描述: 近三个月发币的项目,消耗20 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
暂无数据 |
响应字段
参数 | Type | 描述 |
---|---|---|
project_id | long | 项目ID |
project_name | string | 项目名称 |
logo | string | 项目Logo |
one_liner | string | 简介 |
token_symbol | string | 代币符号 |
hap_date | string | 日期 |
market_cap | string | 流通市值 |
fully_diluted_market_cap | string | 完全稀释市值 |
exchanges | string | 交易所 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" https://api.rootdata.com/open/new_tokens
请求成功示例
{ "data": [ { "fully_diluted_market_cap": "23372320.99", "market_cap": "0", "project_id": 12062, "one_liner": "Decentralized AI Agent Public Chain", "exchanges": "Gate.io,KCEX", "logo": "https://public.rootdata.com/images/b12/1711444046699.jpg", "hap_date": "2024-09-18", "token_symbol": "AGENT", "project_name": "AgentLayer" } ], "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
13. 生态版图(Pro)
- URL: https://api.rootdata.com/open/ecosystem_map
- Method: POST
- 描述: 生态版图,消耗 50 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
暂无数据 |
响应字段
参数 | Type | 描述 |
---|---|---|
ecosystem_id | long | 生态ID |
ecosystem_name | string | 生态名称 |
project_num | int | 项目数量 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" https://api.rootdata.com/open/open/ecosystem_map
请求成功示例
{ "data": [ { "ecosystem_name": "Ethereum", "ecosystem_id": 52, "project_num": 2158 } ], "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
14. 标签版图(Pro)
- URL: https://api.rootdata.com/open/tag_map
- Method: POST
- 描述: 标签版图,消耗 50 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
暂无数据 |
响应字段
参数 | Type | 描述 |
---|---|---|
tag_id | long | 标签ID |
tag_name | string | 标签名称 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" https://api.rootdata.com/open/open/tag_map
请求成功示例
{ "data": [ { "tag_name": "Bug Bounty", "tag_id": 52 } ], "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
15. 根据生态获取项目(Pro)
- URL: https://api.rootdata.com/open/projects_by_ecosystems
- Method: POST
- 描述: 根据生态获取项目,消耗 20 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
ecosystem_ids | string | true | 生态ID,多个生态逗号分隔 |
响应字段
参数 | Type | 描述 |
---|---|---|
project_id | long | 项目ID |
project_name | string | 项目名称 |
logo | string | 项目Logo |
one_liner | string | 简介 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"ecosystem_ids":"52,54"}' https://api.rootdata.com/open/projects_by_ecosystems
请求成功示例
{ "data": [ { "project_id": 2297, "one_liner": "Crypto bug bounty platform", "logo": "https://public.rootdata.com/images/b26/1666654548967.jpg", "project_name": "Immunefi" } ], "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
16. 根据标签获取项目(Pro)
- URL: https://api.rootdata.com/open/projects_by_tags
- Method: POST
- 描述: 根据标签获取项目,消耗 20 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
tag_ids | string | true | 标签ID,多个生态逗号分隔 |
响应字段
参数 | Type | 描述 |
---|---|---|
project_id | long | 项目ID |
project_name | string | 项目名称 |
logo | string | 项目Logo |
one_liner | string | 简介 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"tag_ids":"100,101"}' https://api.rootdata.com/open/projects_by_tags
请求成功示例
{ "data": [ { "project_id": 2297, "one_liner": "Crypto bug bounty platform", "logo": "https://public.rootdata.com/images/b26/1666654548967.jpg", "project_name": "Immunefi" } ], "result": 200 }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
17. 流入流出交易所代币(Pro)
- URL: https://api.rootdata.com/open/cex_token_top10
- Method: POST
- 描述: 流入流出交易所代币,消耗 10 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
暂无数据 |
响应字段
参数 | Type | 描述 |
---|---|---|
inflow_1h | array | 近1h流入 |
inflow_24h | array | 近24h流入 |
inflow_7d | array | 近7d流入 |
net_inflow_1h | array | 近1h净流入 |
net_inflow_24h | array | 近24h净流入 |
net_inflow_7d | array | 近7d净流入 |
outflow_1h | array | 近1h流出 |
outflow_24h | array | 近24h流出 |
outflow_7d | array | 近7d流出 |
net_outflow_1h | array | 近1h净流出 |
net_outflow_24h | array | 近24h净流出 |
net_outflow_7d | array | 近7d净流出 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" https://api.rootdata.com/open/cex_token_top10
请求成功示例
{ "result": 0, "data": { "inflow_1h": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ], "inflow_24h": [ [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ] ], "inflow_7d": [ [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ] ], "net_inflow_1h": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ], "net_inflow_24h": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ], "net_inflow_7d": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ], "outflow_1h": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ], "outflow_24h": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ], "outflow_7d": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ], "net_outflow_1h": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ], "net_outflow_24h": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ], "net_outflow_7d": [ { "token_symbol": "string", "logo": "string", "num": 0, "usd": 0 } ] } }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
18. 实体地址资金流向(Pro)
- URL: https://api.rootdata.com/open/get_cex
- Method: POST
- 描述: 实体地址资金流向,消耗 10 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
page | int | false | 页码,默认1 |
page_size | int | false | 每页条数,默认10,最大25 |
action | string | false | inflow:流入;outflow:流出 |
group | string | false | venture or exchange |
响应字段
参数 | Type | 描述 |
---|---|---|
block_time | long | 交易时间戳 |
tx | string | 交易哈希 |
from_address | string | 交易发送地址 |
to_address | string | 交易接收地址 |
chain_name | string | 链名 |
token_address | string | token地址 |
token_symbol | string | 代币 |
token_price | string | 代币价格 |
token_amount | string | 代币数量 |
token_usd_value | string | 总值 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" -d '{"action":"inflow"}' https://api.rootdata.com/open/get_cex
请求成功示例
{ "result": 0, "data": { "total": 0, "items": [ { "block_time": 0, "tx": "string", "from_address": "string", "to_address": "string", "chain_name": "string", "token_address": "string", "token_symbol": "string", "token_price": "string", "token_amount": "string", "token_usd_value": "string" } ] } }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
19. 实体持仓(Pro)
- URL: https://api.rootdata.com/open/get_group_holde
- Method: POST
- 描述: 获取持仓金额超过100万USD的实体持仓,消耗 20 credits/次
- 支持的版本: Pro
请求头
参数 | Type | Required | 描述 |
---|---|---|---|
apikey | string | true | 您申请的APIKEY |
language | string | false | 所需的语言版本(例如:'en'表示英文,'cn'表示中文,默认为'en') |
请求参数
参数 | Type | Required | 描述 |
---|---|---|---|
暂无数据 |
响应字段
参数 | Type | 描述 |
---|---|---|
group_name | string | 实体名称 |
logo | string | logo |
total_usd | string | 持仓总额 |
description | string | 描述 |
holdings | array | 持仓 |
请求示例
curl -X POST -H "apikey: Your APIKEY" -H "language: en" -H "Content-Type: application/json" https://api.rootdata.com/open/get_group_holde
请求成功示例
{ "result": 0, "data": [ { "group_name": "string", "logo": "string", "total_usd": "string", "description": "string", "holdings": [ { "token_address": "string", "token_price": "string", "token_percent_change_24h": "string", "chain_name": "string", "chain_logo_url": "string", "token_symbol": "string", "logo": "string", "token_amount": "string", "total_usd": "string" } ] } ] }
请求失败示例
{ "data": {}, "result": 404, "message": "error message" }
错误处理
- 110 Authentication Failed: 鉴权失败
- 400 Bad Request: 请求参数无效或缺失
- 403 Forbidden: 访问被拒绝,剩余credits不足
- 404 Not Found: 未找到匹配的信息
- 410 High visit frequency: 您的访问频次过高,请等待一分钟后重置
- 500 Internal Server Error: 服务器内部错误
认证与访问限制
此 API 需要申请,不可以直接访问。每个 API Key 每分钟的请求限制为 30 次。