Free Amazon AI Audit — Will Amazon recommend your product?·No login · Score in 30 sec · Nobody else offers this.Try Free
Category

Research & Analysis

Find opportunities
REST API v1

Build with seller intelligence data.

Access Amazon product data, sales estimates, keyword research and market analytics programmatically. Integrate niche.ltd intelligence into internal dashboards, workflows and seller apps.

BASEhttps://niche.ltd/api/v1
10API endpoints across research, AI and profit workflows
9Amazon marketplaces supported for product search
2,000Business plan daily requests
Authentication

Simple keys. Clear limits.

Use X-API-Key or Bearer authentication, then scale request limits by plan as your research workflow grows.

Authenticate every request.

All API requests require an API key. Include it as a header or as a Bearer token depending on your integration style.

Option 1 - HeaderX-API-Key: niche_your_key_here
Option 2 - Bearer tokenAuthorization: Bearer niche_your_key_here
100

Starter

Daily requests for early integrations and lightweight product research.

500

Pro

Higher limits for production research flows and seller dashboards.

2,000

Business

Best fit for teams, agencies, API access and larger automation loops.

Endpoint library

Research, rank, price and automate.

Start with the full API surface, then open the endpoint reference when you need request parameters, examples and error handling.

Product Search

Search Amazon products by keyword across supported marketplaces.

GET/api/v1/search

Product Detail

Return ASIN-level title, brand, price, BSR, rating and review metrics.

GET/api/v1/products/{asin}

Price History

Read price movement and product trend context over time.

GET/api/v1/price-history

BSR History

Track best-seller-rank changes and demand velocity.

GET/api/v1/bsr-history

AI Keyword Suggestions

Generate keyword ideas for listing and PPC workflows.

POST/api/v1/ai/keywords

Profit Calculator

Calculate fees, margins and estimated profitability for a product.

POST/api/v1/profit
Reference

Product Search endpoint.

Use this reference to build product search flows with clear parameters, request examples, response fields and error states.

Parameters

keywordstringrequired

Search keyword.

marketplacestringoptional

amazon.com, amazon.co.uk, amazon.de, amazon.fr, amazon.it, amazon.es, amazon.com.tr, amazon.co.jp, amazon.ca. Default: amazon.com.

pageintegeroptional

Page number. Default: 1.

cURLNodePython
curl -H "X-API-Key: niche_xxx" \
  "https://niche.ltd/api/v1/search?keyword=yoga+mat&marketplace=amazon.com"

Example Response

success: true
{
  "success": true,
  "data": {
    "keyword": "yoga mat",
    "marketplace": "amazon.com",
    "totalResults": 48,
    "nicheScore": {
      "demand": 8,
      "competition": 5,
      "opportunity": 7,
      "overall": 7
    },
    "products": [{
      "asin": "B07JNB3CYK",
      "title": "Premium Yoga Mat...",
      "brand": "BalanceFrom",
      "price": 19.99,
      "bsr": 245,
      "monthlySales": 12500,
      "reviewCount": 85000,
      "rating": 4.5
    }]
  }
}

Error Codes

400Missing required parameters.
401Missing or invalid API key.
403Plan does not include API access.
404Resource not found.
429Daily rate limit exceeded.
500Internal server error.
Integration paths

Make the API feel production-ready.

Where the API fits, who uses it and what to build first.

D

Internal dashboards

Pipe product search, Niche Score and sales estimates into your own research views.

A

Agency reporting

Automate client exports, opportunity snapshots and marketplace research summaries.

AI

AI workflows

Feed keyword and market data into ScribeAI, listing optimization and PPC decision loops.