Skip to main content
POST
/
datasets
/
v3
/
scrape
Discover by Shop
curl --request POST \
  --url https://api.brightdata.com/datasets/v3/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": [
    {
      "shop_url": "<string>",
      "num_of_products": 123
    }
  ]
}
'
[
  {
    "url": "https://www.tiktok.com/view/product/1732000000000000000",
    "title": "Smart Watch Fitness Tracker",
    "price": 39.99,
    "currency": "USD",
    "rating": 4.6,
    "reviews_count": 3400,
    "seller_name": "TechGadgets Official",
    "seller_url": "https://www.tiktok.com/@techgadgets",
    "description": "Fitness tracker with heart rate monitor, sleep tracking, and 7-day battery life.",
    "images": [
      "https://p16-oec-ttp.tiktokcdn-us.com/example-product-1.jpeg"
    ],
    "category": "Electronics > Wearables > Smartwatches"
  }
]

Query Parameters

dataset_id
string
default:"gd_m45m1u911dsa4274pi"
required
The dataset ID used for this request.
Must be set to gd_m45m1u911dsa4274pi to collect Discover by Shop data.
type
string
default:"discover_new"
Must be set to discover_new.
discover_by
string
default:"shop_url"
Must be set to shop_url.
notify
boolean
default:false
Whether to send notifications when the request is completed.
include_errors
boolean
default:true
Whether to include errors in the response.

Request Body

input
object[]
required
An array of input objects.

Example

{
  "input": [
    {
      "shop_url": "https://www.tiktok.com/@techgadgets/shop",
      "num_of_products": 25
    }
  ]
}
[
  {
    "url": "https://www.tiktok.com/view/product/1732000000000000000",
    "title": "Smart Watch Fitness Tracker",
    "price": 39.99,
    "currency": "USD",
    "rating": 4.6,
    "reviews_count": 3400,
    "seller_name": "TechGadgets Official",
    "seller_url": "https://www.tiktok.com/@techgadgets",
    "description": "Fitness tracker with heart rate monitor, sleep tracking, and 7-day battery life.",
    "images": [
      "https://p16-oec-ttp.tiktokcdn-us.com/example-product-1.jpeg"
    ],
    "category": "Electronics > Wearables > Smartwatches"
  }
]