设计与多媒体

亚马逊-以图搜图

试用

基于图片的亚马逊跨站点视觉商品搜索,支持8个站点的以图搜图和视觉相似商品发现。当用户提到以图搜图、图片搜索、视觉搜索、找同款、外观相似商品、图片找货、竞品图片搜索、相似商品发现、image search, Amazon visual search, find similar products, reverse image lookup, visual search, similar items, competitor image search, product image match时触发此技能。即使用户未明确提及"图片搜索",只要用户提供了图片URL并希望在亚马逊上查找匹配或相似的商品,也应触发此技能。

它能做什么

基于图片的亚马逊跨站点视觉商品搜索,支持8个站点的以图搜图和视觉相似商品发现。当用户提到以图搜图、图片搜索、视觉搜索、找同款、外观相似商品、图片找货、竞品图片搜索、相似商品发现、image search, Amazon visual search, find similar products, reverse image lookup, visual search, similar items, competitor image search, product image match时触发此技能。即使用户未明确提及"图片搜索",只要用户提供了图片URL并希望在亚马逊上查找匹配或相似的商品,也应触发此技能。

技能文档

This skill guides you on how to perform visual product searches on Amazon using an image URL, helping Amazon sellers and researchers find visually similar products across multiple marketplaces.

Core Concepts

Amazon Image-Based Search (visual search) allows you to submit a product image URL and retrieve Amazon listings that are visually similar. This is invaluable for competitive analysis, sourcing alternatives, identifying counterfeits, and discovering market opportunities based on product appearance.

The tool searches across 8 Amazon marketplaces and returns rich product data including ASIN, title, image, price, rating, review count, brand, and optionally Keepa-enriched data (sales rank, monthly sales, FBA fees, dimensions, etc.).

Supported Marketplaces

MarketplaceDomainDefault Zip Code
United Statesamazon.com10001
United Kingdomamazon.co.ukEC1A 1BB
Germanyamazon.de10115
Franceamazon.fr75001
Italyamazon.it00100
Spainamazon.es28001
Japanamazon.co.jp100-0001
Indiaamazon.in110034

Default marketplace is amazon.com (US). Use amazon.com when the user does not specify a marketplace.

Parameter Guide

ParameterRequiredDescription
imageUrlYesA valid, publicly accessible image URL to search with
amazonDomainYesAmazon marketplace domain (e.g., amazon.com, amazon.de). Defaults to amazon.com
sortNoSort order for results. Supported values: default, price-asc-rank, price-desc-rank, rating-asc-rank, rating-desc-rank, ratings-asc-rank, ratings-desc-rank
deliveryZipNoDelivery address zip code within the marketplace country. Uses the marketplace default if not specified
countryOrAreaCodeNoCountry/region code for cross-border delivery (e.g., CN, JP, KR). Cannot be used together with deliveryZip. Note: India marketplace does not support cross-border delivery
aggregateByKeepaDataNoWhether to enrich results with Keepa data (sales rank, monthly sales, FBA fees, dimensions, etc.)

Sort Options

ValueDescription
defaultDefault relevance sorting
price-asc-rankPrice: low to high
price-desc-rankPrice: high to low
rating-asc-rankRating: low to high
rating-desc-rankRating: high to low
ratings-asc-rankReview count: low to high
ratings-desc-rankReview count: high to low

Important: If the requested sort order is not in the supported list above, do NOT attempt to use any other tool or workaround to compensate. Inform the user of the supported sort options.

调用方式

  • API 端点POST /amazon/searchByImage(完整参数/响应/错误码见 references/api.md
  • Python 脚本python scripts/amazon_search_by_image.py '' [--inline]
  • 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换关键词、翻页或改邮编连续试探;需要继续检索时先向用户说明会产生额外消耗。

输出策略(脚本默认行为)

  • 始终将完整响应写入 /linkfox///data/linkfox-amazon-search-by-image-.json 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录; 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
  • 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如 total/costToken、最大列表字段的长度 + 前 3 条样本)
  • --inline 强制全量打印到 stdout(同样落盘)

读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jqConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。

解决认证和积分问题

发生以下异常情况时,采用 references/onboarding.md 引导解决问题:

异常情况

  • 未配置API Key:环境变量未配置 LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY
  • 响应401或402状态码
  • 响应提示积分或余额不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。

Local Image Upload

This tool requires a publicly accessible image URL. If the user provides a local image file path (e.g., C:\Users\...\photo.png, /home/.../image.jpg), you must upload it first to obtain a public URL.

Run the upload script:

python scripts/upload_image.py /path/to/local/image.png

The script will return a public URL (valid for 24 hours) that can be used as the image URL parameter.

Usage Examples

1. Basic image search on the US marketplace

Search Amazon US for products that look similar to this image:
https://m.media-amazon.com/images/I/61pAlIX8SZL._AC_SY575_.jpg

2. Find similar products on a specific marketplace

Search Amazon Germany (amazon.de) for products visually similar to this image:
https://example.com/product-photo.jpg

3. Image search sorted by price (low to high)

Find similar products on Amazon US for this image, sorted by price from low to high:
https://example.com/my-product.jpg

4. Image search with Keepa data enrichment

Search Amazon US for products matching this image and include Keepa sales data:
https://example.com/competitor-product.jpg

5. Cross-border delivery search

Search Amazon Japan for similar products to this image, with delivery to China:
https://example.com/item.jpg

6. Competitor lookalike discovery

I found this product image on a competitor's listing. Find me all similar-looking products on Amazon UK:
https://example.com/competitor.jpg

Display Rules

  1. Present data clearly: Show search results in a well-structured table. Key columns to prioritize: product image, title, ASIN, price, rating, review count, and brand
  2. Image display: When the response includes imageUrl for products, display them inline so users can visually compare results
  3. Price and currency: Always show price alongside the currency code (e.g., $29.99 USD, 24.99 EUR)
  4. Keepa data: When aggregateByKeepaData is enabled and Keepa fields are present, show supplementary data (monthly sales, sales rank, FBA fees) in an expanded section or additional columns
  5. Result count: Always inform the user of the total number of results found (total / totalCount)
  6. Error handling: When a query fails, explain the issue and suggest checking that the image URL is valid and publicly accessible
  7. Sort limitation: If the user requests a sort order not in the supported list, clearly explain which sort options are available rather than attempting unsupported workarounds
  8. No secondary processing: Results from this tool are not stored in a database, so secondary SQL processing is not available

User Expression & Scenario Quick Reference

Applicable -- Visual product search scenarios on Amazon:

User SaysScenario
"Find similar products to this image"Basic image search
"Search by image", "reverse image search on Amazon"Visual search
"Find competitor lookalikes", "find same-style products"Competitor analysis by appearance
"What products on Amazon look like this"Product discovery
"Find cheaper alternatives that look the same"Price-based visual comparison
"Search Amazon JP/DE/UK for this product image"Cross-marketplace visual search
"Show me Keepa data for similar products"Enriched visual search
"Find products similar to this photo, sorted by rating"Sorted visual search

Not applicable -- Needs beyond image-based product search:

  • Text-based keyword search on Amazon (use keyword search tools instead)
  • ABA search term data analysis
  • Product review analysis or listing optimization
  • Sales estimation without a source image
  • Image editing or image generation
  • Searching with a local image file (the tool requires a publicly accessible URL)

Boundary judgment: When users say "find similar products" or "competitor analysis", if they provide an image URL and the intent is to find visually similar Amazon listings, this skill applies. If they are asking for keyword-based search, sales data analysis, or product research without an image, it does not apply.

积分消耗规则

按动态规则计费:消耗积分 = 15 + 0.045 × 本次商品详情查询消耗的 Keepa token。Keepa 部分单价 90 × 本次商品详情查询消耗的 Keepa token;若未触发 Keepa 聚合,则该部分为 0。;relevance api: linkfox-keepa-product-detail

重要:本技能的服务按倍数动态计算,可能一次性消耗大量积分,必须提醒用户,由用户决定是否继续。

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.

相关技能

1688平台以图搜图,通过商品图片精准检索外观相似或同款的1688货源,返回标题、价格、起批量、月销量、复购率、交易评分等核心数据。当用户提到1688以图搜图、1688找货源、以图找同款、跨境找工厂、1688识图、图片找货源、找相似货源、image search 1688、find supplier by image时触发此技能。即使用户未明确提及"以图搜图",只要用户提供了图片URL并希望在1688上查找匹配或相似的货源商品,也应触发此技能。

1 次安装1 星标

通过亚马逊前台的 Alexa 购物助手发起自然语言问答,获取与问题相关的导购回答、推荐商品分组、ASIN 列表,以及可继续追问的问题。每次调用仅支持 1 条 prompt,如需追问须由 agent 总结上下文后拼接新问题发起新请求。可用 url 补充亚马逊页面上下文。当用户提到亚马逊 Alexa、Alexa 购物助手、亚马逊智能助手、AI 导购、对话式选品、自然语言购物、亚马逊聊天问答、Amazon Alexa shopping, conversational shopping, AI shopping assistant, follow-up questions、产品推荐对话、上下文追问等场景时触发此技能。即使用户未明确提及"Alexa",只要其需求是"在亚马逊前台用自然语言问出商品推荐",也应触发此技能。

1 次安装

多模态产品图片相似度分析与分组。当用户提到产品图片相似度、视觉分组、查找外观相似的商品、基于图片去重、竞品同款检测、同款商品聚类、按外观分组、image similarity, product image comparison, visual clustering, same-style recognition, appearance deduplication, image grouping时触发此技能。即使用户未明确说"图片相似度",只要其意图涉及商品主图对比、视觉聚类、识别视觉上相同或相似的商品,或根据外观、颜色、构图等视觉特征对商品列表进行后处理,也应触发此技能。

12 次安装

在中国1688批发平台(阿里巴巴国内B2B市场)上搜索和分析商品,用于找货源、供应商发现和选品。当用户提到1688商品搜索、1688找货源、在1688上找供应商、批发商品查询、工厂货源、一件代发供应商搜索、1688关键词选品、批发价格对比、按销量筛选、任何1688平台上的选品调研、1688 search, 1688 product selection, find suppliers, factory lookup, wholesale pricing, supplier search, domestic sourcing, 1688 products时触发此技能。即使用户未明确说"1688",只要其需求涉及搜索批发商品、寻找国内供应商或从国内市场采购,也应触发此技能。

15 次安装

按 ASIN 获取亚马逊商品详情数据,覆盖 22 个站点,返回标题、图片、五点描述、规格、A+、价格、评分与变体。

15 次安装1 星标