Bulk-resolve street addresses to Redfin URLs + home_ids
redfin_resolve_addressesConvert a batch of free-text property addresses into Redfin home URLs and IDs, handling partial matches and transient errors per row.
Instructions
Resolve up to 100 free-text street addresses to Redfin canonical home URLs + home_ids in a single tool call. Each input is either a string (full address) or a structured {street, city, state, zip} object. Output preserves input order. Unresolved entries return resolved: false without aborting the batch; a transient bridge failure surfaces a distinct retryable status (timeout/bridge_down/pending) so it is never mistaken for a genuine no-match. Per-row retry-once-on-timeout, server-side concurrency ~6 in flight. The whole call is bounded by an overall hard deadline: a single slow/hung row never wedges the server — unsettled rows come back with status: "pending" and a pending count so you can re-run just those. Use this when you have a list of properties from another system (Compass, MLS, spreadsheet) and need their Redfin handles for follow-on calls — collapses the typical 6-search-call + 15-resolve flow into one trip.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| addresses | Yes | Array of 1–100 addresses to resolve, each a string or a {street, city, state, zip} object. |