1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "jobs": [{
9 "jobId": "job-101",
10 "url": "https://jobs.example.com/job-101",
11 "title": "Senior Data Analyst",
12 "company": "Example GmbH",
13 "location": "Berlin",
14 "country": "DE",
15 "employmentType": "Full-time",
16 "postedDate": "2026-08-12T10:00:00Z",
17 "sourceName": "Licensed ATS export",
18 "sourceLicense": "Buyer confirms downstream processing and delivery rights",
19 }] }
20
21
22run = client.actor("zinin/xing-jobs").call(run_input=run_input)
23
24
25print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
26for item in client.dataset(run.default_dataset_id).iterate_items():
27 print(item)
28
29