Bulk-fetch OneHome listings by id
onehome_bulk_getRetrieve up to 200 OneHome property listings in a single request. Each input ID returns a row with property details or an error, ensuring partial failures don't block the entire batch.
Instructions
Fetch up to 200 OneHome listings in a single call. Returns one structured row per input id (no side-by-side summary table — use onehome_compare_properties for that). Each row is either { listing_id, property } on success or { listing_id, error } on failure — one bad id never fails the whole call. Calls fan out concurrently against ListingById, capped at 6 in flight to avoid swamping the bridge; transient bridge timeouts are retried once per row before being captured as an error. extracted_features is populated per row automatically. The raw description (PublicRemarks) is omitted by default — pass include_description: true to keep it. group_id defaults to the magic-link session context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group_id | No | ||
| listing_ids | Yes | Listing OSK ids to fetch. 1..200. For higher counts, batch into multiple calls. | |
| saved_search_id | No | ||
| include_description | No | Include the raw `description` (PublicRemarks) on each row. Defaults to `false`. |