We're excited to announce a game-changing update to the Scrape Creators API that will revolutionize how you analyze creator commerce on TikTok.
You can now identify the exact products that creators are promoting in their videos, complete with direct links to TikTok Shop listings.
What's New: Product Promotion Detection
The latest update adds a powerful new data field to TikTok video responses: shop_product_url
.
This field appears when creators include product promotions in their videos, providing direct access to the TikTok Shop listing they're promoting.
How It Works
When you scrape a TikTok video through the ScrapeCreators API, the response now includes product promotion data:
{ "is_paid_partnership": false, "create_time_utc": "2025-09-03T18:37:38.000Z", "url": "https://www.tiktok.com/@branttakes/video/7545933721589910798", "shop_product_url": "https://www.tiktok.com/shop/pdp/1729494515984797858", "added_sound_music_info": {} }
The shop_product_url
field provides a direct link to the TikTok Shop product page, allowing you to immediately understand what the creator is promoting and analyze the commercial intent behind their content.
Why This Matters for Your Business
Affiliate Marketing Intelligence
For affiliate marketers and agencies, this update provides unprecedented visibility into creator commerce strategies:
- Competitor Analysis: See exactly what products your competitors' sponsored creators are promoting
- Product Research: Identify trending products across different creator niches
- Commission Tracking: Understand which creators are eligible for commissions on specific products
- Campaign Optimization: Analyze successful product promotions to inform your own campaigns
E-commerce Research
Retailers and brands can now:
- Monitor Brand Mentions: Track when and how your products appear in creator content
- Identify Opportunities: Find creators already promoting similar products in your category
- Market Intelligence: Understand pricing, positioning, and promotion strategies for competing products
- Trend Analysis: Spot emerging product trends before they go mainstream
Creator Economy Analysis
Researchers and analysts gain access to:
- Monetization Patterns: Understand how creators incorporate product promotions into their content
- Commerce Trends: Track the evolution of social commerce on TikTok
- Creator Performance: Analyze which types of product promotions generate the most engagement
Technical Implementation
API Response Structure
The product URL appears as a new field in your standard TikTok video scraping response. Here's what to expect:
When Product Promotion is Present:
{ "shop_product_url": "https://www.tiktok.com/shop/pdp/[product_id]" }
When No Product Promotion: The field will be absent or null, keeping response sizes minimal.
Integration Examples
Python Implementation:
import requests response = requests.get('https://api.scrapecreators.com/v1/tiktok/video', params={'url': video_url}) data = response.json() if 'shop_product_url' in data: print(f"Creator is promoting: {data['shop_product_url']}") # You can then scrape product details using the shop endpoint
JavaScript Implementation:
const response = await fetch('/api/tiktok/video?url=' + videoUrl); const data = await response.json(); if (data.shop_product_url) { console.log('Product promotion detected:', data.shop_product_url); // Analyze product details or track for competitive intelligence }
Real-World Use Cases
Case Study: Beauty Brand Monitoring
A cosmetics company can now:
- Identify Influencers: Find creators promoting competing beauty products
- Analyze Pricing: Compare promoted product prices across different creators
- Track Trends: Monitor which beauty products are gaining traction through creator promotions
- Outreach Strategy: Identify successful creators for potential partnerships
Case Study: Affiliate Network Management
Affiliate networks can:
- Performance Tracking: Monitor which products their creators promote most frequently
- Commission Optimization: Understand the relationship between product type and creator engagement
- Fraud Detection: Verify that creators are promoting the products they claim
- Market Intelligence: Identify high-performing products for network expansion
Enhanced Workflow Integration
Automated Monitoring Workflows
Set up automated systems to:
- Daily Scans: Monitor specific creators for new product promotions
- Competitor Alerts: Get notified when competitors' products appear in creator content
- Trend Tracking: Build databases of product promotion patterns over time
- ROI Analysis: Correlate product promotions with engagement metrics
Getting Started
Immediate Access
This feature is available immediately for all Scrape Creators API users. No changes to your existing integration are required – the new field simply appears when relevant.
Testing the Feature
To test the new functionality:
- Find a TikTok video with visible product promotion (look for shopping bag icons or "Shop" buttons)
- Use the standard video scraping endpoint
- Check the response for the
shop_product_url
field - Use the product URL to scrape detailed product information if needed
API Documentation
Full documentation for the updated response structure is available in the ScrapeCreators API docs. The shop_product_url
field follows TikTok's standard product URL format:
https://www.tiktok.com/shop/pdp/[product_id]
.
Future Enhancements
This product detection feature is just the beginning. We're working on additional e-commerce intelligence features:
Coming Soon:
- Product Metadata: Price, ratings, and seller information directly in video responses
- Historical Tracking: Monitor product promotion changes over time
- Bulk Analysis: Batch processing for large-scale creator commerce analysis
- Enhanced Filtering: Search for videos promoting specific product categories or price ranges
Impact on Creator Economy Analysis
This update represents a significant step forward in understanding the creator economy's commercial aspects. For the first time, researchers and businesses can systematically analyze the relationship between content creation and product promotion at scale.
The ability to connect specific videos to specific products enables entirely new categories of analysis:
- Content Performance vs. Product Type: Which products generate the most engagement when promoted?
- Creator Specialization: Do successful creators focus on specific product categories?
- Seasonal Patterns: How do product promotions change throughout the year?
- Cross-Platform Analysis: How do TikTok product promotions compare to other platforms?