getListingPhotos
Extract photo URLs from Airbnb listings to display property images for rental evaluation and decision-making.
Instructions
Extract photo URLs from an Airbnb listing
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Airbnb listing ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Airbnb listing ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}