const API = "https://api.veronaresearch.com/v1";const headers = { Authorization: `Bearer ${process.env.VERONA_API_KEY}`, "Content-Type": "application/json",};const search = await fetch(`${API}/searches`, { method: "POST", headers, body: JSON.stringify({ query: "VP-level growth leaders at AI infrastructure startups", target_count: 250, }),}).then((response) => response.json());let status = search;while (["queued", "running"].includes(status.status)) { await new Promise((resolve) => setTimeout(resolve, status.poll_after_seconds * 1_000)); status = await fetch(`${API}/searches/${search.search_id}`, { headers }) .then((response) => response.json());}if (status.status === "failed") throw new Error(status.error?.message);const results = await fetch(`${API}/searches/${search.search_id}/results`, { headers,}).then((response) => response.json());console.log(results.items);
{ "search_id": "search_01JZ2S8YQK7M6B4F9W3H1T5N0P", "status": "running", "is_complete": false, "target_count": 250, "qualified_count": 42, "returned_count": 1, "has_more": true, "next_cursor": "eyJzY29yZSI6OTYsImlkIjoxfQ", "items": [ { "name": "Maya Chen", "title": "VP of Growth", "company": "NeuralScale", "location": "San Francisco, California, United States", "linkedin_url": "https://www.linkedin.com/in/maya-chen", "rationale": "Leads growth at an AI infrastructure startup and meets the requested seniority.", "work_history": [ { "title": "VP of Growth", "company": "NeuralScale", "company_domain": "neuralscale.example", "start_date": "2023-04-01", "end_date": null, "is_current": true, "location": "San Francisco, California", "description": "Leads growth across product, lifecycle, and developer acquisition." }, { "title": "Director of Growth", "company": "CloudForge", "company_domain": "cloudforge.example", "start_date": "2020-06-01", "end_date": "2023-03-01", "is_current": false, "location": "San Francisco, California", "description": "Built the developer acquisition engine from seed through Series B." } ], "education": [ { "school": "Stanford University", "degree": "MBA", "field_of_study": null, "start_date": "2018-09-01", "end_date": "2020-06-01" } ] } ]}