Product, keyword, traffic, review, sales, pricing, market, and competitor intelligence through one API key.
Get an API key · Browse every API · Read the full documentation
Nexscope provides developer access to Amazon marketplace data for product discovery, ASIN research, keyword and traffic analysis, reviews, sales estimates, price history, market research, and competitor analysis. This repository contains copy-ready requests and dependency-free clients for every currently published Amazon API in the Nexscope catalog.
Sign in to Nexscope API Access, create a key, and keep it private.
export NEXSCOPE_API_KEY="YOUR_API_KEY"curl -X POST \
https://api.nexscope.ai/api/skill-api/v1/skills/amazon-search/run \
-H "Authorization: Bearer ${NEXSCOPE_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"keyword":"phone case","page":1}'The response schema, supported marketplaces, request fields, and known limitations are documented on the Amazon Search API page.
Every current Amazon API has a sample payload in examples/requests.json.
# Python 3, standard library only
python3 examples/python/run.py amazon-product-detail \
examples/payloads/amazon-product-detail.json
# Node.js 18+
node examples/javascript/run.mjs amazon-reviews-list \
examples/payloads/amazon-reviews-list.json
# cURL
bash examples/curl/run.sh amazon-keyword-overview \
examples/payloads/amazon-keyword-overview.jsonAPI calls may consume account credits. The example clients make one request per command and do not retry automatically.
| Category | Examples of available data |
|---|---|
| Search and discovery | Storefront search, broad product search, image search, related ASINs, product discovery |
| Product and sales | Product details, product databases, history, price series, sales estimates |
| Keywords and traffic | ASIN keywords, keyword expansion, search history, share of voice, traffic summaries |
| Market and opportunity | Market research, market statistics, niche research, opportunity reports |
| Competitors, reviews, and policy | Competitor lookup, review retrieval, marketplace policy feeds |
Open the complete API catalog for every endpoint and its public documentation page.
amazon-data-api/
├── api-catalog/ # Complete Amazon API directory
├── examples/
│ ├── curl/ # Generic cURL runner
│ ├── javascript/ # Dependency-free Node.js client
│ ├── python/ # Dependency-free Python client
│ ├── payloads/ # One published sample payload per API
│ └── requests.json # Machine-readable payload index
├── recipes/ # Multi-step integration ideas
└── scripts/ # Repository validation
Send the key as a bearer token:
Authorization: Bearer YOUR_API_KEY
Handle these status classes explicitly:
| Status | Meaning |
|---|---|
200 |
The request reached the API. Check API-specific business fields as documented. |
401 |
The API key is missing, invalid, expired, disabled, or deleted. |
402 |
The account does not have enough credits for the request. |
403 |
The account does not have access to the requested API or resource. |
429 |
The request was rate limited. Back off before retrying. |
5xx |
Nexscope or an upstream dependency failed. |
Do not log API keys, paste them into issues, commit them to a repository, or expose them in client-side browser code.
- Treat source, freshness, coverage, estimation methods, and field-level caveats as specified only when the API's documentation states them.
- Do not assume every field is official Amazon data, real-time, or available in every marketplace.
- Sales estimates and other modeled metrics are estimates, not guaranteed outcomes.
- Use request validation, timeouts, rate-limit handling, observability, and secure secret storage before production deployment.
Building an agent rather than a REST integration? The companion nexscope-ecommerce-skills repository packages these capabilities for compatible AI agents.
Bug reports and example improvements are welcome. Read CONTRIBUTING.md before opening a pull request. For security-sensitive reports, follow SECURITY.md.
Amazon and related marks are trademarks of Amazon.com, Inc. or its affiliates. Nexscope is an independent service and is not endorsed by Amazon.com, Inc.
The example code in this repository is available under the MIT License. Access to the hosted Nexscope APIs is governed separately by Nexscope's service terms and account rules.
Built by Nexscope — an AI agent for ecommerce automation that connects marketplace data with product research, keyword analysis, pricing, reviews, and growth workflows.