Skip to main content
GET
/
vcs
cURL
curl --request GET \
  --url https://www.leadsontrees.com/api/v1/vcs \
  --header 'x-lot-api-key: <api-key>'
{
  "message": "OK",
  "params": {
    "date_from": null,
    "date_to": null,
    "page": 1,
    "vc_types": [
      "PE fund"
    ],
    "search": null,
    "ticket_size": null,
    "ticket_size_min": null,
    "ticket_size_max": null
  },
  "response": {
    "data": [
      {
        "id": "685b1fabdb6f6d678de6ef74",
        "name": "Silver Lake Partners",
        "vc_type": "PE fund",
        "countries": [
          "USA"
        ],
        "hq_address": "",
        "ticket_size_min": 100000000,
        "ticket_size_max": 2500000000,
        "contacts": {
          "linkedin": "https://www.linkedin.com/company/silver-lake-partners/",
          "twitter": "",
          "website": "https://www.silverlake.com"
        }
      }
    ]
  }
}

Authorizations

x-lot-api-key
string
header
required

API key for Investors API authentication

Query Parameters

ticket_size
integer

Exact ticket size to match (mutually exclusive with min/max)

Required range: x >= 0
vc_types
string[]

Filter by investor types

country
string

Country of the investor

Free-text search across VC names and countries

ticket_size_min
integer

Minimum ticket size

Required range: x >= 0
ticket_size_max
integer

Maximum ticket size

Required range: x >= 0
page
integer

Page number

Required range: x >= 1
date_from
string<date>

Start date (YYYY-MM-DD)

date_to
string<date>

End date for updated records (YYYY-MM-DD)

Response

VC investors response

message
string
required
Example:

"OK"

params
object
required
response
object
required