harmonic_get_saved_search_results
Retrieve detailed company or person data from a previously saved search, enabling monitoring of deal flow and tracking of organizations matching specific investment criteria.
Instructions
Get results from a saved search. Returns full company/person data matching the search criteria.
WARNING: Response sizes are LARGE:
size=3 (default): ~81KB
size=5 (max): ~135KB
Field filtering does NOT work on this endpoint. Each result contains full company data (~27KB). Use pagination (cursor) for more results rather than large sizes.
Input:
search_id: The saved search ID (get from harmonic_list_saved_searches)
size: Number of results (default: 3, max: 5)
cursor: Pagination cursor for more results
Returns (for COMPANIES_LIST type): { "data": [ { "id": 65200417, "name": "Stealth Company (John Smith)", "description": "...", "headcount": 1, "funding": { "funding_total": 0, "funding_stage": "STEALTH" }, "location": { "city": "San Francisco", "country": "United States" }, "contact": { "primary_email": "john@example.com" } } ], "count": number, "totalAvailable": number, "hasMore": boolean, "nextCursor": string | null }
Use cases:
Monitor deal flow with pre-defined criteria
Get companies matching specific investment thesis
Track stealth companies or recent launches
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| search_id | Yes | Saved search ID or URN | |
| size | No | Number of results to return (default: 3, max: 5). Each result is ~27KB. Use pagination for more. | |
| cursor | No | Pagination cursor from previous response | |
| response_format | No | Output format: "json" or "markdown" | json |