Company Investors
Introduction
Returns the investors that have funded a single company, aggregated across all of its funding rounds (M&A buyers are excluded). Each row is an investor with a participation summary - how many rounds they took part in, whether they ever led a round, and the date span of their involvement. Use it to build a company's cap-table view or backer list, or as a jumping-off point into each investor's own profile via /investors/{id}.
Set up
Endpoint
GET https://multiples.vc/api/private/v1/companies/{id}/investors
Request - {id} is the company UUID (the id returned by /companies or resolved via /companies/resolve). Results are paginated with the query parameters below and ordered by rounds_participated (most rounds first).
|
param |
in |
type |
description |
|---|---|---|---|
|
|
path |
uuid |
The company whose investors to list. Required. |
|
|
query |
integer |
1-indexed page number (offset pagination). Default |
|
|
query |
integer |
Page size. Default |
All investors (first page, default page size):
GET /companies/9e544d7f-c3a7-483b-b29d-e559f3b062dc/investors
A specific page with a smaller page size:
GET /companies/9e544d7f-c3a7-483b-b29d-e559f3b062dc/investors?page=1&limit=5
Response - a data array of investor references, each annotated with this company's funding-round participation, plus pagination meta.
{
"data": [
{
"id": "31166f62-2e81-4f84-981b-dff7f650574c",
"name": "Allianz Capital",
"short_name": "Allianz Capital",
"country": "DEU",
"website": "http://allianzcapitalpartners.com",
"rounds_participated": 1,
"is_lead_any_round": false,
"first_round_date": "2019-03-27",
"last_round_date": "2019-03-27"
},
{
"id": "6a9ff4b3-5dcd-4840-ba47-fc05e9e119f9",
"name": "OMERS Infrastructure",
"short_name": "OMERS Infrastructure",
"country": "CAN",
"website": "https://www.omersinfrastructure.com/",
"rounds_participated": 1,
"is_lead_any_round": true,
"first_round_date": "2019-03-27",
"last_round_date": "2019-03-27"
},
{
"id": "aade62b0-f30b-4108-ac5b-5d1e87fd46e8",
"name": "AXA Investment Managers",
"short_name": "AXA Investment Managers",
"country": "FRA",
"website": "https://www.axa-im.com",
"rounds_participated": 1,
"is_lead_any_round": false,
"first_round_date": "2019-03-27",
"last_round_date": "2019-03-27"
}
],
"meta": {
"page": 1,
"limit": 3,
"returned": 3,
"total": 3,
"has_more": false
}
}
Fields
Investor (data[])
|
field |
type |
description |
|---|---|---|
|
|
uuid |
Investor's company ID. Pass to |
|
|
string | null |
Investor display name. |
|
|
string | null |
Shortened display name. |
|
|
string | null |
Investor website URL. |
|
|
string | null |
ISO 3166-1 alpha-3 country code. |
|
|
integer |
Number of funding rounds this investor took part in for this company. |
|
|
boolean |
|
|
|
string (date) | null |
Date of the investor's earliest round in this company ( |
|
|
string (date) | null |
Date of the investor's most recent round in this company ( |
Pagination (meta)
|
field |
type |
description |
|---|---|---|
|
|
integer |
1-indexed page number echoed back. |
|
|
integer |
Page size used. |
|
|
integer |
Rows in this response. |
|
|
integer |
Total investors matching the query. |
|
|
boolean |
|

