cermak-petr / actor-zillow-api-scraper

Apify actor for extracting data about homes from Zillow.com using it's internal API.
https://apify.com/petr_cermak/zillow-api-scraper
Apache License 2.0
49 stars 41 forks source link

fetch MLS ID in output dataset see screenshot attached for reference #26

Closed Erinapify closed 3 years ago

Erinapify commented 3 years ago

mlsid

pocesar commented 3 years ago

it's in the data.mlsid inside extend output function, you can add it as:

async ({ item, data }) => {
   item.mlsid = data.mlsid;
   return item;
}