1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "lots": [
12 {
13 "lotId": "demo-lot-1",
14 "auctionHouse": "Demo Auctions",
15 "title": "Rotary SPOA10 2-post vehicle lift",
16 "description": "Untested, buyer responsible for rigging. 15% buyer's premium applies.",
17 "currentBid": 1500,
18 "city": "Tacoma",
19 "state": "WA",
20 "closesAt": "2026-08-05T18:00:00Z"
21 }
22 ],
23 "comparableValues": [
24 {
25 "equipmentType": "vehicle-lift",
26 "brand": "Rotary",
27 "value": 6500,
28 "note": "Installed used-market replacement cost"
29 },
30 {
31 "equipmentType": "tire-changer",
32 "value": 4200
33 }
34 ]
35};
36
37
38const run = await client.actor("repairiq/specialty-auction-deal-monitor").call(input);
39
40
41console.log('Results from dataset');
42console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
43const { items } = await client.dataset(run.defaultDatasetId).listItems();
44items.forEach((item) => {
45 console.dir(item);
46});
47
48