ebay_product
Scrape eBay product listings by URL to retrieve title, pricing, seller details, images, specifications, and shipping/return policies.
Instructions
Scrape any eBay product listing page by URL to retrieve title, item ID, pricing, seller details, images, specifications, shipping and return policies. [Credits: 5 API credits per successful request] Notes: Product identity/locale is embedded in the url (item ID path segment, e.g. /itm/, and eBay country domain, e.g. ebay.co.uk vs ebay.com). Returns: { product_results: { title, itemId, seller: { name, reviews, positive_feedback_percent, thumbnail }, likes, price, extracted_price, condition, is_buy_it_now, main_image, images: [ { link, variant } ], shipping_details: { shipping_cost, seller_location }, return_details: { full_return_text, accepts_returns }, payment_methods: [], specifications: [ { name, value } ], product: { rating, reviews, reviews_histogram } } }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL of the eBay product listing page to scrape (e.g., https://www.ebay.co.uk/itm/305209925234). | |
| html | No | Return the full HTML of the eBay page instead of parsed JSON. (default: false) |