Install
openclaw skills install rootdata-cryptoQuery crypto project details, Web3 investor info, funding rounds, trending projects, and personnel job changes from RootData. Use this skill when the user as...
openclaw skills install rootdata-cryptoRootData is a leading Web3 data platform covering crypto projects, investors, funding data, and personnel movements.
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.
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": "<search keyword>",
"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 RootDataWhen 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 nameWhen 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": <numeric 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 linkWhen 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": <optional, filter by specific project>,
"start_time": "<optional, format: yyyy-MM-dd or yyyy-MM, e.g. 2025-01-01>",
"end_time": "<optional, format: yyyy-MM-dd or yyyy-MM, e.g. 2026-03-30>",
"min_amount": <optional, minimum funding amount in USD>,
"max_amount": <optional, maximum funding amount in USD>
}
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 namelogo — project logorounds — round type (Seed / Series A / Series B / etc.)published_time — announcement dateamount — funding amount (USD)project_id — project IDdata_status — data verification statussource_url — original news source linkX — project's X (Twitter) URLone_liner — project brief descriptioninvests — list of investors (max 3), each with:
name — investor namelogo — investor logolead_investor — whether lead investor (1=yes, 0=no)type — 1=Project, 2=Institution, 3=Personinvest_id — investor IDrootdataurl — investor detail pageNote: The valuation field has been removed from the response.
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 linkWhen 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 IDpeople_name — person's namehead_img — person's profile photocompany_type — 1=Project, 2=Institution, 3=Personcompany_id — company/project/institution IDcompany — company/project nameposition — job title/positionrecent_resignations — array of recent departures (max 20), same structure as above
Example use cases:
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.
Retry-After response header, then retryX-RateLimit-Remaining header to monitor remaining quota in current minute200 — Success400 — Bad Request (invalid parameters)401 — Invalid API key404 — Not Found (entity does not exist)429 — Rate limit exceeded500 — Internal Server ErrorROOTDATA_SKILL_KEY before making any requestsX-RateLimit-Remaining header to avoid hitting limitsresult field in response (200 = success)/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)