Investor List 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/list
HEADER: x-api-key: <YOUR_API_KEY>

Parameters

No parameters required.

Response

{
   status": true,
    "data": [
        {
            "investorId": "0x-community-dao",
            "investorName": "0xDAO",
            "website": "https://www.coinbase.com/ventures,https://x.com/0xcommunitydao",
            "latestFundingDate": "2021-08-10T00:00:00Z"
        },
        {
            "investorId": "0xfoobar",
            "investorName": "0xfoobar",
            "website": "https://x.com/0xfoobar",
            "latestFundingDate": "2023-11-20T00: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

Last updated