Investors API v1

Getting Started

Base URL

https://api.unlocks.app

Authentication

Provide your api key in the x-api-key header.

GET https://api.unlocks.app/v1/fundraising/investors/{investorId}
HEADER: x-api-key: <YOUR_API_KEY>

Parameters

Note: investorId needs to be specified.

  • investorId (required): Get investorId from Investor List API

  • isLeadInvestor (optional): Show only rounds that are led by this investor

  • fundingDateMin (optional): The start date for time filtering in the format YYYY-MM-DD. Defaults to the earliest available date.

  • fundingDateMax (optional): The end date for time filtering in the format YYYY-MM-DD. Defaults is the furthest available date.

  • raisedAmountMin (optional): The minimum amount raised for filtering

  • raisedAmountMax (optional): The maximum amount raised for filtering

Example:

curl -X 'GET' \
  'https://api.unlocks.app/v1/fundraising/investors/andreessen-horowitz' \
  -H 'x-api-key: $YOUR_API_KEY'

Response

{
        "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
                
            }
        ],
        "latestFundingDate": "2025-04-18T00:00:00Z"
    }

The response includes time series data with the date (in UTC timezone).

Return Fields Explanation

Fields
Data Type
Description

investorId

string

Identifier to call for a Dataset

investorName

string

Investor Name

website

string

Link to Investor Website

latestFundingDate

timestamp

Latest Investment Activity From The Investor

Return Fields Explanation: Funding Rounds

Fields
Data Type
Description

tokenId

string

Token Id

roundName

string

Round Name

isLeadInvestor

boolean

Identifier for Lead Investor

totalAmountRaisedinThatRound

number

Total Amount Raised in That Round

valuation

number

Valuation for Funding Round

pricePerToken

number

Cost of Token for this Investor at that Round

Last updated