> For the complete documentation index, see [llms.txt](https://docs.unlocks.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.unlocks.app/api-documents/api-endpoints/investor-list-api/investor-list-api-v1.md).

# Investor List API v1

## Getting Started

#### **Base URL** <a href="#base-url" id="base-url"></a>

```
https://api.unlocks.app
```

#### **Authentication** <a href="#authentication" id="authentication"></a>

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**

```json
{
    "metadata": {
        "queryDate": "2026-01-08T10:23:54Z"
    },
    "status": true,
    "data": [
        {
            "investorId": "01-advisors",
            "investorName": "01 Advisors",
            "website": "https://01a.com/,https://www.linkedin.com/company/01a/,https://x.com/01Advisors",
            "latestFundingDate": "2021-11-04T00:00:00Z"
        },
        {
            "investorId": "01-capital",
            "investorName": "01 Capital",
            "website": "https://01capital.co.uk/,https://www.linkedin.com/company/01capital/",
            "latestFundingDate": "2021-05-24T00:00:00Z"
        },
        ...
    ]
}
            
```

The response includes time series data with the date (in UTC timezone),&#x20;

**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 |
