1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "bills": [{
9 "id": "2026-0042",
10 "account": "CH4431999123000889012",
11 "creditor": {
12 "name": "Robert Schneider AG",
13 "street": "Rue du Lac",
14 "houseNumber": "1268",
15 "postalCode": "2501",
16 "city": "Biel",
17 "country": "CH",
18 },
19 "debtor": {
20 "name": "Pia-Maria Rutschmann-Schnyder",
21 "street": "Grosse Marktgasse",
22 "houseNumber": "28",
23 "postalCode": "9400",
24 "city": "Rorschach",
25 "country": "CH",
26 },
27 "amount": 1949.75,
28 "currency": "CHF",
29 "reference": "210000000003139471430009017",
30 "additionalInformation": "Order of 15 June 2026",
31 "language": "fr",
32 }] }
33
34
35run = client.actor("najx/swiss-qr-bill-generator").call(run_input=run_input)
36
37
38print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
39for item in client.dataset(run.default_dataset_id).iterate_items():
40 print(item)
41
42