FundedSignals Developer API
v1.0PRO-Exclusive, Read-Only programmatic access to live funding intelligence.
Pipe real-time funding rounds, company profiles, valuation benchmarks, and your saved market intelligence disruption models directly into your internal systems, CRM, Slack bots, or data pipelines.
Authentication & Security
All API requests must include a valid PRO API key. Authenticate by passing your key in either the X-API-KEY header or as a Bearer token in the Authorization header.
Option A: X-API-KEY Header (Recommended)
X-API-KEY: fs_live_abc1234567890abcdef12345Option B: Bearer Authorization Header
Authorization: Bearer fs_live_abc1234567890abcdef12345POST, PUT, DELETE) to V1 endpoints will be rejected with HTTP 405 Method Not Allowed.API Reference
/api/v1/companiesSearch, filter, and paginate all funded companies and complete funding round histories.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Number of companies to return (1 - 100). |
| page | number | 1 | Page number for pagination. |
| search | string | — | Keyword search across company names, summaries, and industries. |
| industry | string | — | Filter by exact industry (e.g. 'FinTech', 'AI/Machine Learning', 'SaaS'). |
| stage | string | — | Filter by funding stage (e.g. 'Pre-Seed', 'Seed', 'Series A', 'Series B'). |
| location | string | — | Filter by headquarters or region substring (e.g. 'San Francisco', 'Europe'). |
| minAmount | number | — | Minimum total funding in USD (e.g. 5000000). |
| maxAmount | number | — | Maximum total funding in USD (e.g. 50000000). |
| sortBy | string | latestFundingDate | 'latestFundingDate', 'fundingAmount', or 'name'. |
| sortOrder | string | desc | 'desc' or 'asc'. |
Example Response (JSON)
/api/v1/companies/{id}Retrieve comprehensive intelligence and disruption signals for a single company by ID or slug.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| id | string (path) | required | The unique company document ID or lowercase name. |
Example Response (JSON)
/api/v1/signalsStream a live, reverse-chronological feed of funding rounds in JSON or CSV format.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| format | string | json | Output format: 'json' (default) or 'csv'. |
| limit | number | 25 | Number of signals (1 - 100). |
| stage | string | — | Filter by funding stage. |
| industry | string | — | Filter by industry. |
| minAmount | number | — | Minimum funding amount in USD. |
| maxAmount | number | — | Maximum funding amount in USD. |
Example Response (JSON)
/api/v1/meRetrieve your PRO account profile, subscription status, and real-time API rate limit details.
Example Response (JSON)
/api/v1/me/saved-disruptionsList all Market Intelligence disruption scenarios saved to your PRO account.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| ticker | string | — | Filter scenarios by target ticker (e.g. 'NVDA', 'AMZN'). |
| preset | string | — | Filter by scenario preset ('BASE', 'BULL', 'BEAR', 'CUSTOM'). |
| limit | number | 50 | Max scenarios to return (1 - 100). |
Example Response (JSON)
/api/v1/me/saved-disruptions/{id}Retrieve complete parameters and simulation outputs for a single saved disruption scenario.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| id | string (path) | required | The scenario ID. |
Example Response (JSON)
Rate Limits
Every PRO key includes a generous quota of 100 requests per minute across all V1 endpoints.
If exceeded, endpoints respond with HTTP 429 Too Many Requests and a Retry-After header in seconds.
Generate API Key
Generate and rotate your exclusive API key directly from your dashboard.
Go to Profile Keys