1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "documents": ["""# Project Status Report
9
10**Project:** Website Redesign
11**Date:** 2026-07-26
12**Status:** On track
13
14## Summary
15
16The redesign is progressing well. All *core* pages are complete, and the team is now focused on **performance optimization**.
17
18## Milestones
19
201. Wireframes approved
212. Homepage rebuilt
223. Performance audit (in progress)
234. Launch (pending)
24
25## Open Issues
26
27- Mobile navigation needs a fix on Safari
28- Legal review of footer copy still pending
29
30## Budget
31
32| Category | Budgeted | Spent |
33|---|---|---|
34| Design | $8,000 | $7,200 |
35| Development | $15,000 | $9,500 |
36| QA | $4,000 | $1,000 |
37
38See the [full project brief](https://example.com/brief) for details.
39"""] }
40
41
42run = client.actor("raional/markdown-to-pdf-converter").call(run_input=run_input)
43
44
45print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
46for item in client.dataset(run["defaultDatasetId"]).iterate_items():
47 print(item)
48
49