Company Investors
Introduction
Returns investors that have invested in a given company, aggregated across all of its funding rounds. M&A buyers / majority investors 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}/investorsRequest - {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 |
|---|---|---|---|
id | path | uuid | The company whose investors to list. Required. |
page | query | integer | 1-indexed page number (offset pagination). Default 1, minimum 1. |
limit | query | integer | Page size. Default 100, maximum 1000. |
All investors (first page, default page size):
GET /companies/9e544d7f-c3a7-483b-b29d-e559f3b062dc/investorsA specific page with a smaller page size:
GET /companies/9e544d7f-c3a7-483b-b29d-e559f3b062dc/investors?page=1&limit=5Response - 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 |
|---|---|---|
id | uuid | Investor's company ID. Pass to /investors/{id} for the full profile. |
name | string | null | Investor display name. |
short_name | string | null | Shortened display name. |
website | string | null | Investor website URL. |
country | string | null | ISO 3166-1 alpha-3 country code. |
rounds_participated | integer | Number of funding rounds this investor took part in for this company. |
is_lead_any_round | boolean | true if the investor led at least one of this company's rounds. |
first_round_date | string (date) | null | Date of the investor's earliest round in this company (YYYY-MM-DD). May be null. |
last_round_date | string (date) | null | Date of the investor's most recent round in this company (YYYY-MM-DD). May be null. |
Pagination (meta)
| field | type | description |
|---|---|---|
page | integer | 1-indexed page number echoed back. |
limit | integer | Page size used. |
returned | integer | Rows in this response. |
total | integer | Total investors matching the query. |
has_more | boolean | true when further pages remain. |