Tools / Social Shop Products
Social Shop Products icon

Social Shop Products

Browse creator storefronts & shops

Explore creator commerce on TikTok Shop and Amazon storefronts, get product details and reviews, and extract links from Linktree, Komi, Pillar, Linkbio, and Linkme. For product research, affiliate discovery, and e-commerce analysis.

10 skillsv0.02
Search TikTok Shop

Search TikTok Shop for products matching a query and return structured product listings with prices, ratings, and seller info.

Returns: Array of TikTok Shop product listings with titles, prices, ratings, and seller details
Parameters
query *stringProduct search query for TikTok Shop
Example
Search for trending beauty products
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "search_tiktok_shop",
  "input": {
    "query": "viral skincare serum"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get TikTok Shop Reviews

Get reviews for a TikTok Shop product. Accepts either a product ID or a full product URL to retrieve customer reviews.

Returns: Array of customer reviews with ratings, text, author info, and dates
Parameters
product_idstringTikTok Shop product ID
urlstringFull URL of the TikTok Shop product page
Example
Get reviews by product URL
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "get_tiktok_shop_reviews",
  "input": {
    "url": "https://www.tiktok.com/@shop/product/1729382456"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Linktree Page

Get all links, bio info, and social accounts from a Linktree page. URL must include https:// prefix.

Returns: Linktree page data with bio, avatar, and array of links with titles and URLs
Parameters
url *stringFull Linktree URL including https:// (e.g. https://linktr.ee/username)
Example
Extract links from a creator Linktree
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "get_linktree_page",
  "input": {
    "url": "https://linktr.ee/garyvee"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Amazon Shop

Get product details, listings, and storefront info from an Amazon shop page URL.

Returns: Amazon shop page data with product listings, prices, ratings, and storefront details
Parameters
url *stringFull URL of the Amazon shop or storefront page
Example
Get products from an Amazon storefront
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "get_amazon_shop",
  "input": {
    "url": "https://www.amazon.com/stores/page/B08N5WRWNW"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get TikTok Product Details

Get detailed information about a TikTok Shop product including exact stock count, related TikTok videos, pricing, and seller info.

Returns: TikTok product details with stock count, pricing, seller info, ratings, and optionally related videos
Parameters
url *stringFull URL of the TikTok Shop product page
get_related_videosbooleanAlso fetch related TikTok videos for this product
Example
Get TikTok product details
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "get_tiktok_product",
  "input": {
    "url": "https://www.tiktok.com/@shop/product/1729382456"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get TikTok Shop Products

Get all products from a TikTok Shop by shop URL. Supports pagination via cursor.

Returns: Array of TikTok Shop products with titles, prices, ratings, and pagination cursor
Parameters
url *stringFull URL of the TikTok Shop page
cursorstringPagination cursor from previous response
Example
Get products from a TikTok Shop
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "get_tiktok_shop_products",
  "input": {
    "url": "https://www.tiktok.com/@brand/shop"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Komi Page

Get all links, bio info, and social accounts from a Komi creator link page.

Returns: Komi page data with bio, avatar, and array of links with titles and URLs
Parameters
url *stringFull Komi page URL (e.g. https://komi.io/username)
Example
Extract links from a Komi page
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "get_komi_page",
  "input": {
    "url": "https://komi.io/creator"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Pillar Page

Get all links, bio info, and social accounts from a Pillar creator link page.

Returns: Pillar page data with bio, avatar, and array of links with titles and URLs
Parameters
url *stringFull Pillar page URL
Example
Extract links from a Pillar page
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "get_pillar_page",
  "input": {
    "url": "https://pillar.io/creator"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Linkbio Page

Get all links, bio info, and social accounts from a Linkbio (lnk.bio) creator link page.

Returns: Linkbio page data with bio, avatar, and array of links with titles and URLs
Parameters
url *stringFull Linkbio URL (e.g. https://lnk.bio/username)
Example
Extract links from a Linkbio page
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "get_linkbio_page",
  "input": {
    "url": "https://lnk.bio/creator"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Linkme Page

Get profile info and links from a Linkme creator page.

Returns: Linkme page data with profile info and array of links
Parameters
url *stringFull Linkme page URL
Example
Extract links from a Linkme page
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-shop-products",
  "skill": "get_linkme_page",
  "input": {
    "url": "https://linkme.bio/creator"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.022026-03-22
  • Added subtitle, expanded description, and agent instructions
v0.012026-03-20
  • Initial release

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"social-shop-products","skill":"search_tiktok_shop","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Use Cases

Open Monitor Competitor Product Listings

Monitor Competitor Product Listings

Track competitor products across TikTok Shop and Amazon to stay ahead on pricing, positioning, and new launches.

Social Shop Products icon
Social Shop Products
4 agent guides
Open Search Papers by Topic

Search Papers by Topic

Find relevant academic papers on any research topic across millions of scholarly publications.

Academic Research icon
Academic Research
4 agent guides
Open Geocode Addresses to Coordinates

Geocode Addresses to Coordinates

Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.

Address Geocoding icon
Address Geocoding
4 agent guides
View all use cases for Social Shop Products

Workflows

Open Social Commerce Research

Social Commerce Research

Research social commerce opportunities by analyzing shops, tracking viral commerce content, studying competitors, and monitoring market trends.

Social Shop Products icon
Social Shop Products
Trending Social Content icon
Trending Social Content
Competitor Research icon
Competitor Research
Web Search icon
Web Search
4 steps4 tools
Open Ecommerce Competitor Intelligence

Ecommerce Competitor Intelligence

Gather ecommerce competitive intelligence by scraping pricing data, researching businesses, monitoring social commerce, and analyzing ad campaigns.

Web Scraper icon
Web Scraper
Competitor Research icon
Competitor Research
Social Shop Products icon
Social Shop Products
Ad Library Search icon
Ad Library Search
4 steps4 tools

Frequently Asked Questions

How do I find products from a TikTok Shop?

Use `search_tiktok_shop` for product discovery, `get_tiktok_product` for a specific item, and `get_tiktok_shop_products` when you want the full catalog from a shop URL.

Can I see product reviews and stock details?

Yes. `get_tiktok_product` includes stock count, pricing, seller info, and related videos, while `get_tiktok_shop_reviews` returns customer reviews for a product.

Does it work for storefronts outside TikTok Shop?

Yes. It also pulls product and storefront data from Amazon shops and extracts link lists from creator pages like Linktree, Komi, Pillar, Linkbio, and Linkme.

What if a shop has lots of products?

`get_tiktok_shop_products` supports pagination with a cursor, so you can page through larger storefronts instead of stopping at the first screen of results.