Get investors for a specific deal
curl --request GET \
--url https://www.tryfundable.ai/api/v1/deals/{id}/investors \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.tryfundable.ai/api/v1/deals/{id}/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.tryfundable.ai/api/v1/deals/{id}/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.tryfundable.ai/api/v1/deals/{id}/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.tryfundable.ai/api/v1/deals/{id}/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.tryfundable.ai/api/v1/deals/{id}/investors")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.tryfundable.ai/api/v1/deals/{id}/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": {
"investors": [
{
"id": "c5a3f6ac-f6c9-4686-aa6e-12aeb7419b82",
"name": "Sequoia Capital",
"lead_investor": true,
"personnel": [
{
"id": "f1a2b3c4-d5e6-7890-abcd-ef1234567890",
"name": "John Smith",
"linkedin": "https://linkedin.com/in/johnsmith",
"crunchbase": "https://crunchbase.com/person/john-smith",
"twitter": "https://x.com/johnsmith"
}
],
"financing_type": "SERIES_A",
"domain": "sequoiacap.com",
"linkedin": "https://linkedin.com/company/sequoia-capital",
"crunchbase": "https://crunchbase.com/organization/sequoia-capital"
}
],
"angel_investors": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"financing_type": "SEED",
"linkedin": "<string>",
"crunchbase": "<string>",
"twitter": "<string>"
}
]
},
"meta": {
"page": 0,
"page_size": 1,
"credits_used": 1,
"credit_source": "monthly",
"monthly_credits_remaining": 990,
"purchased_credits_remaining": 500
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters",
"details": {
"errors": [
{
"field": "deal.financing_types",
"value": "series-a",
"message": "Invalid financing type(s): series-a. Valid options are: SERIES_A, SERIES_B, SEED, ...",
"code": "INVALID_FINANCING_TYPE",
"validOptions": [
"SERIES_A",
"SERIES_B",
"SEED"
]
}
],
"help": "Please check your request parameters and ensure they meet the required format and constraints."
}
}
}{
"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
}{
"success": false,
"error": {
"code": "DEAL_NOT_FOUND",
"message": "Deal not found"
}
}{
"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>"
}
}Deals
Get Deal Investors
Retrieve detailed investor information for a single deal, including lead status, personnel, and investor profile links.
GET
/
deals
/
{id}
/
investors
Get investors for a specific deal
curl --request GET \
--url https://www.tryfundable.ai/api/v1/deals/{id}/investors \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.tryfundable.ai/api/v1/deals/{id}/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.tryfundable.ai/api/v1/deals/{id}/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.tryfundable.ai/api/v1/deals/{id}/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.tryfundable.ai/api/v1/deals/{id}/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.tryfundable.ai/api/v1/deals/{id}/investors")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.tryfundable.ai/api/v1/deals/{id}/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": {
"investors": [
{
"id": "c5a3f6ac-f6c9-4686-aa6e-12aeb7419b82",
"name": "Sequoia Capital",
"lead_investor": true,
"personnel": [
{
"id": "f1a2b3c4-d5e6-7890-abcd-ef1234567890",
"name": "John Smith",
"linkedin": "https://linkedin.com/in/johnsmith",
"crunchbase": "https://crunchbase.com/person/john-smith",
"twitter": "https://x.com/johnsmith"
}
],
"financing_type": "SERIES_A",
"domain": "sequoiacap.com",
"linkedin": "https://linkedin.com/company/sequoia-capital",
"crunchbase": "https://crunchbase.com/organization/sequoia-capital"
}
],
"angel_investors": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"financing_type": "SEED",
"linkedin": "<string>",
"crunchbase": "<string>",
"twitter": "<string>"
}
]
},
"meta": {
"page": 0,
"page_size": 1,
"credits_used": 1,
"credit_source": "monthly",
"monthly_credits_remaining": 990,
"purchased_credits_remaining": 500
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters",
"details": {
"errors": [
{
"field": "deal.financing_types",
"value": "series-a",
"message": "Invalid financing type(s): series-a. Valid options are: SERIES_A, SERIES_B, SEED, ...",
"code": "INVALID_FINANCING_TYPE",
"validOptions": [
"SERIES_A",
"SERIES_B",
"SEED"
]
}
],
"help": "Please check your request parameters and ensure they meet the required format and constraints."
}
}
}{
"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
}{
"success": false,
"error": {
"code": "DEAL_NOT_FOUND",
"message": "Deal not found"
}
}{
"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 authentication using Bearer token format.
Format: Authorization: Bearer vg_your_api_key_here
API keys follow the pattern: vg_[12_hex_chars]_[32_base64url_chars]
Path Parameters
Unique identifier for the deal (UUID format)
Example:
"4b20cafe-c22b-441a-8378-53436e1d9edf"
⌘I

