List Products
GET
/openapi/publisher/v1/products
Publisher Open API
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.artemisads.com/openapi/publisher/v1/products?marketplace=amazon.com&asins=B0DGXXWGNQ,B0DGXX66RY&availability=in_stock&brandIds=aa_86Rf07xd4ztfA13R,aa_86Rf07xd4ztfA2Ud&cursor=86Rf07xd4ztfA2ztfA&limit=100' \
--header 'x-aa-authorization: Bearer aa.oa2.v1.xxx'
Response Response Example
{
"cursor": "string",
"products": [
{
"aboutProduct": "about product",
"asin": "B0DGXXWGNQ",
"brandId": "aa_86Rf07xd4ztfA13R",
"category": "category of product",
"commission": 0.2,
"deals": [
{
"discountPercentage": 30,
"endTimestamp": 1734163199999,
"finalPrice": 70,
"fullPrice": 100,
"promoCode": "HK2024",
"startTimestamp": 1733385600000,
"status": "Active",
"type": 29.99
}
],
"imageUrl": "https://m.media-amazon.com/images/I/311cuH23123BL._SS60_.jpg",
"marketplace": "amazon.com",
"pricing": {
"currency": "USD",
"price": 123.45
},
"productId": "aa_uFNqjbUyGoMAU4FM",
"status": "active",
"title": "tile of product"
}
]
}
Request
Query Params
marketplace
string
optional
If left empty, results from all marketplaces will be included.
Example:
amazon.com
asins
string
optional
Example:
B0DGXXWGNQ,B0DGXX66RY
availability
string
optional
Example:
in_stock
brandIds
string
optional
Example:
aa_86Rf07xd4ztfA13R,aa_86Rf07xd4ztfA2Ud
cursor
string
optional
Example:
86Rf07xd4ztfA2ztfA
limit
integer <int32>
optional
Example:
100
Header Params
x-aa-authorization
string
required
Bearer
Example:
Bearer aa.oa2.v1.xxx
Responses
Modified at 2025-06-05 09:55:12