← 返回 Skills 市场
linkfox-ai

Ebay Search

作者 linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
111
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install linkfox-ebay-search
功能描述
在多个eBay国际站点上搜索和浏览商品listing。当用户提到eBay商品搜索、eBay listing查询、eBay价格对比、eBay市场浏览、eBay已售商品、eBay拍卖搜索、eBay选品调研、eBay search, eBay products, eBay pricing, eBay competito...
使用说明 (SKILL.md)

eBay Product Search

This skill guides you on how to search and retrieve eBay product listing data, helping e-commerce sellers and buyers find products, compare prices, and analyze market trends across eBay's global marketplaces.

Core Concepts

eBay Product Search provides access to eBay's front-end product listing data. It supports keyword-based search with rich filtering options including price range, item condition, buying format, sort order, seller location, and more. Results include product details such as title, price, shipping info, seller rating, sold quantity, and item condition.

Marketplace logic: The ebayDomain parameter controls which regional eBay site is searched. The default is ebay.com (US). When a user refers to a country or region, map it to the corresponding eBay domain (e.g., UK -> ebay.co.uk, Germany -> ebay.de).

Buying format: eBay supports multiple buying formats -- Auction for bid-based listings, BIN (Buy It Now) for fixed-price listings, and BO (Best Offer) for negotiable listings.

Parameter Guide

Parameter Type Required Description Default
keyword string No Search keyword, up to 1024 characters -
ebayDomain string No eBay marketplace domain ebay.com
page integer No Page number for pagination 1
pageSize integer No Results per page: 25, 50, 100, or 200 50
orderBy string No Sort order (see Sort Options below) 12 (Best Match)
priceMin number No Minimum price filter -
priceMax number No Maximum price filter -
itemCondition string No Item condition code(s), pipe-separated (e.g., 1000|3000) -
buyingFormat string No Buying format: Auction, BIN, or BO -
showOnly string No Display filters, comma-separated (e.g., Sold,Complete) -
location integer No Seller location country code -
prefLoc string No Preferred location scope: 1=Domestic, 2=Regional, 3=Worldwide -
zipCode string No ZIP/postal code for regional delivery filtering -
categoryId integer No eBay category ID -
noCache boolean No Bypass cache for fresh results false

Sort Options

Code Meaning
12 Best Match (default)
1 Time: ending soonest
10 Time: newly listed
15 Price + Shipping: lowest first
16 Price + Shipping: highest first
2 Price: lowest first
3 Price: highest first
7 Distance: nearest first
18 Condition: new first
19 Condition: used first

Item Condition Codes

Code Condition
1000 New
1500 New other (see details)
1750 New with defects
2000 Certified Refurbished
2010 Excellent - Refurbished
2020 Very Good - Refurbished
2030 Good - Refurbished
2500 Seller refurbished / Remanufactured
2750 Like New
3000 Used / Pre-owned
7000 For parts or not working

showOnly Filter Values

Value Meaning
Complete Completed listings
Sold Sold listings only
FR Free returns
RPA Returns accepted
AS Authorized seller
Savings Deals & savings
SaleItems Sale items
Lots Lots
FS Free shipping
LPickup Local pickup

Supported eBay Domains

Domain Country
ebay.com United States (default)
ebay.co.uk United Kingdom
ebay.de Germany
ebay.fr France
ebay.it Italy
ebay.es Spain
ebay.ca Canada
ebay.com.au Australia
ebay.nl Netherlands
ebay.at Austria
ebay.ch Switzerland
ebay.pl Poland
ebay.ie Ireland
ebay.com.hk Hong Kong
ebay.com.my Malaysia
ebay.com.sg Singapore

API Usage

This tool calls the LinkFox tool gateway API. See references/api.md for calling conventions, request parameters, and response structure. You can also execute scripts/ebay_search.py directly to run queries.

Usage Examples

1. Basic Keyword Search Search for "wireless earbuds" on the US eBay marketplace:

{"keyword": "wireless earbuds"}

2. Search Sold Listings for Price Research Find sold listings for "iPhone 15 Pro" to gauge market value:

{"keyword": "iPhone 15 Pro", "showOnly": "Sold,Complete", "orderBy": "10"}

3. Search on a Specific Marketplace with Price Range Find new laptops priced between $500 and $1000 on eBay UK:

{"keyword": "laptop", "ebayDomain": "ebay.co.uk", "priceMin": 500, "priceMax": 1000, "itemCondition": "1000"}

4. Auction Items Ending Soon Find active auctions for "vintage watch" ending soonest:

{"keyword": "vintage watch", "buyingFormat": "Auction", "orderBy": "1"}

5. Find the Cheapest New Items Find the cheapest new "USB-C cable" with free shipping:

{"keyword": "USB-C cable", "itemCondition": "1000", "orderBy": "15", "showOnly": "FS"}

6. Paginated Results Get page 3 of results with 100 items per page for "running shoes":

{"keyword": "running shoes", "page": 3, "pageSize": 100}

7. Category-Specific Search Search within a specific eBay category:

{"keyword": "mechanical keyboard", "categoryId": 33963}

8. Location-Filtered Search Find products located in Germany on the German eBay site:

{"keyword": "Kopfhoerer", "ebayDomain": "ebay.de", "location": 77}

Display Rules

  1. Present data clearly: Show search results in well-formatted tables including key fields such as title, price, condition, seller info, and shipping
  2. Price formatting: Always display prices with their currency symbol. When showing price ranges (minPrice to maxPrice), format as a range
  3. Sold/completed data: When showing sold items, highlight the sold price and quantity to help users with pricing research
  4. Seller trust indicators: When available, show seller feedback percentage and review count to help users evaluate seller reliability
  5. Pagination notice: When total results exceed the current page, inform the user of the total count and suggest pagination to see more
  6. Sponsored items: Clearly mark sponsored listings so users can distinguish organic results from promoted ones
  7. Error handling: When a query fails, explain the issue and suggest adjusting search parameters
  8. Link presentation: Provide product links so users can view full details on eBay

Important Limitations

  • No historical data: This tool returns current live listings only, not historical pricing trends
  • Result cap: Maximum 200 results per page
  • Rate limiting: Excessive requests may be throttled; use noCache: true sparingly
  • Currency: Prices are returned in the local currency of the eBay domain being searched

User Expression & Scenario Quick Reference

Applicable -- Product search and listing data on eBay:

User Says Scenario
"Search eBay for XX" Basic product search
"How much does XX sell for on eBay" Sold listing price research
"Find cheapest XX on eBay" Price comparison / lowest price
"eBay auctions for XX" Auction listing search
"What's selling on eBay UK/Germany" Regional marketplace browsing
"New XX under $50 on eBay" Filtered search by condition and price
"eBay sold prices for XX" Completed/sold listing analysis
"Find refurbished XX on eBay" Condition-specific search

Not applicable -- Needs beyond eBay product listings:

  • eBay seller account management or store analytics
  • eBay listing creation or editing
  • eBay order tracking or purchase history
  • Cross-platform price comparison (eBay vs Amazon vs others)
  • eBay advertising or promoted listing management

Feedback:

Auto-detect and report feedback via the Feedback API when any of the following apply:

  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved

Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.


For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.

安全使用建议
This skill will forward whatever you ask it to https://tool-gateway.linkfox.com/ebay/search and expects an API key in the LINKFOXAGENT_API_KEY environment variable, but the registry incorrectly lists no required env vars. Before installing or using it: (1) verify who operates tool-gateway.linkfox.com / LinkFox and whether you trust them to receive your queries; (2) do not send PII, secrets, or sensitive corporate data through the skill; (3) if you need to use it, prefer creating a scoped/test API key and review the provider's privacy/policy; (4) if you administer a fleet, require the publisher to correct the skill metadata to declare LINKFOXAGENT_API_KEY; (5) you can inspect and run the included scripts locally (they do a single POST) or route traffic through a proxy to confirm behavior. If you cannot verify the gateway operator, consider using official eBay APIs or a trusted integration instead.
功能分析
Type: OpenClaw Skill Name: linkfox-ebay-search Version: 1.0.0 The skill is a legitimate tool for searching eBay listings across multiple international domains using the LinkFox API gateway. The Python script `scripts/ebay_search.py` correctly implements API communication using standard libraries, handles authentication via environment variables, and contains no evidence of data exfiltration, unauthorized execution, or malicious prompt injection. The instructions in `SKILL.md` are consistent with the tool's purpose of providing e-commerce market analysis and product search capabilities.
能力评估
Purpose & Capability
The skill's claimed purpose (search eBay listings) matches the code and docs, which call an external eBay-search gateway. However the registry metadata lists no required environment variables or credentials while both references/api.md and scripts/ebay_search.py clearly require a LINKFOXAGENT_API_KEY. This mismatch is incoherent and should be clarified.
Instruction Scope
The SKILL.md and references instruct the agent to POST user query parameters to https://tool-gateway.linkfox.com/ebay/search and to supply an Authorization header taken from the LINKFOXAGENT_API_KEY environment variable. That means user queries (and any sensitive content included in them) will be transmitted to an external service. The instructions do not request or read other system files, and the Python script is straightforward and non-obfuscated, but the external-network behavior and the missing declaration of the required env var are concerning.
Install Mechanism
No install spec is present (instruction-only skill with an included Python helper). There is no download-from-URL or package-install step, and the included script is small and readable. This lowers install risk.
Credentials
Functionally the skill reasonably needs one API key to call the LinkFox gateway, but the skill registry metadata claims no required env vars while the code and docs require LINKFOXAGENT_API_KEY. Requiring an API key is proportional to the purpose, but the missing declaration and the fact the key authorizes an external service that will see query content are red flags.
Persistence & Privilege
The skill does not request persistent presence (always:false) and does not modify other skills or system configuration. It only makes outbound POST requests when invoked.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install linkfox-ebay-search
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /linkfox-ebay-search 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug linkfox-ebay-search
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Ebay Search 是什么?

在多个eBay国际站点上搜索和浏览商品listing。当用户提到eBay商品搜索、eBay listing查询、eBay价格对比、eBay市场浏览、eBay已售商品、eBay拍卖搜索、eBay选品调研、eBay search, eBay products, eBay pricing, eBay competito... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 111 次。

如何安装 Ebay Search?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkfox-ebay-search」即可一键安装,无需额外配置。

Ebay Search 是免费的吗?

是的,Ebay Search 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Ebay Search 支持哪些平台?

Ebay Search 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Ebay Search?

由 linkfox-ai(@linkfox-ai)开发并维护,当前版本 v1.0.0。

💬 留言讨论