Seller Assistant API
HomeSeller AssistantHelp CenterAccount
HomeSeller AssistantHelp CenterAccount
Get API Keys
  1. Restrictions
  • Introduction
  • Authentication
  • Throttling
  • Error Handling
  • 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
  1. Restrictions

Check ASIN restrictions

GET
/api/v1/products/{asin}/restriction-status
Restrictions
Check ASIN restrictions by ASIN and domain. Returns one of the following statuses: ALLOWED_TO_SELL, NOT_ELIGIBLE, APPROVAL_REQUIRED. Be noticed that if ASIN is not found, it will return ALLOWED_TO_SELL anyway (for better performance). The limit is 60 requests per minute. Amazon seller account integration is required to make this request. You can do it here.

Request

Authorization
Add parameter in header
X-Api-Key
Example:
X-Api-Key: ********************
Path Params
asin
required
Amazon product ASIN.
Example:
B00U26V4VQ
Query Params
domain
optional
Amazon marketplace domain. Domain amazon.com is used by default if domain and marketplaceId are not provided. If both domain and marketplaceId are chosen, domain has bigger priority. Options: amazon.com, amazon.ca, amazon.co.uk, amazon.de, amazon.es, amazon.it, amazon.fr, amazon.in, amazon.com.mx, amazon.com.br.
Example:
amazon.com
marketplaceId
optional
Amazon marketplace id. Domain amazon.com is used by default if domain and marketplaceId are not provided. If both domain and marketplaceId are chosen, domain has bigger priority. See all options here.
Example:
ATVPDKIKX0DER

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/restriction-status' \
--header 'X-Api-Key;'

Responses

🟢200OK
application/json
ASIN restrictions status
Body
status
string 
required
Options: ALLOWED_TO_SELL, NOT_ELIGIBLE, APPROVAL_REQUIRED
Example:
ALLOWED_TO_SELL
Example
{
  "status": "ALLOWED_TO_SELL"
}
🟠400Bad Request
🟠402402
🟠403Forbidden
🟠422Parameter Error
🟠429429
🔴500Server Error
Modified at 2025-01-16 08:37:58
Previous
Get product identifiers (UPC, EAN, etc.) based on ASIN
Next
Estimate sales by ASIN
Built with