Nexscope

TikTok / Social Commerce

TikTok Product Related Lives MCP Tool

Provider business records for TikTok Product Related Lives. Known row fields: room_id. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type.

MCP tool name
nexscope_chuhaijiang_tiktok_product_related_lives
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": "chuhaijiang-tiktok-product-related-lives-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_chuhaijiang_tiktok_product_related_lives",
    "arguments": {
      "country": "us",
      "id": "1732052189676081387",
      "page": 1,
      "pageSize": 5
    }
  }
}
Legacy endpoint
POST /api/skill-api/v1/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/chuhaijiang-tiktok-product-related-lives

Arguments

NameTypeRequiredMeaning
countrystringrequired
Lowercase TikTok market code.
Example: us
pageintegeroptional
Page number, starting at 1.
Example: 1
pageSizeintegeroptional
Maximum records per page.
Example: 5
idstringrequired
Product ID, preserved as a string.
Example: 1732052189676081387

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.request_idstring | nulloptional
Request id value used by this API operation.
data.dataobject | nulloptional
Data value used by this API operation.
data.data.itemsarray | nulloptional
Provider business records for TikTok Product Related Lives. Known row fields: room_id. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type.
data.data.items[]object | nullrequired
Item in data data items.
data.data.items[].room_idanyoptional
Source-documented room_id; may be absent or null. Preserve the provider value and original monetary units.
data.data.total_countinteger | nulloptional
Total matching records.

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

{
  "country": "us",
  "id": "1732052189676081387",
  "page": 1,
  "pageSize": 5
}

Example structuredContent

{
  "data": {
    "data": {
      "items": [
        {
          "room_id": null
        }
      ]
    }
  },
  "code": 0,
  "msg": "ok",
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}