openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Sellersprite Api

SellerSprite Product Research — Fetch Amazon market data via SellerSprite API: product research, keyword analysis, competitor lookup, ASIN details, Blue Ocea...

开发与 DevOps

作者:Yang Jun @boyd4y

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 20 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:boyd4y/sellersprite-api

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill's declared purpose (SellerSprite Amazon research) matches the instructions, but there are inconsistencies between the registry metadata and the SKILL.md (required runtime tools/packages are listed only in the SKILL.md), which warrants caution before installing or running commands that fetch/run a third‑party CLI.

目的

The skill's name/description (SellerSprite product research) matches the commands and API endpoints described in SKILL.md and references. The required capability — calling SellerSprite endpoints with an API key — is coherent with the stated purpose. However, the registry metadata provided to you earlier lists no required binaries or env vars, while SKILL.md metadata explicitly lists the bun runtime and the @teamclaw/sellersprite-cli package; t…

说明范围

All runtime instructions are limited to running the SellerSprite CLI (bunx @teamclaw/sellersprite-cli) against SellerSprite endpoints and managing a local config secret. The instructions only reference the SELLERSPRITE_SECRET_KEY (optional) and local config; they do not ask the agent to read unrelated system files, other credentials, or to transmit data to unexpected endpoints.

安装机制

There is no install specification in the registry (instruction-only), but SKILL.md metadata lists a runtime dependency on bun and a package (@teamclaw/sellersprite-cli). That means running the skill will rely on bunx to fetch and run a third‑party CLI at runtime (dynamic package installation/execution) even though no explicit install/install sources are provided. Dynamic fetching/execution of a package from an unknown author increases risk unl…

证书

The only credential referenced is SELLERSPRITE_SECRET_KEY (optional in SKILL.md) used to authenticate to the SellerSprite Open API. This is proportionate to the skill's purpose. No unrelated secrets or broad system credentials are requested.

持久

The skill does not request always: true and does not appear to modify other skills or request system-wide privileges. It may write a local config (via the CLI's config command) to store the API key, which is expected behavior for a CLI that needs an API key.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Sellersprite Api」。简介:SellerSprite Product Research — Fetch Amazon market data via SellerSprite API: …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/boyd4y/sellersprite-api/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: sellersprite-api
description: "SellerSprite Product Research — Fetch Amazon market data via SellerSprite API: product research, keyword analysis, competitor lookup, ASIN details, Blue Ocean Index scoring. Triggers: product research, sellersprite, amazon product research, blue ocean, keyword research, competitor analysis, market analysis, asin research, amazon fba"
compatibility: darwin,linux
metadata:
  version: 1.0.0
  requires:
    bins:
      - bun
    env:
      - name: SELLERSPRITE_SECRET_KEY
        description: "SellerSprite Open API secret key (get at https://open.sellersprite.com)"
        required: false
        note: "Can also be set via: bunx @teamclaw/sellersprite-cli config set secretKey <key>"
    packages:
      - "@teamclaw/sellersprite-cli"
---

# SellerSprite Product Research

Fetch Amazon market data via SellerSprite API. Each command calls exactly one API endpoint — compose them as needed.

## Quick Start

```bash
# Set API key
export SELLERSPRITE_SECRET_KEY="your-secret-key"

# Browse top categories
bunx @teamclaw/sellersprite-cli market

# Research products by keyword
bunx @teamclaw/sellersprite-cli product --keyword "wireless earbuds"

# Get ASIN details
bunx @teamclaw/sellersprite-cli asin --asin B08N5WRWNW

# Check remaining quota
bunx @teamclaw/sellersprite-cli quota
```

## Commands

| Command | API Endpoint | Description |
|---|---|---|
| `market` | `/v1/market/research` | Market/category research |
| `product` | `/v1/product/research` | Product research by keyword |
| `competitor` | `/v1/product/competitor-lookup` | Competitor lookup by ASIN |
| `asin` | `/v1/asin/{market}/{asin}/with-coupon-trend` | ASIN details + coupon trend |
| `keyword` | `/v1/keyword-research` | Keyword research |
| `quota` | `/v1/visits` | Check API quota |
| `config` | — | Local config management |

## Options

| Option | Applies to | Description | Default |
|---|---|---|---|
| `--keyword <kw>` | product, keyword | Search keyword | (required) |
| `--asin <asin>` | competitor, asin | Target ASIN | (required) |
| `--marketplace <code>` | all data commands | Marketplace code | `US` |
| `--month <yyyyMM>` | product, competitor, keyword | Query month | latest |
| `--page <n>` | market | Page number | `1` |
| `--size <n>` | market, product, competitor, keyword | Results per page (max 100) | `20`/`50` |
| `--format <format>` | all commands | `text` or `json` | `text` |

## References

Detailed specs in `references/` directory:

- `references/api-endpoints.md` — API parameters, response fields, computed stats, rate limits
- `references/marketplace-codes.md` — Supported marketplaces with currencies
- `references/error-handling.md` — Error types, unauthorized quota tips, module mapping