Get Compass property photo gallery
compass_get_property_photosRetrieve every image in a Compass listing's photo gallery, including CDN URLs and thumbnails. Provide a URL or listing ID; optionally include floorplans and other media.
Instructions
The full photo gallery for a Compass listing — every image in listing.media[]. Each entry returns the original CDN URL plus a thumbnail URL and pixel dimensions. Pass either url (the full Compass homedetails URL or path) or listing_id_sha alone — sha-only calls fetch /listing//view, which redirects to the homedetails page. By default only photos (category 0) are returned; set include_all_categories: true to also include floorplans and other media. Returns { listing_id_sha, count, photos }. Read-only; safe to call repeatedly.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | Compass homedetails URL or path (preferred — no resolver round-trip needed). | |
| listing_id_sha | No | Compass listing identifier. Sufficient on its own — the tool resolves the address slug internally via site search before fetching. | |
| include_all_categories | No | Include non-photo media (floorplans, etc.). Default false. |