Tokenomist fundraising lookup
Skill tokenomist-ai/tokenomist-cli/skills/tokenomist-fundraising-lookup
CLI and AI agent skills for the Tokenomist crypto data API: token unlocks, vesting, emissions, allocations, fundraising, burns and buybacks.
npx -y skills add tokenomist-ai/tokenomist-cli --skill tokenomist-fundraising-lookupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 24 stars24 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Look up fundraising rounds, investors, and valuation data for tokens. Use when finding who invested, at what valuation, or analyzing investor portfolios.
SKILL.md
4.2 KB, as published. Nobody here has run it
Skill: Fundraising Lookup
Look up fundraising rounds, investors, and valuation data for tokens.
When to use
When you need to find out who invested in a token, what valuation rounds were raised at, or what an investor's portfolio looks like.
Commands
Get fundraising data for a token
tok fundraising detail <tokenId> --output json
Options:
| Option | Description |
|---|---|
--funding-date-min <date> | Min funding date (YYYY-MM-DD) |
--funding-date-max <date> | Max funding date (YYYY-MM-DD) |
--raised-amount-min <value> | Min raised amount |
--raised-amount-max <value> | Max raised amount |
tok fundraising detail uniswap --output json
tok fundraising detail uniswap --funding-date-min 2020-01-01 --funding-date-max 2024-12-31 --raised-amount-min 1000000 --output json
List all investors
tok investor list --output json
Options:
| Option | Description |
|---|---|
--start-latest-funding-date <date> | Start date filter for latest funding (YYYY-MM-DD) |
--end-latest-funding-date <date> | End date filter for latest funding (YYYY-MM-DD) |
--page <number> | Page number |
--page-size <number> | Items per page |
tok investor list --start-latest-funding-date 2023-01-01 --end-latest-funding-date 2024-01-01 --output json
Get investor detail with portfolio
tok investor detail <investorId> --output json
Options:
| Option | Description |
|---|---|
--is-lead-investor | Filter to rounds where investor was lead |
--funding-date-min <date> | Min funding date (YYYY-MM-DD) |
--funding-date-max <date> | Max funding date (YYYY-MM-DD) |
--raised-amount-min <value> | Min raised amount |
--raised-amount-max <value> | Max raised amount |
tok investor detail andreessen-horowitz --is-lead-investor --output json
tok investor detail andreessen-horowitz --funding-date-min 2023-01-01 --raised-amount-min 5000000 --output json
Key output fields
Token fundraising:
totalAmountRaised— total USD raised across all roundsinvestorReleasedPercentage— how much investor allocation has unlockedfundingRounds[].fundingRound— round name (Seed, Series A, etc.)fundingRounds[].amountRaised— USD raised in that roundfundingRounds[].valuation— token valuation at that roundfundingRounds[].pricePerToken— price investors paidfundingRounds[].investors— list of investors in the round
Investor detail:
fundingRounds[].tokenId— which token they invested infundingRounds[].isLeadInvestor— whether they led the roundfundingRounds[].totalAmountRaisedinThatRound— round size
Analysis workflow
- Look up a token:
tok fundraising detail <id> --output json - Compare
pricePerTokenacross rounds to see valuation progression - Check
investorReleasedPercentage— high % means most investor tokens are already unlocked (less future sell pressure) - Look at individual investors:
tok investor detail <id> --output jsonto see their full portfolio
Domain Context
pricePerTokenin early rounds vs current market price shows investor ROI — large multiples may indicate sell pressure as investors take profits.investorReleasedPercentageindicates future sell pressure — a high percentage means most investor tokens have already unlocked (less remaining overhang).- Valuation at each round shows the project's funding trajectory.
Workflow
- Chain with
tok investor detail <investorId>to see an investor's full portfolio across multiple tokens. - Cross-reference
pricePerTokenwith current market data fromtok token listto calculate investor ROI. - Use
tok unlock events <id>to see when remaining investor allocations will unlock.