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
46 stars 40 forks source link

Dates Extracted as 10 digit number with zeros at the end #22

Closed amandaliddle closed 3 years ago

amandaliddle commented 3 years ago

The last date sold variable extracts as a string of 10 digits and I don't know how to convert it to an actual date

pocesar commented 3 years ago

it's a unix timestamp in milliseconds, you can use this as new Date(timestamphere).toISOString() or if you're using other languages, like PHP that consider timestamps to be in seconds, you just divide by 1000