Tonita Get Listing Details
tonita-get-listing-detailsFull Description
Get detailed information for one or more product listings.
When to use this tool
Call tonita-get-listing-details whenever you need to know more about specific products that have already appeared in search results. Common scenarios:
- Shopper asks about a product: "Tell me more about that Nike shoe" —
you need the full description, available sizes, and images.
- Preparing for visual search: Before calling
tonita-searchwith
query_images, you need the image_id from this tool's response.
- Comparing products: The shopper wants to compare two or three items
side by side — fetch all their details in one call.
- Understanding before searching: The shopper says "find me more like
this". Call this tool first to understand what "this" is (its style, color, brand, price range), then construct a well-informed search.
What you get back
For each listing ID, the response includes:
- url: The product page URL on the retailer's site.
- text / structured fields: Title, description, price, brand, sizes,
and other metadata (varies by retailer).
- thumbnail_image: An object with
image_idandimage_url— the
image_id is what you pass to tonita-search query_images for visual search.
Examples
Get details for a single product
{"listing_ids": ["thursdayboots.com!6c66be1f3d6c7f00"]}
Get details for multiple products to compare
{"listing_ids": [
"thursdayboots.com!6c66be1f3d6c7f00",
"nike.com!a1b2c3d4e5f67890"
]}
Workflow: shopper says "more like this" about a listing
1. Call tonita-get-listing-details with {"listing_ids": ["thursdayboots.com!6c66be1f3d6c7f00"]} 2. Read the response: it's a "navy blue wool overcoat" with image_id "89e667d28336d70f" 3. Call tonita-search with retrieval_queries=["navy blue wool overcoat"], query_images=[{"image_id": "89e667d28336d70f"}], prioritize_visual_similarity=true
Parameters (1 required)
listing_idsarrayA list of listing IDs to retrieve details for. **How to use:** Pass the listing IDs from a previous `tonita-search` result. Each listing in the search results has a `listingId` field — collect the ones you need and pass them here. **Why this matters:** This is the only way to get full product details (description, all images, sizes, URL) and the `image_id` needed for visual search. **Rules:** - Maximum 10 listing IDs per call in normal use. - IDs must come from a previous tonita-search result. **Example:** ['thursdayboots.com!6c66be1f3d6c7f00', 'nike.com!a1b2c3d4e5f67890']