SerendipityOneInc/ZooData-Skills/zoodata/SKILL.md
zoodata
API endpoint reference for the ZooData data platform: the 12 commerce endpoints plus 10 keyword-intelligence endpoints (categories, markets, products, competitors, realtime ASIN, AI review analysis, raw reviews, price band, brand, history, and the keyword detail/trend/extends/search/ market-profile/product-traffic/competitor-keywords/traffic-profile/ traffic-timeline family) — their inputs/outputs, parameter quirks, Quick Start (auth, base URL), how credits are tracked (meta.creditsConsumed), an
- Source repository stars
- 67
- Declared platforms
- 1
- Static risk flags
- 0
- Last source update
- 2026-08-17
- Source checked
- 2026-08-25
Decision brief
What it does: where it fits
200M+ Amazon products. 22 endpoints. One API key.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Declared | Source record | Install path and trigger |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/SerendipityOneInc/ZooData-Skills --skill "zoodata"Inspect the Agent Skill "zoodata" from https://github.com/SerendipityOneInc/ZooData-Skills/blob/83715496c9e81f70e78825d5484d797cb7cacca9/zoodata/SKILL.md at commit 83715496c9e81f70e78825d5484d797cb7cacca9. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Quick Start
1. Get key: zoodata.ai/api-keys (1,000 free credits) 2. export ZOODATAAPIKEY='hmslivexxx' 3. Base URL: https://api.zoodata.ai/openapi/v2 — all POST with JSON body 4. Auth: Authorization: Bearer YOURAPIKEY 5. New keys need 3-5s to activate. If 403, wait and retry.
Get key: zoodata.ai/api-keys (1,000 free credits)export ZOODATAAPIKEY='hmslivexxx'Base URL: https://api.zoodata.ai/openapi/v2 — all POST with JSON body - 02
Local Review Toolkit
When /reviews/analysis lacks aggregation (ASIN has <50 reviews or no daily snapshot), fall back to live raw reviews + your own LLM. The toolkit does NOT call any external LLM — you (the calling skill's LLM) perform the Map/Reduce steps.
When /reviews/analysis lacks aggregation (ASIN has <50 reviews or no daily snapshot), fall back to live raw reviews + your own LLM. The toolkit does NOT call any external LLM — you (the calling skill's LLM) perform the… - 03
2. For EACH review, render the per-review Map prompt
zoodata.py review-tag-prompt --review '' \ [--product-title "..."] [--product-category "..."]
zoodata.py review-tag-prompt --review '' \ [--product-title "..."] [--product-category "..."] - 04
Capabilities & Data Flow
Network: only https://api.zoodata.ai (Bearer ZOODATAAPIKEY). Setting ZOODATABASEURL to an untrusted host (anything other than api.zoodata.ai / .zoodata.ai / localhost) makes the CLI refuse the request and withhold the k…
Network: only https://api.zoodata.ai (Bearer ZOODATAAPIKEY). Setting ZOODATABASEURL to an untrusted host (anything other than api.zoodata.ai / .zoodata.ai / localhost) makes the CLI refuse the request and withhold the k…Execution: bundled shared ZooData CLI {skillbasedir}/scripts/zoodata.py (Python 3, stdlib-only). This data-layer reference skill allows the complete literal subcommand surface exposed by the bundled client's current top…Local files: none by default; reads the optional credential store /.zoodata/config.json; the Local Review Toolkit uses a private temporary working dir (created with mktemp -d, removed when the fallback completes) during… - 05
Shared CLI contract
Before selecting or invoking a bundled CLI command, read and apply references/cli-contract.md; reapply it after every result. It is the local source of truth for invocation, command identity, execution-environment permission handling, composite reuse, exit-status handling, autho…
Before selecting or invoking a bundled CLI command, read and apply references/cli-contract.md; reapply it after every result. It is the local source of truth for invocation, command identity, execution-environment permi…For this API-reference skill, a terminal interface failure must produce one concise localized notice stating that the ZooData API lookup could not be completed, followed by the succeeded and failed endpoint identifiers.…
Permission review
Static risk signals and limitations
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 98/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 67 | Source | Repository attention, not individual Skill quality |
| Compatibility | 1 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- SerendipityOneInc/ZooData-Skills
- Skill path
- zoodata/SKILL.md
- Commit
- 83715496c9e81f70e78825d5484d797cb7cacca9
- License
- MIT
- Collected
- 2026-08-25
- Default branch
- main
View the original SKILL.md
📋 Live API Reference: Field names and parameters may change. If you encounter field errors, check the latest OpenAPI spec at https://zoodata.ai/api/v1/openapi-spec for current field definitions. Keyword exception: the observation endpoints currently support
granularity=weekonly. Do not reintroduceday,month,lately_day, orlookbackDaysfrom a stale generated schema.
ZooData — Commerce Data Infrastructure for AI Agents
200M+ Amazon products. 22 endpoints. One API key.
Quick Start
- Get key: zoodata.ai/api-keys (1,000 free credits)
export ZOODATA_API_KEY='hms_live_xxx'- Base URL:
https://api.zoodata.ai/openapi/v2— all POST with JSON body - Auth:
Authorization: Bearer YOUR_API_KEY - New keys need 3-5s to activate. If 403, wait and retry.
Capabilities & Data Flow
- Network: only
https://api.zoodata.ai(BearerZOODATA_API_KEY). SettingZOODATA_BASE_URLto an untrusted host (anything other thanapi.zoodata.ai/*.zoodata.ai/ localhost) makes the CLI refuse the request and withhold the key — the Bearer token is never sent to an untrusted host. - Execution: bundled shared ZooData CLI
{skill_base_dir}/scripts/zoodata.py(Python 3, stdlib-only). This data-layer reference skill allows the complete literal subcommand surface exposed by the bundled client's current top-level help. - Local files: none by default; reads the optional credential store
~/.zoodata/config.json; the Local Review Toolkit uses a private temporary working dir (created withmktemp -d, removed when the fallback completes) during the review fallback. - Sent to the API: keywords, category paths, ASINs, marketplace/date and numeric filter values only. Never sent: budget, experience level, risk tolerance, or any other user-profile text — profile inputs map client-side to numeric filters.
- Credits: every API call consumes account credits. For broad or ambiguous requests, state the estimated credit cost and confirm with the user before running multi-call scans.
Shared CLI contract
Before selecting or invoking a bundled CLI command, read and apply references/cli-contract.md; reapply it after every result. It is the local source of truth for invocation, command identity, execution-environment permission handling, composite reuse, exit-status handling, authoritative transport status, retries, terminal interface failures, and partial results.
Local Interface Failure Output
For this API-reference skill, a terminal interface failure must produce one concise localized notice stating that the ZooData API lookup could not be completed, followed by the succeeded and failed endpoint identifiers. Do not continue into endpoint guidance, schema interpretation, or another API call. Do not expose control tokens or internal retry logs unless the user requests diagnostics.
⚠️ Critical API Pitfalls (ALL skills must follow)
- Commerce product/market search using a broad query → resolve and lock
categoryPathbefore interpreting category-sensitive product, market, competitor, brand, or price-band results. An explicitly labeledproducts/searchcategory probe may run without a locked category only to resolve that category. Do not apply this rule to/openapi/v2/keywords/*Keyword Intelligence endpoints: theirkeyword/queryinputs are Amazon search queries and do not requirecategoryPath. - Brand/price-band queries MUST include --category to avoid cross-category contamination
- Revenue =
sampleAvgMonthlyRevenuedirectly. NEVER calculate avgPrice × totalSales (overestimates 30-70%) - Sales =
monthlySalesFloor(lower bound). Fallback: 300,000 / BSR^0.65, tag as 🔍 - Use API fields directly:
sampleOpportunityIndex,sampleTop10BrandSalesRate— never reinvent - reviews/analysis needs 50+ reviews. Fallback chain when sample is insufficient:
- Lightweight:
realtime/product→ratingBreakdown(star distribution only, no themes) - Full 11-dim insights:
realtime/reviews(raw text, up to 100) + local Map/Reduce via the Local Review Toolkit below — see "Local Review Toolkit" section
- Lightweight:
- Aggregation endpoints (price-band, brand) without categoryPath produce severely distorted data
- Price-band and brand endpoints only accept
keyword(not categoryPath) — cross-validate returned products modeis CLI-local, NOT an API parameter →zoodata.pyexpands--modeclient-side into the filter sets inPRODUCT_MODES({skill_base_dir}/scripts/zoodata.py, 13 presets) before the request; sendingmoderaw → 422- CLI filter flags ≠ API field names →
--sales-min→monthlySalesMin;--ratings-max(review count) →ratingCountMax, notratingMax(a different valid field — max star rating — that returns wrong results silently, no 422). PasscategoryPathas a JSON array (["Electronics"]), never a string. Unknown fields (salesMin,ratingsMax, …) → 422
On Missing Key (no credentials configured)
BEFORE calling any endpoint, verify credentials are configured. The reliable check is python {skill_base_dir}/scripts/zoodata.py check — credentials-only by default, no endpoint calls and no credit usage; exits non-zero if no key is found in env vars OR config files. A [ -z "$ZOODATA_API_KEY" ] test alone is NOT sufficient — a user may have only ~/.zoodata/config.json set.
When no key is found through any mechanism:
- STOP. Do not run the workflow. Do not call
zoodata.py(you'll just get the same credential error and burn tokens). - Do NOT fall back to a "partial analysis from training data" / "industry common-sense headlines" / "for reference only" preview. Your training data is stale, has no per-ASIN granularity, and presenting it as analysis — even disclaimed — misrepresents what this skill produces. The deliverable is data-backed; without data, there is no deliverable.
- Tell the user, in their language, all three of:
- "
ZOODATA_API_KEYis not set — I need this to run the analysis." - Get a free key (1,000 credits, no credit card): https://zoodata.ai/en/api-keys
- Configure via one of:
export ZOODATA_API_KEY='hms_live_xxx'(session only)mkdir -p ~/.zoodata && chmod 700 ~/.zoodata && (umask 077; echo '{"api_key":"hms_live_xxx"}' > ~/.zoodata/config.json)(persistent; keep the file private — 0600)
- "
- Optionally state in one sentence what the workflow will produce once the key is configured (deliverable shape only — no numbers, no market color, no "common sense" preview).
On 401 Invalid Key
When zoodata.py returns a structured error with _transport.status=401, apply this route regardless of whether the preserved server error object contains status or uses the CLI fallback message:
- STOP further endpoint calls immediately. Do not retry — a rejected key won't be accepted on a second try; every subsequent call will return 401 too.
- Keep the selected credential authoritative. Do not inspect, compare, export, or switch to a lower-priority legacy credential after rejection. A legacy credential may be selected only when neither new source is configured; trying another endpoint or asking to continue does not change this precedence.
- Report to the user:
- The selected ZooData credential was rejected (likely invalid, revoked, or expired)
- If any partial findings were collected before the failure, show them and mark as partial
- Fix at https://zoodata.ai/en/api-keys (verify the key, regenerate if needed)
- Do not fabricate or guess the data the failed calls would have returned. This includes "training-data fallback" / "industry common-sense" headlines disguised as preview — those are fabrications.
On 402 Credit Exhausted
When zoodata.py returns a structured error with _transport.status=402, apply this route regardless of whether the preserved server error object contains status or uses the CLI fallback message:
- STOP further endpoint calls immediately. Do not retry. Do not switch endpoints as a workaround — 402 is account-level (key/subscription), not endpoint-level.
- Report to the user with all four of:
- Which step in the workflow was reached (e.g. "Completed step 3/5: brand analysis")
- Partial findings already collected (show the actual data, not just a list of completed steps)
- Returned credit metadata when available; if it is absent, say it was not returned rather than estimating it
- Top-up link: https://zoodata.ai/en/pricing
- Do not fabricate or guess the missing data to "complete" the report. Mark partial findings explicitly as partial. No "training-data fallback" / "industry common-sense" filler — substituting public-knowledge prose for missing endpoint data is still fabrication.
On 422 Validation Error
For every parsed HTTP response from zoodata.py, treat _transport.status as the authoritative outer status; response-body and nested status-like fields do not override it. When the CLI returns HTTP 422 / VALIDATION_ERROR, read the preserved structured server error on stdout, including its message/details and _query.params. Do not retry the unchanged request. Correct the named fields first; the CLI exits non-zero while preserving the server error fields for the calling agent. Keyword endpoints that expose granularity currently accept week only; do not send day, month, lately_day, or lookbackDays.
22 Endpoints
| # | Endpoint | Purpose | Key Output |
|---|---|---|---|
| 1 | categories | Browse/search category tree | categoryPath, productCount |
| 2 | markets/search | Market-level metrics | sampleAvgMonthlySales, sampleAvgPrice, topSalesRate, sampleNewSkuRate |
| 3 | products/search | Product search (20+ filter fields) | asin, price, monthlySalesFloor, rating, ratingCount, fbaFee |
| 4 | products/competitors | Competitor discovery | same fields as products/search |
| 5 | realtime/product | Live ASIN detail | rating, features, bestsellersRank[], buyboxWinner.price, variants |
| 6 | reviews/analysis | AI review insights (11 dims) | sentimentDistribution, consumerInsights, topKeywords |
| 7 | realtime/reviews | Live raw review text (cursor paginated, max 100) | reviews[], nextCursor — feeds Local Review Toolkit |
| 8 | products/price-band-overview | Price band summary | hottestBand, bestOpportunityBand, sampleOpportunityIndex |
| 9 | products/price-band-detail | Full 5-band distribution | priceBands[] with sales, brands, ratings per band |
| 10 | products/brand-overview | Brand concentration | sampleTop10BrandSalesRate (CR10), sampleBrandCount |
| 11 | products/brand-detail | Per-brand breakdown | brands[] with sales, revenue, sampleProducts |
| 12 | products/history | Time series (single ASIN per call) | timestamps[], price[], bsr[], monthlySalesFloor[], rating[], ratingCount[], sellerCount[], title/imageUrl/bestSeller/newRelease/aPlus/inventoryStatus changelogs |
| 13 | /openapi/v2/keywords/detail | Keyword summary from the nearest available weekly snapshot | data.context + data.items[].snapshotData with estimateSearchCount, abaRank, market/SKU/ad fields |
| 14 | /openapi/v2/keywords/market-profile | Multidimensional weekly keyword profile | demand scale, Top3 concentration, ad activity, organic-entry difficulty, saturation, brand structure, organic benchmark, coverage |
| 15 | /openapi/v2/keywords/trend | Weekly keyword time series | data.context + data.items[].series[] with search count, ABA rank, Top3 shares, period bounds |
| 15b | /openapi/v2/keywords/trend-profile | Server-calculated trend profile over fixed weekly windows | trend shape, volatility, normalized slope, direction consistency, ABA-rank evidence |
| 16 | /openapi/v2/keywords/extends | Keyword expansion / long-tail discovery | data.context + data.rows[].{matchData,keywordSnapshot}; may return empty rows[] |
| 17 | /openapi/v2/keywords/search-results | Weekly keyword SERP snapshot | data.context + data.identity + data.rows[] with placement, product, and impression fields |
| 18 | /openapi/v2/keywords/competitor-product-keywords | Keyword set where an ASIN appears as a competitor | data.context + data.identity + data.rows[] with keyword, position, demand, and traffic share |
| 19 | /openapi/v2/keywords/product-traffic-terms | Traffic-driving keywords for an ASIN | same response shape as competitor-product-keywords |
| 20 | /openapi/v2/keywords/product-traffic-terms-profile | Weekly ASIN traffic-term profile | data.context + data.items[].productTrafficTermsProfile for one ASIN or a batch of up to 20 |
| 21 | /openapi/v2/keywords/product-traffic-terms-timeline | ASIN + keyword weekly timeline | data.context + data.items[].series[] with nested ASIN, traffic, placement, keyword, and ad groups |
Known Quirks
topN,listingAge,newProductPeriodare strings ("10"not10)- Many search/list endpoints return
.dataas an array — use.data[0]for the first record. But some commands may return non-array payloads insidedata, so inspect the actual response shape before indexing. ratingCountnotreviewCounteverywherebsr(int) in products vsbestsellersRank(array) in realtimebuyboxWinner.price— NOT top-levelpricein realtimerealtime/productdoes NOT return: monthlySalesFloor, fbaFee, sellerCountrealtime/productcold-start: first call for an uncached ASIN may returnsuccess: truewith an EMPTYdata(asin: "") while the live fetch warms up — retry once after a few seconds before concluding "no data" (still billed 1 credit per call)reviewCountMin/Maxfilters currently broken (API-56)reviews/analysismay 500 for certain ASINs (API-58) — retry different ASIN- Rate limit: 100 req/min, 10 req/sec burst
categoriesusescategoryKeyword(notkeyword) andparentCategoryPath(notparentCategoryName)reviews/analysis:moderequired ("asin"/"category"), useasins(plural array) notasinrealtime/reviews: returns 10 reviews/page fixed (nopageSizeparam); 1 credit/page; cursor-paginated; hard cap = 100 reviews (10 pages); supportsmarketplaceUS/UK onlykeywords/detailaccepts exactly one ofkeyword/keywords[](max 20), resolvesdateto the nearest available weekly snapshot, and returns input-ordereddata.items[]; an unmatched item hasstatus=empty, not top-leveldata: nullkeywords/market-profileaccepts one ofkeyword/keywords[](max 20), requiresdate, supports weekly granularity only, and returns input-ordereddata.items[]withstatus=ok|empty.emptyReasonis descriptive no-result text, not an enum. A subject-specific calculation failure can return HTTP 500 for the whole batch.keywords/trend-profileaccepts one ofkeyword/keywords[](max 20), requiresdateand 1–4 uniquewindowPeriodsselected from 4/8/12/26, and supports weekly granularity only.keywords/extendsrequiresquery(notkeyword), uses the latest available weekly snapshot, supportsqueryType=phraseorfuzzy, and may legitimately return emptydata.rows[]; legacydateis optional and ignored- All keyword endpoints that expose
granularitycurrently supportweekonly.day,month,lately_day, andlookbackDaysare unsupported. Use returned period boundaries instead of inferring a rolling window. - Keyword endpoints are keyword-query workflows; for inputs named
keywordorquery, use the Amazon search query / keyword phrase being analyzed - For keyword endpoints that require
dateordateTo, prefer T-1 or earlier and avoid the current date unless the user explicitly asks for today's lookup keywords/search-resultsrequiresdate+keyword;exploreTypesvalues areORG,SP,SB,SBV,SPRkeywords/competitor-product-keywordsandkeywords/product-traffic-termsrequiredate+asin; both currently return the same live item shape, includingtrafficSharekeywords/product-traffic-terms-profileis the current ASIN aggregate route; the retired overview route is not exposed by the CLI. Seereferences/openapi-reference.md § 18for its exact contract.keywords/product-traffic-terms-timelinerequiresasin+ exactly one ofkeyword/keywords[]+dateFrom+dateTo; the date range cannot exceed 61 days and the series request has no pagination or sort parameterskeywords/search-resultsis the default source for explaining what products currently appear on a keyword SERP because it already returns listing-level product fieldsproducts/searchis a broader ZooData product-database query and must not be presented as Amazon live keyword SERP ordering
Keyword Intelligence Endpoints
These ten endpoints fill the gap between raw catalog data and search-demand/search-visibility intelligence.
Keyword value boundary:
- Keyword endpoints provide estimated search, visibility, rank, traffic-share, and impression-point signals
- They do not provide a seller's first-party ABA Search Query Performance funnel by themselves
- Treat keyword value, profitability, and conversion potential as directional unless the user supplies ABA-SQP impressions, clicks, cart adds, purchases, click share, purchase share, and conversion rate
- Seller-artifact acquisition, stage selection, field interpretation, and user-facing output policy belong to the
amazon-keyword-traffic-analysisskill. This API reference does not prescribe a blanket caveat or one seller view for every subject.
/openapi/v2/keywords/detail
- Input: exactly one of
keyword/keywords[](1–20), requireddate, optionalmarketplace,granularity=weekonly - Data window: resolves the requested
dateto the nearest available weekly snapshot at or before that date - Date rule: prefer T-1 or earlier for
date; avoid current-date lookup unless explicitly requested - Response shape:
data.context + data.items[], preserving request order - Item fields:
identity,status=ok|empty,snapshotData,emptyReason, nullableerrorCode, nullableerrorMessage snapshotDatafields includeestimateSearchCount,abaRank, Top3 click/conversion shares,marketCharacteristics,totalSkuCount, SKU/brand/title coverage, organic/ad counts, and Top48 benchmarks- Do not read legacy
estimateSearchCountWeekly,totalSkuCnt, or top-leveldata:null
/openapi/v2/keywords/market-profile (metric layer)
- Availability: standard production endpoint under the documented base URL
- Input: exactly one of
keywordorkeywords[](1–20), requireddate, optionalmarketplace,granularity=weekonly - Response shape:
data.context + data.items[], preserving request order - Context fields:
requestedDate,resolvedDate,dataWindow.currentPeriod,scoringSpec, marketplace/site/granularity - Item fields:
identity,status=ok|empty,marketProfile,emptyReason marketProfiledimensions:marketCharacteristics,demandScale,top3Concentration,adActivity,top20OrganicEntryDifficulty,supplySaturation,brandStructure,organicProductBenchmark- Interpret scores only with
context.scoringSpec(id,version,scoreType,scoreRange,referenceScope). Scored dimensions exposesupported,calculationStatus,unsupportedReason,level,interpretation, andlevelEvidence.score.{value,direction}. There is no aggregate coverage object. marketCharacteristics.volatilityandmarketCharacteristics.annualSeasonalityare independent evidence objects. Do not collapse their classifications, let one override the other, or invent peak periods from an empty list.- Unmatched keywords return
status=empty,marketProfile=null, and a descriptiveemptyReason; resolved context andscoringSpecmay be null - A subject-specific calculation failure can currently produce HTTP 500 for the whole batch. Treat it as a service failure, not an item-level
emptyresult; do not automatically fan out all subjects into single calls. - Three-layer boundary: use data-layer
keywords/detailfor source snapshot fields, metric-layerkeywords/market-profilefor stable deterministic profile objects, and the Agent + skill layer for evidence composition, confidence, explanations, limitations, and actions - Metric-first access: call the matching metric before its source data endpoint. Descend only when the Agent needs an indicator or evidence grain omitted by the metric contract, the metric endpoint is unavailable and transparent data-based calculation is valid, no metric exists, or raw evidence is explicitly requested. Incomplete metric calculation coverage is a conclusion limit—not by itself a reason to call same-source data.
- Batch-first execution: after selecting the endpoint, collect all subjects with identical non-subject context and prefer its batch contract over repeated single calls. Deduplicate case-insensitively, preserve order, chunk compatible sets at the endpoint limit (20 for current keyword batches), and merge results back into global input order. Batch support never justifies an extra cross-layer call.
/openapi/v2/keywords/trend
- Input: exactly one of
keyword/keywords[](1–20), requireddateFrom/dateTo, optionalmarketplace,granularity=weekonly; maximum 93-day range - Data window: weekly-granularity points across the requested date range
- Date rule: prefer T-1 or earlier for
dateTo; avoid current-date lookup unless explicitly requested - Response shape:
data.context + data.items[].series[], preserving request order - Item fields:
identity,status=ok|empty,series[],emptyReason, nullableerrorCode, nullableerrorMessage - Series fields:
periodStartDate,periodEndDate,estimateSearchCount,abaRank,abaTop3ClickShareRate,abaTop3ConversionShareRate
/openapi/v2/keywords/trend-profile (metric layer)
- Input: exactly one of
keyword/keywords[](1–20), requireddate, required uniquewindowPeriods[]selected from 4/8/12/26, optionalmarketplace,granularity=weekonly - Response:
data.context + data.items[].rows[]; every requested window returns one row withrowContext,status=ok|empty,emptyReason, andtrendProfile - Available profiles contain independently guarded
searchDemandandabaRankdimensions withtrend,trendPattern, and{value,direction}entries undertrendEvidence - Evidence includes first/last/change values, normalized slope, direction consistency, aligned/eligible period counts, plus demand volatility/window position or ABA best/worst rank
- Use this metric endpoint before raw
keywords/trendfor trend-shape and volatility judgments. Descend only for required weekly points or fields omitted from the profile. - Preserve null empty reasons rather than inventing one. Billing is per keyword with at least one
status=okwindow; use returned credit metadata.
/openapi/v2/keywords/extends
- Input: required
query; optionalmarketplace,page,pageSize,queryType,sortBy,sortOrder; no date is required - Important quirk: seed field is
query, notkeyword;queryTypesupportsphraseandfuzzy - Data window: latest available weekly snapshot; a legacy
datemay be sent but is ignored - Response shape:
data.context + data.query + data.queryType + data.rows[] - Row fields:
matchData.{query,keyword,site,relevanceScore}andkeywordSnapshot, whosedataWindow.currentPeriodand snapshot metrics use the same current field families askeywords/detail - Do not flatten rows to legacy
term,seedKeyword, orestimateSearchCountWeekly; emptyrows[]is normal
/openapi/v2/keywords/search-results
- Input: required
keyword/date,granularity=weekonly; optionalmarketplace,page,pageSize,exploreTypes,sortBy,sortOrder - Do not send
lookbackDays;day,month, andlately_dayare unsupported - Data window: latest available weekly period at or before the requested date; use the returned period boundaries
- Date rule: prefer T-1 or earlier for
date; avoid current-date lookup unless explicitly requested - Response shape:
data.context + data.identity + data.rows[] - Row fields include
latestObservedAt,exploreType,absolutePosition,pageIndex,pagePosition,asin,title,brand,price,currency,link,imageLink,rating,ratingCount,recentSales,hasVideo,estimateImpressionPoint,keywordTotalEstimateImpressionPoint - Interpretation rule: use this endpoint first for "what is on page 1 / what products dominate this keyword / what does the SERP look like"
- Do not substitute
products/searchwhen the question is about observed keyword SERP composition or ordering
/openapi/v2/keywords/competitor-product-keywords
- Input: required
asin/date,granularity=weekonly; optionalmarketplace,page,pageSize,exploreTypes,keywordContains,sortBy,sortOrder - Do not send
lookbackDays;day,month, andlately_dayare unsupported; use returned weekly period boundaries - Date rule: prefer T-1 or earlier for
date; avoid current-date lookup unless explicitly requested - Response shape:
data.context + data.identity + data.rows[] - Row fields include
latestObservedAt,exploreType,absolutePosition,pageIndex,pagePosition,asin,keyword,estimateImpressionPoint,asinTotalEstimateImpressionPoint,avgPosition,daysCoverageRate,observationCount,keywordEstimateSearchCount,keywordEstimateSearchChangeCount,keywordEstimateSearchCountChangeRate,keywordAbaRank,keywordAbaRankChangeCount,trafficShare
/openapi/v2/keywords/product-traffic-terms
- Input: same request shape as
keywords/competitor-product-keywords - Data window: weekly period selected by
date+granularity=week; use returned period boundaries - Date rule: prefer T-1 or earlier for
date; avoid current-date lookup unless explicitly requested - Response shape:
data.context + data.identity + data.rows[] - Row fields include
latestObservedAt,exploreType,absolutePosition,pageIndex,pagePosition,asin,keyword,estimateImpressionPoint,asinTotalEstimateImpressionPoint,avgPosition,daysCoverageRate,observationCount,keywordEstimateSearchCount,keywordEstimateSearchChangeCount,keywordEstimateSearchCountChangeRate,keywordAbaRank,keywordAbaRankChangeCount,trafficShare - Live validation note: current live response item shape matches
keywords/competitor-product-keywordsfield-for-field; keep the semantic distinction in output wording rather than assuming a unique schema
/openapi/v2/keywords/product-traffic-terms-profile
- Production supports one ASIN or a batch of up to 20 ASINs at weekly granularity.
- Read
references/openapi-reference.md § 18for the request, response, status, field, date, batching, and billing contract. - Apply
references/cli-contract.mdto every result, including a server-provided endpoint migration response.
/openapi/v2/keywords/product-traffic-terms-timeline
- Input: required
asin, exactly one ofkeyword/keywords[](1–20),dateFrom,dateTo,granularity=weekonly; optionalmarketplace - Do not send
lookbackDays,page,pageSize,sortBy, orsortOrder;day,month, andlately_dayare unsupported - Data window: ASIN + keyword timeline across the requested date range; date range cannot exceed 61 days
- Date rule: prefer T-1 or earlier for
dateTo; avoid current-date lookup unless explicitly requested - Response shape:
data.context + data.items[].series[], preserving keyword request order - Item fields:
identity,status=ok|empty,series[],emptyReason, nullableerrorCode, nullableerrorMessage - Each series point groups fields under
asinSnapshot,traffic,placement,keywordMetrics, andadActivity; keep their returned period boundaries separate - Diagnosis curves/events: price (
asinSnapshot.latestPrice), BSR (asinSnapshot.latestBsr,asinSnapshot.latestSubBsr), sales (asinSnapshot.latestMonthlySaleCount), rating (asinSnapshot.latestRating,asinSnapshot.latestRatingCount), traffic estimate (traffic.*plus placement averages), and listing events (asinSnapshot.latestTitle,asinSnapshot.latestMainImageLink) - Key groups: listing/product/rank fields in
asinSnapshot; ORG/SP/SB/SBV/SPR impression points intraffic; positions/pages/observation times inplacement;keywordEstimateSearchCount,keywordAbaRank, Top3 shares, andmetricWindowinkeywordMetrics; observation/campaign/ad counts inadActivity
Local Review Toolkit
When /reviews/analysis lacks aggregation (ASIN has <50 reviews or no daily snapshot),
fall back to live raw reviews + your own LLM. The toolkit does NOT call any external
LLM — you (the calling skill's LLM) perform the Map/Reduce steps.
Workflow:
# 1. Fetch raw reviews (up to 100, cursor-paginated, ~60s, 10 credits at full)
zoodata.py reviews-raw --asin B0XXXXXXXX [--marketplace US] [--max-pages 10]
# 2. For EACH review, render the per-review Map prompt
zoodata.py review-tag-prompt --review '<single review JSON>' \
[--product-title "..."] [--product-category "..."]
# → Your LLM produces a JSON object with sentiment + 11 dimension arrays
# (mentioned_scenarios, mentioned_issues, mentioned_positives, mentioned_improvements,
# mentioned_buying_factors, mentioned_pain_points, user_profiles, mentioned_usage_times,
# mentioned_usage_locations, mentioned_behaviors, keywords)
# Suggested map parallelism: ~20 concurrent if your LLM supports it
# 3. Collect candidate phrases per dimension. For EACH dimension render the Reduce prompt
zoodata.py review-reduce-prompt --label-type positives \
--candidates '["comfortable","comfy","very comfortable",...]'
# → Your LLM produces {clusters: [{canonical, members}, ...]}
# Suggested chunk size for `keywords` dim when >150 candidates: 150 per call
# 4. Aggregate into reviews/analysis-compatible consumerInsights
zoodata.py review-aggregate --reviews raw.json --tagged tags.json --clusters clusters.json
# → Output shape matches /reviews/analysis: reviewCount, avgRating,
# sentimentDistribution, consumerInsights[], topKeywords[]
When to use the toolkit instead of reviews/analysis:
- ASIN has fewer than 50 reviews
reviews/analysisreturns sparseconsumerInsights(missing dimensions)- Need the freshest possible data (Spider scrape vs. T+1 BigQuery snapshot)
- Need to analyze a brand-new product that has no daily snapshot yet
Field Differences Across Endpoints
| Data | markets | products/competitors | realtime/product | reviews/analysis | realtime/reviews | price-band | brand | history |
|---|---|---|---|---|---|---|---|---|
| Sales | sampleAvgMonthlySales | monthlySalesFloor | ❌ | ❌ | ❌ | sampleSalesRate | sampleGroupMonthlySales | monthlySalesFloor[] |
| Price | sampleAvgPrice | price | buyboxWinner.price | ❌ | ❌ | bandMin/MaxPrice | sampleAvgPrice | price[] |
| BSR | sampleAvgBsr | bsr (int) | bestsellersRank[] | ❌ | ❌ | ❌ | ❌ | bsr[] |
| Rating | sampleAvgRating | rating | rating | avgRating | rating (per review) | sampleAvgRating | sampleAvgRating | rating[] |
| Reviews | sampleAvgReviewCount | ratingCount | ratingCount | reviewCount | reviews[] (raw text, max 100) | ❌ | sampleAvgRatingCount | ratingCount[] |
| Insights | ❌ | ❌ | ❌ | ✅ consumerInsights | ❌ (raw only — feeds Local Review Toolkit) | ❌ | ❌ | ❌ |
| Concentration | topSalesRate | ❌ | ❌ | ❌ | ❌ | sampleTop3BrandSalesRate | CR10 | ❌ |
| Opportunity | ❌ | ❌ | ❌ | ❌ | ❌ | sampleOpportunityIndex | ❌ | ❌ |
Confidence Labels (all skills)
- 📊 Data-backed — direct API data
- 🔍 Inferred — logical reasoning from data
- 💡 Directional — suggestions, predictions
Strategy recommendations and subjective conclusions are NEVER 📊. Extreme growth (>200%) = 💡 only.
Data Notes
- Sales (
monthlySalesFloor) = lower-bound estimate - Realtime = live; products/competitors = ~T+1 delay
- Marketplace coverage varies by endpoint; follow each endpoint schema
- Each call consumes credits; check
meta.creditsConsumed
Links
Frequently asked questions
What to verify before installation and use
What does the zoodata source document cover?
200M+ Amazon products. 22 endpoints. One API key.
How do I install zoodata?
The source record exposes this install command: npx skills add https://github.com/SerendipityOneInc/ZooData-Skills --skill "zoodata". Inspect the command and pinned source before running it.
Which Agent platforms does the source record declare?
The pinned source record declares support for: cursor.
Alternatives
Compare before choosing
MoizIbnYousaf/marketing-cli
seo-machine
Build an organic-traffic operating system for any site or app: a multi-phase, resumable engine that plans and ships a BATCH ROADMAP of landing pages (use-cases, playbooks, /for/ pages, roundups) on top of real keyword research, with a persistent phase tracker. Use when the user says 'SEO machine', 'build organic traffic', 'rank on Google', 'we need traffic', 'SEO roadmap', 'batch of pages', 'pages roadmap', or 'build an SEO engine'. Distinct from `seo-audit` (one-off diagnostic) and `seo-content
kryptobaseddev/cleo
ct-research-agent
Multi-source research and investigation combining web search, documentation lookup via Context7, and codebase analysis. Synthesizes findings into actionable recommendations with proper citation and task traceability. Use when conducting research, investigating best practices, gathering technical information, or analyzing existing implementations. Triggers on research tasks, investigation needs, or information discovery requests.
aomi-labs/skills
crypto-skill-creator
Step-by-step guide for creating enriched CryptoSkills agent skills. Use when building new protocol skills, contributing to the directory, or understanding the enriched skill pattern. Covers SKILL.md structure, YAML frontmatter, examples, docs, resources, templates, marketplace registration, and validation. Triggers: "create a skill", "add a protocol", "contribute a skill", "new skill template".
upex-galaxy/agentic-qa-boilerplate
test-documentation
Analyze, prioritize, and document test cases in TMS (Jira/Xray), or repair an existing Story-ATS-ATP-ATR-TC cascade through a sealed explicit mode. Use for Test/ATP/ATR artifacts, ROI and automation verdicts, maintaining traceability, fix-traceability, or broken TMS links. The repair-traceability mode audits, plans, waits for explicit approval, applies, and verifies without launching the general documentation workflow. Do NOT use for writing test code (test-automation) or running suites (regress