Search investors by name, domain, LinkedIn, or Crunchbase
curl --request GET \
--url https://www.tryfundable.ai/api/v1/investor/search \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.tryfundable.ai/api/v1/investor/search"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.tryfundable.ai/api/v1/investor/search', 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.tryfundable.ai/api/v1/investor/search",
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.tryfundable.ai/api/v1/investor/search"
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.tryfundable.ai/api/v1/investor/search")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.tryfundable.ai/api/v1/investor/search")
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": {
"investors": [
{
"id": "770e8400-e29b-41d4-a716-446655440000",
"guru_permalink": "acme-ventures",
"name": "Acme Ventures",
"description": "Early-stage venture capital firm focused on AI startups",
"image": "https://example.com/acme-ventures-logo.png",
"relevance_score": 0.92,
"domain": "acmeventures.com",
"website": "https://acmeventures.com"
},
{
"id": "880e8400-e29b-41d4-a716-446655440001",
"guru_permalink": "acme-capital",
"name": "Acme Capital",
"description": "Growth-stage investment firm",
"image": "https://example.com/acme-capital-logo.png",
"relevance_score": 0.85,
"domain": "acmecap.com",
"website": "https://acmecap.com"
}
]
},
"meta": {
"total_count": 2,
"page": 0,
"page_size": 1,
"credits_used": 0
}
}{
"success": false,
"error": {
"code": "MISSING_SEARCH_PARAMS",
"message": "At least one search parameter is required",
"details": {
"help": "Provide one of: name, domain, linkedin, or crunchbase. Example: ?name=sequoia or ?domain=sequoiacap.com",
"provided": "<string>",
"examples": {
"valid": [
"<string>"
],
"invalid": [
"<string>"
]
}
}
}
}{
"error": {
"code": "AUTH_ERROR",
"message": "API key not provided",
"details": {
"help": "Please provide your API key in the Authorization header",
"format": "Bearer vg_your_api_key_here"
}
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "Not enough credits to complete this request. Visit https://www.tryfundable.ai/api-access to purchase more.",
"details": {
"credits_needed": 25,
"monthly_credits_remaining": 0,
"purchased_credits_remaining": 0,
"help": "Purchase additional credits at https://www.tryfundable.ai/api-access or upgrade your plan."
}
},
"success": false
}{
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Rate limit exceeded. Maximum 200 requests per minute.",
"details": {
"limit": 200,
"window": "60 seconds",
"help": "Please reduce your request frequency and try again."
}
},
"success": false
}{
"error": {
"code": "INTERNAL_SERVER_ERROR",
"message": "An unexpected error occurred",
"details": "<string>"
}
}Investors
Search Investors
Look up investors using one of four search methods. Exactly one parameter must be provided.
Search types:
name— Fuzzy name search with relevance scoringdomain— Investor domain or full URLlinkedin— LinkedIn company URLcrunchbase— Crunchbase organization URL
Identifier lookups (domain, linkedin, crunchbase) return relevance_score: 1.
Examples:
?linkedin=https://linkedin.com/company/sequoia-capital?crunchbase=https://crunchbase.com/organization/sequoia-capital
GET
/
investor
/
search
Search investors by name, domain, LinkedIn, or Crunchbase
curl --request GET \
--url https://www.tryfundable.ai/api/v1/investor/search \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.tryfundable.ai/api/v1/investor/search"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.tryfundable.ai/api/v1/investor/search', 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.tryfundable.ai/api/v1/investor/search",
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.tryfundable.ai/api/v1/investor/search"
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.tryfundable.ai/api/v1/investor/search")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.tryfundable.ai/api/v1/investor/search")
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": {
"investors": [
{
"id": "770e8400-e29b-41d4-a716-446655440000",
"guru_permalink": "acme-ventures",
"name": "Acme Ventures",
"description": "Early-stage venture capital firm focused on AI startups",
"image": "https://example.com/acme-ventures-logo.png",
"relevance_score": 0.92,
"domain": "acmeventures.com",
"website": "https://acmeventures.com"
},
{
"id": "880e8400-e29b-41d4-a716-446655440001",
"guru_permalink": "acme-capital",
"name": "Acme Capital",
"description": "Growth-stage investment firm",
"image": "https://example.com/acme-capital-logo.png",
"relevance_score": 0.85,
"domain": "acmecap.com",
"website": "https://acmecap.com"
}
]
},
"meta": {
"total_count": 2,
"page": 0,
"page_size": 1,
"credits_used": 0
}
}{
"success": false,
"error": {
"code": "MISSING_SEARCH_PARAMS",
"message": "At least one search parameter is required",
"details": {
"help": "Provide one of: name, domain, linkedin, or crunchbase. Example: ?name=sequoia or ?domain=sequoiacap.com",
"provided": "<string>",
"examples": {
"valid": [
"<string>"
],
"invalid": [
"<string>"
]
}
}
}
}{
"error": {
"code": "AUTH_ERROR",
"message": "API key not provided",
"details": {
"help": "Please provide your API key in the Authorization header",
"format": "Bearer vg_your_api_key_here"
}
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "Not enough credits to complete this request. Visit https://www.tryfundable.ai/api-access to purchase more.",
"details": {
"credits_needed": 25,
"monthly_credits_remaining": 0,
"purchased_credits_remaining": 0,
"help": "Purchase additional credits at https://www.tryfundable.ai/api-access or upgrade your plan."
}
},
"success": false
}{
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Rate limit exceeded. Maximum 200 requests per minute.",
"details": {
"limit": 200,
"window": "60 seconds",
"help": "Please reduce your request frequency and try again."
}
},
"success": false
}{
"error": {
"code": "INTERNAL_SERVER_ERROR",
"message": "An unexpected error occurred",
"details": "<string>"
}
}Authorizations
API key provided as a Bearer token
Query Parameters
Investor name (fuzzy search with relevance scoring)
Investor domain or full URL (e.g., "sequoiacap.com" or "https://sequoiacap.com") — URLs are automatically parsed to extract the domain
LinkedIn company URL
Crunchbase organization URL
⌘I

