Get a specific deal by ID
curl --request GET \
--url https://www.tryfundable.ai/api/v1/deals/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.tryfundable.ai/api/v1/deals/{id}"
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}', 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}",
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}"
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}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.tryfundable.ai/api/v1/deals/{id}")
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": {
"deal": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"company_id": "550e8400-e29b-41d4-a716-446655440001",
"investor_ids": [
"c5a3f6ac-f6c9-4686-aa6e-12aeb7419b82"
],
"angel_investor_ids": [
"b3e9c7d1-2f4a-4d5e-9c1b-7a8f3e2d1c6a"
],
"financings": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "SERIES_A",
"size_usd": 25000000,
"size_native": 25000000,
"currency": "USD"
}
],
"round_type": "SERIES_A",
"extension": false,
"intermediate": "NONE",
"pre": false,
"date": "2024-01-15T00:00:00Z",
"created_at": "2024-01-16T12:30:00Z",
"total_round_raised": 25000000,
"deal_descriptions": {
"short_description": "<string>",
"long_description": "<string>"
},
"valuation": {
"type": "POST_MONEY",
"valuation_currency": "USD",
"valuation_usd": 100000000,
"valuation_native": 100000000
},
"articles": [
{
"is_primary": true,
"link": "https://techcrunch.com/2024/01/15/company-raises-series-a",
"date": "2024-01-15"
}
]
}
},
"meta": {
"page": 0,
"page_size": 1,
"credits_used": 1,
"credit_source": "monthly",
"monthly_credits_remaining": 990,
"purchased_credits_remaining": 500
}
}{
"success": false,
"error": {
"code": "INVALID_DEAL_ID",
"message": "Deal ID must be a valid UUID",
"details": {
"help": "Please provide a valid UUID format for the deal ID"
}
},
"statusCode": 400
}{
"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",
"details": {
"help": "Please check the deal ID and try again"
}
},
"statusCode": 404
}{
"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
Retrieve detailed information about a single venture capital deal by its unique identifier
GET
/
deals
/
{id}
Get a specific deal by ID
curl --request GET \
--url https://www.tryfundable.ai/api/v1/deals/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.tryfundable.ai/api/v1/deals/{id}"
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}', 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}",
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}"
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}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.tryfundable.ai/api/v1/deals/{id}")
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": {
"deal": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"company_id": "550e8400-e29b-41d4-a716-446655440001",
"investor_ids": [
"c5a3f6ac-f6c9-4686-aa6e-12aeb7419b82"
],
"angel_investor_ids": [
"b3e9c7d1-2f4a-4d5e-9c1b-7a8f3e2d1c6a"
],
"financings": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "SERIES_A",
"size_usd": 25000000,
"size_native": 25000000,
"currency": "USD"
}
],
"round_type": "SERIES_A",
"extension": false,
"intermediate": "NONE",
"pre": false,
"date": "2024-01-15T00:00:00Z",
"created_at": "2024-01-16T12:30:00Z",
"total_round_raised": 25000000,
"deal_descriptions": {
"short_description": "<string>",
"long_description": "<string>"
},
"valuation": {
"type": "POST_MONEY",
"valuation_currency": "USD",
"valuation_usd": 100000000,
"valuation_native": 100000000
},
"articles": [
{
"is_primary": true,
"link": "https://techcrunch.com/2024/01/15/company-raises-series-a",
"date": "2024-01-15"
}
]
}
},
"meta": {
"page": 0,
"page_size": 1,
"credits_used": 1,
"credit_source": "monthly",
"monthly_credits_remaining": 990,
"purchased_credits_remaining": 500
}
}{
"success": false,
"error": {
"code": "INVALID_DEAL_ID",
"message": "Deal ID must be a valid UUID",
"details": {
"help": "Please provide a valid UUID format for the deal ID"
}
},
"statusCode": 400
}{
"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",
"details": {
"help": "Please check the deal ID and try again"
}
},
"statusCode": 404
}{
"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
Path Parameters
Unique identifier for the deal (UUID format)
Example:
"4b20cafe-c22b-441a-8378-53436e1d9edf"
⌘I

