SellerSprite Traffic Keyword
This skill helps query and analyze traffic keyword lists for an Amazon ASIN via SellerSprite.
Core Concepts
- ASIN Reverse Keyword Lookup: Input an ASIN to view the keyword list that drives traffic to that product.
- Traffic Share Types (
trafficKeywordTypes): Primary traffic keywords, precise traffic keywords, and preciseLongTail (labeled as "conversion loss keywords" in the tool UI) as defined in the schema.
- Conversion Types (
conversionKeywordTypes): Conversion-strong keywords, stable keywords, loss keywords, etc.
- Keyword Badges (
badges): Organic search keywords, Amazon Choice recommended keywords, etc.
API Invocation
- API Endpoint:
POST /sellersprite/traffic/keyword (full parameters/response/error codes in references/api.md)
- Python Script:
python scripts/amazon_traffic_keywords.py ''<JSON params>'' [--inline]
- Cost: This tool consumes credits. The same parameter combination is only called once per session by default; the script has a 24h local cache. Do not automatically retry with different keywords, pages, or zip codes on failure/empty results. If further retrieval is needed, explain the additional cost to the user first.
Output Strategy (script default behavior):
- Always write the full response to
<cwd>/nexscope/<YYYY-MM-DD>/<session>/data/nexscope-sellersprite-traffic-keyword-<timestamp>.json (<cwd> is the working directory at script execution time, i.e. the current project directory in Claude Code; <session> comes from the SESSION_ID environment variable, automatically grouped by user task; do not write to /tmp, error out if the current directory is not writable)
- Response body <= 8 KB: print the full JSON to stdout after writing to disk
- Response body > 8 KB: after writing to disk, stdout only outputs a summary (top-level fields, common counts like
total/costToken, length of the largest list field + first 3 samples)
- Add
--inline to force full output to stdout (still writes to disk)
Data Reading Tips: Check the summary first to see if it is sufficient. When specific fields are needed, prefer using jq or ConvertFrom-Json to extract from the saved JSON file on demand, avoiding loading the entire JSON into context.
Authentication
Set the NEXSCOPE_API_KEY environment variable. If authentication fails (401/402) or you see insufficient balance errors, visit https://www.nexscope.ai/help/skills-external-access?co-from=skillNS to get an API Key or top up credits.
Key Parameters
| Parameter |
Type |
Required |
Description |
| marketplace |
string |
Yes |
Marketplace site, default US |
| asin |
string |
Yes |
ASIN to look up |
| month |
string |
No |
Historical month, format yyyyMM; default is last 30 days |
| page |
integer |
No |
Page number, default 1 |
| size |
integer |
No |
Items per page, default 50, maximum 100 |
| keyword |
string |
No |
Keyword filter |
| badges |
string |
No |
Keyword badges, multiple values comma-separated |
| trafficKeywordTypes |
string |
No |
Traffic share types, multiple values comma-separated |
| conversionKeywordTypes |
string |
No |
Conversion types, multiple values comma-separated |
| orderField |
string |
No |
Sort field, default rankPosition |
| orderDesc |
boolean |
No |
Descending order, default false |
Usage Examples
{
"marketplace": "US",
"asin": "B0XXXXXXXXX",
"size": 50,
"orderField": "rankPosition",
"orderDesc": false
}
{
"marketplace": "US",
"asin": "B0XXXXXXXXX",
"month": "202507",
"trafficKeywordTypes": "primary,precise",
"conversionKeywordTypes": "excellent,stable",
"page": 1,
"size": 100
}
Display Rules
- Prioritize displaying: keyword, organic rank, ad rank, traffic share type, conversion type.
- Clearly indicate the query period (last 30 days or historical month).
- When paginated, show total count and current page.
- Do not output subjective business advice unrelated to the API unless explicitly requested by the user.
Important Limitations
- Required parameters:
marketplace, asin
- Maximum 100 items per page per call
- Historical queries require the
yyyyMM format
Credit Consumption
Consumes 15 credits.
Users pay for credit consumption. When high-frequency calls to this skill are needed, or when the user may underestimate the credit cost, be sure to remind them and let them decide whether to continue.
1---2name: ecommerce-amazon-traffic-keywords3description: Query traffic keyword lists for an Amazon ASIN via SellerSprite, including traffic source type, conversion type, organic rank, and ad rank with historical month and multi-dimensional sorting. Trigger when user mentions ASIN reverse traffic keywords, traffic keyword list, keyword traffic structure, organic/ad keyword analysis, keyword conversion type, SellerSprite traffic keyword, Amazon traffic keywords, reverse ASIN keywords — even if "SellerSprite" is not explicitly mentioned, as long as the need involves viewing keyword traffic sources and keyword lists for a specific ASIN.4---56# SellerSprite Traffic Keyword78This skill helps query and analyze traffic keyword lists for an Amazon ASIN via SellerSprite.910## Core Concepts1112- **ASIN Reverse Keyword Lookup**: Input an ASIN to view the keyword list that drives traffic to that product.13- **Traffic Share Types** (`trafficKeywordTypes`): Primary traffic keywords, precise traffic keywords, and `preciseLongTail` (labeled as "conversion loss keywords" in the tool UI) as defined in the schema.14- **Conversion Types** (`conversionKeywordTypes`): Conversion-strong keywords, stable keywords, loss keywords, etc.15- **Keyword Badges** (`badges`): Organic search keywords, Amazon Choice recommended keywords, etc.1617## API Invocation1819- **API Endpoint**: `POST /sellersprite/traffic/keyword` (full parameters/response/error codes in `references/api.md`)20- **Python Script**: `python scripts/amazon_traffic_keywords.py ''<JSON params>'' [--inline]`21- **Cost**: This tool consumes credits. The same parameter combination is only called once per session by default; the script has a 24h local cache. Do not automatically retry with different keywords, pages, or zip codes on failure/empty results. If further retrieval is needed, explain the additional cost to the user first.2223**Output Strategy (script default behavior)**:24- **Always** write the full response to `<cwd>/nexscope/<YYYY-MM-DD>/<session>/data/nexscope-sellersprite-traffic-keyword-<timestamp>.json` (`<cwd>` is the working directory at script execution time, i.e. the current project directory in Claude Code; `<session>` comes from the `SESSION_ID` environment variable, automatically grouped by user task; **do not write to /tmp**, error out if the current directory is not writable)25- Response body <= 8 KB: print the full JSON to stdout after writing to disk26- Response body > 8 KB: after writing to disk, stdout only outputs a summary (top-level fields, common counts like `total`/`costToken`, length of the largest list field + first 3 samples)27- Add `--inline` to force full output to stdout (still writes to disk)2829**Data Reading Tips**: Check the summary first to see if it is sufficient. When specific fields are needed, prefer using `jq` or `ConvertFrom-Json` to extract from the saved JSON file on demand, avoiding loading the entire JSON into context.3031## Authentication3233Set the `NEXSCOPE_API_KEY` environment variable. If authentication fails (401/402) or you see insufficient balance errors, visit https://www.nexscope.ai/help/skills-external-access?co-from=skillNS to get an API Key or top up credits.3435## Key Parameters3637| Parameter | Type | Required | Description |38|-----------|------|----------|-------------|39| marketplace | string | Yes | Marketplace site, default `US` |40| asin | string | Yes | ASIN to look up |41| month | string | No | Historical month, format `yyyyMM`; default is last 30 days |42| page | integer | No | Page number, default 1 |43| size | integer | No | Items per page, default 50, maximum 100 |44| keyword | string | No | Keyword filter |45| badges | string | No | Keyword badges, multiple values comma-separated |46| trafficKeywordTypes | string | No | Traffic share types, multiple values comma-separated |47| conversionKeywordTypes | string | No | Conversion types, multiple values comma-separated |48| orderField | string | No | Sort field, default `rankPosition` |49| orderDesc | boolean | No | Descending order, default `false` |5051## Usage Examples5253```json54{55 "marketplace": "US",56 "asin": "B0XXXXXXXXX",57 "size": 50,58 "orderField": "rankPosition",59 "orderDesc": false60}61```6263```json64{65 "marketplace": "US",66 "asin": "B0XXXXXXXXX",67 "month": "202507",68 "trafficKeywordTypes": "primary,precise",69 "conversionKeywordTypes": "excellent,stable",70 "page": 1,71 "size": 10072}73```7475## Display Rules76771. Prioritize displaying: keyword, organic rank, ad rank, traffic share type, conversion type.782. Clearly indicate the query period (last 30 days or historical month).793. When paginated, show total count and current page.804. Do not output subjective business advice unrelated to the API unless explicitly requested by the user.8182## Important Limitations8384- Required parameters: `marketplace`, `asin`85- Maximum 100 items per page per call86- Historical queries require the `yyyyMM` format8788## Credit Consumption8990Consumes 15 credits.9192> Users pay for credit consumption. When high-frequency calls to this skill are needed, or when the user may underestimate the credit cost, be sure to remind them and let them decide whether to continue.