Nexscope

TikTok / Social Commerce

TikTok Product Detail MCP Tool

Provider business records for TikTok Product Detail. Known row fields: id, product_id, product_name, product_images. Missing and null fields remain unchanged; monetary values retain their original unit and runtime type.

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

Arguments

NameTypeRequiredMeaning
countrystringrequired
Lowercase TikTok market code.
Example: us
idstringrequired
Product ID, preserved as a string.
Example: 1732052189676081387
includestringoptional
Comma-separated optional detail sections: core, channel.
Example: core,channel

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 Detail. Known row fields: id, product_id, product_name, product_images. 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[].idanyoptional
Source-documented id; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].product_idanyoptional
Source-documented product_id; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].product_nameanyoptional
Source-documented product_name; may be absent or null. Preserve the provider value and original monetary units.
data.data.items[].product_imagesanyoptional
Source-documented product_images; may be absent or null. Preserve the provider value and original monetary units.
data.data.total_countinteger | nulloptional
Total matching records.
data.data.coreobject | nulloptional
Core value used by this API operation.
data.data.core.total_countinteger | nulloptional
Total count value used by this API operation.
data.data.core.itemsarray | nulloptional
Optional core detail records requested through include; preserved separately from basic items. Known fields are taken verbatim from the source reference.
data.data.core.items[]object | nullrequired
Item in data data core items.
data.data.core.items[].product_gmvanyoptional
Source-documented product_gmv; may be absent or null. Preserve the provider value and original monetary units.
data.data.core.items[].product_sold_countanyoptional
Source-documented product_sold_count; may be absent or null. Preserve the provider value and original monetary units.
data.data.channelobject | nulloptional
Channel value used by this API operation.
data.data.channel.total_countinteger | nulloptional
Total count value used by this API operation.
data.data.channel.itemsarray | nulloptional
Optional channel detail records requested through include; preserved separately from basic items. The source confirms this hierarchy but does not enumerate field names; no fields are invented.
data.data.channel.items[]object | nullrequired
Item in data data channel items.

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

{
  "country": "us",
  "id": "1732052189676081387",
  "include": "core,channel"
}

Example structuredContent

{
  "data": {
    "data": {
      "items": [
        {
          "id": null,
          "product_id": null,
          "product_name": null
        }
      ],
      "core": {
        "items": [
          {
            "product_gmv": null,
            "product_sold_count": null
          }
        ]
      },
      "channel": {
        "items": [
          {}
        ]
      }
    }
  },
  "code": 0,
  "msg": "ok",
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}