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>'
{
  "success": true,
  "data": [
    {
      "signalId": "f9422f20-bcdc-4d38-8049-4cda561bc9dd",
      "signalType": "funding_round",
      "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": "$",
      "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
  }
}

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

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)

amount_min
integer

Minimum funding amount in USD cents

amount_max
integer

Maximum funding amount in USD cents

currency
enum<string>

Currency symbol filter

Available options:
$,
,
£,
¥,
,
A$,
C$,
CHF,
SEK,
NOK,
DKK,
SGD,
HKD,
BRL,
KRW
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