ebay_search
Scrape eBay search results by providing any eBay search URL. Extract product titles, prices, seller details, and shipping info in structured JSON.
Instructions
Scrape eBay search result pages by passing any eBay search URL. Returns product titles, item IDs, prices, seller info, condition, and shipping details. [Credits: 5 API credits per successful request] Notes: No dedicated query/keyword parameter — instead pass a full, pre-built eBay search URL (including any eBay-native filters such as _nkw, category, price range, etc.) via the url parameter. eBay domain (e.g. ebay.com, ebay.co.uk) inside the url determines locale/country. Returns: { search_results: [ { position, itemId, title, seller: { name, feedback, positive_feedback_percent }, condition, is_sponsored, rating, reviews, buying_format, is_best_offer, price, extracted_price, original_price, extracted_original_price, discount, link, items_sold, extracted_items_sold, shipping, is_free_return } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL of the eBay search page to scrape (e.g., https://www.ebay.com/sch/i.html?_nkw=laptop). Build this URL from eBay's website using their search filters. | |
| html | No | Return the full HTML of the eBay page instead of parsed JSON. (default: false) |