1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "company_name": "NextWave Logistics",
10 "company_info_or_website_text": "NextWave Logistics is a mid-sized regional freight forwarding company based in Texas. We specialize in cross-border warehousing, cold chain trucking, and last-mile B2B fulfillment. Currently operating 120 trucks with 3 regional hubs. Expanding our fleet across the southern border.",
11 "your_offer": "We provide an automated route optimization and fuel tracking IoT software that helps logistics companies cut fleet fuel costs by 18%.",
12}
13
14
15run = client.actor("enchantingly_lockbox/b2b-cold-email-lead-outreach-ai-generator").call(run_input=run_input)
16
17
18print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
19for item in client.dataset(run.default_dataset_id).iterate_items():
20 print(item)
21
22