Claude Prototypes Real Estate Analysis App in 3 Hours Using Live Zillow Data via clawhub
A developer on r/ClaudeAI built a rental property analysis tool by giving Claude live Zillow data access via the zillow-full clawhub skill. The goal: paste a Zillow URL and get asking price vs zestimate, estimated rent, nearby comps, school ratings — standard investor due diligence.
Setup
One command to install the skill:
npx clawhub@latest install zillow-fullThis gives Claude 9 tools: property lookup by address or zpid, listing search, zestimates, price history, schools, photos, tax records, agent info.
How Claude Built It
The developer described the app and the data needed. Claude started calling the tools on a real address to inspect response shapes, then built the frontend components using actual API responses — not mocked data. The prototype includes:
- Listing search
- Property detail view
- Cash flow calculator using rent estimates from the API
All built in about 3 hours. The developer notes: "normally prototyping with a new API takes me a full weekend because I spend half the time reading docs and figuring out the response format."
Why It Worked
The data comes from Zillapi, which returns 300+ fields per property as typed JSON. No HTML parsing or guessing at field names — structured data Claude could work with directly.
The developer's friend already ran 15 properties through the prototype. Remaining work: clean up code and add error handling.
Key Takeaway
For developers building tools that depend on third-party APIs, giving Claude live API access dramatically accelerates prototyping — the model can self-correct by inspecting real response formats instead of relying on docs or mock data.
📖 Read the full source: r/ClaudeAI
👀 See Also
Claude Code vs Codex: 36 vs 28 files, $2.50 vs $2.04, infinite loop caught — real-world comparison
A developer runs the same two tasks on Claude Code and Codex (Cursor): PR triage bot and real-time code review UI. Results: 36 vs 28 files, $2.50 vs $2.04 cost, Claude produced fewer TypeScript errors, Codex had an infinite React loop.

Building an Agentic RAG for Obsidian with Claude and an Eval Harness to Detect Hallucinations
A developer built an agentic RAG system over an Obsidian vault to let Claude answer questions from engineering books, then created an eval harness using Claude Sonnet as a judge to detect when the agent was confidently wrong. Rubric iterations improved judge-human agreement from 39% to 94%.

certctl: Self-hosted certificate lifecycle platform with 78 API endpoints for AI agent automation
certctl is a self-hosted certificate lifecycle platform built with Go and TypeScript that exposes 78 REST API endpoints for certificate management. The platform is issuer-agnostic and target-agnostic, with an MCP server planned to expose all functionality as native MCP tools.

Signet: An Open-Source Local-First Memory Substrate for AI Agents
Signet is an open-source memory substrate for AI agents that moves memory handling outside the agent loop. It preserves transcripts, distills sessions into structured memory, links entities into a graph, and injects context before prompts start.