# CryptoCap: Funding & VC Deal Flow Scraper (`complex_intricate_networks/crypto-funding-rounds-tracker`) Actor

Track crypto funding rounds in real-time. Scrapes $ amounts, rounds (Seed-Series B), and lead investors from The Block, CoinDesk, and Decrypt. Perfect for Web3 B2B leads and VC intelligence.

- **URL**: https://apify.com/complex\_intricate\_networks/crypto-funding-rounds-tracker.md
- **Developed by:** [CIN](https://apify.com/complex_intricate_networks) (community)
- **Categories:** Automation, Lead generation, Agents
- **Stats:** 9 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## 🚀 CryptoCap: Web3 Funding & VC Deal Flow Scraper

**Turn crypto news into actionable B2B leads.** This Actor is a high-performance, lightweight scraper designed for Web3 sales teams, VC analysts, and startup founders who need structured data on the latest capital raises in the blockchain space.

It monitors the **"Top Three"** crypto news powerhouses—**The Block, CoinDesk, and Decrypt**—extracting clean, structured funding data directly into your CRM or spreadsheet.

***

### 🌟 Why use CryptoCap?

In the fast-moving crypto world, a funding announcement is the #1 signal that a company is ready to scale. Stop manual tracking and automate your lead pipeline:

- **B2B Sales & Agencies**: Target startups the moment they close a round—the "peak" buying window for security audits, marketing, and dev tools.
- **VC & Research**: Track which ecosystems (Solana, Ethereum, L2s) are attracting the most capital this week.
- **Market Research**: Identify industry trends and competitive investment patterns without reading through hundreds of articles.

***

### 🛠️ Features

- **✅ Multi-Source Intelligence**: Monitors The Block, CoinDesk, and Decrypt simultaneously.
- **✅ Noise Cancellation**: Sophisticated filters automatically strip out "price gossip," daily market updates, and sidebar widgets.
- **✅ Deep Archive Access**: Built-in pagination logic allows you to crawl through pages of history.
- **✅ Lightweight & Stealthy**: Uses optimized **Cheerio** logic and browser-fingerprinting to run 10x cheaper than browser-based scrapers while avoiding 403 blocks.

***

### 📥 Input Parameters

This Actor is "Plug & Play." You can control the depth of the crawl to manage your budget.

| Parameter | Type | Description |
| :--- | :--- | :--- |
| **Max Pages** | Integer | Limit how many pages deep the scraper should go for each site. |
| **Proxy Configuration** | Object | Use Apify Proxy (Residential or Datacenter) to ensure 100% success rates. |

***

### 📤 Output Example

The Actor provides structured, CRM-ready data in JSON, CSV, or Excel formats:

| Company | Funding | Round | Source | Scraped At |
| :--- | :--- | :--- | :--- | :--- |
| **Cryptio** | $45M | Series B | CoinDesk | 2026-03-12 |
| **VelaFi** | $20M | Series B | The Block | 2026-01-12 |
| **Babylon Labs** | $15M | Seed | Decrypt | 2026-01-07 |

#### Sample JSON Output:

````json
{
  "company": "Cryptio",
  "funding": "$45M",
  "round": "Series B",
  "source": "CoinDesk",
  "title": "Crypto accounting firm Cryptio raises $45 million as institutional demand accelerates",
  "url": "[https://www.coindesk.com/business/2026/03/12/crypto-accounting-firm-cryptio-raises-45-million/](https://www.coindesk.com/business/2026/03/12/crypto-accounting-firm-cryptio-raises-45-million/)",
  "scrapedAt": "2026-03-18T11:22:00Z"
}

# Actor input Schema

## `startUrls` (type: `array`):

URLs to start with.
## `maxRequestsPerCrawl` (type: `integer`):

Maximum number of requests that can be made by this crawler.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://crawlee.dev"
    }
  ],
  "maxRequestsPerCrawl": 100
}
````

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "startUrls": [
        {
            "url": "https://crawlee.dev"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("complex_intricate_networks/crypto-funding-rounds-tracker").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 = { "startUrls": [{ "url": "https://crawlee.dev" }] }

# Run the Actor and wait for it to finish
run = client.actor("complex_intricate_networks/crypto-funding-rounds-tracker").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 '{
  "startUrls": [
    {
      "url": "https://crawlee.dev"
    }
  ]
}' |
apify call complex_intricate_networks/crypto-funding-rounds-tracker --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Id3uDt3ezbfsYO06h/builds/i6dLMTnTdzWeJ8CkA/openapi.json
