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>'
import requests

url = "https://www.leadsontrees.com/api/v1/vcs"

headers = {"x-lot-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-lot-api-key': '<api-key>'}};

fetch('https://www.leadsontrees.com/api/v1/vcs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://www.leadsontrees.com/api/v1/vcs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-lot-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://www.leadsontrees.com/api/v1/vcs"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-lot-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://www.leadsontrees.com/api/v1/vcs")
.header("x-lot-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://www.leadsontrees.com/api/v1/vcs")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-lot-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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"
        }
      }
    ]
  }
}
{
"code": 123,
"message": "<string>"
}
{
"code": 429,
"message": "Rate limit exceeded. Maximum 60 requests per minute."
}

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