Skip to main content
POST
/
api
/
v2
/
products
Create product by ASIN
curl --request POST \
  --url https://live.nocnocstore.com/api/v2/products/ \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <x-api-key>' \
  --data '
{
  "sku": "<string>",
  "international_ids": {},
  "available_quantity": 123,
  "price": 123,
  "currency_code": "<string>"
}
'
{
  "sku": "MY-SKU-002",
  "title": "Product title from Amazon",
  "brand": "Brand from Amazon",
  "price": 49.99,
  "currency_code": "USD",
  "available_quantity": 50,
  "status": "active"
}

Authorization

X-Api-Key
string
required
Your seller API key. Provided by your nocnoc account manager.

Body parameters

sku
string
required
Alphanumeric unique code for the product. Between 1 and 45 characters.
international_ids
object
required
Must include asin as an array of strings. Example: {"asin": ["B00QAIV7V2"]}.
available_quantity
integer
required
Stock quantity. Between 0 and 9999.
price
number
Price of the product. Up to 10 integer digits and 2 decimal places.
currency_code
string
Currency code (ISO). Required if price is provided. Currently only USD is supported.

Returns

The created product object with data populated from the Amazon ASIN.

Example request

curl -X POST https://live.nocnocstore.com/api/v2/products/ \
  -H "X-Api-Key: YOUR_SELLER_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "sku": "SKU123",
    "international_ids": { "asin": ["B00QAIV7V2"] },
    "available_quantity": 10,
    "price": 100,
    "currency_code": "USD"
  }'
{
  "sku": "MY-SKU-002",
  "title": "Product title from Amazon",
  "brand": "Brand from Amazon",
  "price": 49.99,
  "currency_code": "USD",
  "available_quantity": 50,
  "status": "active"
}