Getting Started
LeadsOnTrees API provides comprehensive access to funding analytics data. Our RESTful API enables you to integrate real-time funding insights directly into your applications.
Authentication
All API requests require authentication using an API key. Follow these steps to get started:
- Generate your API key in the Settings page
- Include the API key in your request headers:
x-lot-api-key: YOUR_API_KEY
API Reference
Base URL:
https://leadsontrees.com
GET
/api/v1/funding
Retrieve advanced & real-time funding data, sorted by recency.
Rate Limit
10 requests per minute
Parameters
round
Optional. Filter by seed round (e.g., seed, pre-seed)
category
Optional. Array of categories (e.g., AI, Web3)
amount
Optional. Minimum funding amount
date_from
Optional. Start date (YYYY-MM-DD)
date_to
Optional. End date (YYYY-MM-DD)
Example Request
curl -X GET "https://leadsontrees.com/api/v1/funding?category=Healthcare" \
-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"
}]
}]
}
}