Zillow listings API
Returns listing information on properties
Parameters
url - Zillow search URL
type: string
stream - Stream response
type: booleanDefault: false
Return type
listings
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(): listings = await api.zillow.listings( url="https://www.zillow.com/homedetails/2506-Gordon-Cir-South-Bend-IN-46635/77050198_zpid/?t=for_sale" ) print([(listing.price) for listing in listings])
asyncio.run(main())