> ## Documentation Index
> Fetch the complete documentation index at: https://docs.socq.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# TikTok Shop 搜索

> 搜索公共 TikTok Shop 产品。

# TikTok Shop 搜索

按关键字和市场区域搜索公共产品。

## 请求示例

```json theme={"system"}
{
  "query": "running shoes",
  "results_limit": 100,
  "region": "US"
}
```

## 与 MCP 一起使用

| 接口          | 值                                                  |
| ----------- | -------------------------------------------------- |
| REST        | `POST /v1/tiktok-shop/search`                      |
| Compact MCP | `socq_execute` 与 `endpoint: "tiktok-shop/search"`  |
| Typed MCP   | `socq_tiktok_shop_search`                          |
| 精确工具 URL    | `https://api.socq.ai/mcp?tools=tiktok_shop_search` |
| CLI         | `socq tiktok-shop search`                          |

使用上面的 JSON 请求正文作为 `socq_execute` 的嵌套 `input` 对象，或将相同的字段直接传递给Typed 工具。Typed 工具还接受 `_wait_seconds`、`_result_limit` 和 `_idempotency_key`。

<Info>
  成功的采集将返回 `task_id`。继续 `socq_get_task` 直到任务成功，然后从 `results.items` 读取规范化记录。
</Info>

有关完整的提交和轮询流程，请参阅[MCP 快速入门](/zh/integrations/mcp)。

SocQ 请求结果页面，直到到达 `results_limit` 或没有其他产品可用。重复的产品 ID 会保存一次。

## 任务完成响应

```json theme={"system"}
{
  "code": 200,
  "data": {
    "task_id": "A1B2C3D4E5F6G7H8",
    "status": "succeeded",
    "public_id": "tiktok-shop/search",
    "result_count": 1,
    "credits_amount": 0.7,
    "results": {
      "limit": 50,
      "next_cursor": null,
      "has_more": false,
      "items": [{
        "id": "1730213444857467838",
        "platform": "tiktok-shop",
        "resource": "search",
        "type": "product",
        "url": "https://www.tiktok.com/shop/pdp/example/1730213444857467838",
        "name": "Running Shoes",
        "text": "Running Shoes",
        "author": {"id": "7495832567110863806", "username": null, "name": "Example Shop", "url": null},
        "metrics": {"rating": 4.8, "reviews_count": 2493, "sold_count": 24737},
        "media": [{"type": "image", "url": "https://example.com/product.jpg"}],
        "created_at": null,
        "collected_at": "2026-07-18T10:30:00",
        "extra": {"search_query": "running shoes", "price": {"amount": 49.99, "currency": "USD", "formatted": "49.99"}}
      }]
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/tiktok-shop/search
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-57489840196e
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/tiktok-shop/search:
    post:
      tags:
        - tiktok-shop
      summary: TikTok Shop Search API
      description: TikTok Shop Search API
      operationId: socq_tiktok_shop_search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                query:
                  type: string
                  minLength: 1
                  description: Search query.
                region:
                  type: string
                  minLength: 1
                results_limit:
                  type: integer
                  minimum: 1
                  maximum: 2000
              required:
                - query
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    AgentSubmitResponse:
      type: object
      properties:
        code:
          type: integer
          const: 200
        data:
          type: object
          properties:
            task_id:
              type: string
            status:
              type: string
            created_time:
              type:
                - string
                - 'null'
            idempotent_replay:
              type: boolean
          required:
            - task_id
            - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````