1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "authorization": "I confirm I am authorized to process and deliver these 1688 offer records",
10 "sourceContext": "buyer_owned_1688_export",
11 "offers": [{
12 "offerId": "1000406623486",
13 "offerUrl": "https://detail.1688.com/offer/1000406623486.html",
14 "previous": {
15 "offerId": "1000406623486",
16 "title": "USB-C cable wholesale pack",
17 "priceMin": 3.8,
18 "priceMax": 4.6,
19 "currency": "CNY",
20 "priceTiers": [
21 {
22 "beginAmount": 100,
23 "price": 4.6,
24 },
25 {
26 "beginAmount": 500,
27 "price": 3.8,
28 },
29 ],
30 "moq": 100,
31 "stock": 12000,
32 "unit": "piece",
33 "supplier": {
34 "id": "supplier-88",
35 "name": "Example Authorized Supplier",
36 "loginId": "seller88",
37 },
38 "badges": ["verified-export"],
39 "promotions": [],
40 },
41 "current": {
42 "offerId": "1000406623486",
43 "title": "USB-C cable wholesale pack",
44 "priceMin": 3.6,
45 "priceMax": 4.4,
46 "currency": "CNY",
47 "priceTiers": [
48 {
49 "beginAmount": 100,
50 "price": 4.4,
51 },
52 {
53 "beginAmount": 500,
54 "price": 3.6,
55 },
56 ],
57 "moq": 100,
58 "stock": 15000,
59 "unit": "piece",
60 "supplier": {
61 "id": "supplier-88",
62 "name": "Example Authorized Supplier",
63 "loginId": "seller88",
64 },
65 "badges": ["verified-export"],
66 "promotions": ["buyer-supplied summer tier"],
67 },
68 "sourceName": "Buyer-owned 1688 export",
69 "sourceLicense": "Buyer confirms authorization to process and deliver this export.",
70 "sourceRetrievedAt": "2026-08-13T00:00:00Z",
71 }],
72}
73
74
75run = client.actor("zinin/china-1688-supplier-monitor").call(run_input=run_input)
76
77
78print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
79for item in client.dataset(run.default_dataset_id).iterate_items():
80 print(item)
81
82