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