get_listing_photos
booli.seGets all photo metadata for a property listing on https://booli.se by Booli listing ID. Returns every available image record with dimensions, labels, and a CDN URL pattern built from image IDs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_listing_photos?
Gets all photo metadata for a property listing on https://booli.se by Booli listing ID. Returns every available image record with dimensions, labels, and a CDN URL pattern built from image IDs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass booli_id, timeout_seconds, wait_ms and get the result back without maintaining a scraper.
Response
{
"photos": [
{}
],
"booli_id": "<string>",
"photo_count": 0,
"cdn_url_template": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/2fcd89f3-d880-4015-91b3-68ebd61df43c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2fcd89f3-d880-4015-91b3-68ebd61df43c",
"variables": {
"booli_id": "DEFAULT_BOOLI_ID",
"timeout_seconds": "DEFAULT_TIMEOUT_SECONDS",
"wait_ms": "DEFAULT_WAIT_MS"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="2fcd89f3-d880-4015-91b3-68ebd61df43c") — the "get_listing_photos" function, which gets all photo metadata for a property listing on https://booli.se by Booli listing ID. Returns every available image record with dimensions, labels, and a CDN URL pattern built from image IDs.. It takes booli_id (str), timeout_seconds (int), wait_ms (int). Return the result as structured JSON.