Skills sellersprite-api

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

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/boyd4y/sellersprite-api" ~/.claude/skills/openclaw-skills-sellersprite-api && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/boyd4y/sellersprite-api" ~/.openclaw/skills/openclaw-skills-sellersprite-api && rm -rf "$T"
manifest: skills/boyd4y/sellersprite-api/SKILL.md
source content

SellerSprite Product Research

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

Quick Start

# 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

CommandAPI EndpointDescription
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

OptionApplies toDescriptionDefault
--keyword <kw>
product, keywordSearch keyword(required)
--asin <asin>
competitor, asinTarget ASIN(required)
--marketplace <code>
all data commandsMarketplace code
US
--month <yyyyMM>
product, competitor, keywordQuery monthlatest
--page <n>
marketPage number
1
--size <n>
market, product, competitor, keywordResults 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