nexscope-ai

Amazon Data API — Data skill for Claude Code

Data community

Amazon marketplace data APIs for product search, ASIN research, keywords, traffic, reviews, sales estimates, price history, market research and competitor analysis.

How to install Amazon Data API

This entry records only its repository, not the path inside it, so there is no exact command to give. Open nexscope-ai/amazon-data-api and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Amazon Data API does

Amazon marketplace data APIs for product search, ASIN research, keywords, traffic, reviews, sales estimates, price history, market research and competitor analysis.

Alternatives in Data

  • AI Data Extraction — extract all your personal data history from cursor, codex, claude-code, windsurf, and trae 1.3k ★
  • AgriQuant AI — AI-powered weather intelligence for agricultural commodity futures 707 ★
  • Trading Signal — Monitor on-chain Smart Money buy/sell signals with price, max gain, and exit rate data on Solana and BSC 483 ★

README

Amazon Data API

**Product, keyword, traffic, review, sales, pricing, market, and competitor intelligence through one API key.**

[![Validate examples](https://github.com/nexscope-ai/amazon-data-api/actions/workflows/validate.yml/badge.svg)](https://github.com/nexscope-ai/amazon-data-api/actions/workflows/validate.yml) [![API docs](https://img.shields.io/badge/API-docs-7c3aed)](https://www.nexscope.ai/api-docs?co-from=GithubAMapi) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)

[Get an API key](https://www.nexscope.ai/seller/api-access?co-from=GithubAMapi) · [Browse every API](./api-catalog/README.md) · [Read the full documentation](https://www.nexscope.ai/api-docs?co-from=GithubAMapi)


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.

Quick start

1. Create an API key

Sign in to [Nexscope API Access](https://www.nexscope.ai/seller/api-access?co-from=GithubAMapi), create a key, and keep it private.

export NEXSCOPE_API_KEY="YOUR_API_KEY"

2. Run an Amazon search

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](https://www.nexscope.ai/api-docs/amazon-search?co-from=GithubAMapi).

3. Try another language

Every current Amazon API has a sample payload in [`examples/requests.json`](./examples/requests.json).

# Python 3, standard library only
python3 examples/pyt