Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
linkfox-ai avatar

Linkfox Fastmoss Product Search

  • 262 installs
  • 64 repo stars
  • Updated August 3, 2026
  • linkfox-ai/linkfox-skills

Search FastMoss for trending TikTok Shop products, niches, and creators to spot early demand signals before committing to a SKU or supplier.

About

Agent skill that queries FastMoss to discover trending TikTok Shop products, niches, and seller opportunities. Use it during early ideation to shortlist categories, compare viral items, and feed downstream validation with Jungle Scout, Keepa, or compliance checks.

  • FastMoss TikTok Shop product discovery
  • Trend and niche scanning for new SKUs
  • Creator-commerce demand signals
  • Agent-callable marketplace research API
  • Early-stage opportunity shortlisting

Linkfox Fastmoss Product Search by the numbers

  • 262 all-time installs (skills.sh)
  • +38 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #257 of 853 Sales & Marketing skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/linkfox-ai/linkfox-skills --skill linkfox-fastmoss-product-search

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs262
repo stars64
Last updatedAugust 3, 2026
Repositorylinkfox-ai/linkfox-skills

What it does

Search FastMoss for trending TikTok Shop products, niches, and creators to spot early demand signals before committing to a SKU or supplier.

Files

SKILL.mdMarkdownGitHub ↗

FastMoss - TikTok Product Search

This skill guides you on how to search and filter TikTok Shop product data using FastMoss, helping sellers and marketers discover product opportunities, evaluate sales performance, and identify influencer-driven products across 15 TikTok markets worldwide.

Core Concepts

FastMoss is a well-known TikTok e-commerce data platform that tracks product performance across multiple TikTok marketplaces. This tool provides keyword-based product search with rich filtering capabilities, returning detailed product data including multi-period sales (7-day/28-day/90-day/total), GMV (revenue), pricing, ratings, review counts, commission rates, influencer promotion statistics, and shop information.

Sales metrics: Products include multi-period sales data — 7-day, 28-day, 90-day, and total sales. The same granularity applies to GMV (Gross Merchandise Value) amounts.

Commission rate: Stored as a decimal (e.g., 0.10 means 10%). When displaying to the user, convert to percentage format.

Shop types: Products can be filtered by shop type — local shops (1) or cross-border shops (2). The isCrossBorder field (1=cross-border, 0=local) and isSShopText field (TikTok fully-managed shop) provide additional shop classification.

Parameter Guide

Search & Filtering

ParameterTypeRequiredDescription
keywordstringNoSearch keyword (product title fuzzy match)
regionstringNoMarket region code. Supported: US, GB, MX, ES, DE, IT, FR, ID, VN, MY, TH, PH, BR, JP, SG
categorystringNoCategory name in English, matched to TikTok category ID. Non-English should be translated first
shopTypeintegerNoShop type: 1=local shop, 2=cross-border shop

Boolean Filters

ParameterTypeRequiredDescription
isTopSellingbooleanNoFilter hot-selling products only
isNewListedbooleanNoFilter new products only
isSshopbooleanNoFilter TikTok fully-managed (S-shop) products only
isFreeShippingbooleanNoFilter free-shipping products only
isLocalWarehousebooleanNoFilter local warehouse products only

Range Filters

ParameterTypeRequiredDescription
unitsSoldRangeobjectNoSales volume range filter: {min, max}
commissionRateRangeobjectNoCommission rate range filter: {min, max}
creatorCountRangeobjectNoCreator/influencer count range filter: {min, max}

Sorting & Pagination

ParameterTypeRequiredDescription
orderFieldstringNoSort field: day7_units_sold, day7_gmv, commission_rate, total_units_sold, total_gmv, creator_count. Default: descending
pageintegerNoPage number, default 1
pageSizeintegerNoItems per page, max 10, default 10

Supported Markets (15)

US (United States), GB (United Kingdom), MX (Mexico), ES (Spain), DE (Germany), IT (Italy), FR (France), ID (Indonesia), VN (Vietnam), MY (Malaysia), TH (Thailand), PH (Philippines), BR (Brazil), JP (Japan), SG (Singapore)

API Usage

This tool calls the LinkFox tool gateway API. See references/api.md for calling conventions, request parameters, and response structure. You can also execute scripts/fastmoss_product_search.py directly to run queries.

Data Fields

Key fields returned for each product:

FieldDescription
titleProduct name
productIdUnique product identifier
regionMarket region code
price, minPrice, maxPriceProduct price and price range
currencyCurrency code
totalSaleCntTotal cumulative sales
totalSale1dCnt, totalSale7dCnt, totalSale28dCnt, totalSale90dCntSales by period
totalSaleGmvAmt, totalSaleGmv7dAmt, totalSaleGmv28dAmtGMV by period
totalVideoCnt, totalLiveCnt, totalIflCntVideo count, live count, influencer count
productCommissionRateCommission rate (decimal, 0.10 = 10%)
productRating, reviewCountRating and review count
skuCountNumber of SKUs
shopName, shopSellerId, shopTotalUnitsSoldShop information
isCrossBorder1=cross-border, 0=local
isSShopText, freeShippingTextFully-managed shop flag, free shipping flag
salesTrendFlagTextSales trend label
categoryNameProduct category
tiktokUrl, fastmossUrl, imageUrlLinks and image

Usage Examples

1. Basic Keyword Search — Find top-selling products

{
  "keyword": "phone case",
  "region": "US",
  "orderField": "total_units_sold",
  "pageSize": 10
}

2. High-Commission Product Discovery — Products with commission >= 10%

{
  "keyword": "beauty",
  "region": "US",
  "commissionRateRange": {"min": 0.10},
  "orderField": "commission_rate"
}

3. Cross-Border Shop Products — Filter by shop type

{
  "keyword": "gadget",
  "region": "US",
  "shopType": 2,
  "orderField": "day7_units_sold"
}

4. Influencer-Hot Products — Products promoted by many creators

{
  "keyword": "skincare",
  "region": "US",
  "creatorCountRange": {"min": 50},
  "orderField": "creator_count"
}

5. Hot-Selling New Products on TikTok

{
  "keyword": "fashion",
  "region": "GB",
  "isTopSelling": true,
  "isNewListed": true,
  "orderField": "day7_gmv"
}

Display Rules

1. Present data only: Show query results in organized tables with key columns — product name, price, total sales, 7-day sales, GMV, rating, commission rate, and number of promoting influencers. Do not make subjective business advice 2. Commission formatting: Commission rate is a decimal (0.10 = 10%) — always display as percentage for readability 3. Cross-border awareness: isCrossBorder: 1 = cross-border shop, 0 = local shop. Display clearly 4. Currency awareness: Include the currency field from the response when displaying prices and GMV 5. Trend labels: Display salesTrendFlagText directly as the trend indicator 6. Shop flags: Display freeShippingText and isSShopText directly (values are readable text) 7. Error handling: When a query fails, explain the reason based on the response and suggest adjusting parameters

Important Limitations

  • No required parameters (all optional), but at minimum provide keyword or category for meaningful results
  • Max 10 items per page

Applicable Scenarios

User SaysScenario
"Find trending products on TikTok"Keyword search sorted by sales
"TikTok products with high commission"Filter by commission rate range
"What's selling well on TikTok Shop US"Regional product search by sales
"Search TikTok cross-border shop products"Filter by shopType=2
"Which products have many influencers promoting them"Filter by creator count range
"TikTok fully-managed shop products"Filter with isSshop=true
"TikTok product research for Southeast Asia"Search specific SE Asian regions
"New hot-selling products on TikTok"Use isTopSelling + isNewListed flags
"FastMoss product data"Direct platform reference

Not Applicable Scenarios

  • TikTok influencer/creator analytics (follower counts, engagement rates of creators)
  • TikTok video performance analytics (views, likes, shares on specific videos)
  • TikTok advertising / ad campaign management
  • Amazon, Shopee, or other non-TikTok platform product data
  • TikTok Shop store-level analytics
  • Product listing creation or optimization advice
  • Logistics, fulfillment, or shipping analysis

Boundary judgment: When users say "product research" or "what should I sell on TikTok", if it involves searching and filtering products by sales data, pricing, or commission rates on TikTok Shop, then this skill applies. If they're asking about content strategy, video creation, or influencer outreach, it does not apply.

Feedback:

Auto-detect and report feedback via the Feedback API when any of the following apply: 1. The functionality or purpose described in this skill does not match actual behavior 2. The skill's results do not match the user's intent 3. The user expresses dissatisfaction or praise about this skill 4. Anything you believe could be improved

Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.

<!-- LF_LARGE_RESPONSE_BLOCK -->

Handling Large Responses

To avoid overflowing the agent context, persist the response to disk and extract only the fields you need:

python scripts/response_io.py run --script scripts/fastmoss_product_search.py --out-dir <DIR> '<params>'
python scripts/response_io.py read <file> --fields "<paths>"   # or --path "<JMESPath>"
Pick --out-dir outside any git working tree (e.g. /tmp/... on Unix, %TEMP%/... on Windows). Persisted responses may contain PII, pricing, or auth-sensitive data — do not commit them. Files are not auto-deleted; clean up when the task is done.

run writes the full response to a file and emits only a schema preview + file path. read projects specific fields, with --limit/--offset for slicing and --format json|jsonl|csv|table for output.

When to prefer this pattern — apply your judgment based on the response characteristics, e.g.:

  • High field count per record, or fields you don't need
  • Batch/paginated results (multiple items per call)
  • Long-text fields (descriptions, reviews, HTML, time series)
  • Output reused across later steps rather than consumed immediately

For small, single-use responses, calling the main script directly is fine.

⚠️ The preview is a truncated schema + sample, not the full data. Any field-level decision must read from the persisted file via read. <!-- /LF_LARGE_RESPONSE_BLOCK -->

--- For more high-quality, professional cross-border e-commerce skills, visit [LinkFox Skills](https://skill.linkfox.com/).

Related skills

Sales & Marketingecommercepricing

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.