Get Investor Data
curl --request GET \
--url https://www.trysignalbase.com/api/v2/signals/investors \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/signals/investors"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.trysignalbase.com/api/v2/signals/investors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://www.trysignalbase.com/api/v2/signals/investors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.trysignalbase.com/api/v2/signals/investors"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.trysignalbase.com/api/v2/signals/investors")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/signals/investors")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
}
}{
"success": false,
"error": "Invalid API key"
}{
"success": false,
"error": "Rate limit exceeded. Please try again later."
}{
"success": false,
"error": "An unknown error occurred"
}Endpoint Examples
Get Investors
Fetch investor data with filtering, pagination, and search capabilities. Returns a list of venture capital firms, angel investors, private equity firms, and other investor types.
GET
/
signals
/
investors
Get Investor Data
curl --request GET \
--url https://www.trysignalbase.com/api/v2/signals/investors \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/signals/investors"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.trysignalbase.com/api/v2/signals/investors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://www.trysignalbase.com/api/v2/signals/investors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.trysignalbase.com/api/v2/signals/investors"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.trysignalbase.com/api/v2/signals/investors")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/signals/investors")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
}
}{
"success": false,
"error": "Invalid API key"
}{
"success": false,
"error": "Rate limit exceeded. Please try again later."
}{
"success": false,
"error": "An unknown error occurred"
}Authorizations
API key for V2 Investors API authentication. Include as Bearer token in Authorization header.
Query Parameters
Page number for pagination
Required range:
x >= 1Number of results per page (maximum 100)
Required range:
1 <= x <= 100Comma-separated list of country codes to filter by
Comma-separated list of investor types to filter by (vc, angel, pe, corporate, accelerator, family_office, fund, government)
Search by investor name or description
⌘I
