Fundraising API

Discover companies with recent funding rounds. Target businesses that just raised capital to find high-intent prospects with budget to spend.

< 4
s

Avg Response

+ 50

Endpoints

99.9
%

Uptime

1import requests
2
3url = "https://api.linkupapi.com/v1/data/fundraising-companies"
4
5payload = {
6    "funding_stage": "Series B",
7    "min_funding_amount": 10000000,
8    "industry": "Software",
9    "location": "United States",
10    "date_range": "last_6_months",
11    "total_results": 50
12}
13
14headers = {
15    "x-api-key": "<x-api-key>",
16    "Content-Type": "application/json"
17}
18
19response = requests.post(url, json=payload, headers=headers)
20print(response.json())
1const axios = require('axios');
2
3const url = 'https://api.linkupapi.com/v1/data/fundraising-companies';
4
5const payload = {
6  funding_stage: 'Series B',
7  min_funding_amount: 10000000,
8  industry: 'Software',
9  location: 'United States',
10  date_range: 'last_6_months',
11  total_results: 50
12};
13
14const headers = {
15  'x-api-key': '<x-api-key>',
16  'Content-Type': 'application/json'
17};
18
19axios.post(url, payload, { headers })
20  .then(response => console.log(response.data))
21  .catch(error => console.error(error));
1<?php
2$url = 'https://api.linkupapi.com/v1/data/fundraising-companies';
3
4$payload = array(
5    'funding_stage' => 'Series B',
6    'min_funding_amount' => 10000000,
7    'industry' => 'Software',
8    'location' => 'United States',
9    'date_range' => 'last_6_months',
10    'total_results' => 50
11);
12
13$headers = array(
14    'x-api-key: <x-api-key>',
15    'Content-Type: application/json'
16);
17
18$ch = curl_init($url);
19curl_setopt($ch, CURLOPT_POST, true);
20curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
21curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
22curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
23
24$response = curl_exec($ch);
25curl_close($ch);
26
27echo $response;
28?>
1package main
2
3import (
4    "bytes"
5    "encoding/json"
6    "fmt"
7    "net/http"
8)
9
10func main() {
11    url := "https://api.linkupapi.com/v1/data/fundraising-companies"
12
13    payload := map[string]interface{}{
14        "funding_stage":       "Series B",
15        "min_funding_amount":  10000000,
16        "industry":            "Software",
17        "location":            "United States",
18        "date_range":          "last_6_months",
19        "total_results":       50,
20    }
21
22    jsonData, _ := json.Marshal(payload)
23
24    req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
25    req.Header.Set("x-api-key", "<x-api-key>")
26    req.Header.Set("Content-Type", "application/json")
27
28    client := &http.Client{}
29    resp, _ := client.Do(req)
30    defer resp.Body.Close()
31
32    var result map[string]interface{}
33    json.NewDecoder(resp.Body).Decode(&result)
34    fmt.Println(result)
35}
1import java.net.http.*;
2import java.net.URI;
3import org.json.JSONObject;
4
5public class FundraisingAPI {
6    public static void main(String[] args) throws Exception {
7        String url = "https://api.linkupapi.com/v1/data/fundraising-companies";
8
9        JSONObject payload = new JSONObject();
10        payload.put("funding_stage", "Series B");
11        payload.put("min_funding_amount", 10000000);
12        payload.put("industry", "Software");
13        payload.put("location", "United States");
14        payload.put("date_range", "last_6_months");
15        payload.put("total_results", 50);
16
17        HttpClient client = HttpClient.newHttpClient();
18        HttpRequest request = HttpRequest.newBuilder()
19            .uri(URI.create(url))
20            .header("x-api-key", "<x-api-key>")
21            .header("Content-Type", "application/json")
22            .POST(HttpRequest.BodyPublishers.ofString(payload.toString()))
23            .build();
24
25        HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
26        System.out.println(response.body());
27    }
28}

Track funded companies with precision filters

Identify companies that recently raised funding with complete round details.

The Fundraising API tracks funding announcements across the web to help you find businesses with fresh capital and buying intent.

Perfect for sales teams targeting well-funded prospects, recruiters finding scaling companies, or service providers seeking clients ready to invest.

Filter by funding stage, amount raised, investor type, industry, and announcement date to find companies in growth mode.

Get detailed information including round size, funding stage, lead investors, valuation, and announcement timing.

The API aggregates data from multiple sources to provide the most comprehensive view of which companies just secured capital and are ready to scale.

1{
2  "status": "success",
3  "data": {
4    "total_results": 128,
5    "page": 1,
6    "results": [
7      {
8        "name": "CloudTech Solutions",
9        "domain": "cloudtech.com",
10        "industry": "Software",
11        "website": "https://cloudtech.com",
12        "employee_range": "201-500",
13        "headquarters": {
14          "city": "San Francisco",
15          "state": "California",
16          "country": "United States"
17        },
18        "logo_url": "https://example.com/logos/cloudtech.png",
19        "funding_details": {
20          "latest_round": {
21            "stage": "Series B",
22            "amount": "$45M",
23            "currency": "USD",
24            "announcement_date": "2025-08-15",
25            "lead_investors": ["Sequoia Capital", "Andreessen Horowitz"],
26            "valuation": "$200M"
27          },
28          "total_funding": "$65M",
29          "funding_rounds": 3
30        },
31        "social_profiles": {
32          "linkedin": "https://linkedin.com/company/cloudtech-solutions",
33          "twitter": "https://twitter.com/cloudtech"
34        }
35      },
36      {
37        "name": "Neural Labs",
38        "domain": "neurallabs.io",
39        "industry": "Artificial Intelligence",
40        "website": "https://neurallabs.io",
41        "employee_range": "51-200",
42        "headquarters": {
43          "city": "Paris",
44          "state": "Île-de-France",
45          "country": "France"
46        },
47        "logo_url": "https://example.com/logos/neurallabs.png",
48        "funding_details": {
49          "latest_round": {
50            "stage": "Series A",
51            "amount": "$18M",
52            "currency": "USD",
53            "announcement_date": "2025-09-22",
54            "lead_investors": ["Accel", "Index Ventures"],
55            "valuation": "$85M"
56          },
57          "total_funding": "$25M",
58          "funding_rounds": 2
59        },
60        "social_profiles": {
61          "linkedin": "https://linkedin.com/company/neural-labs",
62          "twitter": "https://twitter.com/neurallabs"
63        }
64      }
65    ]
66  },
67  "credits_used": 1
68}

Funded companies

  • funding_stage: Seed, Series A, Series B, Series C, Series D+
  • min_funding_amount: 1000000, 5000000, 10000000, 50000000
  • max_funding_amount: 10000000, 50000000, 100000000
  • industry: Software, Healthcare, FinTech, E-commerce
  • location: United States, Europe, Asia, San Francisco CA
  • date_range: last_30_days, last_3_months, last_6_months, last_year
  • investor_name: Sequoia Capital, Andreessen Horowitz, Y Combinator
  • total_results: 50, 100, 500
  • funding_stage: Seed, Series A, Series B, Series C, Series D+
  • min_funding_amount: 1000000, 5000000, 10000000, 50000000
  • max_funding_amount: 10000000, 50000000, 100000000
  • industry: Software, Healthcare, FinTech, E-commerce
  • location: United States, Europe, Asia, San Francisco CA
  • date_range: last_30_days, last_3_months, last_6_months, last_year
  • investor_name: Sequoia Capital, Andreessen Horowitz, Y Combinator
  • total_results: 50, 100, 500

Privacy and security with no compromise.

Enterprise-grade security measures ensuring your data remains protected at every step of the process.

Real-Time Processing

Process data instantly without storage, ensuring maximum security and optimal performance for all operations.

Zero-Storage Architecture

Our unique architecture processes data on-the-fly without permanent storage, eliminating potential security vulnerabilities.

Enterprise Compliance

Built-in compliance with GDPR, CCPA, and major industry security standards for comprehensive data protection.

Turn your dream workflow into reality

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut et massa mi. Aliquam in hendrerit urna.

LinkupAPI V2 - See what’s new

Launch LinkedIn campaigns, scrape intent signals, and enrich profiles in seconds. All through one powerful API platform.

50
+

Endpoints

99.9
%

Uptime

< 3
s

Avg Response