web_data_ebay_product
Extract structured product data from eBay URLs using cache-based retrieval for reliable access to item details without direct scraping.
Instructions
Quickly read structured ebay product data. Requires a valid ebay product URL. This can be a cache lookup, so it can be more reliable than scraping
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| url | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "url": {
      "format": "uri",
      "type": "string"
    }
  },
  "required": [
    "url"
  ],
  "type": "object"
}