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
Search products
1 credit per callSearch products by keyword.
GET/v1/{platform}/shop/search→Product[] - 2
- 3
Product reviews
1 credit per callRead what buyers say about a product.
GET/v1/{platform}/shop/reviews→Review[] - 4
Marketplace search
1 credit per callCheck second-hand and local listings.
GET/v1/{platform}/marketplace/search→Product[]
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.