pryscraper/templates/ebay-listing.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

47 lines
No EOL
1.1 KiB
JSON

{
"name": "eBay Listing",
"description": "Extract product details from eBay listing pages",
"site": "ebay.com",
"category": "ecommerce",
"icon": "\ud83c\udfea",
"url_pattern": "*://www.ebay.com/itm/*",
"schema": {
"name": "ebay_listing",
"base_selector": "body",
"fields": [
{
"name": "title",
"selector": "h1.x-item-title__mainTitle span",
"type": "text"
},
{
"name": "price",
"selector": ".x-price-primary span",
"type": "text",
"transform": "float"
},
{
"name": "condition",
"selector": ".x-item-condition-text",
"type": "text"
},
{
"name": "seller",
"selector": ".x-sellercard-atf__info__about-seller a",
"type": "text"
},
{
"name": "shipping",
"selector": ".ux-label span[class*='shipping']",
"type": "text"
},
{
"name": "description",
"selector": "#desc_ifr",
"type": "text"
}
]
},
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}