1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "markdown": """# 🚀 Your brand deserves more visibility
9
10## Why SEO?
111. **More visibility** in Google & co.
122. *Targeted traffic* to your site
133. Higher **conversion rates** through relevant content
14
15> Visibility is no accident. It's the result of strategic effort.
16
17## What I do for you:
18- Keyword analysis & mapping
19- Content optimization with value
20- Technical SEO & performance boost
21- Competitor analysis & SEO audits
22
23## Results that matter
24I’ve helped dozens of clients achieve *top rankings* — with sustainable, data-driven strategies. You don’t just get advice — you get action.
25
26## Let’s go
27Contact me today for a free consultation.
28
29Visit [antonioblago.de](https://antonioblago.de)
30
31`Let's grow your traffic. Organically.`""" }
32
33
34run = client.actor("antonio_espresso/markdowntosocialmediapost").call(run_input=run_input)
35
36
37print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
38for item in client.dataset(run["defaultDatasetId"]).iterate_items():
39 print(item)
40
41