For Agents
Pull Jungle Scout's Amazon research data — keywords by ASIN, historical search volume, product database, sales estimates, and share of voice — through 6 endpoints.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Jungle Scout API V1, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Jungle Scout API V1 API.
Pull keywords driving traffic to a given ASIN via POST /api/keywords/keywords_by_asin_query
Expand a seed keyword into related Amazon keywords via POST /api/keywords/keywords_by_keyword_query
Read historical search volume for keywords via GET /api/keywords/historical_search_volume
GET STARTED
Use for: Find the keywords driving traffic to a competitor ASIN, Expand a seed keyword into related Amazon search terms, Get historical search volume for a list of keywords, Estimate monthly sales for an ASIN
Not supported: Does not place ads, list products, or operate Amazon Seller Central — use for Amazon keyword, product, sales-estimate, and share-of-voice research only.
Jentic publishes the only available OpenAPI specification for the Jungle Scout API V1, keeping it validated and agent-ready. Jungle Scout exposes Amazon marketplace research data — keyword search volume, ASIN keyword maps, product database queries, sales estimates, and share of voice — as REST endpoints for sellers, brands, and analysts. The six endpoints under /api/keywords, /api/product_database_query, /api/sales_estimates_query, and /api/share_of_voice are gated behind an Authorization header in the format key_name:api_key issued from the Jungle Scout developer dashboard.
Query the Jungle Scout product database with filters via POST /api/product_database_query
Estimate sales for an ASIN via GET /api/sales_estimates_query
Measure share of voice for a brand or keyword on Amazon via GET /api/share_of_voice
Authenticate every call with an Authorization header in the form key_name:api_key issued from the Jungle Scout dashboard
Patterns agents use Jungle Scout API V1 API for, with concrete tasks.
★ ASIN keyword reverse engineering
Sellers and PPC agencies can reverse-engineer a competitor ASIN by calling POST /api/keywords/keywords_by_asin_query, then enrich the result with GET /api/keywords/historical_search_volume to see seasonality and sustained demand. The combination tells the seller which keywords are worth bidding on or optimising listing copy for, sourced from Jungle Scout's Amazon panel rather than browser scraping.
POST /api/keywords/keywords_by_asin_query with body {asins:['B0BXYZ1234'], marketplace:'us'}, then GET /api/keywords/historical_search_volume for the top 20 returned keywords.
Niche discovery via product database
Brand managers can use POST /api/product_database_query with filters such as category, monthly sales, price range, and review count to surface high-margin niches. The response is structured product data with sales velocity and competitive intensity hints, suitable for ranking opportunities before product development. This is faster than scraping search result pages and respects Jungle Scout's licensed data.
POST /api/product_database_query with filters {category:'Home & Kitchen', min_monthly_sales:500, max_reviews:200, marketplace:'us'} to find low-competition, high-velocity niches.
Brand share of voice tracking
Brands can monitor share of voice for their priority keywords through GET /api/share_of_voice, comparing organic and sponsored real estate against competitors. Pair with /api/sales_estimates_query for an ASIN to translate share of voice into estimated revenue impact. This lets a marketing team brief leadership with weekly or monthly snapshots without manual SERP scraping.
GET /api/share_of_voice?keyword=robot+vacuum&marketplace=us and store the per-brand percentages weekly to chart trend.
Agent-driven Amazon market research
An AI agent supporting a brand team can answer 'What keywords are competitors winning on for X product?' or 'What's the estimated sales for ASIN Y?' by routing through Jungle Scout via Jentic. Jentic returns the operation schema and runs the request with the Authorization header from the vault, so the team's API key never enters the agent's context.
Through Jentic, search 'estimate Amazon sales for an ASIN', load the /api/sales_estimates_query operation, and execute with the ASIN and marketplace parameters.
6 endpoints — jentic publishes the only available openapi specification for the jungle scout api v1, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/api/keywords/keywords_by_asin_query
Find keywords for a given ASIN
/api/keywords/keywords_by_keyword_query
Expand a seed keyword
/api/keywords/historical_search_volume
Read historical keyword volume
/api/product_database_query
Query the Jungle Scout product database with filters
/api/sales_estimates_query
Estimate sales for an ASIN
/api/share_of_voice
Measure share of voice on Amazon
/api/keywords/keywords_by_asin_query
Find keywords for a given ASIN
/api/keywords/keywords_by_keyword_query
Expand a seed keyword
/api/keywords/historical_search_volume
Read historical keyword volume
/api/product_database_query
Query the Jungle Scout product database with filters
/api/sales_estimates_query
Estimate sales for an ASIN
Three things that make agents converge on Jentic-routed access.
Credential isolation
Your Jungle Scout key_name and api_key are stored encrypted in the Jentic vault. Agents call operations through scoped Jentic tokens and the Authorization header is composed and attached at execution, so the raw credentials never reach the agent.
Intent-based discovery
Agents search by intent (e.g., 'find Amazon keywords for an ASIN' or 'estimate Amazon sales') and Jentic returns the matching Jungle Scout operations with their parameter shapes resolved.
Time to first call
Direct Jungle Scout integration takes hours to wire the unusual Authorization header format and per-operation request bodies. Through Jentic the same calls are executable in minutes.
Alternatives and complements available in the Jentic catalogue.
Specific to using Jungle Scout API V1 API through Jentic.
Why is there no official OpenAPI spec for the Jungle Scout API?
Jungle Scout publishes a developer portal at developer.junglescout.com but does not publish a single OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call the Jungle Scout API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Jungle Scout API use?
The API uses an Authorization header in the format key_name:api_key, both issued from the Jungle Scout developer dashboard. There is no OAuth flow. Through Jentic, the key_name and api_key are stored encrypted in the vault and the Authorization header is set at execution time, so the raw credentials never reach the agent.
Can I find competitor keywords for an ASIN through this API?
Yes. POST /api/keywords/keywords_by_asin_query with the ASIN list and marketplace returns the keywords driving traffic to those products. Pair with GET /api/keywords/historical_search_volume to see how those keywords trend over time before deciding what to bid on.
What are the rate limits for the Jungle Scout API?
The OpenAPI spec does not declare rate limits explicitly. Jungle Scout enforces per-key throughput on developer plans; treat HTTP 429 as a signal to back off and refer to your developer dashboard for the limits attached to your plan tier.
How do I estimate Amazon sales for an ASIN through Jentic?
Through Jentic, search 'estimate Amazon sales for an ASIN', load the Jungle Scout /api/sales_estimates_query operation, and execute with the ASIN and marketplace parameters. Jentic injects the Authorization header from the vault.
Does the Jungle Scout API cover non-US Amazon marketplaces?
Yes. Most operations accept a marketplace parameter so you can run queries against Amazon US, UK, DE, JP, and other supported marketplaces. The set of supported marketplaces is governed by your Jungle Scout subscription and panel coverage rather than the API spec itself.
/api/share_of_voice
Measure share of voice on Amazon