https://api.nexscope.ai/api/skill-api/v1/skills/temu-store-source-query/runRun this API
Send a JSON request to execute this API and receive the documented response payload.
Endpoint
| Method | POST |
| Path | https://api.nexscope.ai/api/skill-api/v1/skills/temu-store-source-query/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
searchKey | string | optional | Store name or ID keyword |
siteId | string | optional | Country site ID, multiple separated by commas (e.g., 211=US, 76=UK) Example: example-id |
category | string | optional | Backend category ID, multiple separated by commas |
isLocal | string | optional | Whether semi-managed: 0=fully managed, 1=semi-managed |
orderTotalMin | integer | optional | Total sales range (start) Example: 1 |
orderTotalMax | integer | optional | Total sales range (end) Example: 1 |
orderWeekMin | integer | optional | Weekly sales range (start) Example: 1 |
orderWeekMax | integer | optional | Weekly sales range (end) Example: 1 |
orderMonthMin | integer | optional | Monthly sales range (start) Example: 1 |
orderMonthMax | integer | optional | Monthly sales range (end) Example: 1 |
totalRevenueMin | number | optional | Total revenue range (USD, start) Example: 1 |
totalRevenueMax | number | optional | Total revenue range (USD, end) Example: 1 |
weekRevenueMin | number | optional | Weekly revenue range (USD, start) Example: 1 |
weekRevenueMax | number | optional | Weekly revenue range (USD, end) Example: 1 |
monthRevenueMin | number | optional | Monthly revenue range (USD, start) Example: 1 |
monthRevenueMax | number | optional | Monthly revenue range (USD, end) Example: 1 |
ratingMin | number | optional | Rating range (start) Example: 1 |
ratingMax | number | optional | Rating range (end) Example: 1 |
reviewNumMin | integer | optional | Review count range (start) Example: 1 |
reviewNumMax | integer | optional | Review count range (end) Example: 1 |
followerNumMin | integer | optional | Follower count range (start) Example: 1 |
followerNumMax | integer | optional | Follower count range (end) Example: 1 |
productNumMin | integer | optional | Product count range (start) Example: 1 |
productNumMax | integer | optional | Product count range (end) Example: 1 |
listedTimeBegin | string | optional | Store opening date range (start) |
listedTimeEnd | string | optional | Store opening date range (end) |
sortBy | string | optional | Sort field+direction: order_week_count-0 (weekly sales descending, default), order_count-0, total_revenue-0, rating-0 |
page | integer | optional | Page number (starting from 1) Example: 1 |
pageSize | integer | optional | Items per page, max 100 Example: 1 |
Request example
{
"pageSize": 10,
"keyword": "phone case",
"page": 1
}Response body
| Name | Type | Required | Description |
|---|---|---|---|
data | any | required | Data value used by this API operation. |
code | integer | required | 0 means accepted or successful; nonzero is a platform error. |
msg | string | null | required | Msg value used by this API operation. |
ts | string | required | Epoch milliseconds. |
time | string | required | Server local time: yyyy-MM-dd HH:mm:ss. |
cost | string | required | Elapsed milliseconds, never credits; -1 outside web requests. |
traceId | string | null | required | Trace id value used by this API operation. |
Any of option 1
| Name | Type | Required | Description |
|---|---|---|---|
data | object | required | Data value used by this API operation. |
data.total | integer | optional | Number of records on this page Example: 1 |
data.storeNum | integer | optional | Total number of stores matching criteria (upstream store_num) Example: 1 |
data.stores | array | optional | Temu store list Example: [] |
data.columns | array | optional | Rendered columns Example: [] |
data.title | string | optional | Title (Temu Store Query) Example: null |
data.sourceType | string | optional | Source type: temu Example: null |
data.sourceTool | string | optional | Tool type: ehunt Example: null |
data.type | string | optional | Render style: tableListWorkbenches Example: null |
data.stores[].storeId | string | optional | Store ID Example: example-id |
data.stores[].siteId | string | optional | Country site ID Example: example-id |
data.stores[].storeName | string | optional | Store name Example: null |
data.stores[].logoUrl | string | optional | Store logo URL Example: https://example.com/image.jpg |
data.stores[].orderTotal | string | optional | Total sales Example: null |
data.stores[].orderWeek | string | optional | Weekly sales Example: null |
data.stores[].orderMonth | string | optional | Monthly sales Example: null |
data.stores[].totalRevenue | string | optional | Total revenue Example: null |
data.stores[].weekRevenue | string | optional | Weekly revenue Example: null |
data.stores[].monthRevenue | string | optional | Monthly revenue Example: null |
data.stores[].rating | string | optional | Rating Example: null |
data.stores[].listedTime | string | optional | Store opening time Example: null |
data.stores[].reviewNum | string | optional | Review count Example: null |
data.stores[].followerNum | string | optional | Follower count Example: null |
data.stores[].productNum | string | optional | Product count Example: null |
data.stores[].categoriesCn | string | optional | Chinese category list Example: null |
data.stores[].categories | string | optional | English category list Example: null |
data.stores[].isLocal | string | optional | Whether semi-managed: 0=fully managed, 1=semi-managed Example: null |
data.costToken | integer | optional | Token cost reported by the upstream provider. Example: null |
data.costTime | integer | optional | Execution time reported by the upstream provider. Example: null |
data.page | integer | optional | Current page returned by the upstream provider. Example: null |
data.pageSize | integer | optional | Page size returned by the upstream provider. Example: null |
data.pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: null |
data.totalPage | integer | optional | Total page count returned by the upstream provider. Example: null |
data.dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: null |
Any of option 2
| Name | Type | Required | Description |
|---|---|---|---|
data | null | required | Data value used by this API operation. |
Response example
Platform response envelope. code 0 indicates success or acceptance; data contains the business result.
{
"data": {
"total": 1,
"storeNum": 1,
"stores": [
{
"storeId": "example-id",
"siteId": "example-id",
"logoUrl": "https://example.com/image.jpg"
}
],
"columns": []
},
"code": 0,
"msg": null,
"ts": "0",
"time": "2026-01-01 00:00:00",
"cost": "-1",
"traceId": null
}Responses
| Code | Description |
|---|---|
| 200 | HTTP request completed. Check JSON code; only 0 indicates business success or acceptance. |
| 400 | Request JSON or required API parameters are invalid. |
| 401 | API key is missing, invalid, or cannot be matched to a user. |
| 5xx | API execution or upstream service failed. |
Data source, freshness, and limitations
Source, freshness, coverage, rate limits, and estimation notes are not specified in this API definition unless they appear in the request or response field documentation above. Do not assume official marketplace data or real-time freshness when it is not explicitly documented.