Outreach Sequencer
Pricing
Pay per usage
Go to Apify Store
You can access the Outreach Sequencer 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.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "mode": "start",10 "leads": [{11 "email": "jane@acmecorp.com",12 "firstName": "Jane",13 "companyName": "Acme Corp",14 "servicesOffered": [15 "SEO",16 "PPC",17 ],18 "summarySnippet": "Full-service digital marketing agency specializing in performance campaigns for e-commerce brands.",19 }],20 "emailProvider": "smtp",21 "smtpHost": "smtp-relay.brevo.com",22 "smtpUser": "yourlogin@example.com",23 "smtpPass": "your-smtp-password",24 "apiKey": "SG.xxxxxxxxxxxxxxxxxxxx",25 "mailgunDomain": "mail.yourdomain.com",26 "fromName": "Jane at Acme Corp",27 "fromEmail": "jane@acmecorp.com",28 "unsubscribeUrl": "https://yourapp.com/unsubscribe?sid={{sequenceId}}&e={{email}}",29 "rateLimitPerRun": 100,30 "emailTemplate": """Hi {{firstName}},31
32I came across {{companyName}} and was impressed by your work in {{topService}}.33
34{{summarySnippet}}35
36I'd love to explore how we might work together. Would you be open to a quick 15-minute call this week?37
38Best,39[Your name]40
41To opt out: {{unsubscribeLink}}""",42 "subjectLine": "Quick question for {{companyName}}",43 "kvStoreName": "outreach-sequences",44}45
46# Run the Actor and wait for it to finish47run = client.actor("ryanclinton/outreach-sequencer").call(run_input=run_input)48
49# Fetch and print Actor results from the run's dataset (if there are any)50print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])51for item in client.dataset(run["defaultDatasetId"]).iterate_items():52 print(item)53
54# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use Outreach Sequencer API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: