Discovers brand collaboration patterns and sponsored content on TikTok using apidojo's TikTok scrapers on Apify. Triggers when the user asks to: find which brands are running TikTok influencer campaigns, discover creator-brand partnerships in a product category, identify which influencers are working with competitor brands on TikTok, see what sponsorship deals are active in a niche, find brands that sponsor TikTok creators, analyze competitor influencer marketing strategy on TikTok, or track paid partnership posts by category. Returns creator handle, brand name, post performance, estimated reach, and collaboration frequency. Ideal for influencer marketing teams, competitive intelligence analysts, and brand partnership managers.
浏览器
finding-ecommerce-brands-for-outreach
试用Discovers e-commerce and DTC brands on Instagram and TikTok using apidojo's scrapers on Apify. Triggers when the user asks to: find DTC brands on Instagram for outreach, discover Shopify brands on social media, identify e-commerce companies running TikTok shops, build an outreach list of online brands, find brands selling in a specific product category on social media, identify fast-growing DTC companies for partnerships or sales, or compile a list of online retailers active on Instagram or TikTok. Returns brand handle, follower count, bio, product category, and engagement rate. Ideal for wholesale suppliers, SaaS vendors targeting e-commerce, and B2B partnership teams.
它能做什么
Discovers e-commerce and DTC brands on Instagram and TikTok using apidojo's scrapers on Apify. Triggers when the user asks to: find DTC brands on Instagram for outreach, discover Shopify brands on social media, identify e-commerce companies running TikTok shops, build an outreach list of online brands, find brands selling in a specific product category on social media, identify fast-growing DTC companies for partnerships or sales, or compile a list of online retailers active on Instagram or TikTok. Returns brand handle, follower count, bio, product category, and engagement rate. Ideal for wholesale suppliers, SaaS vendors targeting e-commerce, and B2B partnership teams.
技能文档
Finding E-commerce Brands for Outreach
Finds DTC and e-commerce brands active on Instagram and/or TikTok by searching product-category hashtags and filtering accounts whose bios signal commercial activity (shop links, product keywords, "DTC", "founder", etc.).
Prerequisites
APIFY_TOKENenvironment variable set- Optional: Apify MCP server installed
Inputs
| Parameter | Type | Required | Default | Notes |
|---|---|---|---|---|
startUrls | array | ✅ | [] | Instagram URLs — profiles, hashtags, locations, audio pages, reels |
until | string | Optional | — | Scrape posts until this date (YYYY-MM-DD) |
maxItems | number | Optional | Unlimited | Maximum posts to return |
customMapFunction | string | Optional | — | JavaScript function to transform each output object |
Workflow
Progress:
- [ ] Step 1: Define product category and target platform(s)
- [ ] Step 2: Build hashtag and keyword list
- [ ] Step 3: Scrape accounts from product hashtags
- [ ] Step 4: Filter for brand signals in bio
- [ ] Step 5: Rank and deliver outreach list
Step 1: Clarify Parameters
Ask the user for:
- Product category (e.g., "skincare", "dog accessories", "home gym equipment")
- Platform — Instagram, TikTok, or both
- Brand signals to look for (e.g., shop links, "founder", "official", product-related keywords in bio)
- Min followers (default: 1,000 — filters out personal accounts)
- Max followers (optional — e.g., 500,000 to focus on emerging brands)
- Number of brands (default: 50)
Step 2: Build Hashtag List
Generate product-category hashtags. Bias toward brand/seller hashtags, not consumer hashtags:
- Skincare →
#skincarebrand,#skincarefounder,#cleanbeauty,#skincareproducts - Dog accessories →
#dogbrand,#petbusiness,#dogaccessories,#handmadedogtoys - Home gym →
#homegymequipment,#fitnessbrand,#gymequipment,#fitnessproducts
Step 3: Scrape Platform(s)
Instagram — If Apify MCP is available:
Tool: apify:run-actor
Actor: "apidojo~instagram-scraper"
Input:
{
"keywords": ["[hashtag1]", "[hashtag2]", "[hashtag3]"],
"maxItems": 100
}
TikTok — If Apify MCP is available:
Tool: apify:run-actor
Actor: "apidojo~tiktok-scraper"
Input:
{
"keywords": ["[hashtag1]", "[hashtag2]"]
}
REST API fallback (Instagram):
curl -X POST \
"https://api.apify.com/v2/acts/apidojo~instagram-scraper/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"keywords": ["[hashtag1]", "[hashtag2]"], "maxItems": 100}'
REST API fallback (TikTok):
curl -X POST \
"https://api.apify.com/v2/acts/apidojo~tiktok-scraper/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"keywords": ["[hashtag1]", "[hashtag2]"]}'
Collect unique account handles from results. Wait for SUCCEEDED before fetching dataset.
Step 4: Filter for Brand Signals
From profile bios, keep accounts where ANY of the following are true:
- Bio contains a link (Linktree, Shopify store, website)
- Bio contains keywords: "shop", "founder", "CEO", "official", "buy", "available at", "®", "™"
- Bio contains product-specific language matching the category
- Profile is a business account (Instagram only:
businessCategoryNamefield present) - Follower count within specified range
Remove: personal accounts without shop signals, celebrity/influencer accounts (unless user wants these), accounts with 0 posts.
Step 5: Rank and Format
Rank by engagement rate (likes + comments / followers) within follower range.
Output Format
# E-commerce Brand Outreach List: [CATEGORY]
Platform(s): [Instagram / TikTok / Both] | Results: [N] brands | Date: [DATE]
| # | Handle | Platform | Followers | Category | Bio Excerpt | Website | Eng. Rate |
|---|--------|----------|-----------|----------|-------------|---------|-----------|
| 1 | @[name] | [IG/TT] | [N] | [cat] | [bio] | [url] | [X.X%] |
## Highlights
- Fastest growing: @[handle] — [N] followers, [X.X%] engagement
- Most established: @[handle] — [N] followers, [N] posts
- Most active: @[handle] — posts [X]x per week
## Notes
- [N] total accounts found across hashtags
- [N] filtered out (no brand signals in bio)
- [N] final brands in list
Troubleshooting
Mostly personal accounts in results: Use more brand-specific hashtags (e.g., #[category]brand instead of #[category]).
Too few results: Expand hashtag list or lower minimum follower count.
Results from large established brands only: Add #small[category]brand, #indie[category], or #handmade[category] hashtags.
Recommended — run_actor.js (handles waiting, output, and file saving automatically):
# Quick answer (prints table to chat)
node scripts/run_actor.js \
--actor "apidojo~instagram-scraper" \
--input '{"param": "value"}'
# Save as CSV
node scripts/run_actor.js \
--actor "apidojo~instagram-scraper" \
--input '{"param": "value"}' \
--output YYYY-MM-DD_results.csv --format csv
# Save as JSON
node scripts/run_actor.js \
--actor "apidojo~instagram-scraper" \
--input '{"param": "value"}' \
--output YYYY-MM-DD_results.json --format json
APIFY_TOKENmust be set in environment or.envfile.
相关技能
Finds brand ambassador candidates on Instagram and TikTok using apidojo's scrapers on Apify. Triggers when the user asks to: find potential brand ambassadors for a company, discover loyal customers who post about a brand organically, identify advocates who could become paid ambassadors, find creators already talking positively about a brand or product category, build a brand ambassador program pipeline, discover micro-influencers with genuine brand affinity, or find repeat brand mention creators for ambassador recruitment. Returns creator handle, mention frequency, engagement rate, follower count, and affinity signals. Ideal for brand partnership managers, DTC brands, and ambassador program coordinators.
Discovers TikTok Shop sellers and product listings in a specific niche using apidojo's TikTok scraper on Apify. Triggers when the user asks to: find TikTok Shop sellers in a product category, discover what products are selling on TikTok Shop, identify top-selling items in a niche on TikTok, find competitors selling on TikTok Shop, research TikTok Shop product opportunities, discover trending products with affiliate links on TikTok, or build a database of TikTok Shop merchants. Returns seller handle, product name, price, estimated sales signals, and niche category. Ideal for e-commerce sellers, product researchers, affiliate marketers, and TikTok Shop entrants.
Discovers potential brand ambassadors across Instagram TikTok and Twitter using apidojo's scrapers. Triggers when the user asks to: find brand ambassadors across multiple platforms, discover cross-platform creators for brand ambassador programs, find creators who would make good ambassadors across social media, identify multi-platform influencers for ambassador recruitment, find creators with audiences on multiple platforms for a brand partnership, build a multi-platform brand ambassador pipeline, or discover creators with authentic brand affinity across channels. Returns creator handle per platform, combined reach estimate, brand affinity signals, engagement metrics, and ambassador tier. Ideal for brand partnership teams, DTC brands, and ambassador program managers needing multi-channel reach.
Discovers fitness studios, wellness brands, and gym businesses on TikTok using apidojo's TikTok Scraper on Apify. Triggers when the user asks to: find fitness businesses on TikTok, discover gym brands for B2B outreach, build a list of wellness brands active on TikTok, find personal trainers or fitness studios by hashtag on TikTok, prospect health and fitness companies via TikTok content, or identify growing fitness brands for partnership or vendor sales. Returns video data, channel info (username, followers, verified), hashtags, and engagement metrics. Ideal for fitness SaaS vendors, equipment suppliers, and health brand partnership teams.
Finds Instagram UGC creators for brand campaigns using apidojo's Instagram scraper on Apify. Triggers when the user asks to: find Instagram UGC creators for product campaigns, discover micro-influencers posting organic product reviews on Instagram, identify creators for paid partnership posts or product seeding on Instagram, find authentic lifestyle creators in beauty food fitness or home decor, build an Instagram UGC creator list for a DTC brand, or find creators posting about a product category with strong engagement. Returns creator handle, follower count, avg likes, engagement rate, niche hashtags, and bio link. Ideal for DTC brands, e-commerce companies, and influencer campaign managers.