TikTok / Social Commerce
TikTok Seller Detail MCP Tool
Query TikTok Shop store (seller) details, retrieving a complete store profile by sellerId with total sales, multi-period (1d/7d/30d/90d) sales and GMV, followers, rating, review count, positive feedback rate, delivery rate, response rate, in-store product count, promoting creator count, promotional video count, livestream count, price range, product categories, and estimated listing time.
nexscope_tiktok_seller_detailhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-seller-detail/runtools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf 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-seller-detail-1",
"method": "tools/call",
"params": {
"name": "nexscope_tiktok_seller_detail",
"arguments": {
"sellerId": "7496162162184128712"
}
}
}POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-seller-detail/runhttps://www.nexscope.ai/mcp-map/tiktok-seller-detailArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
sellerId | string | required | TikTok Shop seller ID. Obtainable from the "EchoTik TikTok Seller Search" skill (nexscope-echotik-list-seller) results, or from the ID in a known store link. Max length 1000 Example: 7496162162184128712 |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
errcode | integer | optional | Business status code, 200 indicates success (see error codes below) Example: 1 |
errmsg | string | optional | Business status description Example: {} |
costToken | integer | optional | Token cost Example: 1 |
columns | array | optional | Render column definitions (display metadata) Example: [] |
type | string | optional | Render style (e.g., tableListWorkbenches) Example: {} |
columns[].sellerId | string | optional | Store ID Example: example-id |
columns[].sellerName | string | optional | Store name Example: {} |
columns[].sellerLink | string | optional | Store link Example: {} |
columns[].coverUrl | string | optional | Store cover image URL Example: https://example.com/image.jpg |
columns[].region | string | optional | Region Example: US |
columns[].categoryId | string | optional | Primary category ID Example: example-id |
columns[].categoryL2Id | string | optional | Secondary category ID Example: example-id |
columns[].categoryL3Id | string | optional | Tertiary category ID Example: example-id |
columns[].totalSaleCnt | integer | optional | Total sales Example: 1 |
columns[].totalSale1dCnt | integer | optional | Sales in last 1 day (increment) Example: 1 |
columns[].totalSale7dCnt | integer | optional | Sales in last 7 days (increment) Example: 1 |
columns[].totalSale30dCnt | integer | optional | Sales in last 30 days (increment) Example: 1 |
columns[].totalSale90dCnt | integer | optional | Sales in last 90 days (increment) Example: 1 |
columns[].totalSaleGmvAmt | number | optional | Total GMV Example: 1 |
columns[].totalSaleGmv1dAmt | number | optional | GMV in last 1 day (increment) Example: 1 |
columns[].totalSaleGmv7dAmt | number | optional | GMV in last 7 days (increment) Example: 1 |
columns[].totalSaleGmv30dAmt | number | optional | GMV in last 30 days (increment) Example: 1 |
columns[].totalSaleGmv90dAmt | number | optional | GMV in last 90 days (increment) Example: 1 |
columns[].followersCount | integer | optional | Follower count Example: 1 |
columns[].rating | number | optional | Rating Example: 1 |
columns[].reviewCount | integer | optional | Review count Example: 1 |
columns[].positiveFeedbackRate | number | optional | Positive feedback rate Example: 1 |
columns[].responseRate | number | optional | Response rate Example: 1 |
columns[].deliveryRate | integer | optional | Delivery rate Example: 1 |
columns[].totalProductCnt | integer | optional | Historical product count in store (including delisted) Example: 1 |
columns[].totalCrawlProductCnt | integer | optional | Current product count in store Example: 1 |
columns[].spuAvgPrice | number | optional | Average SKU price across the store Example: 1 |
columns[].minPrice | integer | optional | Minimum price Example: 1 |
columns[].maxPrice | integer | optional | Maximum price Example: 1 |
columns[].totalIflCnt | integer | optional | Total promoting creator count Example: 1 |
columns[].totalVideoCnt | integer | optional | Total promotional video count Example: 1 |
columns[].totalLiveCnt | integer | optional | Total livestream count Example: 1 |
columns[].salesFlagText | string | optional | Primary selling method (video sales / livestream sales) Example: {} |
columns[].salesTrendFlagText | string | optional | Sales trend (rising / falling / stable) Example: {} |
columns[].shopIdentityLabel | string | optional | Store identity (e.g., OFFICIAL SHOP) Example: {} |
columns[].shopTypeText | string | optional | Whether a brand store (Yes / No) Example: {} |
columns[].fromFlagText | string | optional | Cross-border identifier (local / cross-border) Example: {} |
columns[].productCategoryList | string | optional | Product categories (JSON string, containing category_name / category_id) Example: {} |
columns[].mostProductCategoryList | string | optional | TOP1 product category (JSON string) Example: {} |
columns[].firstCrawlDt | integer | optional | Estimated listing time, in yyyyMMdd format (e.g., 20240504 represents 2024-05-04) Example: 1 |
columns[].userId | string | optional | Creator UID Example: example-id |
columns[].sourceType | string | optional | Product source (e.g., TikTok) Example: {} |
columns[].sourceTool | string | optional | Source tool (e.g., EchoTik-Seller Detail) Example: {} |
code | string | optional | Provider-specific status code. Example: {} |
msg | string | optional | Provider-specific status message. Example: {} |
message | string | optional | Provider-specific message. Example: {} |
title | string | optional | Provider-specific response title. Example: {} |
sourceType | string | optional | Provider-specific source platform type. Example: {} |
sourceTool | string | optional | Provider-specific source tool name. Example: {} |
costTime | integer | optional | Execution time reported by the upstream provider. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: {} |
Examples
Example arguments
{
"sellerId": "7496162162184128712"
}Example structuredContent
{
"errcode": 1,
"costToken": 1,
"columns": [
{
"sellerId": "example-id",
"coverUrl": "https://example.com/image.jpg",
"region": "US",
"categoryId": "example-id",
"categoryL2Id": "example-id",
"categoryL3Id": "example-id",
"totalSaleCnt": 1,
"totalSale1dCnt": 1,
"totalSale7dCnt": 1,
"totalSale30dCnt": 1,
"totalSale90dCnt": 1,
"totalSaleGmvAmt": 1,
"totalSaleGmv1dAmt": 1,
"totalSaleGmv7dAmt": 1,
"totalSaleGmv30dAmt": 1,
"totalSaleGmv90dAmt": 1,
"followersCount": 1,
"rating": 1,
"reviewCount": 1,
"positiveFeedbackRate": 1,
"responseRate": 1,
"deliveryRate": 1,
"totalProductCnt": 1,
"totalCrawlProductCnt": 1,
"spuAvgPrice": 1,
"minPrice": 1,
"maxPrice": 1,
"totalIflCnt": 1,
"totalVideoCnt": 1,
"totalLiveCnt": 1,
"firstCrawlDt": 1,
"userId": "example-id"
}
]
}