cURL
curl --request GET \
--url https://www.leadsontrees.com/api/v1/funding \
--header 'x-lot-api-key: <api-key>'import requests
url = "https://www.leadsontrees.com/api/v1/funding"
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/funding', 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/funding",
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/funding"
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/funding")
.header("x-lot-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.leadsontrees.com/api/v1/funding")
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": {
"category": [
"<string>"
],
"round": [
"<string>"
],
"amount": 123,
"date_from": "2023-12-25",
"date_to": "2023-12-25"
},
"response": {
"data": [
{
"company_name": "TechCorp Inc",
"round_type": "Series B",
"funding_amount": 300000000,
"currency": "EUR",
"investors": [
{
"name": "Sample Ventures",
"linkedin_url": "https://www.linkedin.com/company/sample-ventures"
}
],
"name_path": "techcorp-inc",
"ceo": "Jane Smith",
"company_info": {
"name": "TechCorp Inc",
"description": "TechCorp Inc is a leading technology company specializing in innovative software solutions for businesses worldwide.",
"industry": "Software Technology",
"website": "https://www.techcorp.com",
"size": "1,001-5,000 employees",
"logo_url": "https://example.com/logos/techcorp.png",
"year_founded": 1994,
"hq_country": "United States",
"email": "[email protected]",
"phone": "<string>",
"keywords": [
"cloud computing",
"artificial intelligence",
"data analytics"
],
"specialities": [
"<string>"
],
"categories": [
"Software",
"Technology",
"SaaS"
],
"company_interested_in": [
"Software development",
"AI technology",
"Cloud services"
]
},
"historical_headcount": [
{
"date": "2024-12-05T12:48:23",
"headcount": 358,
"growth": -0.28
}
],
"growth_info": {
"growth_1m": -0.28,
"growth_3m": -0.56,
"growth_6m": -1.93,
"growth_9m": -4.81,
"growth_12m": -4.3
},
"contact_info": [
{
"employees": [
{
"name": "John Anderson",
"title": "Head of Engineering",
"linkedin_url": "https://www.linkedin.com/in/john-anderson",
"email": "[email protected]",
"phone": "<string>",
"date_started": "2025-07-01T11:19:19"
}
],
"company_linkedin_url": "https://www.linkedin.com/company/techcorp",
"company_twitter_url": "https://twitter.com/TechCorpInc",
"company_facebook_url": "https://www.facebook.com/TechCorpInc"
}
],
"main_category": "Technology",
"date_seen": "2025-07-05T07:03:37.906000"
}
]
}
}{
"code": 123,
"message": "<string>"
}{
"code": 429,
"message": "Rate limit exceeded. Maximum 60 requests per minute."
}Endpoint Examples
Get Fundings
Retrieve advanced & real-time funding data, sorted by recency
GET
/
funding
cURL
curl --request GET \
--url https://www.leadsontrees.com/api/v1/funding \
--header 'x-lot-api-key: <api-key>'import requests
url = "https://www.leadsontrees.com/api/v1/funding"
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/funding', 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/funding",
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/funding"
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/funding")
.header("x-lot-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.leadsontrees.com/api/v1/funding")
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": {
"category": [
"<string>"
],
"round": [
"<string>"
],
"amount": 123,
"date_from": "2023-12-25",
"date_to": "2023-12-25"
},
"response": {
"data": [
{
"company_name": "TechCorp Inc",
"round_type": "Series B",
"funding_amount": 300000000,
"currency": "EUR",
"investors": [
{
"name": "Sample Ventures",
"linkedin_url": "https://www.linkedin.com/company/sample-ventures"
}
],
"name_path": "techcorp-inc",
"ceo": "Jane Smith",
"company_info": {
"name": "TechCorp Inc",
"description": "TechCorp Inc is a leading technology company specializing in innovative software solutions for businesses worldwide.",
"industry": "Software Technology",
"website": "https://www.techcorp.com",
"size": "1,001-5,000 employees",
"logo_url": "https://example.com/logos/techcorp.png",
"year_founded": 1994,
"hq_country": "United States",
"email": "[email protected]",
"phone": "<string>",
"keywords": [
"cloud computing",
"artificial intelligence",
"data analytics"
],
"specialities": [
"<string>"
],
"categories": [
"Software",
"Technology",
"SaaS"
],
"company_interested_in": [
"Software development",
"AI technology",
"Cloud services"
]
},
"historical_headcount": [
{
"date": "2024-12-05T12:48:23",
"headcount": 358,
"growth": -0.28
}
],
"growth_info": {
"growth_1m": -0.28,
"growth_3m": -0.56,
"growth_6m": -1.93,
"growth_9m": -4.81,
"growth_12m": -4.3
},
"contact_info": [
{
"employees": [
{
"name": "John Anderson",
"title": "Head of Engineering",
"linkedin_url": "https://www.linkedin.com/in/john-anderson",
"email": "[email protected]",
"phone": "<string>",
"date_started": "2025-07-01T11:19:19"
}
],
"company_linkedin_url": "https://www.linkedin.com/company/techcorp",
"company_twitter_url": "https://twitter.com/TechCorpInc",
"company_facebook_url": "https://www.facebook.com/TechCorpInc"
}
],
"main_category": "Technology",
"date_seen": "2025-07-05T07:03:37.906000"
}
]
}
}{
"code": 123,
"message": "<string>"
}{
"code": 429,
"message": "Rate limit exceeded. Maximum 60 requests per minute."
}Authorizations
API key for funding data API authentication
Query Parameters
Filter by seed round (e.g., seed, pre-seed)
Array of categories (e.g., AI, Web3)
Minimum funding amount
Required range:
x >= 0Country of the companies
Company website url
Company linkedin url
Page number
Required range:
x >= 1Start date (YYYY-MM-DD)
End date (YYYY-MM-DD)
⌘I
