1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "currentItems": [
10 {
11 "regulation": "EU AI Act",
12 "obligation": "GPAI documentation",
13 "providerType": "GPAI",
14 "changeType": "enforcement active",
15 "deadline": "2026-08-02",
16 "enforcementRiskScore": 85,
17 "observedAt": "2026-09-19",
18 },
19 {
20 "regulation": "EU AI Act",
21 "obligation": "systemic risk evaluation",
22 "providerType": "GPAI systemic risk",
23 "changeType": "guidance update",
24 "deadline": "2026-12-01",
25 "enforcementRiskScore": 70,
26 "observedAt": "2026-09-19",
27 },
28 ],
29 "previousItems": [{
30 "regulation": "EU AI Act",
31 "obligation": "GPAI documentation",
32 "providerType": "GPAI",
33 "changeType": "pre-enforcement",
34 "deadline": "2026-08-02",
35 "enforcementRiskScore": 55,
36 "observedAt": "2026-07-19",
37 }],
38}
39
40
41run = client.actor("quanmatrix/eu-ai-act-gpai-compliance-enforcement-intelligence").call(run_input=run_input)
42
43
44print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
45for item in client.dataset(run.default_dataset_id).iterate_items():
46 print(item)
47
48