## tiktokshop/product

`GET /v1/tiktokshop/product`

One TikTok Shop product: title, prices, images, sold count, rating and review count, categories, seller and SKUs. SKU-level stock is included where available; it is a source-reported value, not a guaranteed real-time inventory or checkout confirmation.

*TikTok Shop product*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | Product URL — e.g. `https://www.tiktok.com/shop/pdp/goli-ashwagandha-gummies-with-vitamin-d-ksm-66-vegan-non-gmo/1729587769570529799` |
| `region` | no | Storefront region (US is the reliable one today) — e.g. `US` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 2 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/tiktokshop/product?url=https%3A%2F%2Fwww.tiktok.com%2Fshop%2Fpdp%2Fgoli-ashwagandha-gummies-with-vitamin-d-ksm-66-vegan-non-gmo%2F1729587769570529799" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "categories": [
    "example"
  ],
  "id": "example",
  "images": [],
  "platform": "example",
  "price": {
    "currency": "example",
    "currency_symbol": "example",
    "da_info": "example",
    "discount": "example",
    "is_interval_price": false,
    "max_sku_price": "example",
    "min_sku_original_price": "example",
    "min_sku_price": "example",
    "need_icon": false,
    "original_price": "example",
    "panel_schema": "example",
    "real_price": "example",
    "show_hot_zone": false,
    "symbol_position": 0
  },
  "rating": 0,
  "review_count": 0,
  "sale_region": "example",
  "seller": {
    "id": "example",
    "location": "example",
    "name": "example",
    "product_count": 0,
    "tiktok_url": "https://example.com/example"
  },
  "shop": {
    "id": "example",
    "products": 0,
    "review_count": 0,
    "sold_count": 0
  },
  "skus": [
    {
      "id": "example",
      "price": {
        "discount": "example",
        "original_price": "example",
        "original_price_value": "example",
        "real_price": {}
      },
      "stock": 0
    }
  ],
  "sold_count": 0,
  "title": "example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/tiktokshop/product#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/tiktokshop/product.json)
