Investor Co-investors

Introduction

Returns the other investors that a given investor has co-invested with - that is, the firms that have appeared in the same deals. Each row is a minimal investor reference plus a count of shared deals and the first and last dates on which both investors participated together. Use it to map an investor's syndicate, surface frequent collaborators, or rank co-investment relationships by recency and volume.

Set up

Endpoint

GET https://multiples.vc/api/private/v1/investors/{id}/co_investors

Request - the investor id is a path parameter. Pagination is controlled by the page and limit query parameters; results are ordered by shared-deal volume (most shared deals first).

field

type

description

id

string (uuid)

Path parameter. The investor whose co-investors you want. Required.

page

integer

1-indexed page number (offset pagination). Default 1, minimum 1.

limit

integer

Page size. Default 100, maximum 1000.

All / minimal call - first page of co-investors for an investor:

GET /api/private/v1/investors/9918f9bb-0d74-434d-9029-a44cbee87637/co_investors

Paged call - second page, 50 rows per page:

GET /api/private/v1/investors/9918f9bb-0d74-434d-9029-a44cbee87637/co_investors?page=2&limit=50

Response - a data array of co-investors with shared-deal stats, plus a meta pagination block.

{
  "data": [
    {
      "id": "8433767b-a7ba-48a0-b509-49131878380b",
      "name": "Andreessen Horowitz",
      "short_name": "Andreessen Horowitz",
      "website": "http://www.a16z.com",
      "country": "USA",
      "shared_deals": 93,
      "first_shared_date": "2013-09-12",
      "last_shared_date": "2026-02-17"
    },
    {
      "id": "9bb61098-8ecf-4af2-ba5d-92126ea73faa",
      "name": "Lightspeed Venture Partners",
      "short_name": "Lightspeed Venture Partners",
      "website": "http://lsvp.com",
      "country": "USA",
      "shared_deals": 84,
      "first_shared_date": "2013-02-05",
      "last_shared_date": "2026-04-26"
    },
    {
      "id": "30b551ba-b70d-454a-978d-ea872df9a935",
      "name": "Y Combinator",
      "short_name": "Y Combinator",
      "website": "http://www.ycombinator.com",
      "country": "USA",
      "shared_deals": 77,
      "first_shared_date": "2014-03-25",
      "last_shared_date": "2025-12-02"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 3,
    "returned": 3,
    "total": 2672,
    "has_more": true
  }
}

Fields

Each item in data is a minimal investor reference plus shared-deal statistics.

Investor reference

field

type

description

id

string (uuid)

The co-investor's unique identifier.

name

string | null

Investor display name.

short_name

string | null

Short / display name.

website

string

Investor website URL. May be null.

country

string

ISO 3166-1 alpha-3 country code. May be null.

Shared deal activity

field

type

description

shared_deals

integer

Number of deals both investors participated in.

first_shared_date

string (date)

Date of the earliest deal the two investors shared. May be null.

last_shared_date

string (date)

Date of the most recent deal the two investors shared. May be null.

meta (pagination)

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 co-investors matching the query.

has_more

boolean

True when further pages remain.