$npx -y skills add tokenomist-ai/tokenomist-cli --skill tokenomist-fundraising-lookupLook up fundraising rounds, investors, and valuation data for tokens. Use when finding who invested, at what valuation, or analyzing investor portfolios.
| 1 | # Skill: Fundraising Lookup |
| 2 | |
| 3 | Look up fundraising rounds, investors, and valuation data for tokens. |
| 4 | |
| 5 | ## When to use |
| 6 | |
| 7 | 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. |
| 8 | |
| 9 | ## Commands |
| 10 | |
| 11 | ### Get fundraising data for a token |
| 12 | ```bash |
| 13 | tok fundraising detail <tokenId> --output json |
| 14 | ``` |
| 15 | |
| 16 | Options: |
| 17 | | Option | Description | |
| 18 | |--------|-------------| |
| 19 | | `--funding-date-min <date>` | Min funding date (YYYY-MM-DD) | |
| 20 | | `--funding-date-max <date>` | Max funding date (YYYY-MM-DD) | |
| 21 | | `--raised-amount-min <value>` | Min raised amount | |
| 22 | | `--raised-amount-max <value>` | Max raised amount | |
| 23 | |
| 24 | ```bash |
| 25 | tok fundraising detail uniswap --output json |
| 26 | tok fundraising detail uniswap --funding-date-min 2020-01-01 --funding-date-max 2024-12-31 --raised-amount-min 1000000 --output json |
| 27 | ``` |
| 28 | |
| 29 | ### List all investors |
| 30 | ```bash |
| 31 | tok investor list --output json |
| 32 | ``` |
| 33 | |
| 34 | Options: |
| 35 | | Option | Description | |
| 36 | |--------|-------------| |
| 37 | | `--start-latest-funding-date <date>` | Start date filter for latest funding (YYYY-MM-DD) | |
| 38 | | `--end-latest-funding-date <date>` | End date filter for latest funding (YYYY-MM-DD) | |
| 39 | | `--page <number>` | Page number | |
| 40 | | `--page-size <number>` | Items per page | |
| 41 | |
| 42 | ```bash |
| 43 | tok investor list --start-latest-funding-date 2023-01-01 --end-latest-funding-date 2024-01-01 --output json |
| 44 | ``` |
| 45 | |
| 46 | ### Get investor detail with portfolio |
| 47 | ```bash |
| 48 | tok investor detail <investorId> --output json |
| 49 | ``` |
| 50 | |
| 51 | Options: |
| 52 | | Option | Description | |
| 53 | |--------|-------------| |
| 54 | | `--is-lead-investor` | Filter to rounds where investor was lead | |
| 55 | | `--funding-date-min <date>` | Min funding date (YYYY-MM-DD) | |
| 56 | | `--funding-date-max <date>` | Max funding date (YYYY-MM-DD) | |
| 57 | | `--raised-amount-min <value>` | Min raised amount | |
| 58 | | `--raised-amount-max <value>` | Max raised amount | |
| 59 | |
| 60 | ```bash |
| 61 | tok investor detail andreessen-horowitz --is-lead-investor --output json |
| 62 | tok investor detail andreessen-horowitz --funding-date-min 2023-01-01 --raised-amount-min 5000000 --output json |
| 63 | ``` |
| 64 | |
| 65 | ## Key output fields |
| 66 | |
| 67 | **Token fundraising:** |
| 68 | - `totalAmountRaised` — total USD raised across all rounds |
| 69 | - `investorReleasedPercentage` — how much investor allocation has unlocked |
| 70 | - `fundingRounds[].fundingRound` — round name (Seed, Series A, etc.) |
| 71 | - `fundingRounds[].amountRaised` — USD raised in that round |
| 72 | - `fundingRounds[].valuation` — token valuation at that round |
| 73 | - `fundingRounds[].pricePerToken` — price investors paid |
| 74 | - `fundingRounds[].investors` — list of investors in the round |
| 75 | |
| 76 | **Investor detail:** |
| 77 | - `fundingRounds[].tokenId` — which token they invested in |
| 78 | - `fundingRounds[].isLeadInvestor` — whether they led the round |
| 79 | - `fundingRounds[].totalAmountRaisedinThatRound` — round size |
| 80 | |
| 81 | ## Analysis workflow |
| 82 | |
| 83 | 1. Look up a token: `tok fundraising detail <id> --output json` |
| 84 | 2. Compare `pricePerToken` across rounds to see valuation progression |
| 85 | 3. Check `investorReleasedPercentage` — high % means most investor tokens are already unlocked (less future sell pressure) |
| 86 | 4. Look at individual investors: `tok investor detail <id> --output json` to see their full portfolio |
| 87 | |
| 88 | ## Domain Context |
| 89 | |
| 90 | - `pricePerToken` in early rounds vs current market price shows investor ROI — large multiples may indicate sell pressure as investors take profits. |
| 91 | - `investorReleasedPercentage` indicates future sell pressure — a high percentage means most investor tokens have already unlocked (less remaining overhang). |
| 92 | - Valuation at each round shows the project's funding trajectory. |
| 93 | |
| 94 | ## Workflow |
| 95 | |
| 96 | - Chain with `tok investor detail <investorId>` to see an investor's full portfolio across multiple tokens. |
| 97 | - Cross-reference `pricePerToken` with current market data from `tok token list` to calculate investor ROI. |
| 98 | - Use `tok unlock events <id>` to see when remaining investor allocations will unlock. |