Shop and product research

Research products sold through social platforms: search shops, list a store’s products, read reviews, and check Marketplace listings, in one Product shape.

The recipe

The calls, in order. Tap a platform to see its endpoint and parameters.

  1. 1

    Search products

    1 credit per call

    Search products by keyword.

    GET/v1/{platform}/shop/searchProduct[]
  2. 2

    Shop products

    1 credit per call

    List a shop’s products.

    GET/v1/{platform}/shop/productsProduct[]
  3. 3

    Product reviews

    1 credit per call

    Read what buyers say about a product.

    GET/v1/{platform}/shop/reviewsReview[]
  4. 4

    Marketplace search

    1 credit per call

    Check second-hand and local listings.

    GET/v1/{platform}/marketplace/searchProduct[]
What it costs
6credits

One product search on TikTok Shop and reviews for 5 products.

Calculated from the live price list. Failed calls are refunded.

In code

javascript
const products = await fetch(`https://api.crawlfeed.dev/v1/tiktok/shop/search?q=${encodeURIComponent('protein powder')}`, { headers: { Authorization: `Bearer ${process.env.CRAWLFEED_KEY}` } }).then((r) => r.json());
const reviews = await fetch(`https://api.crawlfeed.dev/v1/tiktok/shop/reviews?id=${products.data[0].id}`, { headers: { Authorization: `Bearer ${process.env.CRAWLFEED_KEY}` } }).then((r) => r.json());

Questions

Do prices come with a currency?

Yes. Product prices carry an amount and a currency code, so listings from different markets can be compared.

Related recipes