> ## 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 Product

> Collect details for one public TikTok Shop product.

# TikTok Shop Product

Collect product details, seller data, pricing, categories, media, and SKU information.

## Request Example

```json theme={"system"}
{
  "url": "https://www.tiktok.com/shop/pdp/example-product/1729587769570529799",
  "region": "US"
}
```

## Use with MCP

| Interface      | Value                                                 |
| -------------- | ----------------------------------------------------- |
| REST           | `POST /v1/tiktok-shop/product`                        |
| Compact MCP    | `socq_execute` with `endpoint: "tiktok-shop/product"` |
| Typed MCP      | `socq_tiktok_shop_product`                            |
| Exact-tool URL | `https://api.socq.ai/mcp?tools=tiktok_shop_product`   |
| CLI            | `socq tiktok-shop product`                            |

Use the JSON request body above as the nested `input` object for `socq_execute`, or pass the same fields directly to the typed tool. Typed tools also accept `_wait_seconds`, `_result_limit`, and `_idempotency_key`.

<Info>
  A successful collection returns a `task_id`. Continue with `socq_get_task` until the task succeeds, then read normalized records from `results.items`.
</Info>

See [MCP quickstart](/integrations/mcp) for the complete submission and polling flow.

One task accepts one product URL and produces at most one normalized product record.

## Completed Task Response

```json theme={"system"}
{
  "code": 200,
  "data": {
    "task_id": "A1B2C3D4E5F6G7H8",
    "status": "succeeded",
    "public_id": "tiktok-shop/product",
    "result_count": 1,
    "credits_amount": 0.7,
    "results": {
      "limit": 50,
      "next_cursor": null,
      "has_more": false,
      "items": [{
        "id": "1729587769570529799",
        "platform": "tiktok-shop",
        "resource": "product",
        "type": "product",
        "url": "https://www.tiktok.com/shop/pdp/example-product/1729587769570529799",
        "name": "Example Product",
        "text": "Example Product",
        "author": {"id": "7496021452055022168", "username": "7098283607022158891", "name": "Example Store", "url": "https://www.tiktok.com/@7098283607022158891"},
        "metrics": {"rating": 4.7, "reviews_count": 1200, "sold_count": 8500},
        "media": [{"type": "image", "url": "https://example.com/product.jpg"}],
        "created_at": null,
        "collected_at": "2026-07-18T10:30:00",
        "extra": {"input_url": "https://www.tiktok.com/shop/pdp/example-product/1729587769570529799", "region": "US", "price": {"amount": 29.99, "currency": "USD"}}
      }]
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/tiktok-shop/product
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-063d1c96173a
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/tiktok-shop/product:
    post:
      tags:
        - tiktok-shop
      summary: TikTok Shop Product API
      description: TikTok Shop Product API
      operationId: socq_tiktok_shop_product
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                region:
                  type: string
                  minLength: 1
                url:
                  type: string
                  minLength: 1
                  description: A public content or product URL.
              required:
                - url
      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

````