Nexscope

TikTok / Social Commerce

TikTok New Product Rank MCP Tool

Discover trending new products across 16 TikTok Shop regional markets via EchoTik new product ranking data.

MCP tool name
nexscope_tiktok_new_product_rank
Equivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/tiktok-new-product-rank/run
JSON-RPC method
tools/call

Authentication

Send the user API key as a bearer token on every MCP JSON-RPC request.

Authorization: Bearer nk-xxxxxxxxxxxxxxxxx

If authentication is missing or invalid, ask the user to open API Access and copy a valid key before calling this tool.

Call this MCP tool

Use tools/call with the MCP tool name below. The arguments object should match the table on this page.

{
  "jsonrpc": "2.0",
  "id": "tiktok-new-product-rank-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_tiktok_new_product_rank",
    "arguments": {
      "pageSize": 10,
      "region": "US",
      "date": "2026-08-01",
      "pageNum": 1
    }
  }
}
REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/tiktok-new-product-rank/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/tiktok-new-product-rank

Arguments

NameTypeRequiredMeaning
datestringrequired
Date in YYYY-MM-DD format
Example: 2026-08-01
regionstringoptional
Region, default US. Options: US (United States), ID (Indonesia), TH (Thailand), PH (Philippines), MY (Malaysia), VN (Vietnam), GB (United Kingdom), MX (Mexico), SG (Singapore), SA (Saudi Arabia), BR (Brazil), ES (Spain), JP (Japan), DE (Germany), IT (Italy), FR (France)
Example: US
pageNumintegeroptional
Page number, default 1
Example: 1
pageSizeintegeroptional
Items per page, default 50
Example: 10

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredDescription
dataanyrequired
Data value used by this API operation.
codeintegerrequired
0 means accepted or successful; nonzero is a platform error.
msgstring | nullrequired
Msg value used by this API operation.
tsstringrequired
Epoch milliseconds.
timestringrequired
Server local time: yyyy-MM-dd HH:mm:ss.
coststringrequired
Elapsed milliseconds, never credits; -1 outside web requests.
traceIdstring | nullrequired
Trace id value used by this API operation.

Any of option 1

NameTypeRequiredDescription
dataobjectrequired
Data value used by this API operation.
data.totalintegeroptional
Record count
Example: 1
data.productsarrayoptional
New product list (see product object below)
Example: []
data.columnsarrayoptional
Rendered columns
Example: []
data.typestringoptional
Render style
Example: null
data.costTokenintegeroptional
Token cost
Example: 1
data.products[].titlestringoptional
Product name
Example: null
data.products[].asinstringoptional
Product ID
Example: B072MQ5BRX
data.products[].regionstringoptional
Region code
Example: US
data.products[].pricenumberoptional
SPU average price
Example: 1
data.products[].minPricenumberoptional
Minimum price
Example: 1
data.products[].maxPricenumberoptional
Maximum price
Example: 1
data.products[].currencystringoptional
Currency
Example: null
data.products[].totalSaleCntintegeroptional
Total sales
Example: 1
data.products[].totalSale30dCntintegeroptional
Sales in last 30 days
Example: 1
data.products[].totalSaleGmvAmtnumberoptional
Total GMV
Example: 1
data.products[].totalSaleGmv30dAmtnumberoptional
GMV in last 30 days
Example: 1
data.products[].salesTrendFlagTextstringoptional
Sales trend indicator, 0=stable 1=rising 2=falling
Example: null
data.products[].totalVideoCntintegeroptional
Total video count
Example: 1
data.products[].totalLiveCntintegeroptional
Total livestream count
Example: 1
data.products[].totalIflCntintegeroptional
Total creator count
Example: 1
data.products[].productCommissionRatenumberoptional
Product commission rate
Example: 1
data.products[].productRatingnumberoptional
Product rating
Example: 1
data.products[].reviewCountintegeroptional
Review count
Example: 1
data.products[].availableDatestringoptional
First crawl date
Example: 2026-01-01
data.products[].categoryIdstringoptional
Product category ID
Example: example-id
data.products[].imageUrlstringoptional
Product image
Example: https://example.com/image.jpg
data.products[].productImageUrlsarrayoptional
Product image URL list
Example: []
data.products[].sourceToolstringoptional
Source tool
Example: null
data.products[].sourceTypestringoptional
Product source
Example: null
data.titlestringoptional
Provider-specific response title.
Example: null
data.sourceTypestringoptional
Provider-specific source platform type.
Example: null
data.sourceToolstringoptional
Provider-specific source tool name.
Example: null
data.costTimeintegeroptional
Execution time reported by the upstream provider.
Example: null
data.pageintegeroptional
Current page returned by the upstream provider.
Example: null
data.pageSizeintegeroptional
Page size returned by the upstream provider.
Example: null
data.pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: null
data.totalPageintegeroptional
Total page count returned by the upstream provider.
Example: null
data.dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.
Example: null

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

{
  "pageSize": 10,
  "region": "US",
  "date": "2026-08-01",
  "pageNum": 1
}

Example structuredContent

{
  "data": {
    "total": 1,
    "products": [
      {
        "asin": "B072MQ5BRX",
        "region": "US",
        "price": 1,
        "minPrice": 1,
        "maxPrice": 1,
        "totalSaleCnt": 1,
        "totalSale30dCnt": 1,
        "totalSaleGmvAmt": 1,
        "totalSaleGmv30dAmt": 1,
        "totalVideoCnt": 1,
        "totalLiveCnt": 1,
        "totalIflCnt": 1,
        "productCommissionRate": 1,
        "productRating": 1,
        "reviewCount": 1,
        "availableDate": "2026-01-01",
        "categoryId": "example-id",
        "imageUrl": "https://example.com/image.jpg",
        "productImageUrls": []
      }
    ],
    "columns": [],
    "costToken": 1
  },
  "code": 0,
  "msg": null,
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}