Product Sales List
Introduction
Get sales data for specified products with the following features:
- Query by product ID
- Returns daily sales and revenue details
- Includes product overview information such as total sales, total revenue, and related video count
API
bash
POST /product/v1/goodSalesListfilter Optional Values
| Field | Type | Required | Description |
|---|---|---|---|
product_id | string | Yes | Product ID |
date_type | integer | Yes | Time range, e.g., 25 represents last 25 days, max 28 days |
Request Example
bash
curl 'https://openapi.test.fastmoss.com/product/v1/goodSalesList?client_id=XXX×tamp=XXX&access_token=XXX&sign=XXX' \
--header 'Content-Type: application/json' \
{
"filter": {
"product_id": "1729421229342823356",
"date_type": "25"
}
}Response Body
data.list
| Field | Type | Description |
|---|---|---|
dt | string | Date |
inc_sold_count | string | Daily sales |
inc_sale_amount | string | Daily revenue |
data.overview
| Field | Type | Description |
|---|---|---|
sold_count | integer | Total sales |
sale_amount | integer | Total revenue |
live_count | string | Live stream count |
author_count | string | Author count |
aweme_count | string | Video count |
currency | string | Currency unit |
region | string | Country/Region |
desc | string | Time range description |
Response Example
json
{
"code": 0,
"data": {
"list": [
{
"dt": "2025-03-08",
"inc_sold_count": "20",
"inc_sale_amount": "500.00"
}
],
"overview": {
"sold_count": 525,
"sale_amount": 13125,
"live_count": "168",
"author_count": "129",
"aweme_count": "87",
"currency": "$",
"region": "US",
"desc": "last -25 days"
}
},
"message": "",
"timestamp": 1743573478,
"request_id": "2014e9b1-c0f5-3457-217e-50b4b574c761"
}