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_categorypersonal-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=personal-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": "personal-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는 실제 전체 판매량이나 영상의 판매 기여도를 뜻하지 않습니다.

@ttshopfrozonePersonal Care · micro
평소 대비624.2배
조회수230만
참여율1.7%
cvs healtheucerinPersonal CarePerformance Claim

#tongue #tonguescraper #tonguescraping #badbreath #oralhygiene #rakai #plaqueboymax

아웃라이어 100백분위GMV 미관측
@livPersonal Care · nano
평소 대비563.3배
조회수1.4만
참여율0.1%
liquid i.v.Personal CareDiscount MentionPerformance Claim

So good! #tiktokshopcreatorpicks

아웃라이어 100백분위GMV 미관측
@brutal realityPersonal Care · nano
평소 대비436.5배
조회수57.6만
참여율1.0%
gurunandaPersonal CarePerformance ClaimValue For Money

#kaicenat #looksmax #ascension #fyp

아웃라이어 100백분위관측 GMV $809
@Dr. Rox Holistic HealthPersonal Care · micro
평소 대비238.2배
조회수13.8만
참여율0.3%
happy vPersonal CareIngredient ClaimPerformance Claim

@Happy V #probioticsforwomen #femininewash #odor #HappyV #femininehealth

아웃라이어 100백분위GMV 미관측
@mikePersonal Care · mid
평소 대비198.6배
조회수53.6만
참여율0.4%
gopurePersonal CareSkincarePerformance Claim

Replying to @Gorgeous Brownie |TTS Affili🤎 it takes consistency but I love hearing everyone’s testimonials! So happy it helped you #stretchmarks #looseskin #rapidweightloss #skintightening #skincare

아웃라이어 100백분위GMV 미관측
@livPersonal Care · nano
평소 대비188.3배
조회수4.6천
참여율0.2%
liquid i.v.Personal CareDiscount MentionValue For Money

Awesome deal #tiktokshopcreatorpicks

아웃라이어 100백분위GMV 미관측
@alanavibesPersonal Care · micro
평소 대비95.9배
조회수1.2천
참여율0.2%
her fantasy boxPersonal CarePerformance ClaimEasy Application

Every clean girl needs a feminine routine 🌸 #herfantasybox #yoniwash #howtosmellgoodallday #femininehygiene #selfcareproductsmusthaves

아웃라이어 100백분위관측 GMV $160
@Evan BarlowPersonal Care · mid
평소 대비65.5배
조회수9.1만
참여율0.3%
bokaPersonal CareIngredient ClaimPerformance Claim

Your teeth are made of hydroxyapatite… so why not brush with it? 🦷✨ Switch up your routine with Boka. #Boka #NanoHydroxyapatite #HealthySmile #OralCare #TikTokMadeMeBuyIt

아웃라이어 100백분위관측 GMV $93
평소 대비40.6배
조회수4.4만
참여율0.2%
toplux nutritionPersonal CarePerformance ClaimSoothing

Replying to @Teresa🇲🇽Garcia🇲🇽 No pierdas tu dinero comprando el falso! Aquí te enseño como conseguir el original. 🥺🙏 #tiktokshopcreatorpicks #bloating #magnesium #magnesiumcomplex #over40

아웃라이어 100백분위관측 GMV $60
@Cinthia GracastPersonal Care · mega
평소 대비25.6배
조회수8.6만
참여율3.9%
lactomediPersonal CarePerformance ClaimSoothing

El que todas las girls necesitamos ✨ #chismesito

아웃라이어 100백분위관측 GMV $648
@Just BrandiPersonal Care · mid
평소 대비20.9배
조회수57.6만
참여율1.9%
the earnest oilPersonal CareSkincarePerformance Claim

Them: How can I get this boil to finally pop?#skincareroutine #boils #hidradenitissuppurativaawareness

아웃라이어 99백분위GMV 미관측
@DzshopssPersonal Care · micro
평소 대비20.1배
조회수49.1만
참여율0.6%
dr. melaxinBath & BodyPersonal CareBrightening Claim

#darkspots #hyperpigmentation #skincare #peelshot

아웃라이어 99백분위GMV 미관측
@ShamelaPersonal Care · mid
평소 대비17.5배
조회수1.8만
참여율0.8%
Personal CarePerformance ClaimPrice MentionEasy Application

HSIA Seraphina Air Light Breathable Sheer Mesh Halter Bra Plus Size Summer Unlined Full Coverage Bra Underwire Support

아웃라이어 99백분위관측 GMV $58
@meliss xoPersonal Care · micro
평소 대비17.4배
조회수696
참여율1.0%
Personal CareValue ClaimValue For MoneyReview

Replying to @Mei Creates the perfect everyday go-to summer bag — nylon bowler bag! Look at the prints they’re so cute #nylonbag #everydaybag #bowlerbag #casualbag #cutebag

아웃라이어 99백분위관측 GMV $8
@IRINA OCORÓPersonal Care · nano
평소 대비16.8배
조회수9.3천
참여율0.4%
selerbPersonal CareIngredient ClaimPerformance Claim

Habías escuchado del óxido nitrico? ## experiencia personal esto no es consejo médico. Los resultados pueden variar según cada persona #selerb #selerbnad #oxidonitrico #prostata #saludmasculina

아웃라이어 99백분위관측 GMV $276
평소 대비14.5배
조회수812
참여율1.7%
pronuvelPersonal CareSkincarePerformance Claim

Respuesta a @Angel Velasquez Crema para.manos maltratadas. . #prequel #tiktokshopsummersale #hands #karol504shop #manos

아웃라이어 99백분위관측 GMV $21
@armiglowPersonal Care · nano
평소 대비13.7배
조회수13.4만
참여율21.9%
Personal CareSkincareAcne Care ClaimAcne Care

Is Venus K-Beauty the move? #venuskbeauty #venusskin #koreanskincare #skintips #venusapp

아웃라이어 99백분위GMV 미관측
평소 대비12.0배
조회수10.1만
참여율1.6%
trulieBath & BodyPersonal CarePerformance Claim

Me encanta 🌸🌸💕✨ el kit perfecto ❤️❤️✨💕🫶🏻

아웃라이어 98백분위관측 GMV $1,272
평소 대비12.0배
조회수1.3만
참여율0.2%
toplux nutritionPersonal CarePerformance ClaimStorytelling

Replying to @Sergio Rodriguez No pierdas tu dinero comprando el falso! Aquí te enseño como conseguir el original de Toplux! 🥺🙏 #tiktokshopcreatorpicks #womenshealth #magnesium #magnesiumsupplement #over40

아웃라이어 99백분위GMV 미관측
@Jachai TaylorPersonal Care · macro
평소 대비11.8배
조회수5.3천
참여율0.2%
goliPersonal CareIngredient ClaimPrice Mention

Take care of your gut & the rest of your body will shine 😁 #debloat #tiktokshopsummersale #goligummies #applecidervinegargummies

아웃라이어 100백분위관측 GMV $160
@kashgotdealsPersonal Care · nano
평소 대비9.0배
조회수1.9만
참여율0.4%
aberliteGrooming & ShavingPersonal CareIngredient Claim

The dryness always bothered me but no more! #menshealth #menshygiene #menshygienetips

아웃라이어 99백분위관측 GMV $180
@JosiahPersonal Care · micro
평소 대비8.9배
조회수1만
참여율0.2%
dr. dentPersonal CarePerformance ClaimBrightening

Discount Applied in the Orange Cart Above ❗️👆

아웃라이어 99백분위관측 GMV $210
@DzshopssPersonal Care · micro
평소 대비8.8배
조회수21.5만
참여율0.4%
some by miPersonal CareSkincareAcne Care Claim

#skincare #pimples #acne

아웃라이어 99백분위GMV 미관측
@CreakzzzPersonal Care · micro
평소 대비8.2배
조회수9.4천
참여율0.5%
dr.dentPersonal CarePerformance ClaimSoothing Claim

Purple cancels the yellow #drdent #mouthwash #purplemouthwash #yellowteeth #stainedteeth

아웃라이어 99백분위관측 GMV $180
@HannahKrustyKrabPersonal Care · nano
평소 대비7.6배
조회수673
참여율0.1%
ceravePersonal CarePerformance ClaimTutorial

I’ll never go back to hand washing my contact lenses after trying this 🤯 #ContactLensHack #UltrasonicContactCleaner #BeautyMustHave #travelessentials

아웃라이어 99백분위관측 GMV $19
@akwellness1Personal Care · micro
평소 대비7.4배
조회수2.3만
참여율0.4%
Personal CareStorytellingBefore AfterFace Application

분석 근거 영상

아웃라이어 98백분위GMV 미관측
@່Personal Care · mid
평소 대비7.1배
조회수4천
참여율0.8%
Personal CarePerformance ClaimSoothingReview

This is the best due for a healthy PH LADIES 😍 #leefar #phbalance #femininehealth #hygieneproducts

아웃라이어 98백분위GMV 미관측
@🔍Real Finds By MaryPersonal Care · nano
평소 대비6.7배
조회수9.7천
참여율2.3%
ceravemedikubemeducreamPersonal Care

#Diapercream #fyp #Desitin #skincareroutine #zinc

아웃라이어 98백분위GMV 미관측
@RecomiendaLizPersonal Care · mid
평소 대비6.4배
조회수1.3만
참여율0.6%
doctor dPersonal CareBrightening ClaimBrightening

Lo necesita mas que yo 🙌🏼🙌🏼 #drdent #dientesblancos #enjuaguebucal #teethwhitening

아웃라이어 97백분위관측 GMV $210
@EchoPersonal Care · micro
평소 대비6.4배
조회수3.1천
참여율0.1%
Beauty Tools & DevicesPersonal CarePerformance ClaimPrice Mention

I saved $960 / yr with this under $20 product and I like the results MORE #shaving #electricrazor #bikinitrimmer #bikinirazor #razorburn

아웃라이어 98백분위GMV 미관측
@Beth Recomienda🛍️Personal Care · micro
평소 대비6.0배
조회수7.8천
참여율0.9%
vitafusionPersonal CareIngredient ClaimPrice Mention

#TikTokShopCreatorPicks #summerwins #summerdeals

아웃라이어 98백분위GMV 미관측
@mysterypackfindsPersonal Care · micro
평소 대비5.8배
조회수1.1만
참여율0.1%
boom boomPersonal CarePerformance ClaimEasy Application

BoomBoom popped off with these🤯

아웃라이어 98백분위관측 GMV $45
@⚡️𝕶𝖆𝖙⚡️Personal Care · nano
평소 대비5.7배
조회수6.9만
참여율0.5%
Personal CareSkincarePerformance ClaimTexture Improvement

No bc WTF?! 😳 #hairygirl #hairremovalhack #hairy #cyperusrotundusoil #fyp

아웃라이어 98백분위관측 GMV $930
@finds4ttPersonal Care · nano
평소 대비5.6배
조회수7.4천
참여율0.2%
some by miPersonal CareSkincareAcne Care Claim

Thank God I Took Action #somebymi #headtotoeglow

아웃라이어 98백분위관측 GMV $196
@LacyPersonal Care · micro
평소 대비5.3배
조회수1.1만
참여율0.2%
ceravePersonal CareSkincareIngredient Claim

After trying everything and being sick for nothing .. #hidradenitissuppurativaawareness #cysticacne #boils #salicylic #tiktokshopcreatorpicks

아웃라이어 98백분위관측 GMV $45
@Rachel 💖Personal Care · micro
평소 대비5.0배
조회수6.2천
참여율0.1%
thigh societyPersonal CarePerformance ClaimValue Claim

#TikTokShopCreatorPicks #TikTokShopSummerTurnUp #SummerWins #TikTokShopSummerSale

아웃라이어 98백분위관측 GMV $0
@VENNESSIA ESTRADA🪼Personal Care · micro
평소 대비4.7배
조회수2.4천
참여율0.2%
rittnomixPersonal CarePerformance ClaimAcne Care

#teatreeoil #footspray #luxehideempoewe #pies #olordepies @Luxe Hide Empoewe

아웃라이어 98백분위관측 GMV $24
@Amber MariePersonal Care · mid
평소 대비4.4배
조회수1만
참여율1.2%
harry'sBath & BodyPersonal CareIngredient Claim

I do love the way the cold plunge body wash feels tho 😏 #harrysbodywash #bodywash #coldplungebodywash #soap #liquidsoap

아웃라이어 97백분위GMV 미관측
평소 대비4.3배
조회수3.1만
참여율1.4%
dr.dentPersonal CarePerformance ClaimColor Payoff

watch me glow up in 30 seconds!!✨🔥 #whitening #whiteteeth #tiktokshop #dealsforyoudays #teethwhitening

아웃라이어 98백분위GMV 미관측
@WhoIsJohnPersonal Care · micro
평소 대비4.1배
조회수6.6천
참여율0.2%
hismilePersonal CarePerformance ClaimBrightening

The difference is crazy ngl..😳 @Hismile US #hismile #teethwhitening #oralhealth

아웃라이어 97백분위관측 GMV $116
@dealzferdaysPersonal Care · nano
평소 대비4.0배
조회수3.1천
참여율0.1%
carpePersonal CareIngredient ClaimPerformance Claim

i can’t stand it anymore either #menscare #deodorant

아웃라이어 98백분위관측 GMV $75
@Lilia FNP Educación de SaludPersonal Care · micro
평소 대비3.9배
조회수1.3만
참여율0.3%
topline nutritionPersonal CareIngredient ClaimSoothing

¿Tu cuerpo te está mandando señales y no sabías qué significaban? Como Family Nurse Practitioner te explico qué tipo de magnesio necesitas según tus síntomas. El enlace está abajo — están de oferta y se están agotando rápido. 👇 #magnesio#magnesiocomplex#perimenopausia#liliafnp #¿Tu cuerpo te está mandando señales y no sabías qué significaban? Como Family Nurse Practitioner te explico qué tipo de magnesio necesitas según tus síntomas. El enlace está abajo — están de oferta y se están agotando rápido. 👇 #magnesio Not medical advice. These statements have not been evaluated by the FDA.This product is not intended to diagnose, treat, cure, or prevent any disease. Always do your own research. Results may vary. Not medical advice. These statements have not been eva luated by the FDA.This product is not intended to diagnose, treat, cure, or prevent any disease. Always do your own research. Results may vary. @Toplux Nutrition

아웃라이어 97백분위관측 GMV $240
@Mafer AraujoPersonal Care · mid
평소 대비3.7배
조회수1만
참여율0.2%
medicubePersonal CareSkincareIngredient Claim

Y encima huele como si tuvieras perfume de vainilla 😮‍💨 #medicube #deodorant #koreandeodorant #koreanskincare #tiktokshopsummersale

아웃라이어 96백분위GMV 미관측
@krayrinaPersonal Care · nano
평소 대비3.7배
조회수2.1천
참여율0.6%
osdPersonal CareStorytellingHands On Application

If you can smell it so can we #dealsforyoudays #summerwins #tiktokshopdealsforyoudays #tiktokshopsummersale

아웃라이어 98백분위관측 GMV $219
@Jey Te RecomiendaPersonal Care · nano
평소 대비3.6배
조회수1.9천
참여율0.1%
aberlitePersonal CareSkincarePerformance Claim

#tiktokshopmademebuyit #menshealth #personalhygiene #personalcare #tiktokshopsummersale

아웃라이어 97백분위관측 GMV $40
@corarecomiendaPersonal Care · nano
평소 대비3.4배
조회수1.7천
참여율0.8%
Personal CareDiscount MentionPerformance ClaimPrice Mention

Todo lo que necesitas para el cuidado diario de tu zona íntima ✨El limpiador ayuda a limpiar suavemente y mantener el equilibrio del pH. ✨Los probióticos apoyan una flora vaginal saludable. ✨Los óvulos ayudan a mantener el equilibrio cuando más lo necesitas. #OPositiv #Cuidadolntimo #SaludFemenina #dealsforyoudays #bienestarfemenino @O Positiv

아웃라이어 97백분위관측 GMV $146
@jah✰Personal Care · mid
평소 대비3.3배
조회수7.9천
참여율3.9%
Personal CarePerformance ClaimTexture ImprovementTutorial

#teethwhitening #whiteteeth #selfcare #teethcare

아웃라이어 96백분위관측 GMV $50
@hanvivian6Personal Care · micro
평소 대비3.3배
조회수1만
참여율0.8%
Personal CarePerformance ClaimEasy ApplicationReview

Ok but this fr workssx

아웃라이어 97백분위관측 GMV $70