Zillow Listing Change and Deal Radar
Pricing
from $3.06 / 1,000 actionable insights
Go to Apify Store
Zillow Listing Change and Deal Radar
Turn hotel, route, or offer records into ranked, evidence-backed travel pricing signals.
Zillow Listing Change and Deal Radar
Pricing
from $3.06 / 1,000 actionable insights
Turn hotel, route, or offer records into ranked, evidence-backed travel pricing signals.
You can access the Zillow Listing Change and Deal Radar programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youβll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "records": [12 {13 "hotelId": "hotel-demo-001",14 "name": "Harbour View Hotel",15 "destination": "Hong Kong",16 "price": 118,17 "currency": "USD",18 "availability": "available",19 "availabilityCount": 4,20 "rating": 4.5,21 "reviewsCount": 2900,22 "roomType": "Harbour room",23 "cancellationPolicy": "Free cancellation",24 "discount": 32,25 "observedAt": "2026-08-02T10:00:00Z",26 "productWorkflow": "zillow-listing-change-deal-radar"27 }28 ],29 "previousRecords": [30 {31 "hotelId": "hotel-demo-001",32 "name": "Harbour View Hotel",33 "destination": "Hong Kong",34 "price": 176,35 "currency": "USD",36 "availability": "available",37 "availabilityCount": 9,38 "rating": 4.5,39 "reviewsCount": 2870,40 "roomType": "Harbour room",41 "cancellationPolicy": "Non-refundable",42 "discount": 0,43 "observedAt": "2026-08-01T10:00:00Z",44 "productWorkflow": "zillow-listing-change-deal-radar"45 }46 ]47};48
49// Run the Actor and wait for it to finish50const run = await client.actor("night111/zillow-listing-change-deal-radar").call(input);51
52// Fetch and print Actor results from the run's dataset (if any)53console.log('Results from dataset');54console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);55const { items } = await client.dataset(run.defaultDatasetId).listItems();56items.forEach((item) => {57 console.dir(item);58});59
60// π Want to learn more π? Go to β https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Zillow Listing Change and Deal Radar API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: