← 返回
未分类 Key 中文

Scavio Amazon

Search Amazon products and look up product details by ASIN. Returns structured JSON with price, rating, Prime status, and availability. Supports 12 Amazon ma...
搜索亚马逊商品并通过ASIN查询商品详情,返回结构化JSON,包含价格、评分、Prime状态和库存。支持12个亚马逊市场。
scavio-ai scavio-ai 来源
未分类 clawhub v2.0.3 3 版本 100000 Key: 需要
★ 2
Stars
📥 608
下载
💾 1
安装
3
版本
#latest

概述

Amazon Product Search via Scavio

Search Amazon products or retrieve full product details by ASIN. Returns structured JSON. Supports 12 Amazon marketplaces.

When to trigger

Use this skill when the user asks to:

  • Find products on Amazon with price or rating requirements
  • Look up a specific product by ASIN
  • Research Amazon pricing, availability, or reviews
  • Compare Amazon products or find best sellers in a category

Setup

Get a free API key at https://scavio.dev (250 free credits/month, no card required):

export SCAVIO_API_KEY=sk_live_your_key

Workflow

  1. If the user has an ASIN, call /api/v1/amazon/product directly.
  2. If the user has a keyword, call /api/v1/amazon/search with appropriate filters (sort_by, domain, zip_code).
  3. If the user asks about a specific market (e.g. "Amazon Germany"), set the domain param accordingly.
  4. Present results with name, price, rating, review count, and URL. Note Prime status.

Endpoints

EndpointDescription
------
POST https://api.scavio.dev/api/v1/amazon/searchKeyword search with filters
POST https://api.scavio.dev/api/v1/amazon/productFull product details by ASIN
Authorization: Bearer $SCAVIO_API_KEY

Search Parameters

ParameterTypeDefaultDescription
------------
querystringrequiredSearch query (1-500 chars)
domainstringcomcom, co.uk, de, fr, co.jp, ca, it, es, in, com.au, com.br, com.mx
sort_bystring--most_recent, price_low_to_high, price_high_to_low, featured, average_review, bestsellers
start_pageinteger1Starting page
pagesinteger1Number of pages
category_idstring--Amazon category/department ID
currencystring--ISO 4217 (e.g. USD, EUR)
zip_codestring--ZIP code for localized pricing and availability
devicestringdesktopdesktop, mobile, or tablet

Product Detail Parameters

ParameterTypeDefaultDescription
------------
querystringrequiredAmazon ASIN (e.g. B09XS7JWHH)
domainstringcomAmazon domain suffix
currencystring--ISO 4217 currency code
zip_codestring--ZIP code for localized pricing

Examples

import os, requests

BASE = "https://api.scavio.dev"
HEADERS = {"Authorization": f"Bearer {os.environ['SCAVIO_API_KEY']}"}

# Search
results = requests.post(f"{BASE}/api/v1/amazon/search", headers=HEADERS,
    json={"query": "wireless headphones", "sort_by": "average_review"}).json()

# Product by ASIN
product = requests.post(f"{BASE}/api/v1/amazon/product", headers=HEADERS,
    json={"query": "B09XS7JWHH"}).json()

Search Response

{
  "data": [
    {
      "name": "Sony WH-1000XM5 Wireless Noise Canceling Headphones",
      "asin": "B09XS7JWHH",
      "url": "https://www.amazon.com/dp/B09XS7JWHH",
      "price": "$278.00",
      "currency": "USD",
      "rating": 4.6,
      "total_reviews": 12450,
      "is_prime": true,
      "is_best_seller": false
    }
  ],
  "credits_used": 1,
  "credits_remaining": 999
}

Product detail response also includes: description, features, images, categories, availability, seller, list_price.

Guardrails

  • Never fabricate product names, ASINs, prices, or ratings. Only return data from the API.
  • If the user asks for a price comparison, search both terms and present both results.
  • If an ASIN is not found, tell the user and suggest a keyword search instead.
  • Always include the product URL so the user can verify.

Failure handling

  • If the API returns an error, report the status code and stop.
  • If no products are returned, tell the user and suggest different keywords or filters.
  • If SCAVIO_API_KEY is not set, prompt the user to export it before continuing.

LangChain

pip install langchain-scavio
from langchain_scavio import ScavioSearchTool
tool = ScavioSearchTool(engine="amazon")

版本历史

共 3 个版本

  • v2.0.3 当前
    2026-06-09 17:23
  • v2.0.2
    2026-05-21 12:57 安全 安全
  • v1.0.1
    2026-05-03 07:51 安全 安全

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

Scavio Walmart

scavio-ai
搜索 Walmart 商品,支持按商品 ID 查询详情,可按配送速度、邮编和门店库存筛选,返回结构化 JSON。
★ 0 📥 562

Scavio Youtube

scavio-ai
搜索YouTube并获取视频元数据。用于查找视频、查看播放量、频道信息或AI训练适用性。
★ 0 📥 542

Scavio Google

scavio-ai
搜索 Google,返回结构化的 JSON(网页、新闻、图片、地图),适用于需要当前网页信息或最新新闻的查询。
★ 1 📥 544