Zillow history API
Returns price history of listing
Parameters
url - Zillow listing URL
type: string
stream - Stream response
type: booleanDefault: false
Return type
history
Examples
1
2
3
4
5
6
7
8
9
10
11
12
13
import typedclient import asyncio
api = typedclient.connect('API_KEY')
async def main(): history = await api.zillow.history( url="https://www.zillow.com/homedetails/8305-Blue-Heron-Way-Raleigh-NC-27615/6468808_zpid/" ) print([(histor.price) for histor in history])
asyncio.run(main())