Skip to main content
GET
/
signals
/
investors
Get Investor Data
curl --request GET \
  --url https://www.trysignalbase.com/api/v2/signals/investors \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Sequoia Capital",
      "investorType": "vc",
      "country": "United States",
      "city": "Menlo Park",
      "state": "California",
      "description": "Leading venture capital firm that has backed some of the world's most successful companies including Apple, Google, and Airbnb.",
      "website": "https://www.sequoiacap.com",
      "linkedinUrl": "https://www.linkedin.com/company/sequoia-capital",
      "twitterUrl": "https://twitter.com/sequoia",
      "foundedYear": 1972,
      "teamSize": 85,
      "aum": 85000000000,
      "investmentFocus": [
        "Technology",
        "Healthcare",
        "Financial Services",
        "Consumer"
      ],
      "investmentStage": [
        "Seed",
        "Series A",
        "Series B",
        "Series C",
        "Growth"
      ],
      "typicalCheckSize": {
        "min": 1000000,
        "max": 100000000
      },
      "portfolioCompaniesCount": 250,
      "notableInvestments": [
        "Apple",
        "Google",
        "Airbnb",
        "Stripe",
        "Instagram"
      ],
      "activelyInvesting": true,
      "lastInvestmentDate": "2024-11-10",
      "lastUpdated": "2024-11-15T10:30:00Z"
    },
    {
      "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
      "name": "Y Combinator",
      "investorType": "accelerator",
      "country": "United States",
      "city": "Mountain View",
      "state": "California",
      "description": "World's most successful startup accelerator, having funded over 4,000 companies including Airbnb, Dropbox, Stripe, and Reddit.",
      "website": "https://www.ycombinator.com",
      "linkedinUrl": "https://www.linkedin.com/company/y-combinator",
      "twitterUrl": "https://twitter.com/ycombinator",
      "foundedYear": 2005,
      "teamSize": 45,
      "aum": 3000000000,
      "investmentFocus": [
        "Technology",
        "SaaS",
        "Consumer",
        "Enterprise",
        "Healthcare",
        "Fintech"
      ],
      "investmentStage": [
        "Pre-Seed",
        "Seed"
      ],
      "typicalCheckSize": {
        "min": 125000,
        "max": 500000
      },
      "portfolioCompaniesCount": 4000,
      "notableInvestments": [
        "Airbnb",
        "Dropbox",
        "Stripe",
        "Reddit",
        "Coinbase"
      ],
      "activelyInvesting": true,
      "lastInvestmentDate": "2024-11-12",
      "lastUpdated": "2024-11-14T15:45:00Z"
    }
  ],
  "pagination": {
    "currentPage": 1,
    "totalPages": 50,
    "totalCount": 1000,
    "hasNextPage": true,
    "hasPreviousPage": false
  },
  "meta": {
    "endpoint": "signals.investors",
    "creditsUsed": 1
  }
}

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.

Authorizations

Authorization
string
header
required

API key for V2 Investors API authentication. Include as Bearer token in Authorization header.

Query Parameters

page
integer
default:1

Page number for pagination

Required range: x >= 1
limit
integer
default:20

Number of results per page (maximum 100)

Required range: 1 <= x <= 100
countries
string

Comma-separated list of country codes to filter by

categories
string

Comma-separated list of investor types to filter by (vc, angel, pe, corporate, accelerator, family_office, fund, government)

Search by investor name or description

Response

Successful response with investor data

success
boolean
required

Indicates if the request was successful

Example:

true

data
object[]
required

Array of investor records

pagination
object
required
meta
object
required