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

@Michael CunninghamFragrance · nano
평소 대비533.0배
조회수533
참여율0.8%
FragrancePrice MentionValue ClaimValue For Money

Such a great deal today omg.#tiktokshoppcreatorpicks #tiktokshopholidayhaul #dealsforyoudays

아웃라이어 100백분위관측 GMV $16
@LifeStyle ComfortFragrance · nano
평소 대비217.8배
조회수871
참여율0.2%
dimeFragrancePrice MentionEasy Application

sooo good! #TikTokShopSummerTurnUp #TikTokShopSummerSale #tiktokshopcreatorpicks #dimebeauty #perfume

아웃라이어 99백분위관측 GMV $62
@kait | ugc creatorFragrance · nano
평소 대비195.5배
조회수31.9만
참여율2.8%
daisyBath & BodyFragranceIngredient Claim

so happy i got to try this one, love all of these so much ✨⭐️ #ad #perfumetiktok #perfumetok #koreanskincare @hetras

아웃라이어 99백분위GMV 미관측
@EkemFragrance · macro
평소 대비61.1배
조회수29.3만
참여율2.2%
fragrance-brandFragranceStorytellingHands On Application

I got the oils too! #fragrancetiktok #perfumeoil #eternalperfumeoils

아웃라이어 100백분위관측 GMV $1,677
@Toya ✨Fragrance · mid
평소 대비28.1배
조회수561
참여율0.9%
embarougeFragrancePrice MentionValue For Money

EMBAROUGE Luxeria

아웃라이어 100백분위관측 GMV $35
@silence.eqFragrance · micro
평소 대비20.8배
조회수240만
참여율0.8%
yczFragrancePerformance ClaimPrice Mention

Is this why marlon gets all the girls😳 #cologne #perfume #ycz #fragance #marlon

아웃라이어 100백분위관측 GMV $9,626
@sapphireFragrance · micro
평소 대비17.1배
조회수478
참여율0.4%
berliveFragrancePerformance ClaimReview

My car smells so good #smellssogood #berlivecarairfreshener #carfreshener #carscent #fragrancetok

아웃라이어 100백분위관측 GMV $0
@Erika 🧸🎀✨Fragrance · micro
평소 대비14.8배
조회수2.2천
참여율0.5%
bella vita luxuryFragrancePerformance ClaimPrice Mention

🗣️ CALLING ALL MY VANILLA GIRLIES #perfumetiktok #perfumetok #perfume #perfumes #fyp

아웃라이어 99백분위관측 GMV $46
@JennyFragrance · macro
평소 대비14.2배
조회수1.5만
참여율1.0%
louis vuittonFragrancePerformance ClaimPrice Mention

Replying to @Griselda este perfume literal WOW 😍

아웃라이어 98백분위관측 GMV $180
@fragsonlyFragrance · micro
평소 대비12.6배
조회수2만
참여율1.4%
game of spadeslouis vuittonnishaniFragrance

First impressions of the new @Game Of Spades Trick inspired by Cactus Garden. Available now on the Tik Tok shop! #fragrance #perfume #cologne #fragrancetiktok #perfumetiktok

아웃라이어 99백분위관측 GMV $286
@jennboymamaFragrance · nano
평소 대비12.1배
조회수520
참여율0.2%
bella vita luxuryFragrancePrice MentionReview

The perfume for the clean girls! #perfume #bellavita #luxuryperfume

아웃라이어 98백분위관측 GMV $31
@RedolessenceFragrance · macro
평소 대비11.1배
조회수10.3만
참여율2.2%
jo milanoFragrancePerformance ClaimValue For Money

Jo Milano Notes 4 Beats perfume review! #fragrancetiktok #fragrancetok #redolessence #perfumetok #fragrance

아웃라이어 96백분위GMV 미관측
@savewithGH ⚡️Fragrance · nano
평소 대비10.6배
조회수3.1천
참여율0.2%
loftFragranceSoothingReview

Hotel collection Loft portable scent diffuser #scentdiffuser #oildiffuser #diffuser

아웃라이어 98백분위관측 GMV $0
@EmilyFragrance · micro
평소 대비7.0배
조회수7.1천
참여율1.0%
laneigeFragranceSkincareBrightening Claim

Everyone that comes over to my house smells these body mists and loves them! @hetras #bodymist #kbeauty #perfume #hetras

아웃라이어 99백분위GMV 미관측
@JordanFragrance · micro
평소 대비6.6배
조회수6.4천
참여율2.2%
FragranceStorytelling@yupContradiction Hook

Replying to @yup aw sweetie. I bet you smell bad 💔

아웃라이어 99백분위관측 GMV $92
@Finds4dayzFragrance · micro
평소 대비6.3배
조회수680
참여율0.6%
bella vitaFragrancePrice MentionValue For Money

Wonderful deal #tiktokshop #trending

아웃라이어 98백분위GMV 미관측
@Tara LeonardFragrance · nano
평소 대비5.8배
조회수29
참여율0.0%
dimeFragrancePrice MentionValue For Money

#perfume #7summersperfume #womensperfume #beauty #creatorsearchinsights

아웃라이어 97백분위관측 GMV $62
@scentbyronaldoFragrance · micro
평소 대비5.6배
조회수8.3천
참여율0.7%
ex nihilogame of spadeslouis vuittonparfums de marly

Game of Spades Trick OFFICIAL RELEASE #fragrance #Gameofspades #gameofspadestrick @Game Of Spades

아웃라이어 98백분위관측 GMV $191
@Courtney LuperFragrance · micro
평소 대비5.0배
조회수3.6천
참여율1.1%
sol de janeiroFragranceSkincareIngredient Claim

This Sol de Janeiro travel-size body care set is such a good way to try the iconic Cheirosa 62 scent with notes of pistachio, salted caramel, and vanilla. The bundle includes the Cheirosa 62 perfume mist, Brazilian Play Body Wash, Brazilian Bum Bum Cream, and a mini Bom Dia Bright Cream in Cheirosa 40. Perfect for travel, gifting, or trying Sol de Janeiro before purchasing the full sizes. #tiktokshopcreatorpicks #TTSPathways #soldejaneiro #perfumetok #bodycareroutine @Sol de Janeiro

아웃라이어 98백분위관측 GMV $41
@Kimberly RoseFragrance · mid
평소 대비4.5배
조회수8.3천
참여율5.5%
dossierFragranceValue ClaimValue For Money

Dossier is the go to for alternative choices for high end perfumes!

아웃라이어 99백분위관측 GMV $15
@່Fragrance · micro
평소 대비4.5배
조회수1.2천
참여율0.7%
del'avitaFragranceStorytellingbellavitaluxury

I really do #honeyoud #honey #bellavitaluxury #perfume

아웃라이어 97백분위관측 GMV $46
@kelseynmotionFragrance · mid
평소 대비4.0배
조회수3.2천
참여율0.6%
bella vitaFragrancePerformance ClaimPrice Mention

Endless compliments btw! #summerwins #tiktokshopcreatorpicks #perfumetiktok #honeyoud

아웃라이어 98백분위관측 GMV $46
@kingfindsFragrance · mid
평소 대비3.9배
조회수8.1천
참여율0.6%
FragrancePrice MentionValue For MoneyStorytelling

Don’t wear this perfume around your man 😭😭 #perfume #perfumetiktok #womensperfume #bellavita #bellavitaluxury

아웃라이어 97백분위관측 GMV $138
@jaidaFragrance · micro
평소 대비3.4배
조회수1.4만
참여율2.3%
FragrancePrice MentionValue ClaimValue For Money

분석 근거 영상

아웃라이어 97백분위GMV 미관측
@ProPugDealsFragrance · under_1k
평소 대비3.4배
조회수8.6천
참여율0.2%
mys scentsFragrancePrice MentionValue For Money

¡Qué ofertón hoy! ¡Dios mío!#summerwins #dealsforyoudays #tiktokshopcreatorpicks #tiktokshopholidayhaul

아웃라이어 100백분위GMV 미관측
@JANEL MCQUEENFragrance · mid
평소 대비3.2배
조회수3.9천
참여율0.8%
louis vuittonFragrancePerformance ClaimValue For Money

Replying to @Susie Jenkins166 Don’t buy your refills when you could buy this!!

아웃라이어 97백분위관측 GMV $36
@sophiaFragrance · micro
평소 대비3.0배
조회수4.7천
참여율0.8%
bella vitaFragrancePrice MentionValue For Money

if ur name is ellie and u remember me just pls keep scrolling 😭

아웃라이어 97백분위관측 GMV $92
@FrancyDFragrance · mid
평소 대비3.0배
조회수1.2만
참여율1.7%
FragranceStorytellingProblem FirstOther

Perfume para mujer, huele muy rico#perfumeparamujer#womanperfume#marshmallowperfume

아웃라이어 96백분위관측 GMV $140
평소 대비3.0배
조회수7.3천
참여율3.4%
lattafaFragranceVisualHands On Application

Now that I look at the notes (marshmallow, strawberry & vanila) , it makes sense that I said it smells like cotton candy ☁️🍓😩 #perfumetiktok #perfumetok #perfumecollection #perfumereview

아웃라이어 95백분위관측 GMV $75
@ToriFragrance · micro
평소 대비2.9배
조회수5.3천
참여율0.8%
FragranceReviewHands On ApplicationStorytelling

If you got this, please tell me what you think I smells like !! #loveapple #pumpkinpatch #autumnaesthetic #fallscents #fallsmells

아웃라이어 97백분위관측 GMV $32
@MaryeFragrance · mega
평소 대비2.8배
조회수1.5만
참여율1.8%
FragrancePerformance ClaimPrice MentionLongwear

#tiktokshop #shopping #blackfriday

아웃라이어 100백분위GMV 미관측
@katieeeeManceboFragrance · micro
평소 대비2.8배
조회수2.1천
참여율0.9%
okshaFragrancePerformance ClaimGlow Finish

#oakcha #oakchacottonclouds #marshmallowperfume #vanillaperfume #fruityfloralgourmandfragrance this is my personal experience and opinion ❤️

아웃라이어 96백분위관측 GMV $45
평소 대비2.8배
조회수1.5만
참여율0.3%
afnanFragrancePerformance ClaimReview

9 PM Elixir de Afnan es un perfume para hombre elegante a un precio súper cómodo. Es oriental especiado, cálido y dulce. Abre con notas de cardamomo y nuez moscada, evoluciona hacia un corazón de cuero y lavanda, y seca con un fondo cremoso de vainilla, pachulí y ámbar #summerfinds #dealsforyoudays #perfume .

아웃라이어 94백분위관측 GMV $107
@ToniToneShops || 2739Fragrance · micro
평소 대비2.7배
조회수2천
참여율0.1%
FragranceSkincareBrightening ClaimIngredient Claim

@hetras #tiktokshopcreatorpicks #tiktokshopsummersale #glowyskin #bodycare #koreanskincare

아웃라이어 96백분위관측 GMV $42
@JordanFragrance · micro
평소 대비2.6배
조회수2.6천
참여율0.4%
bella vita luxuryFragrancePerformance ClaimLongwear

This smells soooo good

아웃라이어 96백분위관측 GMV $69
@JJFragrance · micro
평소 대비2.6배
조회수3.2천
참여율0.3%
bella vitaFragrancePrice MentionValue Claim

Men’s cologne discovery set 😮‍💨 ##cologne##menscologne##bellavitaluxury##bellavita

아웃라이어 96백분위관측 GMV $90
@Rich | ScentYouFragrance · mid
평소 대비2.6배
조회수3천
참여율0.7%
yclFragrancePrice MentionValue For Money

This could have gone either way #cologne #relationships #fragrance #smellgood #luxuryscent

아웃라이어 94백분위GMV 미관측
평소 대비2.6배
조회수6.3천
참여율0.6%
heretic parfumsFragranceReviewHands On Application

🕯️🖤If you’re looking for a fragrance that feels like wandering through a haunted forest, burning candles in an old Victorian house, and crisp autumn nights, HÄXAN by Heretic Parfum is one to experience. It’s dark, mysterious, earthy, and perfectly witchy without being over the top. 🧙🏻 Summerween starts and it only gets better as we get closer to fall. 👻✨ @HereticParfum #SpookySeason #HalloweenPerfume #Summerween #PerfumeTok #FragranceTok

아웃라이어 93백분위관측 GMV $400
평소 대비2.5배
조회수1.4만
참여율0.2%
afnanFragrancePerformance ClaimColor Payoff

9 PM Elixir de Afnan es un perfume oriental especiado, cálido y dulce. Abre con notas de cardamomo y nuez moscada, evoluciona hacia un corazón de cuero y lavanda, y seca con un fondo cremoso de vainilla, pachulí y ámbar. Es una fragancia seductora, intensa y elegante, ideal para noches frescas o cita. #summerfinds #dealsforyoudays

아웃라이어 92백분위관측 GMV $90
@DansFragrance · mid
평소 대비2.4배
조회수2.3천
참여율0.6%
FragrancePrice MentionValue For MoneyReview

분석 근거 영상

아웃라이어 92백분위관측 GMV $90
@neleus007Fragrance · micro
평소 대비2.4배
조회수3.2천
참여율0.2%
yczFragrancePrice MentionValue For Money

Don't say I'didn't put you on🔥❤️😘#ycz #dealsforyoudays #fragrance #SummerWins #man

아웃라이어 95백분위관측 GMV $40
평소 대비2.3배
조회수2천
참여율0.0%
vs sassoonFragrancePersonal CarePerformance Claim

#onesizebeauty #tiktokshop

아웃라이어 96백분위관측 GMV $70
@ZarinaFragrance · micro
평소 대비2.2배
조회수1.1만
참여율0.7%
FragranceStorytellingContradiction HookBeauty

The easiest upgrade you’ll ever make.

아웃라이어 95백분위관측 GMV $80
@Fragrance knowledgeFragrance · macro
평소 대비2.2배
조회수6천
참여율2.8%
jo milanoFragrancePerformance ClaimColor Payoff

Game Of Spades Trick Parfum #Fragranceknowledge

아웃라이어 91백분위관측 GMV $191
@David ColbyFragrance · macro
평소 대비2.2배
조회수2만
참여율4.0%
FragrancePrice MentionValue For MoneyReview

It's Most Likely SOLD OUT if your reading this but if it's not don't get one bottle buy two. Your going to need it! HIT THAT FOLLOW BUTTON!! #smellgood #fragrancetiktok #perfumetiktok #mysscents #menscologne

아웃라이어 89백분위관측 GMV $100
@Lasarcarivera27🫶Fragrance · macro
평소 대비2.1배
조회수1.3만
참여율2.8%
FragranceDailyFace ApplicationVisual

No me cansaré de recomendárselos 🤌🏻 #parati #girlfriend #recomendation

아웃라이어 87백분위관측 GMV $108
@Smart LivingFindsFragrance · micro
평소 대비2.0배
조회수2.3천
참여율0.8%
FragranceDiscount MentionPerformance ClaimLongwear

YCZ marine uno de mis perfumes favoritos #ycz #perfume #skeleton

아웃라이어 95백분위관측 GMV $57
@Van CFragrance · under_1k
평소 대비2.0배
조회수3.6천
참여율0.5%
qawafiFragrancePrice MentionValue For Money

Such a great deal today only.#summerwins #dealsforyoudays #tiktokshopcreatorpicks #tiktokshopholidayhaul

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