1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "mode": "liveMatches",
10 "maxMatches": 10,
11 "date": "2026-07-10",
12 "matchId": 16385412,
13 "tournamentId": 2361,
14 "seasonId": 63966,
15 "playerId": 206570,
16 "proxy": {
17 "useApifyProxy": True,
18 "apifyProxyGroups": ["RESIDENTIAL"],
19 "apifyProxyCountry": "US",
20 },
21}
22
23
24run = client.actor("parsebird/tennis-scraper-api-live-scores").call(run_input=run_input)
25
26
27print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
28for item in client.dataset(run.default_dataset_id).iterate_items():
29 print(item)
30
31