Skip to main content
GET
/
v1
/
fundraising
/
investors
/
{investorId}
Investors
curl --request GET \
  --url https://api.tokenomist.ai/v1/fundraising/investors/{investorId} \
  --header 'x-api-key: <api-key>'
{
  "metadata": {
    "queryDate": "2026-01-08T10:13:58Z"
  },
  "status": true,
  "data": {
    "investorId": "andreessen-horowitz",
    "investorName": "Andreessen Horowitz (a16z)",
    "website": "https://a16z.com/,https://twitter.com/a16zcrypto",
    "fundingRounds": [
      {
        "tokenId": "apecoin",
        "roundName": "Seed Round",
        "isLeadInvestor": true,
        "fundingDate": "2022-03-22T00:00:00Z",
        "totalAmountRaisedinThatRound": 450000000,
        "valuation": 4000000000,
        "pricePerToken": 123
      }
    ]
  }
}
Fundraising data per investor. Including funding date, round, amount raised, valuation and price per token.

Authorizations

x-api-key
string
header
required

Your Tokenomist API key

Path Parameters

investorId
string
required

Investor identifier. Get from Investor List API.

Query Parameters

isLeadInvestor
boolean

Show only rounds that are led by this investor

fundingDateMin
string<date>

Start date for time filtering (YYYY-MM-DD). Defaults to earliest available date.

fundingDateMax
string<date>

End date for time filtering (YYYY-MM-DD). Defaults to furthest available date.

raisedAmountMin
number

Minimum amount raised for filtering

raisedAmountMax
number

Maximum amount raised for filtering

Response

200 - application/json

Successful response

metadata
object
status
boolean
data
object