Get Funding Signals
curl --request GET \
--url https://www.trysignalbase.com/api/v2/signals/funding \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/signals/funding"
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/funding', 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/funding",
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/funding"
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/funding")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/signals/funding")
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": [
{
"signalId": "550e8400-e29b-41d4-a716-446655440000",
"companyName": "FinTech Innovations",
"roundType": "Series A",
"fundingAmount": 15000000,
"fundingCurrency": "USD",
"announcedDate": "2024-10-15",
"industry": "Financial Technology",
"country": "United States",
"category": "Technology",
"website": "https://www.fintechinnovations.com",
"linkedinUrl": "https://www.linkedin.com/company/fintechinnovations",
"employeeCount": 85,
"foundedYear": 2020,
"description": "Revolutionary fintech platform transforming digital payments for businesses.",
"investorNames": [
"Sequoia Capital",
"Andreessen Horowitz",
"FirstMark Capital"
],
"leadInvestor": "Sequoia Capital",
"totalFundingToDate": 25000000,
"valuation": 75000000,
"useOfFunds": "Product development and market expansion",
"lastUpdated": "2024-11-15T10:30:00Z"
},
{
"signalId": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"companyName": "HealthTech Solutions",
"roundType": "Seed",
"fundingAmount": 3000000,
"fundingCurrency": "USD",
"announcedDate": "2024-09-20",
"industry": "Healthcare Technology",
"country": "United Kingdom",
"category": "Healthcare",
"website": "https://www.healthtechsolutions.co.uk",
"linkedinUrl": "https://www.linkedin.com/company/healthtechsolutions",
"employeeCount": 25,
"foundedYear": 2022,
"description": "AI-powered healthcare diagnostics platform for early disease detection.",
"investorNames": [
"Y Combinator",
"Khosla Ventures",
"Digital Health Ventures"
],
"leadInvestor": "Y Combinator",
"totalFundingToDate": 3000000,
"valuation": 15000000,
"useOfFunds": "R&D and clinical trials",
"lastUpdated": "2024-11-14T15:45:00Z"
}
],
"pagination": {
"currentPage": 1,
"totalPages": 15,
"totalCount": 300,
"hasNextPage": true,
"hasPreviousPage": false
},
"meta": {
"endpoint": "signals.funding",
"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 Funding Signals
Fetch funding signals with filtering, pagination, and search capabilities. Returns a list of companies with funding activity including round types, amounts, and investor information.
GET
/
signals
/
funding
Get Funding Signals
curl --request GET \
--url https://www.trysignalbase.com/api/v2/signals/funding \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/signals/funding"
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/funding', 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/funding",
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/funding"
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/funding")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/signals/funding")
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": [
{
"signalId": "550e8400-e29b-41d4-a716-446655440000",
"companyName": "FinTech Innovations",
"roundType": "Series A",
"fundingAmount": 15000000,
"fundingCurrency": "USD",
"announcedDate": "2024-10-15",
"industry": "Financial Technology",
"country": "United States",
"category": "Technology",
"website": "https://www.fintechinnovations.com",
"linkedinUrl": "https://www.linkedin.com/company/fintechinnovations",
"employeeCount": 85,
"foundedYear": 2020,
"description": "Revolutionary fintech platform transforming digital payments for businesses.",
"investorNames": [
"Sequoia Capital",
"Andreessen Horowitz",
"FirstMark Capital"
],
"leadInvestor": "Sequoia Capital",
"totalFundingToDate": 25000000,
"valuation": 75000000,
"useOfFunds": "Product development and market expansion",
"lastUpdated": "2024-11-15T10:30:00Z"
},
{
"signalId": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"companyName": "HealthTech Solutions",
"roundType": "Seed",
"fundingAmount": 3000000,
"fundingCurrency": "USD",
"announcedDate": "2024-09-20",
"industry": "Healthcare Technology",
"country": "United Kingdom",
"category": "Healthcare",
"website": "https://www.healthtechsolutions.co.uk",
"linkedinUrl": "https://www.linkedin.com/company/healthtechsolutions",
"employeeCount": 25,
"foundedYear": 2022,
"description": "AI-powered healthcare diagnostics platform for early disease detection.",
"investorNames": [
"Y Combinator",
"Khosla Ventures",
"Digital Health Ventures"
],
"leadInvestor": "Y Combinator",
"totalFundingToDate": 3000000,
"valuation": 15000000,
"useOfFunds": "R&D and clinical trials",
"lastUpdated": "2024-11-14T15:45:00Z"
}
],
"pagination": {
"currentPage": 1,
"totalPages": 15,
"totalCount": 300,
"hasNextPage": true,
"hasPreviousPage": false
},
"meta": {
"endpoint": "signals.funding",
"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 Funding Signals 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 <= 100Filter signals from this date (ISO 8601 format: YYYY-MM-DD)
Filter signals up to this date (ISO 8601 format: YYYY-MM-DD)
Comma-separated list of country codes to filter by
Comma-separated list of company categories to filter by
Comma-separated list of funding round types to filter by (e.g., Seed, Series A, Series B)
Search by company name or industry keywords
⌘I
