1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "evaluationTime": "2026-08-23T00:00:00Z",
10 "maxAgeDays": 30,
11 "requiredPaths": [
12 "tests.json",
13 "review.json",
14 ],
15 "evidenceFiles": [
16 {
17 "path": "tests.json",
18 "observedAt": "2026-08-22T20:00:00Z",
19 "content": "{\"status\":\"PASS\",\"passed\":24,\"failed\":0}",
20 },
21 {
22 "path": "review.json",
23 "observedAt": "2026-08-22T20:30:00Z",
24 "content": "{\"status\":\"PASS\",\"reviewer\":\"synthetic-demo\"}",
25 },
26 ],
27}
28
29
30run = client.actor("filipmajchrzak/ai-evidence-integrity-checker").call(run_input=run_input)
31
32
33print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
34for item in client.dataset(run.default_dataset_id).iterate_items():
35 print(item)
36
37