> For the complete documentation index, see [llms.txt](https://docs.intellizence.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.intellizence.com/signals-api/startup-funding-venture-capital-deals/sample-requests.md).

# Intellizence Startup Funding API Sample Requests

## Startup Funding API Sample Requests

Use these sample API requests to retrieve startup funding, venture capital, and investment deal records from the Intellizence Startup Funding Dataset.

These examples show common ways to filter startup funding records by date, company domain, investor, industry, location, funding round, deal amount, valuation, and currency.

{% hint style="info" %}
All request parameters are optional. You can use a single filter or combine multiple filters based on your use case.
{% endhint %}

***

### Endpoint

```http
POST https://connect.intellizence.com/api/dataset/fundraising
```

### Authentication

Include your API key in the request header.

```http
x-api-key: YOUR_API_KEY
```

### Content Type

```http
Content-Type: application/json
```

***

## Sample API Requests

### 1. Get Daily Updated Records

Use `dateType: "LAST-MODIFIED"` to retrieve records that were created or updated on a specific date.

This is recommended for daily syncs, alerts, enrichment workflows, and automated data pipelines.

#### Request Body

```json
{
  "dateType": "LAST-MODIFIED",
  "date": "2025-03-03",
  "limit": 5
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "dateType": "LAST-MODIFIED",
    "date": "2025-03-03",
    "limit": 5
  }'
```

***

### 2. Get Funding Deals Announced on a Specific Date

Use `dateType: "ANNOUNCED"` and `date` to retrieve startup funding deals announced on a specific date.

#### Request Body

```json
{
  "dateType": "ANNOUNCED",
  "date": "2025-03-03",
  "limit": 10
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "dateType": "ANNOUNCED",
    "date": "2025-03-03",
    "limit": 10
  }'
```

***

### 3. Get Funding Deals Within a Date Range

Use `startDate` and `endDate` to retrieve startup funding deals announced during a specific period.

#### Request Body

```json
{
  "dateType": "ANNOUNCED",
  "startDate": "2025-03-01",
  "endDate": "2025-03-31",
  "limit": 25
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "dateType": "ANNOUNCED",
    "startDate": "2025-03-01",
    "endDate": "2025-03-31",
    "limit": 25
  }'
```

***

### 4. Search by Company Domain

Use `companyDomain` to retrieve funding records for a specific company website domain.

This is recommended for CRM enrichment, account matching, data pipelines, and workflow automation because domains are usually more precise than company names.

#### Request Body

```json
{
  "companyDomain": "anthropic.com",
  "limit": 10
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "companyDomain": "anthropic.com",
    "limit": 10
  }'
```

***

### 5. Search by Investor

Use `investor` to retrieve funding deals involving a specific investor, venture capital firm, private equity firm, corporate investor, or strategic backer.

This is useful for investor tracking, competitive intelligence, deal sourcing analysis, and market research.

#### Request Body

```json
{
  "investor": "Lightspeed Venture Partners",
  "limit": 20
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "investor": "Lightspeed Venture Partners",
    "limit": 20
  }'
```

***

### 6. Search by Company Industry

Use `companyIndustry` to retrieve funding deals for companies in one or more industries.

This is useful for sector research, market mapping, investment research, and prospecting.

#### Request Body

```json
{
  "companyIndustry": [
    "technology",
    "healthcare"
  ],
  "limit": 20
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "companyIndustry": [
      "technology",
      "healthcare"
    ],
    "limit": 20
  }'
```

***

### 7. Search by Company Location

Use `companyLocation` to find funding deals involving companies headquartered in a specific city, state, province, country, or region.

#### Request Body

```json
{
  "companyLocation": "San Francisco,California,United States of America",
  "limit": 20
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "companyLocation": "San Francisco,California,United States of America",
    "limit": 20
  }'
```

***

### 8. Search by Funding Round

Use `fundingRound` to retrieve deals by funding stage.

Examples include `Seed`, `Series A`, `Series B`, `Series C`, `Series D`, `Series E`, `Private Equity`, `Debt Financing`, and `Corporate Round`.

#### Request Body

```json
{
  "fundingRound": [
    "Series A",
    "Series B"
  ],
  "limit": 20
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "fundingRound": [
      "Series A",
      "Series B"
    ],
    "limit": 20
  }'
```

***

### 9. Search by Funding Amount

Use `dealAmount` to filter funding deals by transaction value.

You can use comparison operators such as `>`, `>=`, `<`, `<=`, `=`, and `!=`.

When filtering by deal amount, include `currency` for more precise results.

#### Request Body

```json
{
  "dealAmount": ">100000000",
  "currency": "USD",
  "limit": 20
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "dealAmount": ">100000000",
    "currency": "USD",
    "limit": 20
  }'
```

***

### 10. Use Multiple Filters Together

Combine filters to narrow results by date range, industry, funding round, funding amount, investor, company type, and currency.

#### Request Body

```json
{
  "dateType": "ANNOUNCED",
  "startDate": "2025-01-01",
  "endDate": "2025-03-31",
  "companyIndustry": [
    "technology"
  ],
  "companyType": [
    "Private"
  ],
  "fundingRound": [
    "Series B",
    "Series C"
  ],
  "dealAmount": ">50000000",
  "currency": "USD",
  "limit": 50
}
```

#### cURL Example

```bash
curl --request POST \
  --url https://connect.intellizence.com/api/dataset/fundraising \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "dateType": "ANNOUNCED",
    "startDate": "2025-01-01",
    "endDate": "2025-03-31",
    "companyIndustry": [
      "technology"
    ],
    "companyType": [
      "Private"
    ],
    "fundingRound": [
      "Series B",
      "Series C"
    ],
    "dealAmount": ">50000000",
    "currency": "USD",
    "limit": 50
  }'
```

***

## Use Case Examples

### 1. Daily Data Sync

Use this example when you want to pull newly added or updated startup funding records into your application, database, CRM, or analytics workflow.

#### Recommended Filters

```json
{
  "dateType": "LAST-MODIFIED",
  "date": "2025-03-03",
  "limit": 100
}
```

#### Best For

* Data pipelines
* Daily refreshes
* Internal dashboards
* Alerts and workflow automation
* CRM and data warehouse enrichment

***

### 2. CRM or Account Enrichment

Use this example to check whether a company in your CRM has recent funding activity.

#### Recommended Filters

```json
{
  "companyDomain": "anthropic.com",
  "dateType": "LAST-MODIFIED",
  "startDate": "2025-01-01",
  "endDate": "2025-03-31",
  "limit": 10
}
```

#### Best For

* CRM enrichment
* Account scoring
* Sales intelligence
* Customer intelligence
* Signal-based selling workflows

***

### 3. Investment Research

Use this example to track large funding rounds in a specific sector.

#### Recommended Filters

```json
{
  "dateType": "ANNOUNCED",
  "startDate": "2025-01-01",
  "endDate": "2025-12-31",
  "companyIndustry": [
    "healthcare"
  ],
  "dealAmount": ">100000000",
  "currency": "USD",
  "limit": 50
}
```

#### Best For

* Market mapping
* Sector research
* Funding trend analysis
* Venture capital research
* Private equity and growth equity research

***

### 4. Investor Tracking

Use this example to monitor funding deals involving a specific investor.

#### Recommended Filters

```json
{
  "investor": "Lightspeed Venture Partners",
  "dateType": "ANNOUNCED",
  "startDate": "2025-01-01",
  "endDate": "2025-12-31",
  "limit": 25
}
```

#### Best For

* Investor activity tracking
* Competitive intelligence
* Venture capital market research
* Deal sourcing analysis
* Relationship mapping

***

### 5. Sales and Prospecting

Use this example to identify recently funded companies that may have new budgets, hiring plans, expansion needs, or vendor requirements.

#### Recommended Filters

```json
{
  "dateType": "LAST-MODIFIED",
  "startDate": "2025-01-01",
  "endDate": "2025-03-31",
  "companyIndustry": [
    "technology"
  ],
  "fundingRound": [
    "Series A",
    "Series B",
    "Series C"
  ],
  "dealAmount": ">10000000",
  "currency": "USD",
  "limit": 25
}
```

#### Best For

* Prospecting
* Account prioritization
* Trigger-based outreach
* Sales and marketing campaigns
* Go-to-market workflows

***

## Recommended Use Cases

| Use Case              | Recommended Filters                                         |
| --------------------- | ----------------------------------------------------------- |
| Daily data sync       | `dateType`, `date`, `limit`                                 |
| CRM enrichment        | `companyDomain`, `dateType`, `startDate`, `endDate`         |
| Investment research   | `companyIndustry`, date range, `dealAmount`, `currency`     |
| Investor tracking     | `investor`, date range, `limit`                             |
| Sales and prospecting | `companyIndustry`, `fundingRound`, `dealAmount`, `currency` |

***

## Best Practices

### Prefer company domain for company matching

For CRM enrichment, data pipelines, account matching, and automated workflows, use `companyDomain` when available.

Company domains are usually more precise than company names and help reduce duplicate or ambiguous matches.

```json
{
  "companyDomain": "anthropic.com",
  "limit": 10
}
```

### Use company name for manual lookup

You can also use `companyName` to search for funding records by company name.

Company name search is useful for manual lookup, but for automated workflows, CRM enrichment, and account matching, use `companyDomain` when available.

```json
{
  "companyName": "Anthropic",
  "limit": 10
}
```

### Use `LAST-MODIFIED` for daily syncs

For recurring syncs, alerts, and automated workflows, use `LAST-MODIFIED`.

```json
{
  "dateType": "LAST-MODIFIED",
  "date": "2025-03-03"
}
```

This helps retrieve records that were newly added or updated on that date.

### Use `ANNOUNCED` for event-date research

For research based on when a funding deal was announced, use `ANNOUNCED`.

```json
{
  "dateType": "ANNOUNCED",
  "startDate": "2025-01-01",
  "endDate": "2025-03-31"
}
```

### Use funding rounds for stage-based filtering

Use `fundingRound` when you want to filter companies by investment stage.

```json
{
  "fundingRound": [
    "Seed",
    "Series A",
    "Series B"
  ],
  "limit": 25
}
```

### Use `dealAmount` with `currency`

When filtering by funding amount, include `currency` for more precise results.

```json
{
  "dealAmount": ">50000000",
  "currency": "USD",
  "limit": 25
}
```

### Use `valuation` for high-valuation company research

Valuation data may not be available for every record. It is typically available for selected companies, especially larger funding rounds or companies with billion-dollar valuations.

```json
{
  "valuation": ">1000000000",
  "currency": "USD",
  "limit": 25
}
```

### Use `limit` to control result size

The default limit is `100` records if no limit is provided.

```json
{
  "limit": 100
}
```

### Combine filters for more precise results

You can combine multiple filters in a single request to narrow your results.

```json
{
  "dateType": "ANNOUNCED",
  "startDate": "2025-01-01",
  "endDate": "2025-03-31",
  "companyIndustry": [
    "technology"
  ],
  "fundingRound": [
    "Series B"
  ],
  "dealAmount": ">50000000",
  "currency": "USD",
  "limit": 50
}
```

***

## Notes

* All parameters are optional.
* Dates should be provided in `YYYY-MM-DD` format.
* Use `LAST-MODIFIED` when you want newly added or updated records.
* Use `ANNOUNCED` when you want records based on the funding announcement date.
* Use `companyDomain` for CRM matching, account enrichment, and workflow automation.
* Use `companyName` for manual lookup when the company domain is not available.
* Include `currency` when filtering by `dealAmount` or `valuation`.
* Use `companyIndustry`, `companyLocation`, and `fundingRound` for market research, investment research, and prospecting.
* Startup funding data is generally available for VC-funded private companies only.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.intellizence.com/signals-api/startup-funding-venture-capital-deals/sample-requests.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
