Skip to main content
GET
/
v1
/
fundraising
/
investors
/
{investorId}
curl -X 'GET' \
  'https://api.unlocks.app/v1/fundraising/investors/andreessen-horowitz' \
  -H 'x-api-key: $YOUR_API_KEY'
{
    "metadata": {
        "queryDate": "2026-01-08T10:24:34Z"
    },
    "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": null
            },
            {
                "tokenId": "aptos",
                "roundName": "Series A",
                "isLeadInvestor": false,
                "fundingDate": "2022-07-25T00:00:00Z",
                "totalAmountRaisedinThatRound": 150000000,
                "valuation": 2000000000,
                "pricePerToken": null
            }
        ]
    }
}
Fundraising data per investor. Including funding date, round, amount raised, valuation and price per token.

Path Parameters

investorId
string
required
Investor identifier. Get investorId from Investor List API

Query Parameters

isLeadInvestor
boolean
Show only rounds that are led by this investor
fundingDateMin
string
The start date for time filtering in the format YYYY-MM-DD. Defaults to the earliest available date.
fundingDateMax
string
The end date for time filtering in the format YYYY-MM-DD. Defaults is the furthest available date.
raisedAmountMin
number
The minimum amount raised for filtering
raisedAmountMax
number
The maximum amount raised for filtering

Response

metadata
object
status
boolean
Request status
data
object
curl -X 'GET' \
  'https://api.unlocks.app/v1/fundraising/investors/andreessen-horowitz' \
  -H 'x-api-key: $YOUR_API_KEY'
{
    "metadata": {
        "queryDate": "2026-01-08T10:24:34Z"
    },
    "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": null
            },
            {
                "tokenId": "aptos",
                "roundName": "Series A",
                "isLeadInvestor": false,
                "fundingDate": "2022-07-25T00:00:00Z",
                "totalAmountRaisedinThatRound": 150000000,
                "valuation": 2000000000,
                "pricePerToken": null
            }
        ]
    }
}