Skip to main content
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": "f9422f20-bcdc-4d38-8049-4cda561bc9dd",
      "signalType": "funding_round",
      "match_confidence": "exact",
      "occurredAt": "2026-03-17T04:05:52.903Z",
      "discoveredAt": "2026-03-17T05:06:08.184Z",
      "companyId": "3bba1b2e-fb85-485e-80d5-5cc4617cfe13",
      "companyName": "dtcpay",
      "companySlug": "dtcpay",
      "companyLogo": "https://images.trysignalbase.com/dtcpay.png",
      "companyWebsite": "dtcpay.com",
      "companyLinkedin": "linkedin.com/company/digital-treasures-center-pte-ltd",
      "companyIndustry": "Financial Services",
      "companyCountry": "SG",
      "companySubcategory": "fintech",
      "companyFoundedYear": 2019,
      "companyCategories": "[\"Financial Services\",\"Payments\"]",
      "companyDescription": "dtcpay is a regulated payment service provider enabling seamless digital payments.",
      "companyEmployeeCount": 125,
      "roundType": "series a",
      "roundFlavor": null,
      "amount": 10000000,
      "currency": "USD",
      "announcedDate": "2026-03-17",
      "confidenceScore": 0.95,
      "verificationStatus": "verified",
      "isFreeAccess": true,
      "investors": [
        {
          "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
          "name": "Sequoia Capital",
          "type": "vc",
          "website": "https://www.sequoiacap.com",
          "linkedin": "linkedin.com/company/sequoia-capital",
          "isLead": true
        },
        {
          "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
          "name": "Andreessen Horowitz",
          "type": "vc",
          "website": "https://a16z.com",
          "linkedin": "linkedin.com/company/a16z",
          "isLead": false
        }
      ],
      "sources": [
        {
          "url": "https://technode.global/2026/03/17/dtcpay-raises-10m-series-a",
          "sourceType": "news_article",
          "title": "dtcpay raises $10M in Series A led by Sequoia Capital",
          "publishedAt": "2026-03-17T04:05:52.903Z",
          "isPrimary": true
        }
      ]
    }
  ],
  "pagination": {
    "currentPage": 1,
    "totalPages": 15,
    "totalCount": 300,
    "hasNextPage": true,
    "hasPreviousPage": false
  },
  "meta": {
    "endpoint": "signals.funding",
    "creditsUsed": 1,
    "creditsRemaining": 999
  }
}
{
"success": false,
"error": "Invalid round value: foobar. Accepted values (case-insensitive): pre-seed, seed, series a, series b, series c, series d, series e, series f, series g, series h, angel, grant, crowdfunding, growth, debt, debt financing, equity, fund, ipo."
}
{
"success": false,
"error": "Invalid API key"
}
{
"success": false,
"error": "out of credits, please contact support to increase your usage"
}
{
"success": false,
"error": "Rate limit exceeded. Please try again later."
}
{
"success": false,
"error": "An unknown error occurred"
}

Authorizations

Authorization
string
header
required

API key for Funding Signals API authentication. Include as Bearer token in Authorization header.

Query Parameters

page
integer
default:1

Page number for pagination

Required range: x >= 1
limit
integer
default:20

Number of results per page (maximum 100)

Required range: 1 <= x <= 100
dateFrom
string<date>

Filter signals from this date (ISO 8601 format: YYYY-MM-DD)

dateTo
string<date>

Filter signals up to this date (ISO 8601 format: YYYY-MM-DD)

date_preset
enum<string>

Relative date shorthand. Takes precedence over dateFrom/dateTo when provided.

Available options:
today,
yesterday,
last_7d,
last_14d,
last_30d,
last_60d,
last_90d,
last_6m,
last_1y,
last_2y,
this_week,
this_month,
this_quarter,
this_year,
last_week,
last_month,
last_quarter,
last_year
countries
string

Comma-separated list of country codes to filter by

categories
string

Pipe-separated list of company categories / industries to filter by

round
string

Comma-separated list of funding round types to filter by. Exact, case-insensitive match ('Series A', 'series a', and 'SERIES A' all match). A value not in the accepted list returns 400 Bad Request. See the Enums page for the accepted values.

round_flavor
enum<string>

Comma-separated list of round flavors to filter by

Available options:
bridge,
extension,
secondary
subcategories
enum<string>

Comma-separated list of subcategory IDs to filter by. These filter companies based on their assigned subcategory.

Available options:
ai,
saas,
software,
cybersecurity,
web3,
devtools,
analytics,
cloud,
iot,
fintech,
payments,
accounting,
ecommerce,
insurance,
vc & investment,
regtech,
marketing,
advertising,
sales,
hr tech,
legal,
healthcare,
biotechnology,
education,
real estate,
energy,
logistics,
manufacturing,
retail,
agriculture,
food & beverage,
automotive,
aerospace & defense,
robotics,
telecommunications,
travel,
sports,
gaming,
media,
govtech,
construction,
environmental services,
battery technology,
arts,
architecture,
cosmetics,
science,
non-profit

Search by company name or industry keywords

industry
string

Comma-separated list of exact industry names to filter by

company_name
string

Search by company name (partial match)

company_domain
string

Recommended. Company website domain, e.g. novartis.com. Strict match — if no company has this domain the result is empty; never falls back to fuzzy name matching. Variants are equivalent: novartis.com, www.novartis.com and https://novartis.com/ all match the same company. Malformed values return 400. Takes priority over company_name; combined identifiers must agree or the result is empty.

company_linkedin_url
string

Recommended. LinkedIn company URL, e.g. linkedin.com/company/novartis. Strict match — if no company has this LinkedIn page the result is empty; never falls back to fuzzy name matching. http/https, optional www. and trailing slash are equivalent. Non-company LinkedIn URLs (e.g. personal /in/ profiles) return 400. Takes priority over company_name; combined identifiers must agree or the result is empty.

amount_min
integer

Minimum funding amount in whole units of the deal's currency (not cents)

amount_max
integer

Maximum funding amount in whole units of the deal's currency (not cents)

currency
enum<string>

Filter by currency, as an ISO 4217 code (e.g. USD, EUR, GBP). Most records are USD. Exact match.

Available options:
USD,
EUR,
GBP,
CHF,
JPY,
INR,
CAD,
AUD,
SEK,
CNY,
NZD,
KRW,
SGD,
DKK,
BRL
verification_status
enum<string>

Comma-separated list of verification statuses to filter by

Available options:
verified,
unverified,
pending
investor_name
string

Search by investor name (partial match)

employee_count_min
integer

Minimum company employee count

employee_count_max
integer

Maximum company employee count

founded_year_min
integer

Minimum company founded year

founded_year_max
integer

Maximum company founded year

sort_by
enum<string>
default:occurred_at

Field to sort results by

Available options:
occurred_at,
discovered_at,
amount,
employee_count,
founded_year
sort_order
enum<string>
default:desc

Sort direction

Available options:
asc,
desc
count
enum<string>

When set to "true", returns only pagination metadata (totalCount) with an empty data array. No credits are charged.

Available options:
true

Response

Successful response with funding signals

success
boolean
required

Indicates if the request was successful

Example:

true

data
object[]
required

Array of funding signal records

pagination
object
required
meta
object
required