API v1.0

VC Funding API Documentation

Access real-time funding analytics data through our robust and developer-friendly API

99.9%Uptime
300msAvg. Response
20K+API Calls/Day

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

Get instant notifications when new funding rounds are announced

Simple Integration

Just 3 lines of code to start receiving funding data

Smart Filtering

Filter by industry, amount, location, and more
Quick Start Example
// 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:

  1. Generate your API key in the Settings page
  2. Include the API key in your request headers:
    x-lot-api-key: YOUR_API_KEY

API Reference

Base URL:https://www.leadsontrees.com
GET/api/v1/funding

Retrieve advanced & real-time funding data, sorted by recency.

Rate Limit

60 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://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"
      }]
    }]
  }
}