> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leadsontrees.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Investors API

> Programmatic access to global VC investors: names, types, ticket sizes, geographies, and contacts

## Welcome to the VC Investors API

Access a global database of venture capital investors programmatically. Query thousands of investors by geography and category, and retrieve firm profiles with decision‑maker contacts. Today, we track approximately \~6,000 VC investors worldwide and are expanding coverage continuously.

<Card title="VC Investors API Endpoints" icon="handshake" href="/api-reference/investors-api/endpoint/get">
  View the OpenAPI specification
</Card>

## What you get

* **VC Name**: Official firm name and aliases
* **Type**: Firm type (e.g., VC, Growth, CVC)
* **Ticket Size**: Typical check sizes or ranges
* **Countries**: Focus geographies and presence
* **Contacts**: Partners and decision‑makers with profiles

## Example use cases

* **Sourcing**: Build lists of fintech VCs investing in the EU with seed checks
* **BD/Partnerships**: Identify growth-stage investors by country and ticket size
* **CRM Enrichment**: Enrich investor records with contacts and firm metadata

## Service level

* **Rate limit**: 60 requests per minute
* **Uptime**: 99% guaranteed
* **Freshness**: Continuously maintained and updated

## Authentication

All API requests require your API key in the `x-lot-api-key` header.

```bash theme={null}
curl -X GET "https://www.leadsontrees.com/api/v1/vcs?country=United%20States" \
  -H "x-lot-api-key: YOUR_API_KEY"
```

## Sample response (truncated)

```json theme={null}
{
  "message": "OK",
  "response": {
    "data": [
      {
        "name": "Example Ventures",
        "type": "VC",
        "ticket_size": "$250k–$2M",
        "countries": ["United States", "Canada"],
        "contacts": [
          { "name": "Jane Doe", "title": "General Partner", "linkedin_url": "https://www.linkedin.com/in/janedoe" }
        ]
      }
    ]
  }
}
```

## Quick preview

| VC Name          | Type | Ticket Size | Countries             | Contacts |
| ---------------- | ---- | ----------- | --------------------- | -------- |
| Example Ventures | VC   | $250k–$2M   | United States, Canada | 5        |
