Install
openclaw skills install @tonywangcn/ebay-researchResearches eBay listings, items, and sellers using the Crawlora API, returning clean JSON. Use when the user asks to search eBay, look up an item's details, or vet a seller's reputation and shop listings — instead of scraping eBay pages.
openclaw skills install @tonywangcn/ebay-researchSearch eBay, pull item details, and vet sellers — all as normalized JSON from the Crawlora API, with no HTML scraping.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401.POST /ebay/search with an option object (the eBay
search payload) to find candidate listings by keyword.GET /ebay/item/{item_id} for a specific listing's
price, condition, and specs.GET /ebay/seller/{seller} for the seller's
headline profile, and GET /ebay/seller/{seller}/about for stats,
top-rated status, and store categories.GET /ebay/seller/{seller}/feedback (paginate
with page/per_page) for the feedback summary, detailed ratings,
and recent review cards.GET /ebay/seller/{seller}/shop (paginate with
page) to list everything a seller currently has for sale.Full endpoint list, methods, and params: reference/endpoints.md.
# Search eBay (POST, JSON body):
scripts/crawlora.sh -X POST /ebay/search '{"option":{"q":"mechanical keyboard"}}' | jq '.'
# Item detail:
scripts/crawlora.sh /ebay/item/1234567890 | jq '{title,price,condition}'
# Seller feedback (paginated):
scripts/crawlora.sh /ebay/seller/some-seller/feedback page=1 per_page=20 | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/ebay/item/1234567890" | jq '.'
See reference/endpoints.md for every eBay
endpoint this skill uses (method, path, params, description).
POST /ebay/search with {"option":{"q":"..."}} to
collect candidate listings and their prices for a keyword./ebay/seller/{seller}/about +
/ebay/seller/{seller}/feedback to summarize a seller's top-rated
status, ratings breakdown, and recent feedback before buying./ebay/seller/{seller}/shop (paginate with page) to
list everything a seller currently has for sale.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it./ebay/search is a POST with the query wrapped in an option object
({"option":{...}}), unlike the other GET endpoints in this skill.page (and per_page
for feedback) to walk beyond the first page.