RootData Crypto
by @rdquanyu
Query crypto project details, Web3 investor info, funding rounds, trending projects, and personnel job changes from RootData. Use this skill when the user as...
clawhub install rootdata-cryptoπ About This Skill
name: "rootdata-crypto" version: "1.0.3" description: "Query crypto project details, Web3 investor info, funding rounds, trending projects, and personnel job changes from RootData. Use this skill when the user asks about blockchain projects, crypto investors, Web3 funding history, investment rounds, trending crypto projects, or personnel movements in the crypto industry." tags: ["crypto", "web3", "blockchain", "investors", "funding", "projects", "defi", "personnel", "jobs"] requires: env: - ROOTDATA_SKILL_KEY
RootData Crypto Intelligence
RootData is a leading Web3 data platform covering crypto projects, investors, funding data, and personnel movements.
First-Time Setup
Check if environment variable ROOTDATA_SKILL_KEY exists.
If it does NOT exist, call:
POST https://api.rootdata.com/open/skill/init
Content-Type: application/json
Body: {}
Save the returned api_key as environment variable ROOTDATA_SKILL_KEY.
Confirm to user: "RootData access is ready. You can now query crypto data."
All requests below must include these headers:
Authorization: Bearer {ROOTDATA_SKILL_KEY}
Content-Type: application/json
Security note: The API key generated by /skill/init is an anonymous, low-privilege key used solely to call RootData's public data endpoints. It will be stored by your agent as a local environment variable (ROOTDATA_SKILL_KEY). This key has no access to any personal account data. You can revoke it at any time by contacting RootData support.
Skill 1: Search
When to use: User wants to search for a crypto project, investor institution, or person by name keyword.
Request:
POST https://api.rootdata.com/open/skill/ser_inv
Body:
{
"query": "",
"precise_x_search": false
}
Key response fields:
id β entity ID (use this for follow-up queries)type β 1=Project, 2=Investor/Institution, 3=Personname β display nameone_liner β brief descriptionintroduce β full descriptionrootdataurl β link to full detail page on RootDataSkill 2: Get All IDs by Type
When to use: User asks for a complete list of all project IDs, institution IDs, or person IDs.
Request:
POST https://api.rootdata.com/open/skill/id_map
Body:
{
"type": <1=Project | 2=Institution | 3=Person>
}
Key response fields:
id β entity IDname β entity nameSkill 3: Project Detail
When to use: User asks for detailed information about a specific crypto project (by project ID or contract address).
Request:
POST https://api.rootdata.com/open/skill/get_item
Body:
{
"project_id": ,
"include_investors": true
}
Or query by contract address:
{
"contract_address": "<0x...>",
"include_investors": true
}
Key response fields:
project_id, project_name, logo, token_symbolone_liner, descriptionactive β whether the project is still activeestablishment_date β founding datetags β category tags (e.g. DeFi, Layer2, NFT)contracts β on-chain contract addressestotal_funding β total funding raised (USD)social_media β website, X(Twitter), GitHub, CoinMarketCap, CoinGecko, etc.investors β list of investors (only when include_investors=true)similar_project β similar projects in same categoryrootdataurl β RootData detail page linkSkill 4: Funding Rounds
When to use: User asks about funding history, investment rounds, "how much did XX raise", or "who invested in XX".
Data range: Covers funding rounds from the past 365 days only. If user requests data older than one year, the API will automatically return only the most recent 365 days of data.
Investor limit: Each funding round returns a maximum of 3 investors (prioritized by lead investors first).
Request:
POST https://api.rootdata.com/open/skill/get_fac
Body:
{
"page": 1,
"page_size": 20,
"project_id": ,
"start_time": "",
"end_time": "",
"min_amount": ,
"max_amount":
}
All fields are optional. Omit any field not specified by the user.
Key response fields:
total β total number of matching recordsitems β list of funding rounds, each containing:name β project name
- logo β project logo
- rounds β round type (Seed / Series A / Series B / etc.)
- published_time β announcement date
- amount β funding amount (USD)
- project_id β project ID
- data_status β data verification status
- source_url β original news source link
- X β project's X (Twitter) URL
- one_liner β project brief description
- invests β list of investors (max 3), each with:
- name β investor name
- logo β investor logo
- lead_investor β whether lead investor (1=yes, 0=no)
- type β 1=Project, 2=Institution, 3=Person
- invest_id β investor ID
- rootdataurl β investor detail pageNote: The valuation field has been removed from the response.
Skill 5: Trending Projects
When to use: User asks "what's hot in crypto today", "trending projects", "top projects this week", or similar.
Request:
POST https://api.rootdata.com/open/skill/hot_index
Body:
{
"days": <1 = today's trending | 7 = this week's trending>
}
Key response fields:
rank β ranking positionproject_id, project_name, logo, token_symbolone_liner β brief descriptiontags β category tagsX β Twitter/X profile URLrootdataurl β RootData detail page linkSkill 6: Personnel Job Changes
When to use: User asks about recent job changes in crypto, "who joined which project", "who left which company", personnel movements, or executive changes in the Web3 industry.
Data limit: Returns a maximum of 20 recent entries for each category (joinees and resignations).
Request:
POST https://api.rootdata.com/open/skill/job_changes
Body:
{
"recent_joinees": true,
"recent_resignations": true
}
Parameters:
recent_joinees β set to true to get recent hires/joinersrecent_resignations β set to true to get recent departures/resignationstrue simultaneously to get both types of datafalse or omitted, returns empty dataKey response fields:
recent_joinees β array of recent hires (max 20), each containing:people_id β person ID
- people_name β person's name
- head_img β person's profile photo
- company_type β 1=Project, 2=Institution, 3=Person
- company_id β company/project/institution ID
- company β company/project name
- position β job title/positionrecent_resignations β array of recent departures (max 20), same structure as aboveExample use cases:
Multi-Language Support
Add header language: cn for Chinese responses, or language: en for English (default).
All name fields, descriptions, and position titles will be returned in the requested language.
Rate Limits
Retry-After response header, then retryX-RateLimit-Remaining header to monitor remaining quota in current minuteError Codes
200 β Success400 β Bad Request (invalid parameters)401 β Invalid API key404 β Not Found (entity does not exist)429 β Rate limit exceeded500 β Internal Server ErrorBest Practices
1. Always initialize first: Check for ROOTDATA_SKILL_KEY before making any requests
2. Cache results: Responses are cached for 5-10 minutes, repeated queries will be faster
3. Use specific queries: More specific search keywords yield better results
4. Follow rate limits: Monitor X-RateLimit-Remaining header to avoid hitting limits
5. Handle errors gracefully: Check result field in response (200 = success)
6. Provide context: When showing funding data, mention it covers the past 365 days only
7. Investor limit: When showing funding rounds, note that only top 3 investors are displayed per round
Version History
v1.0.3 (2026-03-30)
/get_fac now returns only past 365 days of funding data (previously from 2018)/get_fac now returns max 3 investors per funding round (previously unlimited)valuation field from /get_fac response/job_changes endpoint for personnel movements (max 20 entries per category)v1.0.2
π Tips & Best Practices
1. Always initialize first: Check for ROOTDATA_SKILL_KEY before making any requests
2. Cache results: Responses are cached for 5-10 minutes, repeated queries will be faster
3. Use specific queries: More specific search keywords yield better results
4. Follow rate limits: Monitor X-RateLimit-Remaining header to avoid hitting limits
5. Handle errors gracefully: Check result field in response (200 = success)
6. Provide context: When showing funding data, mention it covers the past 365 days only
7. Investor limit: When showing funding rounds, note that only top 3 investors are displayed per round