amazon-asin-lookup-api-skill
指定されたASIN(Amazonの商品識別番号)を使って、Amazonの商品名、価格、レビュー数、在庫状況、説明、画像などの詳細情報を取得し、商品カタログの情報を充実させたり、価格変動を監視したりするSkill。
📜 元の英語説明(参考)
This skill helps users extract structured product details from Amazon using a specific ASIN (Amazon Standard Identification Number). Use this skill when the user asks to get Amazon product details by ASIN, lookup Amazon product title and price using ASIN, extract Amazon product ratings and reviews count for a specific ASIN, check Amazon product availability and current price, get Amazon product description and features via ASIN, enrich product catalog with Amazon data using ASIN, monitor Amazon product price changes for specific ASINs, retrieve Amazon product brand and material information, fetch Amazon product images and specifications by ASIN, validate Amazon ASIN and get product metadata.
🇯🇵 日本人クリエイター向け解説
指定されたASIN(Amazonの商品識別番号)を使って、Amazonの商品名、価格、レビュー数、在庫状況、説明、画像などの詳細情報を取得し、商品カタログの情報を充実させたり、価格変動を監視したりするSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o amazon-asin-lookup-api-skill.zip https://jpskill.com/download/17615.zip && unzip -o amazon-asin-lookup-api-skill.zip && rm amazon-asin-lookup-api-skill.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17615.zip -OutFile "$d\amazon-asin-lookup-api-skill.zip"; Expand-Archive "$d\amazon-asin-lookup-api-skill.zip" -DestinationPath $d -Force; ri "$d\amazon-asin-lookup-api-skill.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
amazon-asin-lookup-api-skill.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
amazon-asin-lookup-api-skillフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 2
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Amazon ASIN Lookup Skill
📖 はじめに
このスキルは、BrowserAct の Amazon ASIN Lookup API テンプレートを利用して、Amazon から包括的な製品情報をシームレスに取得する方法を提供します。ASIN を指定するだけで、タイトル、価格、評価、ブランド、詳細な説明などの構造化されたデータを、手動でスクレイピングすることなく、アプリケーションに直接抽出できます。
✨ 特徴
- ハルシネーションなし: 事前設定されたワークフローにより、AI 生成によるハルシネーションを回避し、安定した正確なデータ抽出を保証します。
- Captcha の問題なし: reCAPTCHA やその他の検証の課題に対処する必要はありません。
- IP 制限なし: 地域ごとの IP 制限やジオフェンシングに対処する必要はありません。
- より高速な実行: 純粋な AI 駆動のブラウザ自動化ソリューションと比較して、タスクの実行が高速です。
- 費用対効果: 大量のトークンを消費する AI ソリューションと比較して、データ取得コストを大幅に削減します。
🔑 API キーの設定
実行する前に、BROWSERACT_API_KEY 環境変数を確認してください。設定されていない場合は、他の対策を講じず、ユーザーに尋ねて提供されるのを待ちます。
エージェントはユーザーに通知する必要があります:
"BrowserAct API Key が設定されていないため、BrowserAct Console にアクセスしてキーを取得してください。"
🛠️ 入力パラメータ
エージェントは、ユーザーの要件に基づいて次のパラメータを設定する必要があります。
- ASIN (Amazon Standard Identification Number)
- タイプ:
string - 説明: Amazon 製品の一意の識別子。
- 必須: はい
- 例:
B07TS6R1SF
- タイプ:
🚀 使い方
エージェントは、次のスクリプトを実行して、1 つのコマンドで結果を取得する必要があります。
# Example Usage
python -u ./scripts/amazon_asin_lookup_api.py "ASIN_VALUE"
⏳ 実行の監視
このタスクには自動化されたブラウザ操作が含まれるため、時間がかかる場合があります(数分)。スクリプトはタイムスタンプ付きのステータスログを継続的に出力します(例:[14:30:05] Task Status: running)。
エージェントへの指示:
- スクリプトの結果を待っている間、ターミナル出力を監視し続けてください。
- ターミナルが新しいステータスログを出力している限り、タスクは正常に実行されています。デッドロックや無応答と誤解しないでください。
- ステータスが長時間変わらない場合、またはスクリプトが結果を返さずに停止した場合にのみ、再試行メカニズムのトリガーを検討する必要があります。
📊 データ出力
成功すると、スクリプトは API レスポンスから構造化された製品データを解析して出力します。これには以下が含まれます。
product_title: 製品の完全なタイトル。ASIN: 提供された ASIN。product_url: Amazon 製品ページの URL。brand: ブランド名。price_current_amount: 現在の価格。price_original_amount: 元の価格(該当する場合)。price_discount_amount: 割引額(該当する場合)。rating_average: 平均星評価。rating_count: 評価の総数。featured: "Amazon's Choice" のようなバッジ。color: カラーバリアント(該当する場合)。compatible_devices: 互換性のあるデバイスのリスト(該当する場合)。product_description: 製品の完全な説明。special_features: 強調表示された機能。style: スタイル属性(該当する場合)。material: 使用されている素材(該当する場合)。
⚠️ エラー処理と再試行
スクリプトの実行中にエラーが発生した場合(例:ネットワークの変動またはタスクの失敗)、エージェントは次のロジックに従う必要があります。
-
出力内容の確認:
- 出力に
"Invalid authorization"が含まれている場合、API キーが無効であるか期限切れであることを意味します。再試行しないでください。ユーザーに再確認して正しい API キーを提供するように指示してください。 - 出力に
"Invalid authorization"が含まれていないが、タスクが失敗した場合(例:出力がError:で始まるか、空の結果を返す)、エージェントは自動的にスクリプトをもう一度再実行する必要があります。
- 出力に
-
再試行制限:
- 自動再試行は1 回に制限されています。2 回目の試行が失敗した場合は、再試行を停止し、特定のエラー情報をユーザーに報告してください。
🌟 一般的なユースケース
- 製品データの充実化: ASIN のリストの完全な詳細を取得して、e コマースデータベースを更新します。
- 価格比較: 特定の ASIN の現在の Amazon 価格を調べて、他の小売業者と比較します。
- レビューの監視: 主要製品の評価平均とレビュー数の変化を追跡します。
- 在庫状況の確認: 特定の製品が現在 Amazon で在庫があるかどうかを自動的に確認します。
- ブランド分析: ASIN で識別された製品のブランドとメーカーを特定します。
- 詳細な仕様: カタログ管理のために、素材、スタイル、および色の情報を取得します。
- 機能の強調表示: マーケティングコピーのために、"special features" と詳細な説明を抽出します。
- 互換性の検証: 電子機器またはアクセサリの "compatible devices" を確認します。
- 市場調査: 特定の製品 ID の "Amazon's Choice" のようなおすすめバッジを分析します。
- URL の解決: ASIN のリストを完全な Amazon 製品ページ URL に変換します。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Amazon ASIN Lookup Skill
📖 Introduction
This skill utilizes BrowserAct's Amazon ASIN Lookup API template to provide a seamless way to retrieve comprehensive product information from Amazon. By simply providing an ASIN, you can extract structured data including title, price, ratings, brand, and detailed descriptions directly into your application without manual scraping.
✨ Features
- No Hallucinations: Pre-set workflows avoid AI generative hallucinations, ensuring stable and precise data extraction.
- No Captcha Issues: No need to handle reCAPTCHA or other verification challenges.
- No IP Restrictions: No need to handle regional IP restrictions or geofencing.
- Faster Execution: Tasks execute faster compared to pure AI-driven browser automation solutions.
- Cost-Effective: Significantly lowers data acquisition costs compared to high-token-consuming AI solutions.
🔑 API Key Setup
Before running, check the BROWSERACT_API_KEY environment variable. If not set, do not take other measures; ask and wait for the user to provide it.
Agent must inform the user:
"Since you haven't configured the BrowserAct API Key, please visit the BrowserAct Console to get your Key."
🛠️ Input Parameters
The agent should configure the following parameters based on user requirements:
- ASIN (Amazon Standard Identification Number)
- Type:
string - Description: The unique identifier for the Amazon product.
- Required: Yes
- Example:
B07TS6R1SF
- Type:
🚀 Usage
The agent should execute the following script to get results in one command:
# Example Usage
python -u ./scripts/amazon_asin_lookup_api.py "ASIN_VALUE"
⏳ Execution Monitoring
Since this task involves automated browser operations, it may take some time (several minutes). The script will continuously output status logs with timestamps (e.g., [14:30:05] Task Status: running).
Agent Instructions:
- While waiting for the script result, keep monitoring the terminal output.
- As long as the terminal is outputting new status logs, the task is running normally; do not mistake it for a deadlock or unresponsiveness.
- Only if the status remains unchanged for a long time or the script stops outputting without returning a result should you consider triggering the retry mechanism.
📊 Data Output
Upon success, the script parses and prints the structured product data from the API response, which includes:
product_title: Full title of the product.ASIN: The provided ASIN.product_url: URL of the Amazon product page.brand: Brand name.price_current_amount: Current price.price_original_amount: Original price (if applicable).price_discount_amount: Discount amount (if applicable).rating_average: Average star rating.rating_count: Total number of ratings.featured: Badges like "Amazon's Choice".color: Color variant (if applicable).compatible_devices: List of compatible devices (if applicable).product_description: Full product description.special_features: Highlighted features.style: Style attribute (if applicable).material: Material used (if applicable).
⚠️ Error Handling & Retry
If an error occurs during script execution (e.g., network fluctuations or task failure), the Agent should follow this logic:
-
Check Output Content:
- If the output contains
"Invalid authorization", it means the API Key is invalid or expired. Do not retry; guide the user to re-check and provide the correct API Key. - If the output does not contain
"Invalid authorization"but the task failed (e.g., output starts withError:or returns empty results), the Agent should automatically try to re-execute the script once.
- If the output contains
-
Retry Limit:
- Automatic retry is limited to one time. If the second attempt fails, stop retrying and report the specific error information to the user.
🌟 Typical Use Cases
- Product Data Enrichment: Retrieve full details for a list of ASINs to update an e-commerce database.
- Price Comparison: Lookup current Amazon prices for specific ASINs to compare with other retailers.
- Review Monitoring: Track changes in rating averages and review counts for key products.
- Availability Checks: Automatically verify if a specific product is currently in stock on Amazon.
- Brand Analysis: Identify the brand and manufacturer of products identified by ASIN.
- Detailed Specifications: Fetch material, style, and color information for catalog management.
- Feature Highlighting: Extract "special features" and detailed descriptions for marketing copy.
- Compatibility Verification: Check "compatible devices" for electronics or accessories.
- Market Research: Analyze featured badges like "Amazon's Choice" for specific product IDs.
- URL Resolution: Convert a list of ASINs into full Amazon product page URLs.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (5,899 bytes)
- 📎 scripts/amazon_asin_lookup_api.py (4,253 bytes)