GET /feed

Feed

Access the real-time Crunchbase signal feed with trending companies, funding predictions, awards, and market signals.

Crunchbase Data API

Access Crunchbase’s real-time signal feed to monitor trending companies, funding predictions, awards, and other market signals. Supports filtering by feed type and signal type, with pagination for processing large result sets.

HTTP Request

1
GET /feed

Parameters

ParameterTypeRequiredDefaultDescription
typestringNoanyWhich feed to show: any, trending, insights, predictions
signal_typestringNoanyDrill into one signal kind: any, trending_award, trending_key_employee_change, trending_layoff, trending_legal_proceeding, trending_partnership_announcement, trending_product_launch, insights_growth_insight, insights_investor_insight, predictions_funding_prediction, predictions_acquisition_prediction, predictions_ipo_prediction, predictions_growth_prediction
industrystringNoRestrict to companies tagged with this industry. Slug, UUID, or free-form name
locationstringNoRestrict to companies HQ’d in this location. City/region/country slug, UUID, or name
min_growth_scoreintegerNoRestrict to companies with at least this growth score (0-100)
per_pageintegerNo15Results per page (1-100)
pageintegerNo1Page number (1-indexed)

Response

Example Response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
  "status": true,
  "request_id": "7f0efbf9-1f05-fd10-2b64-48b6c300",
  "data": {
    "total": null,
    "page": 1,
    "per_page": 3,
    "has_next_page": true,
    "results": [
      {
        "uuid": "1ffaf704-d3e5-42e3-93c8-7bb92f14f677",
        "type": "award",
        "published_on": "2025-05-30",
        "updated_at": "2025-05-30T18:55:12Z",
        "title": "Claroty received industry recognition",
        "image": "https://images.crunchbase.com/image/upload/19bb1bd789294bea9d985b400fad1c01",
        "organization": {
          "uuid": "0a07e1d2-061a-0f91-d9f1-0acc8c61de83",
          "slug": "claroty",
          "name": "Claroty",
          "type": "organization",
          "image": "https://images.crunchbase.com/image/upload/b6ec34a841d448cda800d2e43979f0bc"
        },
        "headquarters": [
          {
            "name": "New York",
            "slug": "new-york-new-york",
            "uuid": "d64b7615-985c-fbf4-4aff-aa89d70c4050",
            "location_type": "city"
          },
          {
            "name": "New York",
            "slug": "new-york-united-states",
            "uuid": "83ead471-332b-d02e-67b7-67279aed075b",
            "location_type": "region"
          }
        ],
        "industries": [
          {
            "name": "Cyber Security",
            "slug": "cyber-security",
            "uuid": "46c250d5-00f6-d12f-4ad8-9b16f8b233d4",
            "image_id": "8efae427db9649099452405d24f534ba",
            "image": "https://images.crunchbase.com/image/upload/8efae427db9649099452405d24f534ba"
          }
          // ... more items
        ],
        "press_references": [
          {
            "title": "Oracle Health Tops Canadian EHR Satisfaction Rankings",
            "url": "https://www.newswire.com/news/oracle-health-tops-canadian-ehr-satisfaction-rankings-22582539",
            "publisher": "Newswire",
            "thumbnail": null
          }
        ]
      }
      // ... more items
    ],
    "resolved_filters": {}
  },
  "request_params": {
    "type": "trending",
    "signal_type": "trending_award",
    "page": "1",
    "per_page": "3"
  }
}

Response Fields

FieldTypeDescription
statusbooleanWhether the request was successful
request_idstringUnique identifier for the request
data.totalinteger/nullTotal number of results (null when unknown)
data.pageintegerCurrent page number
data.per_pageintegerNumber of results per page
data.has_next_pagebooleanWhether more pages of results are available
data.resultsarrayList of feed signal items
data.results[].uuidstringUnique identifier for the feed item
data.results[].typestringSignal type (e.g., award, funding_prediction)
data.results[].published_onstringPublication date in YYYY-MM-DD format
data.results[].updated_atstringLast update timestamp in ISO 8601 format
data.results[].titlestringHuman-readable title of the signal
data.results[].imagestringURL to the signal’s associated image
data.results[].organizationobjectThe organization associated with this signal
data.results[].organization.uuidstringOrganization UUID
data.results[].organization.slugstringOrganization slug for use in detail endpoints
data.results[].organization.namestringOrganization display name
data.results[].organization.typestringEntity type (always "organization")
data.results[].organization.imagestringURL to the organization’s logo
data.results[].headquartersarrayHeadquarters location (city and region)
data.results[].headquarters[].namestringLocation name
data.results[].headquarters[].slugstringLocation slug
data.results[].headquarters[].uuidstringLocation UUID
data.results[].headquarters[].location_typestringType of location: city or region
data.results[].industriesarrayIndustry categories for the organization
data.results[].industries[].namestringIndustry display name
data.results[].industries[].slugstringIndustry slug
data.results[].industries[].uuidstringIndustry UUID
data.results[].industries[].image_idstringImage ID for the industry icon
data.results[].industries[].imagestringFull URL to the industry icon
data.results[].press_referencesarrayRelated press articles
data.results[].press_references[].titlestringArticle title
data.results[].press_references[].urlstringArticle URL
data.results[].press_references[].publisherstringPublisher name
data.results[].press_references[].thumbnailstring/nullThumbnail image URL (null if unavailable)
data.resolved_filtersobjectResolved filter values applied to the query
request_paramsobjectEcho of the parameters sent in the request
request_params.typestringThe feed type filter that was applied
request_params.signal_typestringThe signal type filter that was applied
request_params.pagestringThe page number requested
request_params.per_pagestringThe per-page value requested

Code Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import requests

url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/feed"

params = {
    "type": "trending",
    "signal_type": "trending_award",
    "per_page": "10",
    "page": "1"
}

headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "crunchbase-extractor-full-api3.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params=params)
data = response.json()["data"]

for item in data["results"]:
    org = item["organization"]
    print(f"[{item['type']}] {item['title']}")
    print(f"  Company: {org['name']} ({org['slug']})")
    print(f"  Published: {item['published_on']}\n")

# Paginate if more results exist
if data["has_next_page"]:
    print("More results available on next page...")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/feed";

const params = new URLSearchParams({
  type: "trending",
  signal_type: "trending_award",
  per_page: "10",
  page: "1",
});

const response = await fetch(`${url}?${params}`, {
  method: "GET",
  headers: {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "crunchbase-extractor-full-api3.p.rapidapi.com",
  },
});

const { data } = await response.json();

data.results.forEach((item) => {
  const org = item.organization;
  console.log(`[${item.type}] ${item.title}`);
  console.log(`  Company: ${org.name} (${org.slug})`);
  console.log(`  Published: ${item.published_on}\n`);
});

if (data.has_next_page) {
  console.log("More results available on next page...");
}
1
2
3
4
5
6
7
curl -G "https://crunchbase-extractor-full-api3.p.rapidapi.com/feed" \
  --data-urlencode "type=trending" \
  --data-urlencode "signal_type=trending_award" \
  --data-urlencode "per_page=10" \
  --data-urlencode "page=1" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: crunchbase-extractor-full-api3.p.rapidapi.com"
Start building today

Get your API key and make your first request in under a minute.

Get Your API Key on RapidAPI