junglescout_sales_estimate

Pack: jungle-scout · Endpoint: https://gateway.pipeworx.io/jungle-scout/mcp

How many units does an Amazon ASIN sell — returns Jungle Scout estimated units sold, revenue, and price for a product ASIN. Example: junglescout_sales_estimate({ asin: “B08N5WRWNW”, marketplace: “us”, _apiKey: “KEY_NAME:API_KEY” })

Parameters

NameTypeRequiredDescription
asinstringyesAmazon Standard Identification Number, e.g. “B08N5WRWNW”
marketplacestringnoAmazon marketplace country code (default “us”). One of: us, uk, de, in, ca, fr, it, es, mx, jp
start_datestringnoOptional range start, YYYY-MM-DD. Defaults to ~30 days ago.
end_datestringnoOptional range end, YYYY-MM-DD. Defaults to today.
_apiKeystringyesJungle Scout credential as “KEY_NAME:API_KEY” (both parts, colon-joined) from your Developer page. Requires the API add-on.

Example call

Arguments

{
  "asin": "B08N5WRWNW",
  "marketplace": "us",
  "_apiKey": "your-jungle-scout-api-key:sk_live_abc123def456"
}

curl

curl -X POST https://gateway.pipeworx.io/jungle-scout/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"junglescout_sales_estimate","arguments":{"asin":"B08N5WRWNW","marketplace":"us","_apiKey":"your-jungle-scout-api-key:sk_live_abc123def456"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('junglescout_sales_estimate', {
  "asin": "B08N5WRWNW",
  "marketplace": "us",
  "_apiKey": "your-jungle-scout-api-key:sk_live_abc123def456"
});

More examples

{
  "asin": "B0C7XYZABC",
  "marketplace": "uk",
  "start_date": "2024-01-01",
  "end_date": "2024-01-31",
  "_apiKey": "your-jungle-scout-api-key:sk_live_abc123def456"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "jungle-scout": {
      "url": "https://gateway.pipeworx.io/jungle-scout/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026