Metadata-Version: 2.4
Name: gocreative-zillow-listing
Version: 0.1.0
Summary: Fetch a Zillow listing (price, beds, baths, sqft, lot, address, photos, zestimate) via the GoCreative AI pay-per-call API.
Author-email: Colin Hughes <contact@gocreativeai.com>
License: MIT
Project-URL: Homepage, https://api.gocreativeai.com
Project-URL: Pricing, https://api.gocreativeai.com/credits/buy
Keywords: zillow,zillow-api,zillow-scraper,real-estate,zestimate,property-lookup,gocreative,ai-agents,x402,api-client
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25
Dynamic: license-file

# gocreative-zillow-listing

Tiny helper to fetch a Zillow real-estate listing — price, beds, baths, sqft, lot size, address, photos, zestimate — by ZPID or URL, via the GoCreative AI API.

## Install

```bash
pip install gocreative-zillow-listing
```

## 30-second quickstart

```python
from gocreative_zillow_listing import lookup

# Free demo tier (no key needed, 5 calls/day per IP):
print(lookup('20485700'))

# Or with a paid API key:
print(lookup('20485700', api_key="gck_your_key_here"))
```

You can also set `GOCREATIVE_API_KEY=gck_...` in your environment.

## What this returns

A dict fetched live from the GoCreative AI API — fetch a zillow listing (price, beds, baths, sqft, lot, address, photos, zestimate).

## Need more endpoints?

This package wraps just **one** GoCreative endpoint. For the full SDK with
enrich / lookup / scrape / search across 145+ endpoints, install:

```bash
pip install gocreative
```

Powered by **GoCreative AI** — free tier 5 calls/day, paid plans at
<https://api.gocreativeai.com/credits/buy>.

## License

MIT
