Webinar Lead Prospecting Workflow
Pricing
Pay per event
Webinar Lead Prospecting Workflow
Find companies running webinars, demos, virtual events, and workshops, then enrich public host/contact signals for B2B prospecting.
Webinar Lead Prospecting Workflow
Pricing
Pay per event
Find companies running webinars, demos, virtual events, and workshops, then enrich public host/contact signals for B2B prospecting.
You can access the Webinar Lead Prospecting Workflow programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "queries": [12 "cybersecurity webinar",13 "HR software demo",14 "marketing automation virtual event"15 ],16 "domains": [17 "hubspot.com",18 "semrush.com"19 ],20 "eventUrls": [21 {22 "url": "https://www.hubspot.com/webinars"23 }24 ],25 "maxItems": 20,26 "maxSearchResultsPerQuery": 10,27 "includeContacts": true,28 "dedupeByDomain": true,29 "country": "United States"30};31
32// Run the Actor and wait for it to finish33const run = await client.actor("automation-lab/webinar-lead-prospecting-workflow").call(input);34
35// Fetch and print Actor results from the run's dataset (if any)36console.log('Results from dataset');37console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);38const { items } = await client.dataset(run.defaultDatasetId).listItems();39items.forEach((item) => {40 console.dir(item);41});42
43// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Webinar Lead Prospecting Workflow API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: