Getting Started
LeadsOnTrees API provides real-time access to VC funding data and insights. Set up funding alerts, track startups, and integrate comprehensive funding analytics directly into your applications.
Real-time Alerts
Simple Integration
Smart Filtering
// Fetch latest VC funding data
const response = await fetch('https://www.leadsontrees.com/api/v1/funding', {
headers: {
'x-lot-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
Authentication
All API requests require authentication using an API key. Follow these steps to get started:
Include the API key in the headers of all your requests:
// Example request with authentication
fetch('https://www.leadsontrees.com/api/v1/funding', {
headers: {
'x-lot-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
});API Reference
https://www.leadsontrees.comGetting Started with the API
Our API provides comprehensive access to financial intelligence data, including venture capital funding and merger & acquisition information. Follow these steps to get started:
- Sign up for an API key on your profile page
- Include your API key in the request headers as
x-lot-api-key - Make requests to our endpoints with optional filters to narrow results
- Process the structured JSON response in your application
VC funding data is updated in real-time as new rounds are announced. M&A data is refreshed daily with comprehensive deal information.
All API endpoints are subject to a rate limit of 60 requests per minute. Contact us for enterprise plans with higher limits.
/api/v1/fundingRetrieve advanced & real-time funding data, sorted by recency.
Rate Limit
60 requests per minute
Parameters
roundOptional. Filter by seed round (e.g., seed, pre-seed)
categoryOptional. Array of categories (e.g., AI, Web3)
amountOptional. Minimum funding amount
countryOptional. Country of the companies
websiteOptional. Company website url.
linkedin_urlOptional. Company linkedin url.
pageOptional. Page number
date_fromOptional. Start date (YYYY-MM-DD)
date_toOptional. End date (YYYY-MM-DD)
Example Request
curl -X GET "https://www.leadsontrees.com/api/v1/funding?category=Healthcare" \
-H "x-lot-api-key: YOUR_API_KEY"Pagination is available. Use the page parameter to get the next page of results.
curl -X GET "https://www.leadsontrees.com/api/v1/funding?category=Healthcare&page=2" \
-H "x-lot-api-key: YOUR_API_KEY"Example Response
{
"message": "OK",
"params": {
"category": ["Healthcare"],
"round": [],
"amount": null,
"date_from": null,
"date_to": null
},
"response": {
"data": [{
"company_name": "Example Company",
"round_type": "Series B",
"funding_amount": 50000000,
"currency": "USD",
"investors": [{
"name": "Example Investor",
"linkedin_url": "https://www.linkedin.com/in/exampleinvestor"
}]
}]
}
}/api/v1/m-aAccess comprehensive mergers and acquisitions data including acquisition amount and percentage of ownership.
Rate Limit
60 requests per minute
Parameters
amountOptional. Amount the acquiring company paid for the acquisition
categoryOptional. Category of the companies
countryOptional. Country of the companies
websiteOptional. Website of the companies
linkedin_urlOptional. Linkedin url of the companies
pageOptional. Page number
date_fromOptional. Start date (YYYY-MM-DD)
date_toOptional. End date (YYYY-MM-DD)
statusOptional. Deal status (e.g., announced, completed, pending)
Example Request
curl -X GET "https://www.leadsontrees.com/api/v1/m-a?industry=Technology" \
-H "x-lot-api-key: YOUR_API_KEY"Filter by specific acquiring company and deal status:
curl -X GET "https://www.leadsontrees.com/api/v1/m-a?acquiring_company=ExampleCorp&status=completed" \
-H "x-lot-api-key: YOUR_API_KEY"Example Response
{
"message": "OK",
"params": {
"industry": ["Technology"],
"deal_type": null,
"valuation": null,
"date_from": null,
"date_to": null
},
"response": {
"data": [{
"acquiring_company": {
"name": "Tech Giant Inc.",
"website": "https://www.techgiant.com",
"linkedin_url": "https://www.linkedin.com/company/techgiant"
},
"acquired_company": {
"name": "Startup Innovation Labs",
"website": "https://www.startupinnovationlabs.com"
},
"deal_type": "Acquisition",
"deal_status": "Completed",
"announcement_date": "2023-08-15",
"completion_date": "2023-10-22",
"deal_value": 275000000,
"currency": "USD",
"payment_type": "Cash and Stock"
}]
}
}