Quick search for restaurants, stores, or products on Rappi. Use when the user asks what's available, wants to find a specific restaurant or store (Turbo, Exito, Carulla, etc.), or is looking for a product.
Search for restaurants, stores, and products on Rappi. This is a lightweight search — no cart or checkout.
If $ARGUMENTS is provided, use it as the search query. Otherwise, ask the user what they're looking for.
Determine the search type:
explore_verticals to show all store types (Restaurants, Turbo, Markets, Farmacia, Licores, Tiendas, etc.)search_restaurants — returns ALL store types with matching products.browse_stores(store_type, query).browse_restaurants.search_store_products(store_id, query) for CPG stores (richer results), or for any store.search_in_store(store_id, query)Present results in a table:
If the user wants to see more products from a store:
get_restaurant_menu(store_id)search_store_products(store_id, query) — returns brand info, category, and more product detailsget_store_info(store_id) if they ask about hours or delivery feesAdditional info available:
get_credits_balance() — show Rappi creditsget_rappi_favorites() — user's favorite storesget_order_detail(order_id) — details of a past orderget_order_breakdown(order_id) — fee breakdown of a past orderPrices are in COP (Colombian Pesos) — format as $35.500 with dot separators.
If the user wants to order something they found, suggest using /order-food or guide them through the ordering flow.