Nexscope

TikTok / Social Commerce

TikTok Video Rank MCP Tool

Returns normalized public ecommerce research data with a fixed read-only provider path.

MCP tool name
nexscope_tiktok_video_rank
Legacy MCP endpoint
/api/skill-api/v1/mcp
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-video-rank-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_tiktok_video_rank",
    "arguments": {
      "videoRankField": 1,
      "region": "US",
      "pageNum": 1,
      "date": "2026-08-26",
      "pageSize": 10,
      "rankType": 1
    }
  }
}
Legacy endpoint
POST /api/skill-api/v1/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/tiktok-video-rank

Arguments

NameTypeRequiredMeaning
datestringrequired
Ranking date in YYYY-MM-DD format
Example: 2026-08-26
rankTypeintegerrequired
Ranking type: 1, 2, or 3
Example: 1
regionstringrequired
TikTok market region code
Example: US
videoRankFieldintegerrequired
Video ranking field: 1 or 2
Example: 1
productCategoryIdstringoptional
Optional product category ID
Example: {}
createdByAistringoptional
Filter AI-created videos using the string true or false
Example: {}
pageNumintegeroptional
Page number, starting at 1
Example: 1
pageSizeintegeroptional
Page size from 10 to 100 in multiples of 10
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 — requires videos, total

NameTypeRequiredDescription
dataobjectrequired
Data value used by this API operation.
data.videosarrayrequired
Videos value used by this API operation.
data.videos[]objectrequired
Item in data videos.
data.videos[].videoIdstringoptional
Video id value used by this API operation.
data.videos[].officialUrlstringoptional
Official url value used by this API operation.
data.videos[].regionstringoptional
Region value used by this API operation.
data.videos[].totalViewsCntinteger | numberoptional
Total views cnt value used by this API operation.
data.totalintegerrequired
Total value used by this API operation.
Minimum: 0

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

{
  "videoRankField": 1,
  "region": "US",
  "pageNum": 1,
  "date": "2026-08-26",
  "pageSize": 10,
  "rankType": 1
}

Example structuredContent

{
  "data": {
    "total": 1,
    "videos": [
      {
        "videoId": "example-video-id",
        "region": "US",
        "totalViewsCnt": 1
      }
    ]
  },
  "code": 0,
  "msg": null,
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}