CICreator Intelligence
US TikTok Beauty Intelligence
Data through 2026-08-05사용 가능
Winning Video Lab

인기 영상은 왜 잘됐을까?

단순 조회수뿐 아니라 크리에이터 본인의 평소 조회수 대비 성과와 카테고리·규모별 순위를 함께 봅니다.

이 화면을 API로 구현하기현재 화면이 호출하는 엔드포인트와 적용 중인 파라미터입니다.2개 호출
GET/v1/trends/catalog

analysis_field_catalog 기준의 1차·하위 카테고리 필터를 조회합니다.

이 호출에는 쿼리 파라미터가 없습니다.

주요 응답dimension_type, value_key, display_name, mapped_video_count
cURL 예시
curl --get --request GET "$AGENT_API_BASE_URL/v1/trends/catalog"
JavaScript 예시
const url = new URL("/v1/trends/catalog", process.env.AGENT_API_BASE_URL);
url.search = new URLSearchParams({}).toString();
const response = await fetch(url, { method: "GET" });
const data = await response.json();
GET/v1/videos/benchmarks

카테고리·티어 안에서 조회수, 평소 대비, 참여율 또는 관측 GMV 상위 영상을 조회합니다.

파라미터현재 값설명
period_days30점수와 집계를 계산할 누적 분석 기간입니다. 7·30·60·90일을 사용합니다.
primary_categorybeautyanalysis_field_catalog의 활성 1차 카테고리 키입니다. 복수값은 쉼표로 구분하며 같은 항목 안에서는 OR입니다.
sub_categoryoral-careanalysis_field_catalog의 활성 하위 카테고리 키입니다. 복수값은 쉼표로 구분하며 선택한 1차 카테고리 중 하나에 속해야 합니다.
sortoutlier서버가 필터 전체 결과에 먼저 적용한 뒤 페이지를 나누는 정렬 기준입니다. 누락값은 마지막에 배치합니다.
start00부터 시작하는 페이지 오프셋입니다.
limit48한 번에 반환할 최대 항목 수입니다. 엔드포인트별 최대값을 OpenAPI에서 확인하세요.
주요 응답outlier_index, view_percentile, outlier_percentile, analysis_facets, sample_count, confidence
cURL 예시
curl --get --request GET "$AGENT_API_BASE_URL/v1/videos/benchmarks" \
  --data-urlencode "period_days=30" \
  --data-urlencode "primary_category=beauty" \
  --data-urlencode "sub_category=oral-care" \
  --data-urlencode "sort=outlier" \
  --data-urlencode "start=0" \
  --data-urlencode "limit=48"
JavaScript 예시
const url = new URL("/v1/videos/benchmarks", process.env.AGENT_API_BASE_URL);
url.search = new URLSearchParams({
  "period_days": 30,
  "primary_category": "beauty",
  "sub_category": "oral-care",
  "sort": "outlier",
  "start": 0,
  "limit": 48
}).toString();
const response = await fetch(url, { method: "GET" });
const data = await response.json();
지표 도움말평소 대비
?
평소 대비 성과

영상 조회수를 해당 크리에이터의 같은 기간 영상 중앙 조회수로 나눈 배수입니다.

계산
영상 조회수 ÷ 크리에이터의 동일 기간 중앙 조회수
활용
1배보다 크면 평소보다 높은 조회 성과이며, 규모가 다른 크리에이터의 이례적 성과를 찾는 데 사용합니다.
주의
기준 영상이 3개 미만이면 변동이 크므로 confidence와 표본 수를 함께 확인해야 합니다.
API 필드
outlier_index, creator_median_views, creator_baseline_video_count
카테고리·티어 백분위
?
카테고리·티어 백분위

같은 분석 기간·하위 카테고리·팔로워 티어 안에서 영상 성과의 상대 위치입니다.

활용
95백분위는 비교 집단 영상 중 상위 약 5% 수준이라는 의미입니다.
주의
플랫폼 전체 영상이 아니라 수집·분석된 비교 표본 기준이며 판매 성과를 의미하지 않습니다.
API 필드
view_percentile, outlier_percentile, sample_count
참여율
?
참여율

조회수 대비 좋아요·댓글·공유 반응의 비율입니다.

활용
조회량과 함께 보면 단순 노출과 실제 반응을 구분할 수 있습니다.
주의
저장 수는 현재 커버리지가 낮아 핵심 계산에서 제외합니다.
API 필드
engagement_rate
GMV 관측
?
GMV 관측 신호

일부 수집 영상에서만 확인된 commerce 신호입니다.

활용
관측 범위와 source_bias를 함께 확인하는 제한 지표입니다.
주의
상품 전체 판매량, 크리에이터 기여 매출 또는 검증된 ROAS가 아닙니다.
API 필드
observed_gmv, observed_video_count, coverage_ratio
표본·기준일
?
데이터 신뢰 정보

점수의 표본, 커버리지, 출처, 기준일과 제한사항을 함께 전달합니다.

활용
score만 사용하지 말고 confidence, sample_count, coverage_ratio, data_through를 함께 저장하고 표시하세요.
주의
available은 원천이 최신이라는 뜻과 같지 않습니다. freshness_status를 별도로 확인해야 합니다.
API 필드
confidence, sample_count, coverage_ratio, data_source, data_through, limitations
수치 범위 필터
‘평소 대비’는 해당 크리에이터의 같은 기간 영상 중앙 조회수와 비교합니다.

관측 GMV가 없는 영상을 0으로 보지 않으며, 관측 GMV는 실제 전체 판매량이나 영상의 판매 기여도를 뜻하지 않습니다.

@ZevoOral Care · micro
평소 대비109.5배
조회수43.8만
참여율0.5%
bokaOral CareDiscount MentionPerformance Claim

why did y’all gatekeep Boka from me?? || credit: jack neel x MasterEverydayLiving x TwinkleReviews x santa cruz x blakeguss || Original Content || AI in USE || FAIR USE / TRANSFORMATIVE USE NOTICE: This video may include short excerpts of third-party audio/video used for commentary, criticism, review, education, and/or product demonstration in a transformative manner (e.g., editing, sequencing, juxtaposition, captions, and added context). All rights in referenced clips remain with their respective owners. This content is not a substitute for the original works and is intended to add new meaning or message. All trademarks, names, and logos are the property of their respective owners and are used only to identify the subjects discussed (nominative use). No affiliation, sponsorship, or endorsement by any original creator, brand, or platform is implied. If you are a rights holder and believe any material is used improperly, please contact us for prompt credit, replacement, or removal. || #HydroxyapatiteToothpaste #FluorideFreeToothpaste #NanoHydroxyapatite #RemineralizeTeeth #OralCareTips

아웃라이어 100백분위관측 GMV $2,254
@samjeffhopOral Care · mid
평소 대비49.3배
조회수47만
참여율0.7%
dr.dentOral CarePerformance ClaimColor Payoff

분석 근거 영상

아웃라이어 100백분위GMV 미관측
@MarielayrobertoOral Care · macro
평소 대비33.3배
조회수9.4만
참여율0.9%
Oral CareBrightening ClaimBrighteningReview

분석 근거 영상

아웃라이어 100백분위관측 GMV $367
@Mona B.Oral Care · mid
평소 대비31.3배
조회수5.7만
참여율0.2%
bokamouthologyOral CareIngredient Claim

Replying to @libbyb3ll411❌️ what you need to know about nano hydroxyapetite toothpastes #nanohydroxyapetite #oralhygiene #dentalcare #cavityfree

아웃라이어 98백분위관측 GMV $301
@SteffOral Care · nano
평소 대비15.9배
조회수2.6천
참여율0.3%
flashwaterOral CareIngredient ClaimPerformance Claim

I needed this #flashwater #mouthwash

아웃라이어 100백분위관측 GMV $18
평소 대비12.5배
조회수1.4천
참여율0.3%
dr. dentOral CarePerformance ClaimPrice Mention

Sending mine back…#drdent #mouthwash #purplemouthwash disclaimer: this is my experience. Results may vary.

아웃라이어 96백분위관측 GMV $60
@theraysfindsOral Care · micro
평소 대비11.8배
조회수9.2천
참여율0.6%
dr. dentOral CarePerformance ClaimPrice Mention

wow, can’t believe how fast that worked

아웃라이어 99백분위관측 GMV $120
@Josh MorrisOral Care · mid
평소 대비10.1배
조회수4.7천
참여율1.2%
dr. dentOral CareDiscount MentionIngredient Claim

This is viral for a reason #teethwhitening #drdent #purplemouthwash #mouthwash

아웃라이어 94백분위관측 GMV $90
@HumblemenailsOral Care · macro
평소 대비9.0배
조회수1.3만
참여율0.6%
dr.dentOral CarePerformance ClaimGlow Finish

Girl this was like night and day #tiktokshopcreatorpicks #teethwhitening

아웃라이어 83백분위관측 GMV $210
@TreyfindsssOral Care · micro
평소 대비7.0배
조회수5.1천
참여율0.1%
dr. danOral CareIngredient ClaimPerformance Claim

Main reason why I’m returning them

아웃라이어 99백분위관측 GMV $105
@Lopeztips 📲Oral Care · mega
평소 대비6.2배
조회수47.6만
참여율0.5%
geelikenhap-proOral CareIngredient Claim

La verdad mis dientes si quedaron blancos ❤️ #dientesblancos #teethwhiteningstrips #teethwhitening #whitestrips #dientes

아웃라이어 100백분위관측 GMV $2,514
@Steph VOral Care · mid
평소 대비5.9배
조회수9천
참여율0.1%
Oral CarePerformance ClaimReviewBefore After

Get whiter teeth without sensitivity? Teeth whitening strips that are safe for sensitive teeth? I’ve tried so many and have truly not seen much of a difference. I do want whiter teeth and, as a result, I was influenced to buy these. Gotta say, I was pleasantly surprised. #drdent #whiteningstrips #teethwhitening #teethwhiteningstrips #dentaltok

아웃라이어 92백분위관측 GMV $105
@licklebubbaOral Care · micro
평소 대비5.0배
조회수1.9만
참여율0.4%
dr. dentOral CarePerformance ClaimPrice Mention

No lo puedo creer 😳

아웃라이어 98백분위관측 GMV $90
@ThomasOral Care · micro
평소 대비3.5배
조회수6.4천
참여율0.9%
apadenthismileOral CareIngredient Claim

Why does Japan do everything better ? Please consult with your pcp This is not medical advice Results may vary

아웃라이어 98백분위관측 GMV $60
@akwellness1Oral Care · micro
평소 대비2.9배
조회수9.2천
참여율0.1%
oral-bOral CarePerformance ClaimTutorial

i was not expecting all that😭 #teethwhitening #yellowteeth #smoking #viral

아웃라이어 97백분위GMV 미관측
@Crystal 🍒Oral Care · micro
평소 대비2.6배
조회수1.1만
참여율0.4%
Oral CarePerformance ClaimTexture ImprovementTutorial

Expanding floss for the cleanest feeling mouth and gums 🥰 #expandingfloss #oralhealth #freshbreath #flossing

아웃라이어 96백분위GMV 미관측
@jsnyouOral Care · micro
평소 대비2.6배
조회수2.2만
참여율0.3%
hismileOral CarePerformance ClaimPrice Mention

I was surprised its so instant!! #teethwhitening #hismile

아웃라이어 96백분위관측 GMV $58
@KS ChewsOral Care · micro
평소 대비2.5배
조회수1만
참여율0.4%
nathan & sonsOral CareIngredient ClaimPerformance Claim

Replying to @emma.smith258 I'm glad you think that #underbrush #fyp #trendingvideo #madeinusa

아웃라이어 95백분위GMV 미관측
@tn_nee_neeOral Care · micro
평소 대비2.4배
조회수1.3천
참여율0.3%
nobsOral CareIngredient ClaimPerformance Claim

@NOBS Routines has done it again with their expandable floss that is multi-strand and contains Black Seed Oil and Eucalyptus for a healthy oral care approach. #oralcareroutine #dentalfloss #dentalcare #TikTokshopcreatorpicks #tiktokshopsummerpicks

아웃라이어 95백분위관측 GMV $24
@ZevoOral Care · micro
평소 대비2.4배
조회수9.5천
참여율0.2%
bokaOral CareIngredient ClaimPerformance Claim

y’all really kept Boka a secret huh 😭 || credit: santa cruz x blakeguss || Original Content || AI in USE || FAIR USE / TRANSFORMATIVE USE NOTICE: This video may include short excerpts of third-party audio/video used for commentary, criticism, review, education, and/or product demonstration in a transformative manner (e.g., editing, sequencing, juxtaposition, captions, and added context). All rights in referenced clips remain with their respective owners. This content is not a substitute for the original works and is intended to add new meaning or message. All trademarks, names, and logos are the property of their respective owners and are used only to identify the subjects discussed (nominative use). No affiliation, sponsorship, or endorsement by any original creator, brand, or platform is implied. If you are a rights holder and believe any material is used improperly, please contact us for prompt credit, replacement, or removal. || #HydroxyapatiteToothpaste #FluorideFreeToothpaste #NanoHydroxyapatite #RemineralizeTeeth #OralCareTips

아웃라이어 94백분위관측 GMV $93
@DEX D FILMSOral Care · nano
평소 대비2.3배
조회수1.3천
참여율0.2%
Oral CarePerformance ClaimPrice MentionEasy Application

Definitely recommend this! #fyp #ceelikeprobioticoralspray #mouthspray #tiktokshopcreatorpicks #ceelike

아웃라이어 99백분위관측 GMV $28
@Sasha KuznetsovOral Care · mid
평소 대비2.2배
조회수1.4만
참여율0.3%
dr. dentOral CareDiscount MentionPrice Mention

These purple mouthwash sticks work incredibly well, if you haven’t tried them yet, give them a go while they’re on sale! #mouthwash #drdent #yellowteeth #purplemouthwash #freshbreath

아웃라이어 90백분위관측 GMV $300
@HealthHerb SecretsOral Care · nano
평소 대비2.0배
조회수1.4천
참여율1.0%
amzarjyvwoupiHair Care

Si tienes los dientes amarillos a lo loco, escucha esto — WOUP Purple Whitening Toothpaste ¡funciona de verdad! #shampoo#WOUP #beautytips#hairgrowthtips#usa

아웃라이어 98백분위GMV 미관측
@Deals By IsaacOral Care · nano
평소 대비2.0배
조회수1.7천
참여율0.2%
Oral CarePerformance ClaimEasy ApplicationReview

secret to fresh breath #tonguescraper #freshbreath #gurunanda #summerwins #tiktokshopcreatorpicks @GuruNanda LLC

아웃라이어 98백분위관측 GMV $20
@theshopntwrkOral Care · micro
평소 대비2.0배
조회수4.6만
참여율0.3%
hismileOral CarePerformance ClaimPrice Mention

DISGUSTING 🤢 #mouthwash #hismile

아웃라이어 93백분위관측 GMV $240
@Yaivis DelgadoOral Care · micro
평소 대비1.9배
조회수850
참여율0.8%
Oral CarePrice MentionValue ClaimValue For Money

Una vez que los utilices serán imprescindibles para ti #tiktokshopcreatorpicks #cepillodedientes #paratiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii #higienebucal #fyp

아웃라이어 93백분위관측 GMV $30
@bekah | TTS mom findsOral Care · nano
평소 대비1.8배
조회수960
참여율0.4%
biomOral CareIngredient ClaimPerformance Claim

🪥🦷 #nobstoothpaste #kidsteeth #kidsoralcare #momfind #kidstoothpaste

아웃라이어 97백분위관측 GMV $46
@Maria’sFindsOral Care · nano
평소 대비1.8배
조회수2.5천
참여율1.2%
zeniaOral CarePersonal CareDiscount Mention

Miswak toothbrush #Toothbrush #SensitiveTeeth #TeethWhitening

아웃라이어 96백분위관측 GMV $40
@DaaavidDealsOral Care · nano
평소 대비1.8배
조회수1.8천
참여율0.2%
dr. dentOral CareEasy ApplicationTutorial

I did NOT expect that… #drdent #whiteteeth #purplemouthwash

아웃라이어 95백분위관측 GMV $60
@Ålek 🥥Oral Care · nano
평소 대비1.8배
조회수289
참여율2.8%
zatviosOral CarePerformance ClaimReview

Sometimes a mouth isn’t the greatest for some of us and other times other will love it. Unfortunately for me this mouthwash wasn’t for me. It left a bad aftertaste and a tingly feeling on my tongue for hours. So if some of you like your mouth to feel free and a bit tingly then give this mouthwash a try. #mouthwash #alcholfreemouthwash #zatvious #tiktokshop

아웃라이어 94백분위GMV 미관측
@ChristianOral Care · micro
평소 대비1.8배
조회수5.3천
참여율0.2%
ceelikeOral CareIngredient ClaimBrightening

Replying to @Cavity monsters I wasn’t expecting that 🫣 #teethwhitening #ceelike

아웃라이어 92백분위관측 GMV $121
@gwinnspicksOral Care · nano
평소 대비1.8배
조회수791
참여율0.1%
dr. dentOral CareBrightening ClaimIngredient Claim

we’re obsessed with these

아웃라이어 93백분위관측 GMV $70
@yunisa.madridOral Care · micro
평소 대비1.8배
조회수5.5천
참여율0.2%
Oral CareTutorialTool UsageOther

You’re just housing bacteria in your mouth. #bitvae #oralcare

아웃라이어 92백분위관측 GMV $85
@deluludnichole31Oral Care · micro
평소 대비1.8배
조회수1.9천
참여율0.2%
Oral CarePerformance ClaimBrighteningStorytelling

Hydroxyapatite toothpaste has changed my teeth!! #hydroxyapatitetoothpaste

아웃라이어 91백분위관측 GMV $46
평소 대비1.7배
조회수1.5천
참여율1.6%
nobs jr.Oral CareIngredient ClaimTutorial

La pasta de dientes que elegí para empezar a cepillar a mi bebé sin flour cuida el esmalte su fórmula es suave #pastadedientes #nobs #nobstoothpaste #babys #mom

아웃라이어 88백분위관측 GMV $46
@jeffreypatterson1581Oral Care · nano
평소 대비1.7배
조회수4.6천
참여율0.2%
let's smileOral CarePerformance ClaimPrice Mention

Wonderful deal😆#tiktokmademebuyit #youneedthis #fyp #shipping #tiktokshop

아웃라이어 93백분위관측 GMV $34
@BehappynsmilerdhOral Care · nano
평소 대비1.7배
조회수1.9천
참여율0.6%
Oral CarePerformance ClaimTexture ImprovementVisual

Once you see what the black floss picks up, there's no going back. 👀

아웃라이어 92백분위관측 GMV $35
@𝘮𝘰𝘤𝘩𝘪Oral Care · nano
평소 대비1.7배
조회수4.2천
참여율0.1%
beamachOral CarePerformance ClaimPrice Mention

#tooth #fyp #oralhealth #TikTokShop #whitening

아웃라이어 91백분위관측 GMV $38
@ZilldealsOral Care · nano
평소 대비1.7배
조회수1.8천
참여율0.4%
Oral CarePerformance ClaimBrighteningReview

#transformation #backtoschool #summerwins #teethwhitening #looksmaxing

아웃라이어 90백분위관측 GMV $60
@andrewchewsOral Care · mid
평소 대비1.7배
조회수1.3만
참여율0.3%
underbrushwrigley'sOral CareIngredient Claim

Replying to @Golf Hub You actually get 4 packs of gum (at least 72 pieces) in every order. Chew with PURPOSE. #gum #madeintheusa #smallbusiness

아웃라이어 87백분위관측 GMV $540
@Chris RbsnOral Care · nano
평소 대비1.7배
조회수789
참여율0.1%
dr.dentOral CarePerformance ClaimGlow Finish

#teethwhitening #whiteningmouthwash #whiteteeth

아웃라이어 89백분위GMV 미관측
@DammyShopsOral Care · nano
평소 대비1.7배
조회수2.1천
참여율0.6%
Oral CarePerformance ClaimSoothing ClaimBrightening

Huge difference after just one use🙌🏼 #teethwhiteningstrips #teethwhitening #drdent #whiterteeth #nicesmile

아웃라이어 89백분위관측 GMV $105
@Patrick’s PicksOral Care · mid
평소 대비1.6배
조회수7.3천
참여율0.3%
msdrwikeyOral CareIngredient ClaimPerformance Claim

WHY THE FOCK AM I RETURNING THIS TOOTHPASTE ?? I promise I have a legit reason. #teethwhitening #dental #toothpaste

아웃라이어 85백분위관측 GMV $108
@Underbrush JoshOral Care · micro
평소 대비1.6배
조회수1만
참여율0.5%
underbrushOral CareIngredient ClaimStorytelling

Replying to @Language_with_Purpose #remineralization #remineralizinggum #hydroxyapatite #oralcare

아웃라이어 91백분위관측 GMV $405
@Reyes MTZ 🪬Oral Care · micro
평소 대비1.6배
조회수4.4천
참여율0.1%
hismileOral CarePerformance ClaimBrightening

Lleva tu rutina de cuidado bucal al siguiente nivel con este enjuague de uso diario que ayuda a mantener una sonrisa más brillante y un aliento fresco. ✨🦷 #TikTokShop #HiSmile #OralCare #TeethCare #FreshBreath

아웃라이어 90백분위관측 GMV $60
@spherevoiceOral Care · mid
평소 대비1.6배
조회수8천
참여율1.0%
Oral CareDiscount MentionPerformance ClaimPrice Mention

Do them a favor 😭#badbreath #breathspray #ceelike

아웃라이어 83백분위관측 GMV $84
@Heather || Mama x3Oral Care · micro
평소 대비1.6배
조회수2.2천
참여율0.3%
nobsOral CarePerformance ClaimValue Claim

@NOBS Routines has been holding out on us #nobstoothpaste #nobs #hydroxyapatitetoothpaste #toothpastetablets #tiktokshopcreatorpicks

아웃라이어 89백분위관측 GMV $115
@Chris RbsnOral Care · nano
평소 대비1.6배
조회수736
참여율0.7%
dr. dentOral CarePerformance ClaimEasy Application

Yellow + purple = white 🦷✨ #teethwhitening #whiteningmouthwash #whiteteeth

아웃라이어 88백분위GMV 미관측