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
| |
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
type | string | No | any | Which feed to show: any, trending, insights, predictions |
signal_type | string | No | any | Drill 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 |
industry | string | No | — | Restrict to companies tagged with this industry. Slug, UUID, or free-form name |
location | string | No | — | Restrict to companies HQ’d in this location. City/region/country slug, UUID, or name |
min_growth_score | integer | No | — | Restrict to companies with at least this growth score (0-100) |
per_page | integer | No | 15 | Results per page (1-100) |
page | integer | No | 1 | Page number (1-indexed) |
Response
Example Response
| |
Response Fields
| Field | Type | Description |
|---|---|---|
status | boolean | Whether the request was successful |
request_id | string | Unique identifier for the request |
data.total | integer/null | Total number of results (null when unknown) |
data.page | integer | Current page number |
data.per_page | integer | Number of results per page |
data.has_next_page | boolean | Whether more pages of results are available |
data.results | array | List of feed signal items |
data.results[].uuid | string | Unique identifier for the feed item |
data.results[].type | string | Signal type (e.g., award, funding_prediction) |
data.results[].published_on | string | Publication date in YYYY-MM-DD format |
data.results[].updated_at | string | Last update timestamp in ISO 8601 format |
data.results[].title | string | Human-readable title of the signal |
data.results[].image | string | URL to the signal’s associated image |
data.results[].organization | object | The organization associated with this signal |
data.results[].organization.uuid | string | Organization UUID |
data.results[].organization.slug | string | Organization slug for use in detail endpoints |
data.results[].organization.name | string | Organization display name |
data.results[].organization.type | string | Entity type (always "organization") |
data.results[].organization.image | string | URL to the organization’s logo |
data.results[].headquarters | array | Headquarters location (city and region) |
data.results[].headquarters[].name | string | Location name |
data.results[].headquarters[].slug | string | Location slug |
data.results[].headquarters[].uuid | string | Location UUID |
data.results[].headquarters[].location_type | string | Type of location: city or region |
data.results[].industries | array | Industry categories for the organization |
data.results[].industries[].name | string | Industry display name |
data.results[].industries[].slug | string | Industry slug |
data.results[].industries[].uuid | string | Industry UUID |
data.results[].industries[].image_id | string | Image ID for the industry icon |
data.results[].industries[].image | string | Full URL to the industry icon |
data.results[].press_references | array | Related press articles |
data.results[].press_references[].title | string | Article title |
data.results[].press_references[].url | string | Article URL |
data.results[].press_references[].publisher | string | Publisher name |
data.results[].press_references[].thumbnail | string/null | Thumbnail image URL (null if unavailable) |
data.resolved_filters | object | Resolved filter values applied to the query |
request_params | object | Echo of the parameters sent in the request |
request_params.type | string | The feed type filter that was applied |
request_params.signal_type | string | The signal type filter that was applied |
request_params.page | string | The page number requested |
request_params.per_page | string | The per-page value requested |
Code Examples
| |
| |
| |
Related Endpoints
- Trending — Simpler endpoint for just top trending companies by score
- Company Search — Search companies with extensive filters
- Funding Round Search — Search funding rounds directly