# Signalbase Real Time Funding Signals (`signalbase/signalbase-funding`) Actor

Real-time funding round signals. 50k+ rounds detected and growing every minute, from grants & pre-seed to growth to series F with company details, deal amounts, investors, and original source URL. Built for VC deal flow, signal-based outbound, and investment research.

- **URL**: https://apify.com/signalbase/signalbase-funding.md
- **Developed by:** [Signalbase](https://apify.com/signalbase) (community)
- **Categories:** Lead generation
- **Stats:** 17 total users, 9 monthly users, 99.2% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $20.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## SignalBase Real Time Funding

Real-time funding round signals. Get Series A, Seed, and all funding rounds with company details, amounts, investors, and sources.

### How to Use

This actor runs as a Standby-mode API server. Once the run starts, send **GET** requests to the container URL with query parameters to receive JSON responses.

**Example:**
````

GET {{run.containerUrl}}?page=1\&limit=10\&round=series%20a

````

### Response Example

```json
{
  "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",
      "companyFoundedYear": 2019,
      "companyDescription": "dtcpay is a regulated payment service provider...",
      "companyEmployeeCount": 125,
      "roundType": "series a",
      "roundFlavor": null,
      "amount": 10000000,
      "currency": "USD",
      "announcedDate": "2026-03-17",
      "confidenceScore": 0.95,
      "verificationStatus": "verified",
      "investors": [],
      "sources": [
        {
          "url": "https://technode.global/2026/03/17/singapores-dtcpay-raises-10m-in-series-a...",
          "sourceType": "news_article",
          "title": "Singapore's dtcpay raises $10M in Series A led by Vertex Ventures ...",
          "publishedAt": "2026-03-17T04:05:52.903Z",
          "isPrimary": false
        }
      ]
    }
  ],
  "pagination": { "currentPage": 1, "totalPages": 43019, "totalCount": 43019, "hasNextPage": true, "hasPreviousPage": false },
  "meta": { "endpoint": "signals.funding", "creditsUsed": 1 }
}
````

### Filters

| Parameter | Description |
|-----------|-------------|
| `page` | Page number for pagination |
| `limit` | Number of results per page |
| `dateFrom` | Filter signals from this date |
| `dateTo` | Filter signals until this date |
| `date_preset` | Preset date range (e.g. last\_7\_days) |
| `countries` | Filter by company countries (comma-separated) |
| `categories` | Filter by categories |
| `subcategories` | Filter by subcategories |
| `search` | Full-text search |
| `industry` | Filter by industry |
| `company_name` | Filter by company name |
| `round` | Filter by round type (e.g. series a, seed) |
| `round_flavor` | Filter by round flavor |
| `amount_min` | Minimum deal amount |
| `amount_max` | Maximum deal amount |
| `currency` | Filter by currency |
| `verification_status` | Filter by verification status |
| `investor_name` | Filter by investor name |
| `employee_count_min` | Minimum employee count |
| `employee_count_max` | Maximum employee count |
| `founded_year_min` | Minimum founded year |
| `founded_year_max` | Maximum founded year |
| `sort_by` | Field to sort by |
| `sort_order` | Sort order (asc/desc) |

### Pricing

This actor uses **pay-per-event** billing. Each successful API response is charged as one `api-call` event.

### Support

- [Documentation](https://docs.trysignalbase.com)
- [SignalBase](https://www.trysignalbase.com)

# Actor input Schema

## `page` (type: `integer`):

Page number for pagination.

## `limit` (type: `integer`):

Number of results per page (max 100).

## `dateFrom` (type: `string`):

Filter signals from this date (YYYY-MM-DD).

## `dateTo` (type: `string`):

Filter signals up to this date (YYYY-MM-DD).

## `date_preset` (type: `string`):

Relative date shorthand. Takes precedence over Date From / Date To.

## `search` (type: `string`):

Free-text search across company name, industry, and more.

## `countries` (type: `string`):

Comma-separated country codes (e.g. US,GB,DE).

## `categories` (type: `string`):

Pipe-separated company categories (e.g. Technology|Healthcare).

## `subcategories` (type: `string`):

Comma-separated subcategory IDs: ai, saas, cybersecurity, web3, devtools, fintech, analytics, ecommerce, marketing, sales, healthcare, biotechnology, education, real estate, energy, logistics, manufacturing, retail, etc.

## `industry` (type: `string`):

Comma-separated exact industry names.

## `company_name` (type: `string`):

Search by company name (partial match).

## `round` (type: `string`):

Comma-separated round types: Pre-Seed, Seed, Series A, Series B, Series C, Series D, Series E, Series F, Series G, Growth, Debt, Grant, IPO, Undisclosed.

## `round_flavor` (type: `string`):

Comma-separated: bridge, extension, secondary.

## `currency` (type: `string`):

Currency symbol filter (e.g. $, €, £).

## `verification_status` (type: `string`):

Comma-separated: verified, unverified, pending.

## `investor_name` (type: `string`):

Search by investor name (partial match).

## `amount_min` (type: `integer`):

Minimum funding amount in USD cents.

## `amount_max` (type: `integer`):

Maximum funding amount in USD cents.

## `employee_count_min` (type: `integer`):

Minimum company employee count.

## `employee_count_max` (type: `integer`):

Maximum company employee count.

## `founded_year_min` (type: `integer`):

Minimum company founded year.

## `founded_year_max` (type: `integer`):

Maximum company founded year.

## `sort_by` (type: `string`):

Field to sort results by (e.g. date, amount).

## `sort_order` (type: `string`):

Sort direction.

## Actor input object example

```json
{
  "page": 1,
  "limit": 50,
  "sort_order": "desc"
}
```

# Actor output Schema

## `apiServer` (type: `string`):

Live HTTP server for the /signals/funding endpoint. Append query parameters for filtering.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("signalbase/signalbase-funding").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("signalbase/signalbase-funding").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call signalbase/signalbase-funding --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=signalbase/signalbase-funding",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Signalbase Real Time Funding Signals",
        "description": "Real-time funding round signals. 50k+ rounds detected and growing every minute, from grants & pre-seed to growth to series F with company details, deal amounts, investors, and original source URL. Built for VC deal flow, signal-based outbound, and investment research.",
        "version": "1.0",
        "x-build-id": "zEN2gq9mtt9BFHe6c"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/signalbase~signalbase-funding/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-signalbase-signalbase-funding",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/signalbase~signalbase-funding/runs": {
            "post": {
                "operationId": "runs-sync-signalbase-signalbase-funding",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/signalbase~signalbase-funding/run-sync": {
            "post": {
                "operationId": "run-sync-signalbase-signalbase-funding",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "page": {
                        "title": "Page",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Page number for pagination.",
                        "default": 1
                    },
                    "limit": {
                        "title": "Results Per Page",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Number of results per page (max 100).",
                        "default": 50
                    },
                    "dateFrom": {
                        "title": "Date From",
                        "type": "string",
                        "description": "Filter signals from this date (YYYY-MM-DD)."
                    },
                    "dateTo": {
                        "title": "Date To",
                        "type": "string",
                        "description": "Filter signals up to this date (YYYY-MM-DD)."
                    },
                    "date_preset": {
                        "title": "Date Preset",
                        "enum": [
                            "",
                            "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"
                        ],
                        "type": "string",
                        "description": "Relative date shorthand. Takes precedence over Date From / Date To."
                    },
                    "search": {
                        "title": "Search",
                        "type": "string",
                        "description": "Free-text search across company name, industry, and more."
                    },
                    "countries": {
                        "title": "Countries",
                        "type": "string",
                        "description": "Comma-separated country codes (e.g. US,GB,DE)."
                    },
                    "categories": {
                        "title": "Categories",
                        "type": "string",
                        "description": "Pipe-separated company categories (e.g. Technology|Healthcare)."
                    },
                    "subcategories": {
                        "title": "Subcategories",
                        "type": "string",
                        "description": "Comma-separated subcategory IDs: ai, saas, cybersecurity, web3, devtools, fintech, analytics, ecommerce, marketing, sales, healthcare, biotechnology, education, real estate, energy, logistics, manufacturing, retail, etc."
                    },
                    "industry": {
                        "title": "Industry",
                        "type": "string",
                        "description": "Comma-separated exact industry names."
                    },
                    "company_name": {
                        "title": "Company Name",
                        "type": "string",
                        "description": "Search by company name (partial match)."
                    },
                    "round": {
                        "title": "Funding Round",
                        "type": "string",
                        "description": "Comma-separated round types: Pre-Seed, Seed, Series A, Series B, Series C, Series D, Series E, Series F, Series G, Growth, Debt, Grant, IPO, Undisclosed."
                    },
                    "round_flavor": {
                        "title": "Round Flavor",
                        "type": "string",
                        "description": "Comma-separated: bridge, extension, secondary."
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "Currency symbol filter (e.g. $, €, £)."
                    },
                    "verification_status": {
                        "title": "Verification Status",
                        "type": "string",
                        "description": "Comma-separated: verified, unverified, pending."
                    },
                    "investor_name": {
                        "title": "Investor Name",
                        "type": "string",
                        "description": "Search by investor name (partial match)."
                    },
                    "amount_min": {
                        "title": "Min Funding Amount",
                        "type": "integer",
                        "description": "Minimum funding amount in USD cents."
                    },
                    "amount_max": {
                        "title": "Max Funding Amount",
                        "type": "integer",
                        "description": "Maximum funding amount in USD cents."
                    },
                    "employee_count_min": {
                        "title": "Min Employee Count",
                        "type": "integer",
                        "description": "Minimum company employee count."
                    },
                    "employee_count_max": {
                        "title": "Max Employee Count",
                        "type": "integer",
                        "description": "Maximum company employee count."
                    },
                    "founded_year_min": {
                        "title": "Min Founded Year",
                        "type": "integer",
                        "description": "Minimum company founded year."
                    },
                    "founded_year_max": {
                        "title": "Max Founded Year",
                        "type": "integer",
                        "description": "Maximum company founded year."
                    },
                    "sort_by": {
                        "title": "Sort By",
                        "type": "string",
                        "description": "Field to sort results by (e.g. date, amount)."
                    },
                    "sort_order": {
                        "title": "Sort Order",
                        "enum": [
                            "asc",
                            "desc"
                        ],
                        "type": "string",
                        "description": "Sort direction.",
                        "default": "desc"
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
