Seller Assistant API
HomeSeller AssistantHelp CenterAccount
HomeSeller AssistantHelp CenterAccount
Get API Keys
  1. Products
  • Introduction
  • Authentication
  • Throttling
  • Error Handling
  • Swagger Documentation
  • Marketplace IDs and Categories
  • User Info
    • Get current user info
      GET
  • Products
    • Get product info
      GET
    • Get product statistics
      GET
    • Calculate product profit
      POST
  • UPC-EAN-ASIN converters
    • Get product ASINs based on identifiers (UPC or EAN)
      GET
    • Get product identifiers (UPC, EAN, etc.) based on ASIN
      GET
  • Restrictions
    • Check ASIN restrictions
      GET
  • Sales Estimation
    • Estimate sales by ASIN
      GET
    • Estimate sales by BSR and category
      POST
  • Keepa
    • Get Keepa product
      GET
    • Search Keepa products
      GET
  • FBA Inbound Shipments
    • Summary
    • List inbound plans
      GET
    • Get inbound plan
      GET
    • List plan shipments
      GET
    • Get shipment
      GET
    • List shipment items
      GET
    • Get shipment fees
      GET
  • SP-API FBA Shipments
    • Get old shipments
    • Get old shipment items
    • Get old shipment items by old shipment id
    • List inbound plans
    • Get inbound plan
    • List placement options
    • List transportation options
    • Get shipment
    • List shipment items
  1. Products

Get product statistics

GET
https://app.sellerassistant.app/api/v1/products/{asin}/stats
Fetch detailed statistics for a specific product identified by its ASIN. The statistics include monthly sales, various price metrics (Amazon price, marketplace new price, Buy Box price), Best Sellers Rank (BSR), number of offers, number of reviews, and BSR drops count. The limit is 60 requests per minute.

Request

Authorization
API Key
Add parameter in query
api_key
Example:
api_key: ********************
or
API Key
Add parameter in header
X-Api-Key
Example:
X-Api-Key: ********************
or
Path Params

Query Params

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.sellerassistant.app/api/v1/products/B00U26V4VQ/stats?api_key'

Responses

🟢200OK
application/json
Product stats
Body

Example
{
    "currency": {
        "code": "USD",
        "symbol": "$"
    },
    "amazonPrice": {
        "current": "43.97",
        "avg30": "43.92",
        "avg90": "43.41",
        "avg180": "43.63",
        "avg365": "42.12"
    },
    "marketplaceNewPrice": {
        "current": "43.97",
        "avg30": "43.92",
        "avg90": "42.40",
        "avg180": "42.83",
        "avg365": "40.21"
    },
    "buyBoxPrice": {
        "current": "43.97",
        "avg30": "43.92",
        "avg90": "43.39",
        "avg180": "43.61",
        "avg365": "42.10"
    },
    "fbmPrice": {
        "current": "55.33",
        "avg30": "52.78",
        "avg90": "53.46",
        "avg180": "51.59",
        "avg365": "50.17"
    },
    "fbaPrice": {
        "current": "59.99",
        "avg30": "50.06",
        "avg90": "45.46",
        "avg180": "46.08",
        "avg365": "45.71"
    },
    "bsr": {
        "current": 245,
        "avg30": 241,
        "avg90": 192,
        "avg180": 195,
        "avg365": 239
    },
    "offersCount": {
        "current": 8,
        "avg30": 10,
        "avg90": 10,
        "avg180": 10,
        "avg365": 11
    },
    "reviewsCount": {
        "current": 44639,
        "avg30": 44555,
        "avg90": 44374,
        "avg180": 44090,
        "avg365": 40854
    },
    "bsrDropsCount": {
        "avg30": 217,
        "avg90": 443,
        "avg180": 767,
        "avg365": 1676
    },
    "monthlySold": 5000
}
🟠400Bad Request
🟠402402
🟠403Forbidden
🟠404Record Not Found
🟠429429
🔴500Server Error
Modified at 2025-07-22 14:33:44
Previous
Get product info
Next
Calculate product profit
Built with