diff --git a/docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.1.md b/docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.1.md new file mode 100644 index 0000000..f62692b --- /dev/null +++ b/docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.1.md @@ -0,0 +1,65 @@ +# AI 답변 감성 판정 기준표 v0.1 + +작성 2026-09-08 · 상태: 초안, haewon 보정 대기 · 적용 스크립트 `scripts/sentiment_qb.py` + +## 1. 무엇을 재는가 + +질문 뱅크(120문항)를 답변엔진에 물어 받은 답변 안에서 **대상 병원이 어떤 어조로 언급되는지**를 판정한다. 브랜드 범용 도구(FrostAI 등)의 "감성 점수"에 대응하는 지표지만, 병원은 부정 신호의 대부분이 규제·사건 보도이므로 그 항목을 따로 센다. + +측정 원칙은 질문 뱅크와 같다. 소비자 UI 자동 조회는 하지 않고 공식 API 답변만 쓴다. 답변 원문은 저장하되 리포트에는 근거 문장 한 줄만 인용한다. + +## 2. 판정 단위와 값 + +답변 1건 = 판정 1건. 판정기는 아래 JSON을 낸다. + +| 필드 | 값 | 설명 | +|---|---|---| +| mentioned | true / false | 대상 병원(별칭 포함)이 답변에 나오는가. 추출기의 `view_mentioned`와 교차 확인 | +| sentiment | positive / neutral / negative / mixed / not_mentioned | 병원에 대한 어조. 언급이 없으면 not_mentioned | +| aspects | 배열 | 아래 §3 측면 태그 중 해당하는 것 | +| negative_type | none / regulatory / safety / service / price / reputation / other | 부정이면 어떤 종류인가 | +| evidence | 문장 1개 | 판정 근거가 된 답변 원문 문장 (요약 금지, 그대로 인용) | +| recommendation | recommended / listed / cautioned / not_applicable | 병원을 추천했는가, 목록에 나열만 했는가, 주의를 붙였는가 | +| confidence | 0~1 | 판정기 자신감 | + +### 어조 판정 규칙 + +- **positive**: 병원의 강점을 서술하거나 추천 근거로 든다. 예: "안전 시스템이 갖춰진 병원", "가슴성형 전문으로 평가받는다". +- **neutral**: 사실 나열, 목록 포함, 위치·진료과목 안내처럼 평가 없는 언급. +- **negative**: 부정 사실을 서술하거나 주의를 권한다. 예: "공정위 시정명령을 받았다", "후기 광고 논란이 있었다", "부작용 사례가 보고됐다". +- **mixed**: 긍정과 부정이 한 답변에 함께 있다. 점수 계산에서는 negative 쪽으로 센다(보수적). +- 다른 병원에 대한 평가는 세지 않는다. 대상 병원 문장만 본다. +- "확인이 필요하다", "직접 상담을 권한다" 같은 일반 주의 문구는 negative가 아니라 neutral이다. 병원 고유의 문제를 지목할 때만 negative다. + +## 3. 측면 태그 + +| 태그 | 포함 | +|---|---| +| doctors | 의료진, 전문의, 경력, 원장 | +| safety | 안전 시스템, 마취, 부작용, 사고, 회복 관리 | +| price | 가격, 비용, 견적, 할인 | +| reviews | 후기, 평판, 만족도, 리뷰 수 | +| regulatory | 공정위, 시정명령, 의료법 위반, 광고 제재, 소송 | +| procedure | 시술·수술 종류, 장비, 기술, 전문 분야 | +| access | 위치, 예약, 외국어 응대, 편의 | +| media | 방송 출연, 언론 보도, 수상 | + +## 4. 점수 + +- **감성 점수(0~100)** = (positive × 100 + neutral × 50 + mixed × 25 + negative × 0) ÷ 언급된 답변 수. Frost의 감성 점수와 같은 척도로 비교할 수 있게 했다. +- **부정 비율** = negative + mixed ÷ 언급된 답변 수. +- **규제 언급률** = negative_type이 regulatory인 답변 ÷ 언급된 답변 수. 병원 전용 보조 지표. +- **추천율** = recommendation이 recommended인 답변 ÷ 언급된 답변 수. +- 엔진별로 따로 내고, 브랜드 질문(A·B)과 논브랜드 질문을 분리한다. 논브랜드에서 언급되며 긍정인 것이 가장 가치 있는 신호다. + +## 5. 보정 절차 (공신력) + +1. 판정 결과에서 30건을 무작위로 뽑아 `*_calibration.xlsx`에 담는다. 판정기 값은 숨기고 haewon이 sentiment와 negative_type을 직접 적는다. +2. 일치율을 계산한다. sentiment 일치 80% 이상이면 기준표를 확정한다. 미만이면 불일치 사례를 §2 규칙에 예시로 추가하고 다시 돌린다. +3. 확정 후에는 같은 기준표·같은 모델로만 월간 실행한다. 모델을 바꾸면 보정을 다시 한다. + +## 6. haewon이 정할 것 + +- **부정의 범위**: "후기 광고 논란"처럼 사실이지만 병원에 불리한 언급을 negative로 볼지, 규제 사실 서술은 neutral로 볼지. 초안은 negative다. +- **mixed 처리**: 점수에서 25점으로 셀지, 제외할지. 초안은 25점. +- **다른 병원 추천 문맥**: 대상 병원이 언급되지 않고 경쟁 병원만 추천된 답변을 별도 지표(경쟁 노출)로 셀지. diff --git a/docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.3.md b/docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.3.md new file mode 100644 index 0000000..849cacb --- /dev/null +++ b/docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.3.md @@ -0,0 +1,180 @@ +# AI 답변 감성 판정 기준표 v0.3 + +작성 2026-09-08 · 개정 2026-09-09 · 상태: 1차 보정 반영, 2차 보정 대기 · 적용 스크립트 `scripts/sentiment_qb.py` + +v0.1 대비 바뀐 것은 둘이다. + +1. **어조 규칙 R1~R5** (§2). 1차 보정에서 haewon 라벨 29건 대비 일치율이 75%로 기준선 80%에 미달해, 불일치 7건에서 뽑았다. +2. **결정론적 언급 탐지기** (§2-1). 상호가 URL 안에만 있거나 "리뷰"의 "뷰"를 병원 언급으로 세던 오탐을 없앴다. + +R4-a와 R6은 시험 투입했다가 되돌렸다. 이유는 §5에 있다. + +## 1. 무엇을 재는가 + +질문 뱅크(120문항)를 답변엔진에 물어 받은 답변 안에서 **대상 병원이 어떤 어조로 언급되는지**를 판정한다. 브랜드 범용 도구(FrostAI 등)의 "감성 점수"에 대응하는 지표지만, 병원은 부정 신호의 대부분이 규제·사건 보도이므로 그 항목을 따로 센다. + +측정 원칙은 질문 뱅크와 같다. 소비자 UI 자동 조회는 하지 않고 공식 API 답변만 쓴다. 답변 원문은 저장하되 리포트에는 근거 문장 한 줄만 인용한다. + +## 2-1. 언급 탐지 (v0.3 추가) + +`sentiment` 를 매기기 전에 대상 병원이 답변에 실제로 나오는지를 **정규식으로 먼저 판정한다**(`mention_kind()`). 판정기가 언급이라고 해도 탐지기가 없다고 하면 `not_mentioned` 로 덮어쓴다. 언급 수가 모든 비율의 분모라서, 여기가 틀리면 점수 전체가 틀린다. + +| 값 | 조건 | +|---|---| +| strong | 정식 상호가 답변 본문에 있다. 한글은 음절 사이 공백을 허용한다("뷰 성형외과"도 잡는다). 영문 정식 명칭·도메인도 포함한다 | +| weak | 정식 상호 없이 영문 약칭만 있다(예: 병원 목록 안의 "View") | +| none | 위 어느 것도 없다 | + +두 가지를 반드시 처리한다. + +- **URL을 먼저 지운다.** `news.nate.com/view/...`, `clinic/view.do`, `?bmode=view` 의 "view"를 병원 언급으로 세면 안 된다. 1차 판정에서 C-13·C-14·E-06 세 건이 이 오탐이었다. +- **다른 낱말의 일부인 약칭을 뺀다.** "리뷰"의 "뷰"가 대표적이다. G-04(openai)는 "리뷰 사이트에서도"만 있고 병원 언급이 없는데 언급으로 세고 있었다. + +이 수정으로 언급 수가 84에서 83으로 바뀌었다. + +## 2. 판정 단위와 값 + +답변 1건 = 판정 1건. 판정기는 아래 JSON을 낸다. + +| 필드 | 값 | 설명 | +|---|---|---| +| mentioned | true / false | 대상 병원(별칭 포함)이 답변에 나오는가. 추출기의 `view_mentioned`와 교차 확인 | +| sentiment | positive / neutral / negative / mixed / not_mentioned | 병원에 대한 어조. 언급이 없으면 not_mentioned | +| aspects | 배열 | 아래 §3 측면 태그 중 해당하는 것 | +| negative_type | none / regulatory / safety / service / price / reputation / other | 부정이면 어떤 종류인가 | +| evidence | 문장 1개 | 판정 근거가 된 답변 원문 문장 (요약 금지, 그대로 인용) | +| recommendation | recommended / listed / cautioned / not_applicable | 병원을 추천했는가, 목록에 나열만 했는가, 주의를 붙였는가 | +| confidence | 0~1 | 판정기 자신감 | + +### 어조 판정 규칙 + +- **positive**: 병원의 강점을 서술하거나 추천 근거로 든다. 예: "안전 시스템이 갖춰진 병원", "가슴성형 전문으로 평가받는다". +- **neutral**: 사실 나열, 목록 포함, 위치·진료과목 안내처럼 평가 없는 언급. +- **negative**: 부정 사실을 서술하거나 주의를 권한다. 예: "공정위 시정명령을 받았다", "후기 광고 논란이 있었다", "부작용 사례가 보고됐다". +- **mixed**: 긍정과 부정이 한 답변에 함께 있다. 점수 계산에서는 negative 쪽으로 센다(보수적). +- 다른 병원에 대한 평가는 세지 않는다. 대상 병원 문장만 본다. +- "확인이 필요하다", "직접 상담을 권한다" 같은 일반 주의 문구는 negative가 아니라 neutral이다. 병원 고유의 문제를 지목할 때만 negative다. + +### 우선순위 규칙 (v0.2 추가, 1차 보정에서 도출) + +아래 규칙은 위 어조 정의보다 우선한다. 괄호 안은 근거가 된 보정 사례다. + +**R1. 결론 단락이 개별 항목보다 우선한다.** 답변에 종합 평가·결론 단락이 있으면 그 단락의 어조로 판정한다. 본문에 나열된 개별 항목의 어조로 판정하지 않는다. +- A-01(perplexity): 본문에 강남언니 평점 9.4~9.5가 있으나 결론이 "후기 기반 평판은 좋은 편이지만 추가 확인이 필요"라는 확인 권고다. → **neutral** (mixed 아님) +- D4-01(openai): 본문에 "모두에게 동일한 설명을 하는 듯한 인상"이라는 후기 지적 한 줄이 있으나 종합 평이 "안전성과 전문성을 갖춘 병원으로 평가받고 있습니다"다. → **positive** (mixed 아님) +- D2-01(perplexity): 결론이 "수술 결과의 일관된 객관성까지 판단하긴 어렵고, 커뮤니티에는 부정적 의견도 일부 보입니다"다. → **negative** (mixed 아님) + +**R2. mixed는 긍정과 부정이 대등하게 병존할 때만 쓴다.** 부정 성분이 문장 하나의 부수 언급이면 mixed로 세지 않는다. 긍정과 부정이 각각 독립된 근거로 서술되고 결론이 어느 쪽으로도 기울지 않을 때만 mixed다. + +**R3. "후기 수가 많다", "인지도가 있다"는 규모 서술이며 긍정 평가가 아니다.** 이 서술만 있고 병원 고유의 문제 지목이 함께 있으면 mixed가 아니라 negative다. (D2-01) + +**R4. 평가 축이 있는 목록에 포함되면 positive다.** 질문이 조건이나 우수성을 묻고(평점이 높은 곳, 마취과 전문의가 상주하는 곳, 잘하는 곳) 그 목록에 대상 병원이 들어가면 positive다. 조건 없는 단순 나열(위치·진료과목 안내, 지역 병원 열거)만 neutral이다. +- C-12(openai): "강남언니에서 평점 높은 성형외과" 목록에 뷰성형외과가 포함됐다. → **positive** +- C-08(openai): "마취과 전문의가 상주하는 강남 성형외과" 목록에 포함되고 "마취과 전문의 365일 상주", "3D-CT, 체계적 사후 관리"가 함께 서술됐다. → **positive** + +**R5. 강점·역량 서술은 출처가 병원 홍보라도 positive로 센다.** 답변이 "환자의 안전과 만족을 최우선", "최신 기술과 장비"처럼 강점을 서술하면, 그 서술이 병원 광고를 인용한 것이라도 답변의 어조는 positive다. +- A-02(openai): "환자의 안전과 만족을 최우선으로 하며, 최신 기술과 장비를 사용하여 서비스를 제공한다고 광고합니다" → **positive** + +**R6. (경계 사례, 미확정) 사실 조회 질문의 항목 나열은 neutral이다.** 질문이 "무슨 수술을 주로 하나", "어디에 있나"처럼 사실을 묻고 답변이 진료 항목 카탈로그이면, 개별 항목에 붙은 수식어("풍부한 임상 경험")는 긍정으로 세지 않는다. +- A-03(openai): 진료 분야 나열이고 항목마다 홍보성 수식이 붙어 있다. haewon은 **neutral**, 판정기는 positive였다. +- **주의**: R6과 R5의 경계가 규칙으로 깔끔히 갈리지 않는다. A-02(positive)와 A-03(neutral) 모두 답변에 병원 홍보 문구가 인용돼 있는데 라벨이 갈렸다. 2차 보정에서 haewon이 이 경계를 확정해야 한다(§6). + +## 3. 측면 태그 + +| 태그 | 포함 | +|---|---| +| doctors | 의료진, 전문의, 경력, 원장 | +| safety | 안전 시스템, 마취, 부작용, 사고, 회복 관리 | +| price | 가격, 비용, 견적, 할인 | +| reviews | 후기, 평판, 만족도, 리뷰 수 | +| regulatory | 공정위, 시정명령, 의료법 위반, 광고 제재, 소송 | +| procedure | 시술·수술 종류, 장비, 기술, 전문 분야 | +| access | 위치, 예약, 외국어 응대, 편의 | +| media | 방송 출연, 언론 보도, 수상 | + +## 4. 점수 + +- **감성 점수(0~100)** = (positive × 100 + neutral × 50 + mixed × 25 + negative × 0) ÷ 언급된 답변 수. Frost의 감성 점수와 같은 척도로 비교할 수 있게 했다. +- **부정 비율** = negative + mixed ÷ 언급된 답변 수. +- **규제 언급률** = negative_type이 regulatory인 답변 ÷ 언급된 답변 수. 병원 전용 보조 지표. +- **추천율** = recommendation이 recommended인 답변 ÷ 언급된 답변 수. +- 엔진별로 따로 내고, 브랜드 질문(A·B)과 논브랜드 질문을 분리한다. 논브랜드에서 언급되며 긍정인 것이 가장 가치 있는 신호다. + +## 5. 보정 절차 (공신력) + +1. 판정 결과에서 30건을 무작위로 뽑아 `*_calibration.xlsx`에 담는다. 판정기 값은 숨기고 haewon이 sentiment와 negative_type을 직접 적는다. +2. 일치율을 계산한다. sentiment 일치 80% 이상이면 기준표를 확정한다. 미만이면 불일치 사례를 §2 규칙에 예시로 추가하고 다시 돌린다. +3. 확정 후에는 같은 기준표·같은 모델로만 월간 실행한다. 모델을 바꾸면 보정을 다시 한다. + +### 1차 보정 결과 (2026-09-09) + +| 항목 | 값 | +|---|---| +| 대상 | 뷰성형외과 240건 판정분에서 무작위 30건 | +| haewon 라벨 | 29건 (G-08 openai 1건은 판단 보류로 공란) | +| sentiment 일치 | **22/29 = 75%** (기준선 80% 미달) | +| negative_type 일치 | **측정 불가** (haewon G열 미기입, negative 라벨 2건 포함) | + +불일치 7건의 갈래는 셋이다. 판정기가 mixed를 남발한 것 3건(A-01·D4-01·D2-01), 평가 축이 있는 목록 포함과 강점 서술을 중립으로 낮춘 것 3건(A-02·C-12·C-08), 항목 나열의 수식어를 긍정으로 올린 것 1건(A-03). + +### 이 보정의 한계 + +규칙 R1~R6은 위 30건의 불일치에서 뽑았다. 같은 30건으로 다시 재면 일치율이 오르는 것은 당연하므로, 재판정 후의 일치율을 기준표 확정 근거로 쓰지 않는다. **확정하려면 새로 뽑은 30건으로 2차 보정을 해야 한다.** 1차 보정에 쓴 30건은 2차 표본에서 제외한다. + +negative_type은 라벨이 없어 이번에 재지 못했다. 2차 보정에서는 negative·mixed 라벨에 종류를 반드시 함께 적는다. + +### 재판정 결과 (2026-09-09, R1~R5 적용) + +240건을 gpt-4.1로 다시 판정했다. 실제 비용 $0.79(입력 324,627 · 출력 17,723 토큰). + +| sentiment | v0.1 | v0.2 | 증감 | +|---|---|---|---| +| positive | 14 | 20 | +6 | +| neutral | 57 | 58 | +1 | +| mixed | 10 | **0** | -10 | +| negative | 3 | 6 | +3 | +| not_mentioned | 156 | 156 | 0 | + +**감성 점수 53.6 → 58.3** (언급 84건, 변동 없음). 리포트 `Viewclinic_QB_Sentiment.md` 를 v0.2로 다시 만들었다. + +haewon 라벨 29건 대비 일치율은 75% → 93%(27/29)다. 앞서 적은 대로 **이 값은 확정 근거가 아니다.** 규칙을 이 표본의 불일치에서 뽑았기 때문이다. + +### R4-a·R6 시험 투입과 철회 (같은 날) + +R4 과적용(C-12 perplexity)과 A-03을 고치려고 규칙 두 개를 더 넣고 240건을 다시 판정했다. 결과는 나빠졌다. + +| 회차 | 규칙 | haewon 라벨 대비 (참고값) | +|---|---|---| +| v0.1 | 기본 정의만 | 75% (22/29) | +| v0.2 | R1~R5 | 93% (27/29) | +| v0.3 시험 | R1~R5 + R4-a + R6 | **89% (26/29)** | + +- **R4-a**(목록에 있어도 결론에서 대상 병원이 빠지면 positive 아님)는 C-12 perplexity를 고쳤으나 **C-12 openai를 반대로 틀었다.** +- **R6**(결론 없는 카탈로그는 neutral)은 목표한 A-03을 고치지 못했고 **A-02 perplexity를 새로 틀었다.** + +규칙을 하나 더할 때마다 하나 고치고 하나 깨진다. n=29에서 75%·93%·89%는 표준오차(약 ±6%p) 안이다. **규칙은 R1~R5에서 멈춘다.** R4-a와 R6은 철회했고, 남은 불일치 2건(C-12 perplexity, A-03)은 사람 판단의 경계로 보고 2차 보정에서 새 표본으로 다시 본다. + +시험분은 폐기했고, 최종 데이터는 v0.2 판정(R1~R5 프롬프트)에 §2-1 탐지기를 다시 적용해 만들었다. 탐지기는 결정론적 후처리라 API 재호출이 필요 없다. 이 회차의 총 API 비용은 $1.70이다(v0.2 $0.79 + R4-a·R6 시험 $0.91). + +### 최종 수치 (v0.3) + +| 항목 | v0.1 | v0.3 | +|---|---|---| +| 언급 | 84 | **83** | +| 감성 점수 | 53.6 | **58.4** | +| positive / neutral / mixed / negative | 14 / 57 / 10 / 3 | 20 / 57 / 0 / 6 | +| 약한 언급 | 3(오탐 포함) | **1**(G-08 openai) | + +약한 언급 1건을 빼면 언급 82건 · 감성 점수 57.9다. 리포트에 두 값을 함께 적었다. + +**mixed가 240건 전체에서 0건이다.** haewon 라벨에도 mixed가 없었으므로 방향은 맞지만, R2가 과하게 좁혔을 수 있다. 2차 보정 표본에 mixed 후보가 하나도 없으면 판정값 자체를 없앨지 정한다. + +## 6. haewon이 정할 것 + +- **부정의 범위**: "후기 광고 논란"처럼 사실이지만 병원에 불리한 언급을 negative로 볼지, 규제 사실 서술은 neutral로 볼지. 초안은 negative다. +- **mixed 처리**: 점수에서 25점으로 셀지, 제외할지. 초안은 25점. 1차 보정에서 haewon 라벨에 mixed가 한 건도 없었다(29건 중 0건). R2로 mixed 조건을 좁혔으므로 재판정 후 mixed 건수를 보고 25점 유지 여부를 정한다. +- **다른 병원 추천 문맥**: 대상 병원이 언급되지 않고 경쟁 병원만 추천된 답변을 별도 지표(경쟁 노출)로 셀지. +- **R5와 R6의 경계** (v0.2 추가): 병원 홍보 문구가 인용된 답변에서 A-02는 positive, A-03은 neutral로 갈렸다. 질문 성격으로 가를지(평가 요청 대 사실 조회), 답변에 종합 서술이 있는지로 가를지 확정이 필요하다. +- **약한 언급 처리**: §2-1 탐지기로 오탐을 걷어내니 진짜 약한 언급은 **1건**(G-08 openai)뿐이다. "View", "Wooa", "Wish PS" 가 병원 목록으로 나열된 영어권 커뮤니티 인용이다. 현재는 **언급으로 세고 표시**해 두었고, 리포트에 제외 점수(57.9)를 함께 적는다. 1건이라 어느 쪽으로 정해도 점수는 0.5점 움직인다. haewon 확정 필요. +- **mixed 값 유지 여부**: R2 적용 후 240건 중 mixed가 0건이다. 판정값에서 mixed를 빼고 positive/neutral/negative 셋으로 갈지 정한다. +- **R4-a·R6 재시도 여부**: 이번에 철회했다(§5). 2차 보정 표본에서 같은 유형이 반복되면 그때 다시 본다. diff --git a/docs/NEXT_SESSION_2026-09-12_AI_DISCOVERY_PRODUCT.md b/docs/NEXT_SESSION_2026-09-12_AI_DISCOVERY_PRODUCT.md new file mode 100644 index 0000000..59c9a08 --- /dev/null +++ b/docs/NEXT_SESSION_2026-09-12_AI_DISCOVERY_PRODUCT.md @@ -0,0 +1,102 @@ +# 다음 세션 핸드오버 · 2026-09-12 · INFINITH AI Discovery Product 빌드 + +작성 2026-09-11 · 작성자 Claude (haewon 세션) · 상태: 초안(haewon 검토 전) +하위 문서: 서포터즈 사이트 빌드 절차 `~/orca/workspaces/INFINITH/Productize/docs/NEXT_SESSION_2026-09-12_PRODUCT_BUILD.md`, 자동 빌드 상세 `…/NEXT_SESSION_SUPPORTERS_AUTOBUILD_v3.md`, 자동 채점 `docs/AI_DISCOVERY_BUILD2_HANDOVER.md`, 회고 `docs/INFINITH_AI_Discovery_Retrospective_2026-09-08.md`. + +## 0. 세션 시작 시 붙여 넣을 프롬프트 + +``` +INFINITH AI Discovery Product 빌드 세션. 제품은 "병원 URL 하나 → AI 답변 준비도 진단(AEO/GEO v2) → 서포터즈 사이트 자동 빌드(글·영상·뉴스룸·회복 일정 플래너·오시는 길) → 병원 확인·재빌드 → 측정(질문뱅크·감성·GA4·크롤러 로그)" 파이프라인이다. +코드 위치: 프런트·스크립트·문서는 메인 체크아웃 ~/Claude/Agentic Marketing/INFINITH (브랜치 feature/ai-sentiment-rubric, 프로덕션 main → infinith-demo.vercel.app), +워커·템플릿·큐는 워크트리 ~/orca/workspaces/INFINITH/Productize (브랜치 feature/supporters-autobuild), 랜딩 리드 CTA 는 브랜치 feature/discovery-url-cta(미머지). +먼저 docs/NEXT_SESSION_2026-09-12_AI_DISCOVERY_PRODUCT.md 를 읽고, §1 표의 "확인" 칸을 git log·Supabase 로 실제 확인한 뒤, §5 결정 대기의 답을 받고 §4 순서대로 진행한다. +원칙: 근거 없는 사실은 생성하지 않는다("확인 대기"). 사람 게이트(의학 검토·게시 승인·이미지 육안·채널 확인·구조 기준선)는 자동화하지 않는다. 언급률·점수는 "스키마를 넣으면 인용된다"고 약속하지 않는다(정직성 규약). +고객 화면에 운영자 어휘 금지. 존댓말, 엠대시 금지(커밋 메시지 포함), 은유 금지, 흰 배경 위 연보라 텍스트 금지(인디고 #1D0024). INFINITH 리포트 PDF 는 PPTX 덱(infinith-deck 스킬)으로 만든 뒤 변환한다. +클라이언트 격리: INFINITH 문서·코드에 다른 서비스 이름을 쓰지 않는다. 산출 전 grep. +``` + +## 1. 제품 여정과 현재 상태 + +| 단계 | 고객이 보는 것 | 구현 | 위치 | 상태 | +|---|---|---|---|---| +| 1 진입 | `/discovery` 랜딩, "URL 입력으로 시작" | `DiscoveryLandingPage.tsx`, `DiscoveryLeadModal` → Supabase `discovery_leads` | 메인, 브랜치 feature/discovery-url-cta | 프리뷰만. **미머지, 마이그레이션 `20260831_discovery_leads.sql` 적용 여부 확인** | +| 2 진단 | `/discovery/:id` 리포트 (AEO 100 + GEO 100, v2 기준표), 덱·PDF | `scripts/audit_aeo_geo.py`(auto 22항목) → `src/data/discovery_.ts` → `DiscoveryReportPage.tsx`; `scripts/build_discovery_report.ts` → HTML/PDF; 덱 빌더 `docs/reports//01_readiness_report/build_*_deck*.py` | 메인 + Productize(v2 기준표 `src/data/aeoGeoRubricV2.ts`, `src/lib/discoveryScoreV2.ts`) | 반자동. 결과가 소스 파일 커밋 방식이라 병원마다 코드 배포가 필요하다. **v2 기준표가 main(프로덕션)에 머지됐는지 확인** | +| 3 서포터즈 사이트 | `supporters-.vercel.app` 미리보기(noindex): 글·영상·뉴스룸·방문 안내(지도·길찾기)·회복 일정 플래너 `/plan`·`/en/plan` | 워커 `workers/supporters-build/run.mjs` 15단계(evidence→…→tourism→recovery→planner→…→deploy), 템플릿 `templates/supporters-astro`, 게이트 `scripts/gate/rules.mjs` | Productize | 동작. 뷰(수작업 샘플 `view-supporters-sample`)·원진·오라클 3곳 배포. 병원당 약 $0.6, 30분 | +| 4 병원 확인 | `/supporters/:id` 또는 리포트 안 `ClinicInputsPanel`: 채널 확인, 의료진, 검토·승인, 자유 답변 | Supabase `supporter_builds`·`supporter_inputs`, `apply_inputs.mjs`, 재빌드 `run.mjs --from data --from-supabase --build-id` | 메인(UI) + Productize(반영) | 동작하되 **재빌드 자동 트리거 없음**(supporter_inputs insert → 큐 연결 필요) | +| 5 운영 | 큐 → 빌드 → 미리보기 링크 | `poll.mjs` + Mac launchd 5분 폴러, `supporter_builds` 큐 | Productize | 파일럿 수준. Mac 이 켜져 있어야 돈다. 실제 랜딩 신청 1건이 큐 → 완주까지 간 적 없음 | +| 6 측정 | 질문뱅크 언급률(2엔진), 감성, GA4 AI 유입, AI 크롤러 히트, 공식 vs 서포터즈 재채점 | `scripts/run_question_bank_openai.py`·`merge_qb_results.py`·`sentiment_qb.py`·`ga4_ai_traffic.py`, `data/ai_channels.json`, 리포트 Integrity 절 "측정 가능 범위" | 메인(QB·감성) + Productize(GA4) | 스크립트 단위. 리포트 카드 자동 갱신 없음. GA4 는 GCP 계정 대기 | +| 7 계약·가격 | 상담 기반 계약 | 가격 문서 `docs/INFINITH_가격정책_사업부보고서_v1.1.docx`(2026-04, 이전 제품 INSIGHT/INTELLIGENCE 티어), AI Discovery 가격 제안은 `docs/INFINITH_vs_FrostAI_비교_및_가격제안_2026-09-08.html` | 메인 | **AI Discovery 전용 티어 미확정** | + +2026-09-10~11 추가: 회복 일정 플래너(설계 v0.2 §13, 관광공사 데이터 합침), 오시는 길 지도·길찾기, 전역 언어 전환·영어 홈(뷰), 모바일 헤더. 전부 템플릿·워커에 통합됨. + +## 2. 코드·브랜치·배포 지도 + +| 무엇 | 어디 | 브랜치 | 배포 | +|---|---|---|---| +| 제품 프런트(랜딩·리포트·확인 패널) | 메인 `src/` | main(프로덕션), feature/ai-sentiment-rubric(감성·플래너 작업), feature/discovery-url-cta(리드 CTA) | `infinith-demo.vercel.app` (main 에서 `vercel --prod`, Gitea 자동 트리거 없음) | +| 채점·질문뱅크·감성·리포트 스크립트 | 메인 `scripts/`, `docs/reports/` | feature/ai-sentiment-rubric | 로컬 실행 | +| 워커·템플릿·게이트·GA4 뼈대·v2 기준표 | Productize `workers/`, `supporters/`, `templates/`, `scripts/fetch_medical_tourism.py` | feature/supporters-autobuild | 병원별 `supporters-` (워커가 강제 link) | +| 뷰 수작업 샘플 | 메인 `supporters/` | feature/ai-sentiment-rubric | `view-supporters-sample` 수동 | +| Supabase | `supabase/migrations/` (`supporter_builds`, `supporter_builds_queue`, `discovery_leads`) + Edge Functions(기존 리포트 파이프라인) | 메인 | 적용 상태 확인 필요(CLI 토큰 만료 이력) | +| 키 | Productize `.env`(TOUR_API·NAVER·OPENAI·YOUTUBE), 메인 `.env`(진단·QB) | | 회사 계정. 세션 시작 때 `grep -E "^KEY=." .env` 로 값 존재만 확인 | + +세 브랜치는 서로 머지되지 않았다. `supporters/` 폴더가 양쪽에 있고 Base.astro 구현이 다르다(메인: i18n.ts 전역 전환·영어 홈; Productize: langswitch·영어 입구 /en/plan). 플래너·지도·헤더 CSS 는 같다. + +## 3. 지금 되는 것 / 안 되는 것 (한 줄씩) + +되는 것 +- 병원 이름·URL 로 채널 발견·근거 수집·자동 채점·리포트 HTML/PDF·덱(뷰·원진·오라클·태하 사례). +- 워커 한 번으로 서포터즈 사이트 초안 발행(글 6~8편, 영상, 뉴스룸, 이미지 규칙, 지도, 플래너, 관광공사 데이터). 게이트 41건 테스트. +- 병원 확인 패널 입력 → 수동 재빌드. +- 질문뱅크 120문항 2엔진 실측, 감성 판정, Before/After 페이지(`scripts/build_before_after.py`). + +안 되는 것 +- 랜딩 신청 → 큐 → 빌드 → 미리보기 링크 회신이 사람 손 없이 이어지지 않는다(리드 테이블과 큐가 분리, CTA 브랜치 미머지). +- 진단 결과가 코드 파일(`discovery_.ts`)이라 병원마다 프런트 배포가 필요하다. 런타임 데이터(Supabase 또는 JSON 스토리지)로 옮겨야 "URL 입력 → 리포트 링크"가 된다. +- 측정 지표가 리포트 카드에 자동으로 들어가지 않는다(스크립트 산출물을 사람이 옮긴다). +- 워커가 Mac 에 묶여 있다. 규칙표 잠정값·큐레이션 장소·의료진 후보·이미지·채널 12건은 사람 확인 대기. +- AI Discovery 가격·계약 조건 미확정. 랜딩 FAQ 의 해지·환불 항목 삭제 상태. + +## 4. Product 빌드 순서 (권장) + +1. **브랜치 정리**: `main` 기준으로 feature/supporters-autobuild(워커·템플릿·v2 기준표·GA4) → feature/ai-sentiment-rubric(감성·플래너·지도·설계 v0.2) → feature/discovery-url-cta(리드 CTA) 순으로 머지. 충돌 지점은 `supporters/`(Base.astro 두 구현)와 `src/data/aeoGeoRubric*`·`discoveryScoreV2`. 결정: `supporters/` 는 템플릿(Productize) 구현을 정본으로 하고 뷰 샘플은 워커 폴더로 옮긴다(§5-4). +2. **리드 → 큐 연결**: `discovery_leads` 마이그레이션 적용 → insert 시 `supporter_builds` 큐에 행 생성(DB 트리거 또는 폴러가 leads 도 읽기) → 워커가 evidence 부터 완주 → 미리보기 URL 을 `supporter_builds.preview_url` 에 기록 → 신청자에게 링크 회신(초기에는 수동 메일, `o2oteam@o2o.kr`). +3. **진단 결과 런타임화**: `audit_aeo_geo.py` 출력 JSON 을 Supabase(`discovery_results`) 또는 스토리지에 저장하고 `/discovery/:id` 가 런타임에 읽는다. 기존 `DISCOVERY_RESULTS` 레지스트리는 샘플(뷰) 전용으로 남긴다. 사람 판정(v2Results 4항목)은 확인 패널에서 입력. +4. **재빌드 자동화**: `supporter_inputs` insert → 큐 → `run.mjs --from data --from-supabase`. 색인 허용 빌드(`PUBLIC_INDEXABLE=true`)는 `approvedAt` 있는 글만 낸다는 규칙 유지. +5. **측정 카드**: 질문뱅크·감성·GA4·크롤러 히트 결과를 `discovery_results` 에 붙이고 리포트 Integrity 절과 Before/After 에 자동 표시. 언급률은 신뢰구간과 함께. +6. **운영 이관**: Mac launchd 폴러 → Trigger.dev(또는 동등)로. 키·비용 로그(`status.json` costUsd)·실패 알림. +7. **가격·계약**: AI Discovery 티어(진단만 / 진단+서포터즈 / +측정·관리) 확정, 랜딩 FAQ·계약서·해지 조건. FrostAI 비교 문서의 제안을 출발점으로. +8. **다음 병원**: 톡스앤필·차앤박(피부과), 레지스트리 73곳 중 회귀 병원. 한 화면 비교 산출물은 만들지 않는다. + +## 5. haewon 결정 대기 + +1. **Product 1.0 범위**: (a) 진단 리포트만, (b) 진단 + 서포터즈 사이트 초안, (c) b + 측정·관리 구독. 랜딩 CTA 의 약속 범위가 달라진다. +2. **가격 티어**(§4-7)와 계약 최소 기간·해지 조건(2026-04 문서의 P0 두 항목이 그대로 미결). +3. **뷰 샘플 통일**: 메인 `supporters/` 를 워커 폴더(`~/supporters-builds/viewclinic`)로 옮기고 `view-supporters-sample` 을 워커 배포로 바꿀지. 옮기면 뷰의 영어 홈 `/en` 은 템플릿에 없으므로 템플릿에 영어 홈을 추가할지 함께 결정. +4. **법무**: 외국인환자 유치업 등록 여부(플래너·숙소 링크), 의료광고 사전심의 대상 여부, 지원 관계 고지 문구(sponsorNotice). 이 세 가지는 색인 허용 전환의 전제. +5. **도메인**: 별도 도메인 vs 병원 서브도메인(설계 v0.1 §3 2안). 서포터즈 실명 모집 방식. +6. **워커 호스팅**과 GCP 계정(GA4 서비스 계정). +7. **규칙표 잠정값**: 뷰·원진·오라클 `procedures.json` 의 provisional 값(출국 최소일·입원·실밥)을 병원 확인 뒤 공개할지, 공개 전까지 "병원 확인 전" 배지로 둘지. +8. 서포터즈 빌드 하위 결정(하위 문서 §4)과 오라클 핸드오버 §3 미결은 그대로. + +## 6. 함정 (제품 관점) + +- **한 Vercel 프로젝트에 두 폴더**: 2026-09-11 Productize/supporters 와 메인 supporters 가 같은 프로젝트에 배포해 `/plan` 이 404 됐다. 지금은 Productize 쪽 연결을 껐다. 배포는 병원 폴더와 메인 supporters 에서만. +- **세 브랜치 분산**: 같은 파일(`supporters/`)이 두 브랜치에서 다르게 진화했다. 머지 전에 "템플릿이 정본"을 정하고 뷰 샘플을 옮긴다. +- **진단 결과가 코드**: `discovery_.ts` 커밋 방식은 병원 수가 늘면 배포 병목이다(§4-3). +- **게이트는 고객 화면 전체를 본다**: 운영 어휘("실측"·"API 집계"·"임베드")가 데이터 값을 타고 화면에 나가면 빌드가 막힌다. 운영 기록은 데이터에만. +- **원문 문장은 걸러야 한다**: 병원 페이지 원문 32문장 중 14건이 홍보문·정형 고지였다. 워커 planner 단계 필터(CARE/NOT_CARE) 없이는 "병원 안내 기준" 배지가 의료광고 위반이 된다. +- **헤드리스 크롬 모바일 캡처**: 창 최소 폭 때문에 400px 직접 캡처가 틀린다. 1280 창 안 390px iframe 하네스로. +- **lint**: 메인 체크아웃은 한때 tsc 가 없어 `npm run lint` 가 가짜 통과였다. 실제 0 에러인지 `npx tsc --noEmit` 로 본다. +- **엠대시·타 서비스 이름**: 커밋 메시지와 문서에서 두 번 잡혔다. 산출 전 엠대시 검색(`grep -cP "\x{2014}"`)과 타 서비스명 격리 grep(전역 CLAUDE.md 의 목록). + +## 7. 파일 참조 + +- 진단: `src/data/aeoGeoRubricV2.ts`, `src/lib/discoveryScoreV2.ts`, `src/pages/DiscoveryReportPage.tsx`, `scripts/audit_aeo_geo.py`, `docs/AEO_GEO_RUBRIC_v2.md` +- 랜딩·리드: `src/pages/DiscoveryLandingPage.tsx`, `src/components/discovery/`, `supabase/migrations/20260831_discovery_leads.sql` +- 확인 패널·큐: `src/components/discovery/ClinicInputsPanel.tsx`, `src/pages/SupportersBuildPage.tsx`, `supabase/migrations/20260907_supporter_builds*.sql` +- 워커·템플릿: Productize `workers/supporters-build/`, `supporters/scripts/`, `templates/supporters-astro/`, 브리프 `supporters/briefs//` +- 플래너·지도: 템플릿 `src/components/Planner.astro`·`VisitMap.astro`, `src/lib/plan.ts`·`tour.ts`, `supporters/scripts/build_planner_data.mjs`, 설계 `docs/INFINITH_Viewclinic_Supporters_Site_Design_v0.2.md` §13 +- 측정: `scripts/run_question_bank_openai.py`, `scripts/sentiment_qb.py`, `docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.1.md`, Productize `scripts/ga4_ai_traffic.py`, `data/ai_channels.json` +- 가격·경쟁: `docs/INFINITH_vs_FrostAI_비교_및_가격제안_2026-09-08.html`, `docs/INFINITH_가격정책_사업부보고서_v1.1.docx` +- PRD: `docs/prd/INFINITH_AI-Discovery_PRD_20260828_v02.md`, `docs/prd/INFINITH_Global_Medical_Hub_PRD_v0.1.html`(Productize 에 v0.2), `docs/prd/INFINITH_Dermatology_Supporters_PRD_v0.1.html` diff --git a/docs/reports/README.md b/docs/reports/README.md index d4e659e..9bb97f1 100644 --- a/docs/reports/README.md +++ b/docs/reports/README.md @@ -8,7 +8,8 @@ docs/reports/ │ ├── 01_readiness_report/ AI Answer Readiness 진단 덱 (v1.0 정본 · v2_표준캔버스 · v1.1 정정판) + 빌더 │ ├── 02_poc_proposal/ POC 제안서 덱 (정본 · v3 · v3_표준캔버스) + 빌더 │ ├── 03_question_bank/ 질문 뱅크 120문항 · ChatGPT/Perplexity 실측 결과 · TOP50 엑셀 -│ └── 04_supporters/ 서포터즈 GEO 개선 계획 · 2단계 콘텐츠 기획 · 서포터즈 vs 공식 AEO 감사 엑셀 +│ ├── 04_supporters/ 서포터즈 GEO 개선 계획 · 2단계 콘텐츠 기획 · 서포터즈 vs 공식 AEO 감사 엑셀 +│ └── 05_global_en/ 영문 사이트(viewplasticsurgery.com) 외국인 관점 AEO/GEO 진단 (2026-09-10) · 영문 60문항 뱅크 · Perplexity/OpenAI(뉴욕) 실측 · HTML/PDF 보고서 + 빌더 ├── taeha/ 태하 AI Answer Readiness 리포트 (html · pdf · pptx) + 빌더 ├── ibk/ 기업은행 블로그 AEO/GEO 감사 └── landing/ AI Discovery 랜딩 시안 (픽셀 정답 HTML) · 스크린샷 · 리포트 페이지 HTML 내보내기 스크립트 diff --git a/docs/reports/viewclinic/03_question_bank/Viewclinic_QB_Sentiment.md b/docs/reports/viewclinic/03_question_bank/Viewclinic_QB_Sentiment.md new file mode 100644 index 0000000..8ad3ed2 --- /dev/null +++ b/docs/reports/viewclinic/03_question_bank/Viewclinic_QB_Sentiment.md @@ -0,0 +1,81 @@ +# AI 답변 감성 판정 결과 · 뷰성형외과 + +판정 2026-09-09 · 기준표 v0.3(`docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.3.md`) · 모델 gpt-4.1 · 답변 240건 + +감성 점수 = (positive×100 + neutral×50 + mixed×25 + negative×0) ÷ 언급된 답변 수. 규제 언급률과 추천율은 언급된 답변 기준. + +## 1. 엔진별 + +| 엔진 | 질문군 | 답변 | 언급 | 감성 점수 | 긍정 | 중립 | 혼합 | 부정 | 부정 비율 | 규제 언급률 | 추천율 | +|---|---|---|---|---|---|---|---|---|---|---|---| +| openai | 전체 | 120 | 44 | **64.8** | 16 | 25 | 0 | 3 | 6.8% | 6.8% | 36.4% | +| openai | 브랜드(A·B) | 22 | 22 | **54.5** | 3 | 18 | 0 | 1 | 4.5% | 4.5% | 13.6% | +| openai | 논브랜드 | 98 | 22 | **75.0** | 13 | 7 | 0 | 2 | 9.1% | 9.1% | 59.1% | +| perplexity | 전체 | 120 | 39 | **51.3** | 4 | 32 | 0 | 3 | 7.7% | 2.6% | 10.3% | +| perplexity | 브랜드(A·B) | 22 | 22 | **52.3** | 2 | 19 | 0 | 1 | 4.5% | 4.5% | 9.1% | +| perplexity | 논브랜드 | 98 | 17 | **50.0** | 2 | 13 | 0 | 2 | 11.8% | 0.0% | 11.8% | + +전체 합산: 언급 83/240 · 감성 점수 **58.4** · 부정 비율 7.2% · 규제 언급률 4.8% · 추천율 24.1% + +약한 언급 1건(G-08(openai))은 정식 상호 없이 영문 약칭만 나온 답변이다. 이를 빼면 언급 82건 · 감성 점수 **57.9**. 포함 여부는 기준표 §6 미결이다. + +## 2. 측면 태그 (언급된 답변) + +- procedure: 39건 +- access: 39건 +- reviews: 33건 +- doctors: 29건 +- safety: 28건 +- price: 11건 +- media: 8건 +- regulatory: 5건 + +## 3. 부정·혼합 판정 전건 (6건) + +| id | 엔진 | 판정 | 종류 | 질문 | 근거 문장 | +|---|---|---|---|---|---| +| A-01 | openai | negative | regulatory | 뷰성형외과 어때? 믿을만한 병원이야? | 그러나 2026년 7월 공정거래위원회의 제재 사례는, 병원 마케팅 방식에 대한 경계가 필요하다는 점을 보여줍니다. | +| C-11 | openai | negative | regulatory | 후기 제일 많은 강남 성형외과 어디야? | 예컨대 ‘뷰성형외과’, '에이비성형외과의원', '디에이성형외과'는 후기를 조건으로 수술비 일부를 할인해 주고 광고처럼 이용한 사례로 지적된 바 있습니다 ([v.daum.net](https://v.daum.net/v/ | +| G-02 | openai | negative | regulatory | 뷰성형외과 부작용 후기나 안 좋은 얘기 있어? | 뷰성형외과가 수술비 할인 등 대가를 제공하고, 이를 '자발적인 후기'로 위장하여 광고한 혐의로 공정거래위원회의 시정명령을 받았습니다. | +| A-12 | perplexity | negative | regulatory | 뷰성형외과 단점이나 주의할 점 있어? | 공정거래위원회가 뷰성형외과를 포함한 강남 성형외과들의 *수술비 할인 등 대가를 받고 작성한 후기를 자발적 후기처럼 보이게 한 행위*를 제재했습니다. | +| D2-01 | perplexity | negative | reputation | 뷰성형외과 눈성형 어때? | 다만 제가 확인한 자료만으로는 **수술 결과의 일관된 객관성**까지 판단하긴 어렵고, 커뮤니티에는 상담 경험에 대한 **부정적 의견도 일부** 보입니다.[6] | +| G-02 | perplexity | negative | reputation | 뷰성형외과 부작용 후기나 안 좋은 얘기 있어? | 네. 검색 결과만 보면 **뷰성형외과에 대한 안 좋은 후기나 부작용 언급은 있습니다**. | + +## 4. 논브랜드 질문에서 긍정 언급 (15건, 가장 가치 있는 신호) + +| id | 엔진 | 추천 | 질문 | 근거 문장 | +|---|---|---|---|---| +| C-01 | openai | recommended | 강남 성형외과 추천해줘 | The Door Plastic Surgery, View Plastic Surgery 등도 평점 4.8로 높은 평가받고 있습니다 ([gangnambeautyguide.com](https://gangnambeautygu | +| C-02 | openai | recommended | 강남에서 가슴성형 잘하는 병원 어디야? | 뷰성형외과  - 협진 체계, 안전 장비, 1:1 진료 및 사후관리 강조 | +| C-04 | openai | recommended | 코성형 잘하는 강남 병원 추천해줘 | 뷰성형외과 강남 | 협진 시스템, 맞춤 설계, 대학병원급 안전 시스템 | +| C-06 | openai | recommended | 강남 성형외과 톱5 알려줘 | - 평점: 4.8 / 리뷰수: 약 9,167건 ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/clinics/?utm_source=openai)) +- 강 | +| C-08 | openai | recommended | 마취과 전문의가 상주하는 강남 성형외과 어디야? | - 안면윤곽, 눈·코·가슴 성형 등을 전문으로 하며, **마취과 전문의가 365일 상주**하고 있다는 점을 강조합니다 ([blog.viewclinic.com](https://blog.viewclinic.com/?ut | +| C-12 | openai | recommended | 강남언니에서 평점 높은 성형외과 알려줘 | **팝성형외과**, **티에스성형외과**, **기린성형외과**, **제이필의원**, **뷰성형외과**, **뭐 등 다양한 병원들이 높은 평점을 보이고 있습니다. | +| D1-01 | openai | recommended | 뷰성형외과 가슴성형 잘해? | 뷰성형외과는 가슴성형 분야에서 경험, 전문성, 안전성, 사후관리 체계를 갖춘 병원으로 평가됩니다. 많은 환자들이 만족스럽다는 후기도 많으며, 개인의 체형·희망·상태에 맞춘 맞춤 상담과 전문적인 진료 흐름이 강점입니다 | +| D2-01 | openai | recommended | 뷰성형외과 눈성형 어때? | 장점: +- 높은 평점(4.7)과 JCI 인증, 다국어 지원으로 의료 신뢰도 높음 ([getcarekorea.com](https://getcarekorea.com/ko/hospitals/view-plastic-surg | +| D4-01 | openai | recommended | 뷰성형외과 안면윤곽 잘하는 곳 맞아? | 전반적으로, 뷰성형외과는 안면윤곽 수술에 있어 안전성과 전문성을 갖춘 병원으로 평가받고 있습니다. 특히 수술 기법과 시스템, 다수의 수상 경력과 방송 노출 경력 등이 신뢰감을 줍니다. | +| E-09 | openai | recommended | 뷰성형외과 안전 시스템 어때? | 이처럼 뷰성형외과는 **환자 안전을 위한 다층적인 시스템과 기준**을 두고 있습니다. | +| G-01 | openai | recommended | 뷰성형외과 실제 후기 어때? | 뷰성형외과는 **높은 만족도와 전문성을 갖춘 대형 병원**으로 평가되며, 특히 자연스럽고 정밀한 결과를 원하는 환자들에게 긍정적인 선택이 될 수 있습니다. 다만, 상담 경험은 대기 시간과 상담 시간의 한계가 있을 수 | +| G-07 | openai | recommended | 뷰성형외과는 뭘로 유명한 병원이야? | 뷰성형외과는 특히 **가슴성형 분야의 압도적인 시술량**, **안전에 대한 철저한 시스템**, **원스톱 프리미엄 케어**, 그리고 **외국인 환자를 위한 의료관광 서비스**로 높은 평판을 자랑합니다. | +| G-08 | openai | recommended | 가슴성형 후기 많은 병원 어디야? | 또한, “View”, “Wooa”, “Wish PS” 등도 리뷰량과 자체 B&A(전후 사진)가 많아 실제 경험 공유가 활발한 곳으로 언급됩니다 ([reddit.com](https://www.reddit.com/r/S | +| C-12 | perplexity | recommended | 강남언니에서 평점 높은 성형외과 알려줘 | **뷰성형외과의원** — **9.5점**, 후기 수는 검색 결과에 일부만 보입니다.[3] | +| G-07 | perplexity | recommended | 뷰성형외과는 뭘로 유명한 병원이야? | 뷰성형외과는 가슴성형, 안면윤곽, 양악수술, 눈·코성형 등 여러 성형 분야를 고르게 하는 곳으로 알려져 있고, 특히 안전 중심 운영과 무사고 기록을 강조해 유명합니다.[1][11][13] | + +## 5. 언급 판정 불일치 (판정기 vs 추출기) 1건 + +- C-14 openai: 판정기 False / 추출기 True · + +## 6. 측정 가능 범위 + +- 재는 것: 질문 뱅크 문항에 대한 공식 API 답변 안에서 대상 병원 문장의 어조. 엔진은 ChatGPT(gpt-4o + 웹 검색)·Perplexity(sonar). +- 재지 않는 것: 소비자 화면(chatgpt.com 등)의 실제 답변. 약관상 자동 조회를 하지 않으므로 API 답변과 화면 답변은 다를 수 있다. +- 재지 않는 것: Google AI Overview·네이버 AI 브리핑·Gemini 의 어조. 다음 회차에 엔진을 추가할 때 같은 기준표로 잰다. +- 한계: 판정기는 언어 모델이다. 보정(§7) 전 점수는 참고값이고, 보정 후에도 문항 수(언급 84건)가 적어 ±10점은 우연 범위로 본다. + +## 7. 보정 + +기준표 `v0.3` 로 판정했다. 1차 보정(2026-09-09)에서 haewon 라벨 29건 대비 v0.1 일치율은 75%로 기준선 80%에 미달했고, 불일치 7건에서 규칙 R1~R5를 뽑아 판정기에 반영한 것이 이 회차다. + +같은 30건으로 다시 잰 일치율은 규칙을 그 표본에 맞춰 고친 결과이므로 확정 근거가 아니다. 기준표 확정은 새로 뽑은 30건의 2차 보정으로 한다. 자세한 이력과 한계는 `docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.2.md` §5에 있다. diff --git a/docs/reports/viewclinic/03_question_bank/Viewclinic_QB_Sentiment_calibration.xlsx b/docs/reports/viewclinic/03_question_bank/Viewclinic_QB_Sentiment_calibration.xlsx new file mode 100644 index 0000000..bb40713 Binary files /dev/null and b/docs/reports/viewclinic/03_question_bank/Viewclinic_QB_Sentiment_calibration.xlsx differ diff --git a/docs/reports/viewclinic/05_global_en/QB_en_openai_results.md b/docs/reports/viewclinic/05_global_en/QB_en_openai_results.md new file mode 100644 index 0000000..b5ba1a3 --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/QB_en_openai_results.md @@ -0,0 +1,135 @@ +# VIEW Plastic Surgery EN Question Bank results: openai + +Measured 2026-09-10 / 60 questions + +| # | Question | VIEW mentioned | Rank | Sentiment | Clinics (in order) | Cited domains | +|---|---|---|---|---|---|---| +| A-01 | Is VIEW Plastic Surgery in Seoul legit? Is it a trustworthy clinic for foreigners? | O | 1 | positive | VIEW Plastic Surgery | forum.purseblog.com, gangnamclinicindex.com, medtraveling.com, realself.com, reddit.com, seoulclinics.io | +| A-02 | Tell me about VIEW Plastic Surgery in Gangnam, Korea. What are they known for? | O | 1 | positive | VIEW Plastic Surgery | english.visitkorea.or.kr, medicaltour.gangnam.go.kr, realself.com, reddit.com, viewplasticsurgery.com, youtube.com | +| A-03 | What procedures does VIEW Plastic Surgery Korea specialize in? | O | 1 | positive | VIEW Plastic Surgery | english.visitkorea.or.kr, kmhglobal.com, viewplasticsurgery.com | +| A-04 | Who is Dr. Choi Soon Woo of VIEW Plastic Surgery? Is he board certified? | O | 1 | positive | VIEW Plastic Surgery | khunkim.com, viewplasticsurgery.com | +| A-05 | How many surgeons does VIEW Plastic Surgery have and are they all board-certified plastic surgeons? | O | 1 | positive | VIEW Plastic Surgery | assets.website-files.com, khunkim.com, reddit.com, viewplasticsurgery.com | +| A-06 | Does VIEW Plastic Surgery have English-speaking staff or interpreters? | O | 1 | positive | VIEW Plastic Surgery | assets.website-files.com, docentpro.com, forum.purseblog.com, khunkim.com, viewplasticsurgery.com | +| A-07 | How long has VIEW Plastic Surgery been operating and how big is the clinic? | O | 1 | neutral | VIEW Plastic Surgery | assets.website-files.com, english.visitkorea.or.kr, experts-beauty.com, icloudhospital.com, inflo.kr, viewplasticsurgery.com | +| A-08 | VIEW Plastic Surgery Korea reviews from international patients: what do foreigners say? | O | 1 | positive | VIEW Plastic Surgery, Girin Plastic Surgery, AB Plastic Surgery | inkoreanow.com, kclinichelp.com, patients.community, realself.com, reddit.com, viewplasticsurgery.com | +| B-01 | Where is VIEW Plastic Surgery located and how do I get there from Incheon Airport? | O | 1 | - | VIEW Plastic Surgery | english.seoul.go.kr, incheon.go.kr, ivisitkorea.com, jusofind.kr, origin.viewplasticsurgery.com, reddit.com | +| B-02 | Does VIEW Plastic Surgery offer airport pickup for international patients? | O | 1 | positive | VIEW Plastic Surgery | viewplasticsurgery.com | +| B-03 | What are VIEW Plastic Surgery's opening hours and can I book a consultation online from abroad? | O | 1 | positive | VIEW Plastic Surgery | jp.viewplasticsurgery.com, reddit.com, stmstyle.com, viewplasticsurgery.com | +| B-04 | Can I contact VIEW Plastic Surgery via WhatsApp or LINE for a consultation? | O | 1 | - | VIEW Plastic Surgery | 10mag.com, reddit.com, viewplasticsurgery.com, x.com | +| B-05 | Does VIEW Plastic Surgery provide accommodation or hotel partnerships for foreign patients? | O | 1 | positive | VIEW Plastic Surgery | medicaltour.gangnam.go.kr, reddit.com, viewplasticsurgery.com | +| B-06 | How long should I stay in Seoul after plastic surgery before flying home? | X | - | - | (none) | | +| B-07 | Do I need a medical visa for plastic surgery in Korea as a tourist? | X | - | - | (none) | | +| B-08 | Which Gangnam plastic surgery clinics are closest to Sinnonhyeon Station? | O | 6 | neutral | JUST Plastic Surgery Clinic, 1 mm Plastic Surgery Clinic, 345 Plastic Surgery Clinic, Thank You Plastic Surgery Clinic, BETWEEN Plastic Surgery, VIEW Plastic Surgery, Noonopi Plastic Surgery, IK Plastic Surgery | en.ikplastic.com, eng.btwps.com, medi-spec.com, noonopiclinic.com, reddit.com, rightme.kr | +| C-01 | Best plastic surgery clinic in Seoul for foreigners | X | - | - | JK Plastic Surgery Center, ID Hospital, Banobagi Plastic Surgery, SAERO Plastic Surgery, AB Plastic Surgery, NANA Plastic Surgery Hospital, SNUPS Clinic, JW Plastic Surgery Center | clinicseoul.net, english.visitkorea.or.kr, kclinichelp.com, koreaexperience.com, reddit.com, seoulmedicalinsider.com | +| C-02 | Best breast augmentation clinic in Korea for international patients | X | - | - | SAERO Plastic Surgery, JW Plastic Surgery Center, The Plus Plastic Surgery, AB Plastic Surgery, UNE Plastic Surgery, Global Plastic Surgery, Opera Plastic Surgery, JK Plastic Surgery Centre | clinicrankingkorea.com, kclinichelp.com, medicaldepartures.com, medicaltravelkorea.com, my1health.com, realself.com | +| C-03 | Top facial contouring and V-line surgery clinics in Gangnam | O | 3 | positive | JK Plastic Surgery, Banobagi Plastic Surgery, VIEW Plastic Surgery, BRAUN Plastic Surgery, GIRIN Plastic Surgery, 345 Plastic Surgery, Ipche Plastic Surgery, Made Young Plastic Surgery Clinic | gangnambeautyguide.com, gangnamdrk.com, medtraveling.com, misooda.com, plasticsurgeryko.com, topclinicseoul.com | +| C-04 | Best rhinoplasty surgeon in Seoul for foreigners | O | 7 | positive | AB Plastic Surgery, ONYX Plastic Surgery, WOOA Plastic Surgery & Skin Clinic, Banobagi Plastic Surgery, Girin Plastic Surgery, Onlif Plastic Surgery, Sketch Plastic Surgery, VIEW Plastic Surgery | deesseclinic.com, drsamrizk.com, gangnambeautyguide.com, gangnamwomenshealth.com, kclinichelp.com, koreabeautyclinicrating.com | +| C-05 | Best double jaw surgery clinic in Korea | X | - | - | TJ Plastic Surgery, Sinsang Plastic and Reconstructive Surgery, Brown Eye Medical Clinic, Hannaeve Plastic Surgery, SoonPlus Plastic Surgery, Severance Hospital, Seoul National University Hospital (SNUH), Asan Medical Center | gangnam.dentist, jawsurgerykorea.com, koreaclinicguide.com, plasticsurgeryko.com, us-uk.bookimed.com | +| C-06 | Top 5 plastic surgery clinics in Gangnam, Seoul | O | 5 | positive | 4Ever Plastic Surgery, DA Plastic Surgery, ARC Plastic Surgery, Noselab Clinic, VIEW Plastic Surgery, JW Plastic Surgery, ID Hospital, Lienjang Plastic Surgery | gangnambeautyguide.com, gangnamclinicindex.com, plasticsurgeryko.com | +| C-07 | Compare VIEW Plastic Surgery vs ID Hospital vs Banobagi for facial contouring | O | 1 | positive | VIEW Plastic Surgery, ID Hospital, Banobagi | | +| C-08 | Which Korean plastic surgery clinics use Motiva implants and have the most experience with them? | O | 2 | positive | U&U Plastic Surgery Clinic, VIEW Plastic Surgery, Ryan Plastic Surgery, V Clinic Gangnam, ARC Plastic Surgery Clinic, Verygood Plastic Surgery, NANA Plastic Surgery, Golden Diamant Plastic Surgery | en.nanahospital.com, goldendiamant.com, goodbyeacup.com, realself.com, reddit.com, unupskorea.com | +| C-09 | Safest plastic surgery clinic in Korea with anesthesiologists on staff | X | - | - | AB Plastic Surgery Clinic, JK Plastic Surgery Center, Hannaeve Plastic Surgery Clinic, Faceline Plastic Surgery, Braun Plastic Surgery, Respect Plastic Surgery | braunps.com, hannaeveglobal.com, healthdailysouthkorea.com, icloudhospital.com, jkplastic.com, medicalkorea.or.kr | +| C-10 | Which Seoul plastic surgery clinics are officially recognized for medical tourism by the Korean government? | O | 4 | positive | JK Plastic Surgery Center, HER SHE (HERSHE) Plastic Surgery, Hyundai Aesthetics Plastic Surgery, VIEW Plastic Surgery, HERSHE | data.edmgr.kr, english.visitkorea.or.kr, medical.visitseoul.net, medicalkorea.or.kr, medicaltour.gangnam.go.kr, news.seoul.go.kr | +| C-11 | Best clinic in Korea for double eyelid surgery revision for foreigners | X | - | - | 1MM Plastic Surgery, Etonne Plastic Surgery, Wanna Plastic Surgery, Gangnam Seoyeon Clinic, Symphony Plastic Surgery, Link Plastic Surgery, Motive Plastic Surgery, Ahn Sung Min Plastic Surgery | bookkoreamedical.com, gangnamobgyn.com, gangnamwomenshealth.com, kclinichelp.com, plasticsurgeryko.com, reddit.com | +| C-12 | Large plastic surgery hospitals in Seoul with in-house recovery wards | X | - | - | Banobagi Plastic Surgery Clinic, ID Hospital, JW Plastic Surgery, Dream Medical Group, Grand Plastic Surgery | | +| D-01 | Motiva breast augmentation in Korea: what should I know before booking? | X | - | - | (none) | | +| D-02 | What is Motiva Preserve and which clinics in Korea offer it? | X | - | - | U&U Plastic Surgery Clinic, Ryan Plastic Surgery, Golden Diamant Plastic Surgery, Wooa Medical | goldendiamant.com, goodbyeacup.com, imagepreserve.kr, motiva.health, unupskorea.com, wooamedical.com | +| D-03 | How long is recovery after breast augmentation in Korea before I can fly? | X | - | - | (none) | | +| D-04 | What is the difference between V-line surgery and square jaw reduction? | X | - | - | (none) | | +| D-05 | Double jaw surgery in Korea: recovery timeline and risks for international patients | X | - | - | (none) | | +| D-06 | Incisional vs non-incisional double eyelid surgery in Korea: which is better? | X | - | - | (none) | | +| D-07 | Rhinoplasty in Korea with rib cartilage vs silicone: pros and cons | X | - | - | (none) | | +| D-08 | How is revision rhinoplasty done in Korea and how long do I need to stay? | X | - | - | (none) | | +| D-09 | Facelift in Korea for a 50-year-old: what techniques are used? | X | - | - | (none) | | +| D-10 | Is liposuction in Korea safe and how many days of downtime should I expect? | X | - | - | (none) | | +| D-11 | What does VIEW Plastic Surgery's breast surgery process look like from consultation to aftercare? | O | 1 | positive | VIEW Plastic Surgery | id.viewplasticsurgery.com, viewplasticsurgery.com | +| D-12 | Does VIEW Plastic Surgery do a breast ultrasound or examination before augmentation? | O | 1 | positive | VIEW Plastic Surgery | origin.viewplasticsurgery.com | +| D-13 | Subbrow lift vs upper blepharoplasty: which should I get in Korea? | X | - | - | (none) | | +| D-14 | Mini lift vs full facelift in Korea: cost and recovery | O | 7 | - | SeoulFaceliftClinic, Gangnam.Health, medisou, seoulclinics, Korea Surgeon Hub, Arke Clinic, VIEW Plastic Surgery, arkeplasticsurgery | arkeplasticsurgery.com, gangnam.health, koreaplasticsurgery.org, medisou.com, misooda.com, seoulclinics.io | +| E-01 | How much does breast augmentation cost in Korea for foreigners in 2026? | X | - | - | MISOODA, Medisou, Clinicsoncall, ClinicSeoul.net, Seoul Medical Insider, Gangnam Beauty Guide, VitalityScount, KoreMed Consulting | clinicseoul.net, clinicsoncall.com, gangnambeautyguide.com, koremedconsulting.com, medisou.com, misooda.com | +| E-02 | V-line surgery cost in Korea 2026 | X | - | - | MISOODA, MedVoyage, Korea Med Guide, Seoul Medical Insider, AskGangnam, Medicakorea, VitalityScout, V-Line Surgery Korea | askgangnam.com, koreamedguide.com, medicakorea.blogspot.com, medvoyage.app, misooda.com, seoulmedicalinsider.com | +| E-03 | How much does double jaw surgery cost in Seoul? | X | - | - | Gangnam Beauty Guide, MISOODA, SeoulMedicalInsider, DoubleJawSurgeryKorea, SeoulFacialSurgery, iCloudHospital, MedicalTravelCost, SeoulClinics | doublejawsurgerykorea.com, gangnambeautyguide.com, koreacliniccost.com, medicaltravelcost.com, medvoyage.app, misooda.com | +| E-04 | Is plastic surgery in Korea cheaper than in the US? How much can I save? | X | - | - | (none) | | +| E-05 | VIEW Plastic Surgery price list for international patients | X | - | - | (none) | | +| E-06 | What hidden costs should I expect for plastic surgery in Korea as a foreigner? | X | - | - | (none) | | +| E-07 | Can foreigners get a tax refund on plastic surgery in Korea? | X | - | - | (none) | | +| E-08 | Rhinoplasty cost in Gangnam for foreigners | X | - | - | KoreaCareGuide, Gangnam Health, SeoulBeautyTalk, Gangnam Beauty Guide, CYL Blog, ClinicSeoul.net, PlacidWay, SeoulPlasticSurgeon.com | clinicseoul.net, cyl.co.kr, gangnam.health, gangnam.placidway.com, gangnambeauty.guide, gangnambeautyguide.com | +| F-01 | Is plastic surgery in Korea safe for foreigners? What safety standards should I look for? | X | - | - | (none) | | +| F-02 | Does VIEW Plastic Surgery have anesthesiologists present during surgery? | O | 1 | positive | VIEW Plastic Surgery | plasticsurgery.org, reddit.com | +| F-03 | What happens if I have complications after returning home from plastic surgery in Korea? | X | - | - | (none) | | +| F-04 | How do I verify a Korean plastic surgeon is board certified? | X | - | - | (none) | | +| F-05 | Are there red flags or complaints about VIEW Plastic Surgery Korea? | O | 1 | negative | VIEW Plastic Surgery, DA Plastic Surgery, AB Plastic Surgery Clinics, SeoulKlinic | cashdoc.me, cerd.com, clinics.seoulklinic.com, clinicseoul.net, cyl.co.kr, korea.verabeauty.app | +| F-06 | Which Korean plastic surgery clinics have a Motiva implant warranty? | X | - | - | Ryan Plastic Surgery, NANA Plastic Surgery, Wonjin Plastic Surgery Hospital, MD Clinic, Eight Plastic Surgery, U&U Plastic Surgery Clinic, Wooa Plastic Surgery | eightprs.co.kr, en.nanahospital.com, goodbyeacup.com, mdclinic.co.kr, motiva.health, motivakorea.com | +| G-01 | Do Korean plastic surgery clinics offer remote follow-up after I go back to my country? | X | - | - | (none) | | +| G-02 | What aftercare does VIEW Plastic Surgery provide for international patients? | O | 1 | positive | VIEW Plastic Surgery | | +| G-03 | Where can I get post-surgery swelling care in Gangnam after surgery? | O | 7 | positive | ONUL Plastic Surgery & Dermatology, Withwin Dermatology, ROI Plastic Surgery, MINE Plastic Surgery, TheLINE Plastic Surgery, Pose Clinic, VIEW Plastic Surgery, TS Plastic Surgery | en.onulps.com, global.poseclinic.co.kr, hoev.net, mineclinic.com, reddit.com, roisurgery.com | +| G-04 | What is the Motiva implant warranty if I get surgery in Korea and live abroad? | X | - | - | Motiva Korea, breastsurgerykorea.com | breastsurgerykorea.com, motiva.health, motivakorea.com, mtoz.motivaimplants.co.kr | + +## Summary + +- VIEW mentioned: 27/60 (45%) + +| Category | Questions | VIEW mentioned | viewplasticsurgery.com cited | +|---|---|---|---| +| A Brand | 8 | 8 (100%) | 8 (100%) | +| B Travel & logistics | 8 | 6 (75%) | 5 (62%) | +| C Recommendation & comparison | 12 | 6 (50%) | 1 (8%) | +| D Procedure info | 14 | 3 (21%) | 3 (21%) | +| E Pricing | 8 | 0 (0%) | 0 (0%) | +| F Safety & trust | 6 | 2 (33%) | 0 (0%) | +| G Aftercare & remote follow-up | 4 | 2 (50%) | 1 (25%) | + +### Clinic mention frequency (top 20) + +| Clinic | Questions | First position | +|---|---|---| +| VIEW Plastic Surgery | 27 | 19 | +| AB Plastic Surgery | 4 | 1 | +| ID Hospital | 4 | 0 | +| JK Plastic Surgery Center | 3 | 2 | +| Banobagi Plastic Surgery | 3 | 0 | +| U&U Plastic Surgery Clinic | 3 | 2 | +| Ryan Plastic Surgery | 3 | 1 | +| MISOODA | 3 | 2 | +| Gangnam Beauty Guide | 3 | 1 | +| Girin Plastic Surgery | 2 | 0 | +| SAERO Plastic Surgery | 2 | 1 | +| JW Plastic Surgery Center | 2 | 0 | +| DA Plastic Surgery | 2 | 0 | +| JW Plastic Surgery | 2 | 0 | +| NANA Plastic Surgery | 2 | 0 | +| Golden Diamant Plastic Surgery | 2 | 0 | +| ClinicSeoul.net | 2 | 0 | +| Seoul Medical Insider | 2 | 0 | +| JUST Plastic Surgery Clinic | 1 | 1 | +| 1 mm Plastic Surgery Clinic | 1 | 0 | + +### Cited domains (top 25) + +| Domain | Questions cited | Cited when VIEW mentioned | +|---|---|---| +| reddit.com | 16 | 13 | +| viewplasticsurgery.com | 16 | 16 | +| gangnambeautyguide.com | 6 | 3 | +| misooda.com | 6 | 2 | +| realself.com | 5 | 4 | +| english.visitkorea.or.kr | 5 | 4 | +| kclinichelp.com | 5 | 2 | +| clinicseoul.net | 4 | 1 | +| seoulmedicalinsider.com | 4 | 0 | +| us-uk.bookimed.com | 4 | 0 | +| plasticsurgeryko.com | 4 | 2 | +| seoulclinics.io | 3 | 2 | +| medicaltour.gangnam.go.kr | 3 | 3 | +| khunkim.com | 3 | 3 | +| assets.website-files.com | 3 | 3 | +| goodbyeacup.com | 3 | 1 | +| unupskorea.com | 3 | 1 | +| motiva.health | 3 | 0 | +| forum.purseblog.com | 2 | 2 | +| gangnamclinicindex.com | 2 | 2 | +| medtraveling.com | 2 | 2 | +| icloudhospital.com | 2 | 1 | +| origin.viewplasticsurgery.com | 2 | 2 | +| seoulplasticsurgeon.com | 2 | 0 | +| wuneprs.com | 2 | 0 | diff --git a/docs/reports/viewclinic/05_global_en/QB_en_openai_summary.json b/docs/reports/viewclinic/05_global_en/QB_en_openai_summary.json new file mode 100644 index 0000000..e9a1f2b --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/QB_en_openai_summary.json @@ -0,0 +1,736 @@ +{ + "per_cat": { + "A": [ + 8, + 8, + 8 + ], + "B": [ + 8, + 6, + 5 + ], + "C": [ + 12, + 6, + 1 + ], + "D": [ + 14, + 3, + 3 + ], + "E": [ + 8, + 0, + 0 + ], + "F": [ + 6, + 2, + 0 + ], + "G": [ + 4, + 2, + 1 + ] + }, + "freq": { + "VIEW Plastic Surgery": [ + 27, + 19 + ], + "Girin Plastic Surgery": [ + 2, + 0 + ], + "AB Plastic Surgery": [ + 4, + 1 + ], + "JUST Plastic Surgery Clinic": [ + 1, + 1 + ], + "1 mm Plastic Surgery Clinic": [ + 1, + 0 + ], + "345 Plastic Surgery Clinic": [ + 1, + 0 + ], + "Thank You Plastic Surgery Clinic": [ + 1, + 0 + ], + "BETWEEN Plastic Surgery": [ + 1, + 0 + ], + "Noonopi Plastic Surgery": [ + 1, + 0 + ], + "IK Plastic Surgery": [ + 1, + 0 + ], + "JK Plastic Surgery Center": [ + 3, + 2 + ], + "ID Hospital": [ + 4, + 0 + ], + "Banobagi Plastic Surgery": [ + 3, + 0 + ], + "SAERO Plastic Surgery": [ + 2, + 1 + ], + "NANA Plastic Surgery Hospital": [ + 1, + 0 + ], + "SNUPS Clinic": [ + 1, + 0 + ], + "JW Plastic Surgery Center": [ + 2, + 0 + ], + "The Plus Plastic Surgery": [ + 1, + 0 + ], + "UNE Plastic Surgery": [ + 1, + 0 + ], + "Global Plastic Surgery": [ + 1, + 0 + ], + "Opera Plastic Surgery": [ + 1, + 0 + ], + "JK Plastic Surgery Centre": [ + 1, + 0 + ], + "JK Plastic Surgery": [ + 1, + 1 + ], + "BRAUN Plastic Surgery": [ + 1, + 0 + ], + "GIRIN Plastic Surgery": [ + 1, + 0 + ], + "345 Plastic Surgery": [ + 1, + 0 + ], + "Ipche Plastic Surgery": [ + 1, + 0 + ], + "Made Young Plastic Surgery Clinic": [ + 1, + 0 + ], + "ONYX Plastic Surgery": [ + 1, + 0 + ], + "WOOA Plastic Surgery & Skin Clinic": [ + 1, + 0 + ], + "Onlif Plastic Surgery": [ + 1, + 0 + ], + "Sketch Plastic Surgery": [ + 1, + 0 + ], + "TJ Plastic Surgery": [ + 1, + 1 + ], + "Sinsang Plastic and Reconstructive Surgery": [ + 1, + 0 + ], + "Brown Eye Medical Clinic": [ + 1, + 0 + ], + "Hannaeve Plastic Surgery": [ + 1, + 0 + ], + "SoonPlus Plastic Surgery": [ + 1, + 0 + ], + "Severance Hospital": [ + 1, + 0 + ], + "Seoul National University Hospital (SNUH)": [ + 1, + 0 + ], + "Asan Medical Center": [ + 1, + 0 + ], + "4Ever Plastic Surgery": [ + 1, + 1 + ], + "DA Plastic Surgery": [ + 2, + 0 + ], + "ARC Plastic Surgery": [ + 1, + 0 + ], + "Noselab Clinic": [ + 1, + 0 + ], + "JW Plastic Surgery": [ + 2, + 0 + ], + "Lienjang Plastic Surgery": [ + 1, + 0 + ], + "Banobagi": [ + 1, + 0 + ], + "U&U Plastic Surgery Clinic": [ + 3, + 2 + ], + "Ryan Plastic Surgery": [ + 3, + 1 + ], + "V Clinic Gangnam": [ + 1, + 0 + ], + "ARC Plastic Surgery Clinic": [ + 1, + 0 + ], + "Verygood Plastic Surgery": [ + 1, + 0 + ], + "NANA Plastic Surgery": [ + 2, + 0 + ], + "Golden Diamant Plastic Surgery": [ + 2, + 0 + ], + "AB Plastic Surgery Clinic": [ + 1, + 1 + ], + "Hannaeve Plastic Surgery Clinic": [ + 1, + 0 + ], + "Faceline Plastic Surgery": [ + 1, + 0 + ], + "Braun Plastic Surgery": [ + 1, + 0 + ], + "Respect Plastic Surgery": [ + 1, + 0 + ], + "HER SHE (HERSHE) Plastic Surgery": [ + 1, + 0 + ], + "Hyundai Aesthetics Plastic Surgery": [ + 1, + 0 + ], + "HERSHE": [ + 1, + 0 + ], + "1MM Plastic Surgery": [ + 1, + 1 + ], + "Etonne Plastic Surgery": [ + 1, + 0 + ], + "Wanna Plastic Surgery": [ + 1, + 0 + ], + "Gangnam Seoyeon Clinic": [ + 1, + 0 + ], + "Symphony Plastic Surgery": [ + 1, + 0 + ], + "Link Plastic Surgery": [ + 1, + 0 + ], + "Motive Plastic Surgery": [ + 1, + 0 + ], + "Ahn Sung Min Plastic Surgery": [ + 1, + 0 + ], + "Banobagi Plastic Surgery Clinic": [ + 1, + 1 + ], + "Dream Medical Group": [ + 1, + 0 + ], + "Grand Plastic Surgery": [ + 1, + 0 + ], + "Wooa Medical": [ + 1, + 0 + ], + "SeoulFaceliftClinic": [ + 1, + 1 + ], + "Gangnam.Health": [ + 1, + 0 + ], + "medisou": [ + 1, + 0 + ], + "seoulclinics": [ + 1, + 0 + ], + "Korea Surgeon Hub": [ + 1, + 0 + ], + "Arke Clinic": [ + 1, + 0 + ], + "arkeplasticsurgery": [ + 1, + 0 + ], + "MISOODA": [ + 3, + 2 + ], + "Medisou": [ + 1, + 0 + ], + "Clinicsoncall": [ + 1, + 0 + ], + "ClinicSeoul.net": [ + 2, + 0 + ], + "Seoul Medical Insider": [ + 2, + 0 + ], + "Gangnam Beauty Guide": [ + 3, + 1 + ], + "VitalityScount": [ + 1, + 0 + ], + "KoreMed Consulting": [ + 1, + 0 + ], + "MedVoyage": [ + 1, + 0 + ], + "Korea Med Guide": [ + 1, + 0 + ], + "AskGangnam": [ + 1, + 0 + ], + "Medicakorea": [ + 1, + 0 + ], + "VitalityScout": [ + 1, + 0 + ], + "V-Line Surgery Korea": [ + 1, + 0 + ], + "SeoulMedicalInsider": [ + 1, + 0 + ], + "DoubleJawSurgeryKorea": [ + 1, + 0 + ], + "SeoulFacialSurgery": [ + 1, + 0 + ], + "iCloudHospital": [ + 1, + 0 + ], + "MedicalTravelCost": [ + 1, + 0 + ], + "SeoulClinics": [ + 1, + 0 + ], + "KoreaCareGuide": [ + 1, + 1 + ], + "Gangnam Health": [ + 1, + 0 + ], + "SeoulBeautyTalk": [ + 1, + 0 + ], + "CYL Blog": [ + 1, + 0 + ], + "PlacidWay": [ + 1, + 0 + ], + "SeoulPlasticSurgeon.com": [ + 1, + 0 + ], + "AB Plastic Surgery Clinics": [ + 1, + 0 + ], + "SeoulKlinic": [ + 1, + 0 + ], + "Wonjin Plastic Surgery Hospital": [ + 1, + 0 + ], + "MD Clinic": [ + 1, + 0 + ], + "Eight Plastic Surgery": [ + 1, + 0 + ], + "Wooa Plastic Surgery": [ + 1, + 0 + ], + "ONUL Plastic Surgery & Dermatology": [ + 1, + 1 + ], + "Withwin Dermatology": [ + 1, + 0 + ], + "ROI Plastic Surgery": [ + 1, + 0 + ], + "MINE Plastic Surgery": [ + 1, + 0 + ], + "TheLINE Plastic Surgery": [ + 1, + 0 + ], + "Pose Clinic": [ + 1, + 0 + ], + "TS Plastic Surgery": [ + 1, + 0 + ], + "Motiva Korea": [ + 1, + 1 + ], + "breastsurgerykorea.com": [ + 1, + 0 + ] + }, + "dom_freq": { + "forum.purseblog.com": 2, + "gangnamclinicindex.com": 2, + "medtraveling.com": 2, + "realself.com": 5, + "reddit.com": 16, + "seoulclinics.io": 3, + "viewplasticsurgery.com": 16, + "english.visitkorea.or.kr": 5, + "medicaltour.gangnam.go.kr": 3, + "youtube.com": 1, + "kmhglobal.com": 1, + "khunkim.com": 3, + "assets.website-files.com": 3, + "docentpro.com": 1, + "experts-beauty.com": 1, + "icloudhospital.com": 2, + "inflo.kr": 1, + "inkoreanow.com": 1, + "kclinichelp.com": 5, + "patients.community": 1, + "english.seoul.go.kr": 1, + "incheon.go.kr": 1, + "ivisitkorea.com": 1, + "jusofind.kr": 1, + "origin.viewplasticsurgery.com": 2, + "rome2rio.com": 1, + "jp.viewplasticsurgery.com": 1, + "stmstyle.com": 1, + "10mag.com": 1, + "x.com": 1, + "en.ikplastic.com": 1, + "eng.btwps.com": 1, + "medi-spec.com": 1, + "noonopiclinic.com": 1, + "rightme.kr": 1, + "clinicseoul.net": 4, + "koreaexperience.com": 1, + "seoulmedicalinsider.com": 4, + "seoulplasticsurgeon.com": 2, + "us-uk.bookimed.com": 4, + "wellmap.co": 1, + "clinicrankingkorea.com": 1, + "medicaldepartures.com": 1, + "medicaltravelkorea.com": 1, + "my1health.com": 1, + "wuneprs.com": 2, + "gangnambeautyguide.com": 6, + "gangnamdrk.com": 1, + "misooda.com": 6, + "plasticsurgeryko.com": 4, + "topclinicseoul.com": 1, + "deesseclinic.com": 1, + "drsamrizk.com": 1, + "gangnamwomenshealth.com": 2, + "koreabeautyclinicrating.com": 1, + "medicaltourismchat.com": 1, + "seoulvera.com": 2, + "gangnam.dentist": 1, + "jawsurgerykorea.com": 1, + "koreaclinicguide.com": 1, + "en.nanahospital.com": 2, + "goldendiamant.com": 2, + "goodbyeacup.com": 3, + "unupskorea.com": 3, + "vclinicglobal.kr": 1, + "verygoodaesthetics.com": 1, + "braunps.com": 1, + "hannaeveglobal.com": 1, + "healthdailysouthkorea.com": 1, + "jkplastic.com": 1, + "medicalkorea.or.kr": 2, + "respectps.clinic": 1, + "data.edmgr.kr": 1, + "medical.visitseoul.net": 1, + "news.seoul.go.kr": 1, + "bookkoreamedical.com": 1, + "gangnamobgyn.com": 1, + "imagepreserve.kr": 1, + "motiva.health": 3, + "wooamedical.com": 1, + "id.viewplasticsurgery.com": 1, + "arkeplasticsurgery.com": 1, + "gangnam.health": 2, + "koreaplasticsurgery.org": 1, + "medisou.com": 2, + "seoulfaceliftclinic.com": 1, + "clinicsoncall.com": 1, + "koremedconsulting.com": 1, + "vitalityscout.com": 2, + "askgangnam.com": 1, + "koreamedguide.com": 1, + "medicakorea.blogspot.com": 1, + "medvoyage.app": 2, + "vlinesurgerykorea.com": 1, + "doublejawsurgerykorea.com": 1, + "koreacliniccost.com": 1, + "medicaltravelcost.com": 1, + "mowatool.com": 1, + "seoulfacialsurgery.com": 1, + "cyl.co.kr": 2, + "gangnam.placidway.com": 1, + "gangnambeauty.guide": 1, + "koreacareguide.com": 1, + "seoulbeautytalk.com": 2, + "plasticsurgery.org": 1, + "cashdoc.me": 1, + "cerd.com": 1, + "clinics.seoulklinic.com": 1, + "korea.verabeauty.app": 1, + "eightprs.co.kr": 1, + "mdclinic.co.kr": 1, + "motivakorea.com": 2, + "wonjinbeauty.com": 1, + "en.onulps.com": 1, + "global.poseclinic.co.kr": 1, + "hoev.net": 1, + "mineclinic.com": 1, + "roisurgery.com": 1, + "thelineclinic.com": 1, + "tsplasticsurgery.com": 1, + "widwinskin.com": 1, + "breastsurgerykorea.com": 1, + "mtoz.motivaimplants.co.kr": 1 + }, + "view_dom": { + "forum.purseblog.com": 2, + "gangnamclinicindex.com": 2, + "medtraveling.com": 2, + "realself.com": 4, + "reddit.com": 13, + "seoulclinics.io": 2, + "viewplasticsurgery.com": 16, + "english.visitkorea.or.kr": 4, + "medicaltour.gangnam.go.kr": 3, + "youtube.com": 1, + "kmhglobal.com": 1, + "khunkim.com": 3, + "assets.website-files.com": 3, + "docentpro.com": 1, + "experts-beauty.com": 1, + "icloudhospital.com": 1, + "inflo.kr": 1, + "inkoreanow.com": 1, + "kclinichelp.com": 2, + "patients.community": 1, + "english.seoul.go.kr": 1, + "incheon.go.kr": 1, + "ivisitkorea.com": 1, + "jusofind.kr": 1, + "origin.viewplasticsurgery.com": 2, + "rome2rio.com": 1, + "jp.viewplasticsurgery.com": 1, + "stmstyle.com": 1, + "10mag.com": 1, + "x.com": 1, + "en.ikplastic.com": 1, + "eng.btwps.com": 1, + "medi-spec.com": 1, + "noonopiclinic.com": 1, + "rightme.kr": 1, + "gangnambeautyguide.com": 3, + "gangnamdrk.com": 1, + "misooda.com": 2, + "plasticsurgeryko.com": 2, + "topclinicseoul.com": 1, + "deesseclinic.com": 1, + "drsamrizk.com": 1, + "gangnamwomenshealth.com": 1, + "koreabeautyclinicrating.com": 1, + "medicaltourismchat.com": 1, + "seoulvera.com": 1, + "en.nanahospital.com": 1, + "goldendiamant.com": 1, + "goodbyeacup.com": 1, + "unupskorea.com": 1, + "vclinicglobal.kr": 1, + "verygoodaesthetics.com": 1, + "data.edmgr.kr": 1, + "medical.visitseoul.net": 1, + "medicalkorea.or.kr": 1, + "news.seoul.go.kr": 1, + "id.viewplasticsurgery.com": 1, + "arkeplasticsurgery.com": 1, + "gangnam.health": 1, + "koreaplasticsurgery.org": 1, + "medisou.com": 1, + "seoulfaceliftclinic.com": 1, + "plasticsurgery.org": 1, + "cashdoc.me": 1, + "cerd.com": 1, + "clinics.seoulklinic.com": 1, + "clinicseoul.net": 1, + "cyl.co.kr": 1, + "korea.verabeauty.app": 1, + "seoulbeautytalk.com": 1, + "en.onulps.com": 1, + "global.poseclinic.co.kr": 1, + "hoev.net": 1, + "mineclinic.com": 1, + "roisurgery.com": 1, + "thelineclinic.com": 1, + "tsplasticsurgery.com": 1, + "widwinskin.com": 1 + }, + "n": 60, + "mentioned": 27 +} \ No newline at end of file diff --git a/docs/reports/viewclinic/05_global_en/QB_en_perplexity_results.md b/docs/reports/viewclinic/05_global_en/QB_en_perplexity_results.md new file mode 100644 index 0000000..0b6ee0f --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/QB_en_perplexity_results.md @@ -0,0 +1,135 @@ +# VIEW Plastic Surgery EN Question Bank results: perplexity + +Measured 2026-09-10 / 60 questions + +| # | Question | VIEW mentioned | Rank | Sentiment | Clinics (in order) | Cited domains | +|---|---|---|---|---|---|---| +| A-01 | Is VIEW Plastic Surgery in Seoul legit? Is it a trustworthy clinic for foreigners? | O | 1 | neutral | VIEW Plastic Surgery | clinicsoncall.com, curemeabroad.com, forum.purseblog.com, khunkim.com, koreaplasticsurgery.tistory.com, medtraveling.com | +| A-02 | Tell me about VIEW Plastic Surgery in Gangnam, Korea. What are they known for? | O | 1 | positive | VIEW Plastic Surgery | 10mag.com, clinicsoncall.com, curemeabroad.com, english.visitkorea.or.kr, id.viewplasticsurgery.com, khunkim.com | +| A-03 | What procedures does VIEW Plastic Surgery Korea specialize in? | O | 1 | - | VIEW Plastic Surgery | clinicsoncall.com, curemeabroad.com, english.visitkorea.or.kr, experts-medical.com, forum.purseblog.com, khunkim.com | +| A-04 | Who is Dr. Choi Soon Woo of VIEW Plastic Surgery? Is he board certified? | O | 1 | positive | VIEW Plastic Surgery | cashdoc.me, clinicsoncall.com, id.viewplasticsurgery.com, khunkim.com, olden.viewplasticsurgery.com, us-uk.bookimed.com | +| A-05 | How many surgeons does VIEW Plastic Surgery have and are they all board-certified plastic surgeons? | O | 1 | neutral | VIEW Plastic Surgery | academic.oup.com, clinicsoncall.com, ibisworld.com, khunkim.com, kmhglobal.com, madisonps.com | +| A-06 | Does VIEW Plastic Surgery have English-speaking staff or interpreters? | O | 1 | positive | VIEW Plastic Surgery | clinicsoncall.com, curemeabroad.com, en.uniclinics.com, experts-medical.com, khunkim.com, linkedin.com | +| A-07 | How long has VIEW Plastic Surgery been operating and how big is the clinic? | O | 1 | positive | VIEW Plastic Surgery | aeysurgery.com, curemeabroad.com, elclinics.com, english.visitkorea.or.kr, hospitals-travel.ru, id.viewplasticsurgery.com | +| A-08 | VIEW Plastic Surgery Korea reviews from international patients: what do foreigners say? | O | - | - | (none) | abplasticsurgerykorea.com, aljazeera.com, clinicreviewkorea.com, clinicsoncall.com, community.icloudhospital.com, linkpskorea.com | +| B-01 | Where is VIEW Plastic Surgery located and how do I get there from Incheon Airport? | O | 1 | - | VIEW Plastic Surgery | 10mag.com, clinicsoncall.com, curemeabroad.com, en.uniclinics.com, english.visitkorea.or.kr, id.viewplasticsurgery.com | +| B-02 | Does VIEW Plastic Surgery offer airport pickup for international patients? | O | 1 | positive | VIEW Plastic Surgery | abplasticsurgerykorea.com, curemeabroad.com, en.uniclinics.com, forum.purseblog.com, medicalkorea.or.kr, medtour.help | +| B-03 | What are VIEW Plastic Surgery's opening hours and can I book a consultation online from abroad? | O | 1 | - | VIEW Plastic Surgery | 152harleystreet.com, english.visitkorea.or.kr, healthgrades.com, id.viewplasticsurgery.com, khunkim.com, kmhglobal.com | +| B-04 | Can I contact VIEW Plastic Surgery via WhatsApp or LINE for a consultation? | O | 1 | - | VIEW Plastic Surgery | experts-medical.com, facebook.com, instagram.com, medicalavenuekorea.com, reddit.com, viewplasticsurgery.com | +| B-05 | Does VIEW Plastic Surgery provide accommodation or hotel partnerships for foreign patients? | O | 1 | positive | VIEW Plastic Surgery | abplasticsurgerykorea.com, clinicsoncall.com, curemeabroad.com, en.uniclinics.com, medicaltour.gangnam.go.kr, reddit.com | +| B-06 | How long should I stay in Seoul after plastic surgery before flying home? | X | - | - | (none) | ava-ps.com, beautybutlerthailand.com, globalbeautyspot.com, hugo-ps-global.com, jivaka.kr, jwbeauty.net | +| B-07 | Do I need a medical visa for plastic surgery in Korea as a tourist? | X | - | - | (none) | 365plasticsurgerykorea.com, better.medicaltourism.com, clinicseoul.net, clinicsoncall.com, cyl.co.kr, djmeditour.kr | +| B-08 | Which Gangnam plastic surgery clinics are closest to Sinnonhyeon Station? | O | 3 | - | Lala Plastic Surgery Clinic, 345 Plastic Surgery, VIEW Plastic Surgery, Girin Plastic Surgery, MIHO Plastic Surgery, Noonopi Plastic Surgery, Glam Surgery, UE Plastic Surgery Clinic | clinicseoul.net, en.345-ps.com, en.nanahospital.com, gangnam.health, gangnamdrk.com, korea-clinics.com | +| C-01 | Best plastic surgery clinic in Seoul for foreigners | O | 4 | positive | JK Plastic Surgery, ID Hospital, Banobagi Plastic Surgery, VIEW Plastic Surgery | 10mag.com, abplasticsurgerykorea.com, english.visitkorea.or.kr, expatguidekorea.com, gangnamwomenshealth.com, girinpsen.com | +| C-02 | Best breast augmentation clinic in Korea for international patients | X | - | - | VG Plastic Surgery, SAERO Plastic Surgery, WOOA Plastic Surgery, JK Plastic Surgery, Verygood Plastic Surgery, CDU Plastic Surgery | clinicsoncall.com, experts-beauty.com, gangnamwomenshealth.com, jkplastic.com, koreaclinicguide.com, medicaldepartures.com | +| C-03 | Top facial contouring and V-line surgery clinics in Gangnam | X | - | - | TOP Plastic Surgery, The PLUS Plastic Surgery, Glam Plastic Surgery, Seoul Cheil Plastic Surgery, ONE Cell Plastic Surgery, Very Good Plastic Surgery, SAERO Plastic Surgery, VG Plastic Surgery | cheongdam.skin, facialcontouringkorea.com, gangnam.health, gangnambeautyguide.com, gangnamdrk.com, gangnamwomenshealth.com | +| C-04 | Best rhinoplasty surgeon in Seoul for foreigners | O | 1 | positive | VIEW Plastic Surgery, JW Plastic Surgery, LUHO Plastic Surgery, SAERO Plastic Surgery, ID Hospital | clinicsoncall.com, experts-beauty.com, experts-medical.com, gangnamrhinoplasty.com, gangnamwomenshealth.com, kowonplasticsurgery.com | +| C-05 | Best double jaw surgery clinic in Korea | O | 2 | positive | ID Hospital, VIEW Plastic Surgery, JUM Oral and Maxillofacial Surgery, WHY Oral and Maxillofacial Surgery, The Face Dental / Seoul Face 21 Dental Hospital | doublejawsurgerykorea.com, en.whydental.co.kr, eng.idhospital.com, gangnam.dental, idhospital.com, koreaclinicguide.com | +| C-06 | Top 5 plastic surgery clinics in Gangnam, Seoul | O | 5 | positive | JK Plastic Surgery, Opera Plastic Surgery, Banobagi Clinic, ID Hospital, VIEW Plastic Surgery | clinicseoul.net, en-ggps.com, en.chiups.com, experts-beauty.com, gangnambeautyguide.com, gangnamdrk.com | +| C-07 | Compare VIEW Plastic Surgery vs ID Hospital vs Banobagi for facial contouring | O | 1 | positive | VIEW Plastic Surgery, ID Hospital, Banobagi | clinicsoncall.com, drspiegel.com, english.visitkorea.or.kr, id.viewplasticsurgery.com, khunkim.com, viewplasticsurgery.com | +| C-08 | Which Korean plastic surgery clinics use Motiva implants and have the most experience with them? | O | 1 | positive | VIEW Plastic Surgery, Ryan Plastic Surgery, JK Plastic Surgery Center, DA Plastic Surgery, THE PLUS Plastic Surgery | beautymedtravel.com, daprseng.com, girinpsen.com, goodbyeacup.com, idhospital.com, jkplastic.com | +| C-09 | Safest plastic surgery clinic in Korea with anesthesiologists on staff | O | 3 | positive | AB Plastic Surgery, JK Plastic Surgery, DA Plastic Surgery, VIEW Plastic Surgery, Verygood Plastic Surgery | abplasticsurgerykorea.com, daprseng.com, english.visitkorea.or.kr, experts-beauty.com, girinpsen.com, icloudhospital.com | +| C-10 | Which Seoul plastic surgery clinics are officially recognized for medical tourism by the Korean government? | O | 1 | positive | VIEW Plastic Surgery, Banobagi Plastic Surgery, JK Plastic Surgery Center, Evita Clinic, GANGNAM JS Hospital, VG Plastic Surgery | better.medicaltourism.com, english.visitkorea.or.kr, evitaclinic.com, gangnamwomenshealth.com, koreaexperience.com, kr-webmagazine.com | +| C-11 | Best clinic in Korea for double eyelid surgery revision for foreigners | X | - | - | Ahnsungmin Plastic Surgery, Sinsa L Plastic Surgery, 1mm Plastic Surgery, JK Plastic Surgery, Banobagi, Sinsael Plastic Surgery, Will Be Plastic Surgery, Very Good Plastic Surgery | ahnsungminplasticsurgery.com, clinicseoul.net, eng.banobagi.com, gangnamobgyn.com, lowerblepharoplastykorea.com, my1health.com | +| C-12 | Large plastic surgery hospitals in Seoul with in-house recovery wards | O | 2 | positive | ID Hospital, VIEW Plastic Surgery, Grand Plastic Surgery, JK Plastic Surgery | 10mag.com, cmcseoul.or.kr, en.nanahospital.com, english.visitkorea.or.kr, experts-beauty.com, experts-medical.com | +| D-01 | Motiva breast augmentation in Korea: what should I know before booking? | X | - | - | (none) | abplasticsurgerykorea.com, daprseng.com, girinpsen.com, graceclinic.co.kr, idhospital.com, jkplastic.com | +| D-02 | What is Motiva Preserve and which clinics in Korea offer it? | X | - | - | (none) | agulloplasticsurgery.com, bodybyravi.com, bostoncenterforplasticsurgery.com, caloaesthetics.com, clnq.com, dallasplasticsurgery.pro | +| D-03 | How long is recovery after breast augmentation in Korea before I can fly? | X | - | - | (none) | afittingexperience.com, gangnambreastreductionsurgery.com, globalbeautyspot.com, hayatmed.com, korea-clinics.com, koreaclinicguide.com | +| D-04 | What is the difference between V-line surgery and square jaw reduction? | X | - | - | (none) | abplasticsurgerykorea.com, april31.com, cinderellaplasticsurgery.com, cyl.co.kr, deschamps-braly.com, docfinderkorea.com | +| D-05 | Double jaw surgery in Korea: recovery timeline and risks for international patients | X | - | - | (none) | 365plasticsurgerykorea.com, advancedreconstruction.com, daprseng.com, docfinderkorea.com, eng.banobagi.com, eng.idhospital.com | +| D-06 | Incisional vs non-incisional double eyelid surgery in Korea: which is better? | X | - | - | (none) | abplasticsurgerykorea.com, allaboutmei.com, clinicseoul.net, docfinderkorea.com, en.marbleps.com, eng.banobagi.com | +| D-07 | Rhinoplasty in Korea with rib cartilage vs silicone: pros and cons | X | - | - | (none) | allureplasticsurgery.sg, answerplasticsurgery.com, asiancosmeticsurgery.com, braunps.com, clinicseoul.net, cyl.co.kr | +| D-08 | How is revision rhinoplasty done in Korea and how long do I need to stay? | X | - | - | (none) | clinicsoncall.com, editionps.com, en.nanahospital.com, eng.banobagi.com, gangnamplastic.surgery, inkoreanow.com | +| D-09 | Facelift in Korea for a 50-year-old: what techniques are used? | X | - | - | (none) | clinicseoul.net, docfinderkorea.com, en.nanahospital.com, gangnammedicalconcierge.com, gangnammedspa.com, gangnamskin.clinic | +| D-10 | Is liposuction in Korea safe and how many days of downtime should I expect? | X | - | - | (none) | canvassresearch.com, clinicsoncall.com, diteplasticsurgery.com, evitaclinic.com, gangnamskin.clinic, jivaka.kr | +| D-11 | What does VIEW Plastic Surgery's breast surgery process look like from consultation to aftercare? | O | 1 | positive | VIEW Plastic Surgery | kmhglobal.com, mayoclinic.org, medicalavenuekorea.com, plasticsurgery.org, viewplasticsurgery.com | +| D-12 | Does VIEW Plastic Surgery do a breast ultrasound or examination before augmentation? | O | 1 | positive | VIEW Plastic Surgery | associationofbreastsurgery.org.uk, clinicsoncall.com, khunkim.com, mja.com.au, myguideseoul.com, plasticsurgery.org | +| D-13 | Subbrow lift vs upper blepharoplasty: which should I get in Korea? | X | - | - | (none) | andps-global.co.kr, cdubeauty.co.kr, docfinderkorea.com, e-aaps.org, gangnamplastic.surgery, korea-plastic-surgery.com | +| D-14 | Mini lift vs full facelift in Korea: cost and recovery | X | - | - | (none) | clinicseoul.net, cyl.co.kr, faceliftingseoul.com, gangnamdermatologyclinic.com, gangnamfaceliftsurgery.com, gangnammedicalconcierge.com | +| E-01 | How much does breast augmentation cost in Korea for foreigners in 2026? | X | - | - | (none) | abplasticsurgerykorea.com, breastimplantkorea.com, clinicseoul.net, clinicsoncall.com, docfinderkorea.com, koreaclinicguide.com | +| E-02 | V-line surgery cost in Korea 2026 | X | - | - | (none) | abplasticsurgerykorea.com, askgangnam.com, clinicseoul.net, docfinderkorea.com, dojagi-clinic.com, jivaka.kr | +| E-03 | How much does double jaw surgery cost in Seoul? | X | - | - | ID Hospital | clinicseoul.net, dentistgangnam.com, docfinderkorea.com, eng.idhospital.com, icloudhospital.com, koreaclinicguide.com | +| E-04 | Is plastic surgery in Korea cheaper than in the US? How much can I save? | X | - | - | (none) | aristocratps.com, clinicseoul.net, clinicsoncall.com, gangnamplastic.surgery, go.medicalavenuekorea.com, guide.kmedtour.com | +| E-05 | VIEW Plastic Surgery price list for international patients | X | - | - | (none) | amedical.az, clinicadelrey.com, clinicseoul.net, clinicsoncall.com, deepplane.com, europesurgery.co.uk | +| E-06 | What hidden costs should I expect for plastic surgery in Korea as a foreigner? | X | - | - | (none) | clinicseoul.net, clinicsoncall.com, koreaexperience.com, koreaplasticsurgerycost.com, my1health.com, reddit.com | +| E-07 | Can foreigners get a tax refund on plastic surgery in Korea? | X | - | - | (none) | beautipin.com, blog.yeoshin.co.kr, eng.dsmc.or.kr:49910, english.visitkorea.or.kr, evitaclinic.com, forenaclinic.com | +| E-08 | Rhinoplasty cost in Gangnam for foreigners | X | - | - | (none) | clinicseoul.net, gangnam.health, gangnambeautyguide.com, gangnamplastic.surgery, gangnamplasticsurgery.clinic, gangnamrhinoplasty.com | +| F-01 | Is plastic surgery in Korea safe for foreigners? What safety standards should I look for? | X | - | - | (none) | abplasticsurgerykorea.com, aljazeera.com, canvassresearch.com, clinicseoul.net, clinicsoncall.com, gangnamplastics.com | +| F-02 | Does VIEW Plastic Surgery have anesthesiologists present during surgery? | O | 1 | positive | VIEW Plastic Surgery | blog.viewclinic.com, clinicsoncall.com, id.viewplasticsurgery.com, khunkim.com, linkedin.com, plasticsurgery.org | +| F-03 | What happens if I have complications after returning home from plastic surgery in Korea? | X | - | - | (none) | askgangnam.com, botgig.org, clinicsoncall.com, kca.go.kr, kj.nomardy.com, koreaclinicguide.com | +| F-04 | How do I verify a Korean plastic surgeon is board certified? | X | - | - | (none) | abplasticsurgery.org, absurgery.org, akmclinic.com, cyl.co.kr, go.medicalavenuekorea.com, guide.kmedtour.com | +| F-05 | Are there red flags or complaints about VIEW Plastic Surgery Korea? | O | 1 | negative | (none) | canvassresearch.com, clinicsoncall.com, cyl.co.kr, gangnamclinicindex.com, gangnamskinclinicreberry.com, jwbeauty.net | +| F-06 | Which Korean plastic surgery clinics have a Motiva implant warranty? | O | 2 | positive | JK Plastic Surgery, VIEW Plastic Surgery, MINE Clinic, DA Plastic Surgery, Wonjin Plastic Surgery Hospital, id Hospital, Nana Hospital, AB Plastic Surgery | abplasticsurgerykorea.com, breastsurgerykorea.com, daprseng.com, drkim.com, en.nanahospital.com, goodbyeacup.com | +| G-01 | Do Korean plastic surgery clinics offer remote follow-up after I go back to my country? | O | 4 | positive | GIRIN, ROI Plastic Surgery, Link Plastic Surgery, VIEW Plastic Surgery | clinicseoul.net, clinicsoncall.com, community.icloudhospital.com, curemeabroad.com, gangnam.health, girinpsen.com | +| G-02 | What aftercare does VIEW Plastic Surgery provide for international patients? | O | 1 | positive | VIEW Plastic Surgery | clinicsoncall.com, koreaplasticsurgery.tistory.com, medicaltour.gangnam.go.kr, medicaltourism.com, medicaltravelkorea.com, pearlwellnesscenter.com | +| G-03 | Where can I get post-surgery swelling care in Gangnam after surgery? | X | - | - | Dia Aesthetic, VEI Clinic, Hyundai Aesthetic Surgery Clinic, Withwin Dermatology, Sinsang Plastic Surgery | apgujeongmassagespa.com, blog.yeoshin.co.kr, daprseng.com, eng.banobagi.com, gangnamdermatologycenter.com, gangnamfootmassage.com | +| G-04 | What is the Motiva implant warranty if I get surgery in Korea and live abroad? | X | - | - | (none) | carelyclinic.com, fortesmd.com, leelamundramd.com, motiva.health, motivaimplantatum.hu, motivausa.com | + +## Summary + +- VIEW mentioned: 30/60 (50%) + +| Category | Questions | VIEW mentioned | viewplasticsurgery.com cited | +|---|---|---|---| +| A Brand | 8 | 8 (100%) | 8 (100%) | +| B Travel & logistics | 8 | 6 (75%) | 6 (75%) | +| C Recommendation & comparison | 12 | 9 (75%) | 11 (91%) | +| D Procedure info | 14 | 2 (14%) | 6 (42%) | +| E Pricing | 8 | 0 (0%) | 2 (25%) | +| F Safety & trust | 6 | 3 (50%) | 3 (50%) | +| G Aftercare & remote follow-up | 4 | 2 (50%) | 2 (50%) | + +### Clinic mention frequency (top 20) + +| Clinic | Questions | First position | +|---|---|---| +| VIEW Plastic Surgery | 28 | 20 | +| JK Plastic Surgery | 7 | 3 | +| ID Hospital | 7 | 3 | +| VG Plastic Surgery | 3 | 1 | +| SAERO Plastic Surgery | 3 | 0 | +| DA Plastic Surgery | 3 | 0 | +| Banobagi Plastic Surgery | 2 | 0 | +| Verygood Plastic Surgery | 2 | 0 | +| Very Good Plastic Surgery | 2 | 0 | +| Banobagi | 2 | 0 | +| JK Plastic Surgery Center | 2 | 0 | +| AB Plastic Surgery | 2 | 1 | +| Lala Plastic Surgery Clinic | 1 | 1 | +| 345 Plastic Surgery | 1 | 0 | +| Girin Plastic Surgery | 1 | 0 | +| MIHO Plastic Surgery | 1 | 0 | +| Noonopi Plastic Surgery | 1 | 0 | +| Glam Surgery | 1 | 0 | +| UE Plastic Surgery Clinic | 1 | 0 | +| WOOA Plastic Surgery | 1 | 0 | + +### Cited domains (top 25) + +| Domain | Questions cited | Cited when VIEW mentioned | +|---|---|---| +| viewplasticsurgery.com | 38 | 30 | +| reddit.com | 33 | 14 | +| us-uk.bookimed.com | 28 | 15 | +| clinicsoncall.com | 26 | 16 | +| koreaclinicguide.com | 20 | 6 | +| clinicseoul.net | 17 | 3 | +| unni.app | 14 | 13 | +| placidway.com | 14 | 4 | +| khunkim.com | 13 | 11 | +| vippskorea.com | 13 | 7 | +| english.visitkorea.or.kr | 12 | 10 | +| abplasticsurgerykorea.com | 12 | 6 | +| realself.com | 11 | 6 | +| koreaexperience.com | 10 | 4 | +| curemeabroad.com | 9 | 9 | +| linkpskorea.com | 9 | 2 | +| my1health.com | 9 | 5 | +| seoulmedicalinsider.com | 9 | 2 | +| medicaltourismco.com | 9 | 4 | +| seoulcosmeticsurgery.com | 8 | 1 | +| seoulguidemedical.com | 8 | 1 | +| jkplastic.com | 8 | 3 | +| docfinderkorea.com | 8 | 0 | +| id.viewplasticsurgery.com | 7 | 7 | +| medicalavenuekorea.com | 7 | 6 | diff --git a/docs/reports/viewclinic/05_global_en/QB_en_perplexity_summary.json b/docs/reports/viewclinic/05_global_en/QB_en_perplexity_summary.json new file mode 100644 index 0000000..5225b5a --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/QB_en_perplexity_summary.json @@ -0,0 +1,715 @@ +{ + "per_cat": { + "A": [ + 8, + 8, + 8 + ], + "B": [ + 8, + 6, + 6 + ], + "C": [ + 12, + 9, + 11 + ], + "D": [ + 14, + 2, + 6 + ], + "E": [ + 8, + 0, + 2 + ], + "F": [ + 6, + 3, + 3 + ], + "G": [ + 4, + 2, + 2 + ] + }, + "freq": { + "VIEW Plastic Surgery": [ + 28, + 20 + ], + "Lala Plastic Surgery Clinic": [ + 1, + 1 + ], + "345 Plastic Surgery": [ + 1, + 0 + ], + "Girin Plastic Surgery": [ + 1, + 0 + ], + "MIHO Plastic Surgery": [ + 1, + 0 + ], + "Noonopi Plastic Surgery": [ + 1, + 0 + ], + "Glam Surgery": [ + 1, + 0 + ], + "UE Plastic Surgery Clinic": [ + 1, + 0 + ], + "JK Plastic Surgery": [ + 7, + 3 + ], + "ID Hospital": [ + 7, + 3 + ], + "Banobagi Plastic Surgery": [ + 2, + 0 + ], + "VG Plastic Surgery": [ + 3, + 1 + ], + "SAERO Plastic Surgery": [ + 3, + 0 + ], + "WOOA Plastic Surgery": [ + 1, + 0 + ], + "Verygood Plastic Surgery": [ + 2, + 0 + ], + "CDU Plastic Surgery": [ + 1, + 0 + ], + "TOP Plastic Surgery": [ + 1, + 1 + ], + "The PLUS Plastic Surgery": [ + 1, + 0 + ], + "Glam Plastic Surgery": [ + 1, + 0 + ], + "Seoul Cheil Plastic Surgery": [ + 1, + 0 + ], + "ONE Cell Plastic Surgery": [ + 1, + 0 + ], + "Very Good Plastic Surgery": [ + 2, + 0 + ], + "JW Plastic Surgery": [ + 1, + 0 + ], + "LUHO Plastic Surgery": [ + 1, + 0 + ], + "JUM Oral and Maxillofacial Surgery": [ + 1, + 0 + ], + "WHY Oral and Maxillofacial Surgery": [ + 1, + 0 + ], + "The Face Dental / Seoul Face 21 Dental Hospital": [ + 1, + 0 + ], + "Opera Plastic Surgery": [ + 1, + 0 + ], + "Banobagi Clinic": [ + 1, + 0 + ], + "Banobagi": [ + 2, + 0 + ], + "Ryan Plastic Surgery": [ + 1, + 0 + ], + "JK Plastic Surgery Center": [ + 2, + 0 + ], + "DA Plastic Surgery": [ + 3, + 0 + ], + "THE PLUS Plastic Surgery": [ + 1, + 0 + ], + "AB Plastic Surgery": [ + 2, + 1 + ], + "Evita Clinic": [ + 1, + 0 + ], + "GANGNAM JS Hospital": [ + 1, + 0 + ], + "Ahnsungmin Plastic Surgery": [ + 1, + 1 + ], + "Sinsa L Plastic Surgery": [ + 1, + 0 + ], + "1mm Plastic Surgery": [ + 1, + 0 + ], + "Sinsael Plastic Surgery": [ + 1, + 0 + ], + "Will Be Plastic Surgery": [ + 1, + 0 + ], + "Grand Plastic Surgery": [ + 1, + 0 + ], + "MINE Clinic": [ + 1, + 0 + ], + "Wonjin Plastic Surgery Hospital": [ + 1, + 0 + ], + "id Hospital": [ + 1, + 0 + ], + "Nana Hospital": [ + 1, + 0 + ], + "GIRIN": [ + 1, + 1 + ], + "ROI Plastic Surgery": [ + 1, + 0 + ], + "Link Plastic Surgery": [ + 1, + 0 + ], + "Dia Aesthetic": [ + 1, + 1 + ], + "VEI Clinic": [ + 1, + 0 + ], + "Hyundai Aesthetic Surgery Clinic": [ + 1, + 0 + ], + "Withwin Dermatology": [ + 1, + 0 + ], + "Sinsang Plastic Surgery": [ + 1, + 0 + ] + }, + "dom_freq": { + "clinicsoncall.com": 26, + "curemeabroad.com": 9, + "forum.purseblog.com": 3, + "khunkim.com": 13, + "koreaplasticsurgery.tistory.com": 2, + "medtraveling.com": 4, + "realself.com": 11, + "reddit.com": 33, + "viewplasticsurgery.com": 38, + "10mag.com": 4, + "english.visitkorea.or.kr": 12, + "id.viewplasticsurgery.com": 7, + "kosmedi.co.kr": 5, + "medicalavenuekorea.com": 7, + "unni.app": 14, + "vn.viewplasticsurgery.com": 4, + "experts-medical.com": 5, + "kmhglobal.com": 4, + "koreaclinicguide.com": 20, + "medtour.help": 2, + "myguideseoul.com": 6, + "placidway.com": 14, + "cashdoc.me": 1, + "olden.viewplasticsurgery.com": 1, + "us-uk.bookimed.com": 28, + "academic.oup.com": 1, + "ibisworld.com": 1, + "madisonps.com": 1, + "pmc.ncbi.nlm.nih.gov": 5, + "theviewhospital.com": 3, + "en.uniclinics.com": 4, + "linkedin.com": 3, + "medicaltour.gangnam.go.kr": 5, + "aeysurgery.com": 1, + "elclinics.com": 1, + "hospitals-travel.ru": 1, + "medica-tour.com": 1, + "vinmec.com": 1, + "abplasticsurgerykorea.com": 12, + "aljazeera.com": 2, + "clinicreviewkorea.com": 1, + "community.icloudhospital.com": 2, + "linkpskorea.com": 9, + "mediglobus.com": 1, + "seoulcosmeticsurgery.com": 8, + "vippskorea.com": 13, + "whatclinic.com": 4, + "medicalkorea.or.kr": 2, + "my1health.com": 9, + "secondmin.co.kr": 2, + "seoulmedicalinsider.com": 9, + "152harleystreet.com": 1, + "healthgrades.com": 1, + "pittsburghplasticsurgery.com": 1, + "uamshealth.com": 1, + "uvmhealth.org": 1, + "viewskinclinic.com": 1, + "facebook.com": 1, + "instagram.com": 1, + "x.com": 1, + "youtube.com": 1, + "ava-ps.com": 1, + "beautybutlerthailand.com": 1, + "globalbeautyspot.com": 2, + "hugo-ps-global.com": 1, + "jivaka.kr": 4, + "jwbeauty.net": 3, + "k-medlinker.com": 3, + "kbeauty.today79.com": 1, + "kittoplasticsurgery.com": 1, + "koreaexperience.com": 10, + "seoulbeautytalk.com": 6, + "seouleyeplastics.com": 4, + "soonplusplasticsurgery.com": 3, + "365plasticsurgerykorea.com": 2, + "better.medicaltourism.com": 2, + "clinicseoul.net": 17, + "cyl.co.kr": 6, + "djmeditour.kr": 1, + "gangnamplastic.surgery": 5, + "seoulguidemedical.com": 8, + "thetreatmentregistry.com": 1, + "en.345-ps.com": 1, + "en.nanahospital.com": 5, + "gangnam.health": 4, + "gangnamdrk.com": 3, + "korea-clinics.com": 3, + "koreacareguide.com": 1, + "noonopiclinic.com": 5, + "triple.global": 1, + "expatguidekorea.com": 1, + "gangnamwomenshealth.com": 5, + "girinpsen.com": 6, + "medicaltourismco.com": 9, + "medicaltravelkorea.com": 6, + "experts-beauty.com": 5, + "jkplastic.com": 8, + "medicaldepartures.com": 3, + "theplusps.co": 7, + "wooaeng.com": 1, + "cheongdam.skin": 1, + "facialcontouringkorea.com": 2, + "gangnambeautyguide.com": 4, + "medicalguide.co.kr": 1, + "seouldoctorfillers.com": 1, + "seoulskin.clinic": 1, + "tatlerasia.com": 1, + "gangnamrhinoplasty.com": 2, + "kowonplasticsurgery.com": 2, + "rhinoplastyclinicseoul.com": 1, + "doublejawsurgerykorea.com": 1, + "en.whydental.co.kr": 1, + "eng.idhospital.com": 4, + "gangnam.dental": 1, + "idhospital.com": 7, + "plasticsurgeryko.com": 1, + "thebestoms.com": 1, + "wonjinbeauty.com": 4, + "en-ggps.com": 1, + "en.chiups.com": 1, + "gangnamplasticsurgery.clinic": 2, + "seoulcp.com": 1, + "drspiegel.com": 2, + "beautymedtravel.com": 1, + "daprseng.com": 6, + "goodbyeacup.com": 2, + "jy-clinic.com": 2, + "mineclinic.com": 4, + "motiva.health": 4, + "seojinps.co": 2, + "icloudhospital.com": 2, + "kculture.com": 1, + "natlawreview.com": 1, + "thelineclinic.com": 1, + "woori-ps.com": 1, + "evitaclinic.com": 3, + "kr-webmagazine.com": 1, + "visitgangnam.net": 1, + "ahnsungminplasticsurgery.com": 1, + "eng.banobagi.com": 5, + "gangnamobgyn.com": 1, + "lowerblepharoplastykorea.com": 1, + "seoulobgyn.com": 1, + "seoulplasticsurgeon.com": 2, + "cmcseoul.or.kr": 1, + "medigence.com": 2, + "graceclinic.co.kr": 1, + "motivaimplants.co.kr": 1, + "mydockorea.com": 3, + "sketchplasticsurgery.com": 1, + "agulloplasticsurgery.com": 1, + "bodybyravi.com": 1, + "bostoncenterforplasticsurgery.com": 1, + "caloaesthetics.com": 1, + "clnq.com": 1, + "dallasplasticsurgery.pro": 1, + "drchasan.com": 1, + "foizahmed.co.uk": 1, + "forbes.com": 1, + "kapadiaplasticsurgery.com": 1, + "klinikavisnjar.si": 1, + "metropolitanplasticsurgery.com": 1, + "newvuemedical.com": 1, + "plasticsurgeryhub.com": 1, + "afittingexperience.com": 1, + "gangnambreastreductionsurgery.com": 1, + "hayatmed.com": 1, + "partingtonps.com": 1, + "patients.community": 1, + "wuneprs.com": 2, + "april31.com": 1, + "cinderellaplasticsurgery.com": 1, + "deschamps-braly.com": 1, + "docfinderkorea.com": 8, + "dr-mfo.com": 1, + "faceplusplasticsurgery.com": 1, + "facepluspsi.com": 1, + "healthline.com": 1, + "seoulguidemedical.id": 1, + "thefacedental.com": 1, + "thevirginiainstitute.com": 1, + "umiclinickorea.com": 1, + "waveplasticsurgery.com": 1, + "advancedreconstruction.com": 1, + "oregonoralsurgery.com": 1, + "shinmedical.com": 1, + "allaboutmei.com": 1, + "en.marbleps.com": 1, + "ifaas.co": 1, + "made-young.co": 1, + "allureplasticsurgery.sg": 1, + "answerplasticsurgery.com": 1, + "asiancosmeticsurgery.com": 1, + "braunps.com": 1, + "drrahulgogoi.com": 1, + "koreanplasticsurgery.info": 2, + "rhinoplastytoronto.ca": 1, + "editionps.com": 1, + "inkoreanow.com": 3, + "gangnammedicalconcierge.com": 2, + "gangnammedspa.com": 1, + "gangnamskin.clinic": 2, + "koreafacelift.com": 3, + "koreaplastic.surgery": 2, + "medicalkoreaservice.com": 2, + "rnwoodclinickorea.com": 2, + "seoulclinics.io": 6, + "canvassresearch.com": 3, + "diteplasticsurgery.com": 1, + "meclinic.net": 1, + "news.sbs.co.kr": 2, + "seoulliposuctionclinic.com": 1, + "mayoclinic.org": 1, + "plasticsurgery.org": 3, + "associationofbreastsurgery.org.uk": 1, + "mja.com.au": 1, + "pubmed.ncbi.nlm.nih.gov": 1, + "southernplasticsurgery.com": 1, + "andps-global.co.kr": 1, + "cdubeauty.co.kr": 1, + "e-aaps.org": 1, + "korea-plastic-surgery.com": 1, + "faceliftingseoul.com": 1, + "gangnamdermatologyclinic.com": 1, + "gangnamfaceliftsurgery.com": 1, + "seoulfaceliftclinic.com": 1, + "sinsangps.com": 2, + "tj-plasticsurgery.com": 1, + "yujinplasticsurgery.com": 1, + "breastimplantkorea.com": 1, + "koreamedguide.com": 1, + "misooda.com": 4, + "seoulmedicalguide.com": 1, + "askgangnam.com": 2, + "dojagi-clinic.com": 1, + "myseoulclinic.com": 1, + "dentistgangnam.com": 1, + "seoul.clinic": 1, + "seoul.dentist": 1, + "seoulfacialsurgery.com": 1, + "aristocratps.com": 1, + "go.medicalavenuekorea.com": 2, + "guide.kmedtour.com": 2, + "koreaplus-lifes.com": 1, + "lydianclinic.com": 1, + "amedical.az": 1, + "clinicadelrey.com": 1, + "deepplane.com": 1, + "europesurgery.co.uk": 1, + "flymedi.com": 1, + "flytocure.com": 1, + "health-tourism.com": 1, + "koreaplasticsurgerycost.com": 2, + "le-medica.com": 1, + "medicaltourism.com": 2, + "surgery.wustl.edu": 1, + "vitalityscout.com": 2, + "beautipin.com": 1, + "blog.yeoshin.co.kr": 2, + "eng.dsmc.or.kr:49910": 1, + "forenaclinic.com": 1, + "independent.co.uk": 1, + "koreaherald.com": 1, + "koreatimes.co.kr": 1, + "myeongdong.clinic": 1, + "vatupdate.com": 1, + "stdclinicseoul.com": 1, + "gangnamplastics.com": 1, + "medinkorea.com": 1, + "plasticsurgeryguidekorea.com": 1, + "ranker.kr": 1, + "reuters.com": 2, + "blog.viewclinic.com": 1, + "botgig.org": 1, + "kca.go.kr": 1, + "kj.nomardy.com": 1, + "mk.co.kr": 1, + "scmp.com": 1, + "straitstimes.com": 1, + "abplasticsurgery.org": 1, + "absurgery.org": 1, + "akmclinic.com": 1, + "labelleviecosmetic.com": 1, + "lupielclinic.com": 1, + "plasticsurgery.or.kr": 1, + "theaestheticsociety.org": 1, + "willplasticsugery.com": 1, + "gangnamclinicindex.com": 1, + "gangnamskinclinicreberry.com": 1, + "breastsurgerykorea.com": 1, + "drkim.com": 1, + "motivausa.com": 2, + "tcplasticsurgery.com": 2, + "mediqueen.net": 1, + "roisurgery.com": 1, + "pearlwellnesscenter.com": 1, + "apgujeongmassagespa.com": 1, + "gangnamdermatologycenter.com": 1, + "gangnamfootmassage.com": 1, + "hyundaisurgery.com": 1, + "medicinenet.com": 1, + "okayps.co": 1, + "seoulantiagingclinic.com": 1, + "widwinskin.com": 1, + "carelyclinic.com": 1, + "fortesmd.com": 1, + "leelamundramd.com": 1, + "motivaimplantatum.hu": 1, + "support.motiva.health": 1 + }, + "view_dom": { + "clinicsoncall.com": 16, + "curemeabroad.com": 9, + "forum.purseblog.com": 3, + "khunkim.com": 11, + "koreaplasticsurgery.tistory.com": 2, + "medtraveling.com": 4, + "realself.com": 6, + "reddit.com": 14, + "viewplasticsurgery.com": 30, + "10mag.com": 4, + "english.visitkorea.or.kr": 10, + "id.viewplasticsurgery.com": 7, + "kosmedi.co.kr": 4, + "medicalavenuekorea.com": 6, + "unni.app": 13, + "vn.viewplasticsurgery.com": 4, + "experts-medical.com": 5, + "kmhglobal.com": 4, + "koreaclinicguide.com": 6, + "medtour.help": 2, + "myguideseoul.com": 6, + "placidway.com": 4, + "cashdoc.me": 1, + "olden.viewplasticsurgery.com": 1, + "us-uk.bookimed.com": 15, + "academic.oup.com": 1, + "ibisworld.com": 1, + "madisonps.com": 1, + "pmc.ncbi.nlm.nih.gov": 2, + "theviewhospital.com": 3, + "en.uniclinics.com": 4, + "linkedin.com": 3, + "medicaltour.gangnam.go.kr": 5, + "aeysurgery.com": 1, + "elclinics.com": 1, + "hospitals-travel.ru": 1, + "medica-tour.com": 1, + "vinmec.com": 1, + "abplasticsurgerykorea.com": 6, + "aljazeera.com": 1, + "clinicreviewkorea.com": 1, + "community.icloudhospital.com": 2, + "linkpskorea.com": 2, + "mediglobus.com": 1, + "seoulcosmeticsurgery.com": 1, + "vippskorea.com": 7, + "whatclinic.com": 3, + "medicalkorea.or.kr": 1, + "my1health.com": 5, + "secondmin.co.kr": 2, + "seoulmedicalinsider.com": 2, + "152harleystreet.com": 1, + "healthgrades.com": 1, + "pittsburghplasticsurgery.com": 1, + "uamshealth.com": 1, + "uvmhealth.org": 1, + "viewskinclinic.com": 1, + "facebook.com": 1, + "instagram.com": 1, + "x.com": 1, + "youtube.com": 1, + "clinicseoul.net": 3, + "en.345-ps.com": 1, + "en.nanahospital.com": 3, + "gangnam.health": 2, + "gangnamdrk.com": 2, + "korea-clinics.com": 1, + "koreacareguide.com": 1, + "noonopiclinic.com": 1, + "triple.global": 1, + "expatguidekorea.com": 1, + "gangnamwomenshealth.com": 3, + "girinpsen.com": 4, + "koreaexperience.com": 4, + "medicaltourismco.com": 4, + "medicaltravelkorea.com": 4, + "experts-beauty.com": 4, + "gangnamrhinoplasty.com": 1, + "kowonplasticsurgery.com": 1, + "rhinoplastyclinicseoul.com": 1, + "theplusps.co": 2, + "doublejawsurgerykorea.com": 1, + "en.whydental.co.kr": 1, + "eng.idhospital.com": 1, + "gangnam.dental": 1, + "idhospital.com": 4, + "plasticsurgeryko.com": 1, + "thebestoms.com": 1, + "wonjinbeauty.com": 2, + "en-ggps.com": 1, + "en.chiups.com": 1, + "gangnambeautyguide.com": 1, + "gangnamplasticsurgery.clinic": 1, + "seoulcp.com": 1, + "drspiegel.com": 1, + "beautymedtravel.com": 1, + "daprseng.com": 3, + "goodbyeacup.com": 2, + "jkplastic.com": 3, + "jy-clinic.com": 1, + "mineclinic.com": 2, + "motiva.health": 2, + "seojinps.co": 1, + "icloudhospital.com": 1, + "kculture.com": 1, + "natlawreview.com": 1, + "seoulbeautytalk.com": 2, + "thelineclinic.com": 1, + "woori-ps.com": 1, + "better.medicaltourism.com": 1, + "evitaclinic.com": 1, + "kr-webmagazine.com": 1, + "seoulguidemedical.com": 1, + "visitgangnam.net": 1, + "cmcseoul.or.kr": 1, + "medicaldepartures.com": 2, + "medigence.com": 1, + "mayoclinic.org": 1, + "plasticsurgery.org": 3, + "associationofbreastsurgery.org.uk": 1, + "mja.com.au": 1, + "pubmed.ncbi.nlm.nih.gov": 1, + "southernplasticsurgery.com": 1, + "blog.viewclinic.com": 1, + "canvassresearch.com": 1, + "cyl.co.kr": 1, + "gangnamclinicindex.com": 1, + "gangnamskinclinicreberry.com": 1, + "jwbeauty.net": 1, + "news.sbs.co.kr": 1, + "breastsurgerykorea.com": 1, + "drkim.com": 1, + "motivausa.com": 1, + "tcplasticsurgery.com": 1, + "mediqueen.net": 1, + "rnwoodclinickorea.com": 1, + "roisurgery.com": 1, + "medicaltourism.com": 1, + "pearlwellnesscenter.com": 1 + }, + "n": 60, + "mentioned": 30 +} \ No newline at end of file diff --git a/docs/reports/viewclinic/05_global_en/Viewclinic_Global_EN_AEO_GEO_Report_2026-09-10.html b/docs/reports/viewclinic/05_global_en/Viewclinic_Global_EN_AEO_GEO_Report_2026-09-10.html new file mode 100644 index 0000000..2f6c001 --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/Viewclinic_Global_EN_AEO_GEO_Report_2026-09-10.html @@ -0,0 +1,158 @@ + +뷰성형외과 영문 사이트 AEO · GEO 진단 보고서 2026-09-10 + + + + +
+
+
INFINITH AI Discovery · Global Patient Edition
+

뷰성형외과 영문 사이트
AEO · GEO 진단 보고서

+

외국인 환자 관점 질문 60문항 실측과 답변·출처 준비도 채점

+
진단일 2026-09-10대상 www.viewplasticsurgery.com (en-US · x-default)기준표 AEO/GEO v2.0 (v1.0 36항목 병행)답변엔진 Perplexity sonar · OpenAI gpt-4o web_search (뉴욕)문의 o2oteam@o2o.kr
+
+ +

01요약 판정

+

영문 사이트는 국문 사이트보다 답변·출처 준비도가 모두 높습니다(AEO 65 · GEO 72, 둘 다 B). 외국인이 병원 이름을 알고 묻는 질문에는 두 엔진 모두 100% 답하지만, 병원을 모르는 상태의 시술·가격 질문에서는 언급률이 0~21%에 그칩니다. 원인은 콘텐츠 부족이 아니라 인용된 문단에 상호가 없어서입니다.

+
AEO 답변 준비도
65B
영문 사이트가 외국인 질문에 답하는 정도 · 100점
GEO 출처 준비도
72B
AI가 영문 사이트를 출처로 쓸 수 있는 정도 · 100점
v1.0 종합 (참고)
64B
36항목 중 검증 31개 · 국문 사이트 54/C
Perplexity 언급률
50%
60문항 중 30 · 자사 사이트 인용 63%
OpenAI 웹검색 언급률
45%
60문항 중 27 · 자사 사이트 인용 30%
+

1이름을 알면 100%, 모르면 0~21%

브랜드(A)·이동·체류(B) 질문군은 두 엔진 모두 뷰성형외과를 1순위로 답하고 viewplasticsurgery.com을 직접 인용합니다. 반면 시술 정보(D)는 Perplexity 14% · OpenAI 21%, 가격(E)은 두 엔진 모두 0%입니다. 외국인 환자 여정에서 가장 긴 구간이 비어 있습니다.

2인용은 되는데 이름이 안 나오는 문항 8개

Perplexity는 가격 질문(E-01 가슴성형 비용, E-02 V-line 비용)과 시술 질문(D-01·D-04·D-05·D-10)에서 뷰 블로그·시술 페이지를 출처로 썼지만 답변에 'VIEW'가 한 번도 등장하지 않았습니다. 인용된 문단이 'The cost of V-line surgery in Seoul ranges…'처럼 상호 없이 쓰여 있어 AI가 수치만 가져가고 병원 이름은 남기지 않습니다.

3추천 질문의 경쟁 구도: JK · ID · Banobagi

'Best plastic surgery clinic in Seoul for foreigners' 류 추천 질문(C)에서 뷰는 Perplexity 9/12, OpenAI 6/12에 등장했지만 1순위는 드뭅니다. JK Plastic Surgery(KAHF 인증 4회 연속), ID Hospital, Banobagi가 상위를 차지하고, 그 근거는 유치 에이전시·중개 플랫폼의 영문 가이드 글입니다.

4AI가 근거로 쓰는 표면은 Reddit · Bookimed · 에이전시 가이드

두 엔진 합산 인용 도메인 1위는 viewplasticsurgery.com(54문항), 2위는 reddit.com(49문항)입니다. 그다음이 us-uk.bookimed.com · clinicsoncall.com · koreaclinicguide.com · clinicseoul.net · unni.app 같은 중개·가이드 표면입니다. 강남언니 국문 페이지는 60문항 어디에도 인용되지 않았습니다.

5엔티티 스키마 0, hreflang은 리다이렉트 URL

홈 JSON-LD가 병원을 Person 타입으로 선언하고 MedicalClinic·Physician 스키마와 sameAs가 없습니다(GEO4 6.3/15). 10개 언어 hreflang은 갖췄지만 8개 언어 서브도메인이 경로 URL로 301 하고, origin.·olden. 서브도메인이 전체 사이트를 색인 가능 상태로 서빙해 AI 인용 URL이 분산됩니다.

6부정 답변 1건: 공정위 후기 광고 시정명령

'Are there red flags about VIEW Plastic Surgery'(F-05) 질문에 Perplexity는 국문 사이트 후기 광고에 대한 2026-07 공정위 시정명령을 첫 문장으로 답했습니다. 영문 Real Review 섹션도 같은 구조(대가 고지 없음)라 GEO7 발행 투명성 항목의 감점 요인입니다.

+
먼저 할 일 5가지
+
  1. 1시술 페이지·블로그 가격 가이드의 첫 문단과 표 캡션에 'At VIEW Plastic Surgery in Gangnam, Seoul' 형태로 상호·지역을 넣습니다. 인용은 되는데 이름이 안 나오는 8문항이 바로 대상입니다.
  2. 2MedicalClinic + Physician JSON-LD를 추가하고 Person 타입을 Organization/MedicalClinic으로 바꾸며 sameAs에 Instagram·TikTok·YouTube·Google 프로필·Bookimed·RealSelf·unni.app을 연결합니다.
  3. 3시술 페이지 상단에 결정 정보 블록(USD 가격대 · 수술 시간 · 입원 · 권장 체류일 · 귀국 가능일)을 표로 두고 블로그 가격 가이드와 상호 링크합니다. 가격(E)·시술(D) 질문군 0~21%의 직접 대응입니다.
  4. 4FAQ 402문항에 FAQPage 스키마를 붙이고 카테고리별 URL로 나눕니다. 전 페이지 동일 H1('korea plastic surgery')을 페이지별 서술형 H1으로 교체합니다.
  5. 5origin.·olden. 서브도메인을 www로 301 하고 언어 서브도메인 hreflang을 최종 URL로 통일합니다. 후기·전후 섹션에 대가 제공 여부와 개인차 고지를 넣어 정보 페이지와 분리합니다.
+ +

02진단 범위와 방법

+

국문 사이트 진단(2026-08-31 · 09-07)과 같은 기준표를 영문 사이트와 외국인 질문에 적용했습니다.

+
진단 대상https://www.viewplasticsurgery.com (en-US, x-default). 홈 · About · 의료진 · 컨시어지 · 오시는길 · 안전 · 수상 · FAQ · 가슴(Motiva) · 코 · 윤곽 · 블로그 목록 · 블로그 글 1건 등 13개 페이지를 JS 미실행 HTML로 수집
자동 채점scripts/audit_aeo_geo.py (기준표 v1.0 36항목 중 자동 20항목). AI 봇 12종 UA 접근, sitemap, JSON-LD, hreflang, H1/H2, FAQ, 표, alt, TTFB 실측
사람 판정C1 정의문 · C4 수치 · C7 전문성 · C8 자기완결성 · B4/B7 · D1~D4 · E4 · F2 (10항목) + v2.0 사람 판정 4항목(AEO6 · GEO1 · GEO6 · GEO7). 근거는 각 표에 기재
질문 뱅크외국인 환자 관점 영문 60문항 · 7군 (브랜드 8 · 이동·체류 8 · 추천·비교 12 · 시술 14 · 가격 8 · 안전·신뢰 6 · 사후관리 4). 국문 120문항 뱅크와 같은 퍼널 구조
답변엔진Perplexity API sonar (자체 웹검색) · OpenAI Responses API gpt-4o + web_search (사용자 위치 미국 뉴욕). 소비자 ChatGPT UI 자동 조회는 약관 위반이라 쓰지 않음. 각 문항 1회 질의, 2026-09-10
후처리답변에서 병원명 최대 8개를 등장 순서로 추출(gpt-4o-mini). VIEW Plastic Surgery · View Clinic · VIEW Seoul 등 표기 변형을 같은 병원으로 정규화. 감성은 긍정·중립·부정 1차 분류
점수 산식v2.0: 항목 점수 = 파생 신호(v1.0 레벨 0~3) 가중 평균 × 배점, 사람 판정 우선, 미검증은 분모 제외. 게이트 실패 시 상한 40. 등급 A 81+ · B 61–80 · C 41–60 · D 40 이하
+

이번 측정의 한계

  • 질의는 문항당 1회입니다. 답변엔진은 같은 질문에도 매번 다른 병원을 고를 수 있어 5회 반복 평균이 정식 기준선입니다.
  • OpenAI gpt-4o는 60문항 중 23문항에서 웹검색을 실행하지 않고 모델 기억으로 답했습니다(시술·가격 일반 질문 대부분). 이 문항의 미언급은 사이트 문제가 아니라 모델 기억에 뷰가 없다는 뜻입니다.
  • Google 비즈니스 프로필은 2026-08-31 실측값(4.9점 · 리뷰 901건)을 인용했습니다. 이번에는 Places API 키가 없어 재실측하지 못했습니다.
  • Bing 색인(A6), 서버 로그(E1), GA4(E2), GSC(E3)는 소유자 계정이 필요해 미검증입니다.
  • 감성 분류는 후처리 모델의 1차 판정이며 감성 기준표 v0.3의 사람 검토 전 값입니다.
+ +

03외국인 질의 실측 결과

+

Perplexity는 60문항 중 30문항(50%), OpenAI 웹검색은 27문항(45%)에서 뷰성형외과를 언급했습니다. 국문 120문항 실측(2026-09-01, Perplexity 32% · OpenAI 37%)보다 높지만, 상승분은 전부 병원 이름이 들어간 질문에서 나왔습니다.

+

3.1 질문군별 언급률

+

셀 값은 순서대로 뷰성형외과 언급 비율, 답변에서 첫 번째로 등장한 비율, 답변이 viewplasticsurgery.com 페이지를 인용한 비율입니다.

+
질문군문항Perplexity
언급 / 1순위 / 자사 인용
OpenAI 웹검색
언급 / 1순위 / 자사 인용
해석
A 브랜드 직접 질문Brand8100% / 87% / 100%100% / 100% / 100%두 엔진 모두 전 문항 1순위. 자사 사이트·에이전시 블로그·정부 의료관광 페이지가 근거
B 이동·체류·운영Travel & logistics875% / 62% / 75%75% / 62% / 62%공항 픽업·숙박·WhatsApp 상담은 컨시어지 페이지가 직접 인용됨. 미언급 2문항은 비자·체류기간 일반 질문
C 추천·비교Recommendation & comparison1275% / 33% / 91%50% / 8% / 8%Perplexity는 9/12 언급하나 1순위는 4건. OpenAI는 절반. JK·ID·Banobagi가 상위, 근거는 제3자 가이드 글
D 시술 정보Procedure info1414% / 14% / 42%21% / 14% / 21%병원 이름이 들어간 D-11·D-12만 언급. 나머지 12문항은 뷰 페이지가 인용돼도 이름이 안 나옴
E 가격Pricing80% / 0% / 25%0% / 0% / 0%두 엔진 모두 0. Perplexity는 뷰 블로그 가격 가이드를 2문항에서 인용했으나 상호 없이 수치만 사용. OpenAI는 가격 질문 대부분을 검색 없이 답변
F 안전·신뢰Safety & trust650% / 33% / 50%33% / 33% / 0%마취과 전문의(F-02)·보증(F-06)은 언급. 안전 일반론(F-01·F-03·F-04)은 미언급. F-05는 공정위 시정명령이 첫 문장
G 사후관리·원격 팔로업Aftercare & remote follow-up450% / 25% / 50%50% / 25% / 25%병원 이름이 있는 G-02·G-04만 언급. 원격 팔로업 일반 질문(G-01)에서 Perplexity 4순위
합계6050% / 35% / 63%45% / 31% / 30%
+

3.2 답변에 등장한 병원

+

두 엔진을 합쳐 뷰성형외과는 57문항에서 언급됐고 그중 40문항이 1순위입니다. 그러나 1순위는 대부분 브랜드·체류 질문입니다. 병원을 고르는 추천·비교 질문에서는 JK Plastic Surgery, ID Hospital, Banobagi, AB Plastic Surgery, SAERO가 반복 등장합니다.

+
#병원 (AI 답변 표기)PerplexityOpenAI합계1순위 등장
1VIEW Plastic Surgery28275539
2ID Hospital74113
3JK Plastic Surgery7184
4AB Plastic Surgery2462
5Banobagi Plastic Surgery2350
6SAERO Plastic Surgery3251
7JK Plastic Surgery Center2352
8DA Plastic Surgery3250
9Ryan Plastic Surgery1341
10Girin Plastic Surgery1230
11VG Plastic Surgery3031
12Verygood Plastic Surgery2130
+

3.3 AI가 근거로 쓴 표면

+

인용 도메인은 세 층으로 나뉩니다. 자사 사이트(viewplasticsurgery.com 54문항), 커뮤니티(reddit.com 49문항), 그리고 중개·가이드 표면(Bookimed · clinicsoncall · koreaclinicguide · clinicseoul.net · unni.app · khunkim.com)입니다. 강남언니 국문 페이지와 네이버는 한 번도 인용되지 않았습니다. 외국인 대상 GEO는 이 세 층에 원문을 두는 일입니다.

+
#인용 도메인PerplexityOpenAI합계 (문항 수)뷰 언급 답변에서표면 유형
1viewplasticsurgery.com38165446자사 사이트
2reddit.com33164927커뮤니티
3us-uk.bookimed.com2843215리뷰·중개 플랫폼
4clinicsoncall.com2612716타 병원·에이전시·블로그
5koreaclinicguide.com201216타 병원·에이전시·블로그
6clinicseoul.net174214정부·관광
7english.visitkorea.or.kr1251714정부·관광
8khunkim.com1331614타 병원·에이전시·블로그
9realself.com1151610리뷰·중개 플랫폼
10unni.app1401413
11placidway.com140144타 병원·에이전시·블로그
12vippskorea.com130137타 병원·에이전시·블로그
13seoulmedicalinsider.com94132정부·관광
14abplasticsurgerykorea.com120126타 병원·에이전시·블로그
15koreaexperience.com101114타 병원·에이전시·블로그
16my1health.com91105타 병원·에이전시·블로그
17gangnambeautyguide.com46104타 병원·에이전시·블로그
18misooda.com46102타 병원·에이전시·블로그
+

인용된 자사 페이지

+
인용된 자사 페이지PerplexityOpenAI합계
/741892
/consultation/14216
/introduction/doctors/10313
/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/12012
/breast/index.html6612
/breast/breast-reduction.html2911
/Introduction/concierge-services.html459
/Introduction/working-hours-direction.html808
/introduction/direction/808
/real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/808
/safe-system/safety-first.html808
/Introduction/medical-staff-detail.html437
+

3.4 답변 감성

+

Perplexity

21 긍정 · 8 중립 · 1 부정

뷰 언급 30문항 기준

OpenAI 웹검색

21 긍정 · 5 중립 · 1 부정

뷰 언급 27문항 기준

판정 기준

답변이 뷰성형외과를 어떻게 규정하는지를 후처리 모델이 긍정·중립·부정으로 분류. 감성 기준표 v0.3의 1차 근사치이며 사람 검토 전 값

+

3.5 답변 사례

+
E-02 V-line surgery cost in Korea 2026 Perplexity X

For **2026**, a **V-line surgery in Korea** is typically quoted at about **US$7,000–12,000** for a standard full V-line package, with broader market ranges commonly running from **US$5,000–15,000+** depending on the scope and clinic. A few useful breakdowns from the results: - **Standard full V-line (jaw + chin)**: about **US$7,000–12,000** or **₩9.9M–15.5M**. - **Mid-range clinic estimate**: around **US$8,500–11,000…

인용: abplasticsurgerykorea.com, askgangnam.com, clinicseoul.net, docfinderkorea.com, dojagi-clinic.com
C-01 Best plastic surgery clinic in Seoul for foreigners Perplexity O

If you want the **best plastic surgery clinic in Seoul for foreigners**, the strongest names in the results are **JK Plastic Surgery**, **ID Hospital**, and **Banobagi Plastic Surgery**, with JK standing out most clearly for **safety** and **VIP/international-patient services**. What the results support: - **JK Plastic Surgery**: highlighted by a 2026 foreign-patient guide as a top-tier option for international patie…

인용: 10mag.com, abplasticsurgerykorea.com, english.visitkorea.or.kr, expatguidekorea.com, gangnamwomenshealth.com
C-02 Best breast augmentation clinic in Korea for international patients OpenAI 웹검색 X

Here’s a carefully curated guide to some of the best breast augmentation clinics in South Korea, particularly Seoul, that are well-suited for international patients. All options have strong credentials, language support, and positive feedback from overseas clients. Where available, I’ve included accreditation and specialization details to help you decide with confidence. --- ## Top-Rated Clinics for International Pat…

인용: clinicrankingkorea.com, kclinichelp.com, medicaldepartures.com, medicaltravelkorea.com, my1health.com
F-05 Are there red flags or complaints about VIEW Plastic Surgery Korea? Perplexity O

There is at least one **documented regulatory complaint** about VIEW Plastic Surgery: South Korea’s Fair Trade Commission sanctioned the clinic for posting advertisements disguised as genuine customer reviews, and ordered it to publish a notice acknowledging the violation. Beyond that, the results I found do **not** show a verified pattern of medical negligence or accidents at the clinic. One clinic directory claims …

인용: canvassresearch.com, clinicsoncall.com, cyl.co.kr, gangnamclinicindex.com, gangnamskinclinicreberry.com
D-11 What does VIEW Plastic Surgery's breast surgery process look like from consultation to aftercare? OpenAI 웹검색 O

Here’s a detailed breakdown of VIEW Plastic Surgery’s breast surgery process, from consultation through aftercare, based on their official materials: **1. In-Depth Consultation** - The process begins with a tailored, one-on-one consultation. VIEW Plastic Surgery examines your body proportions, current breast size, and overall chest structure, ensuring that the surgical plan aligns with your unique anatomy and aesthet…

인용: id.viewplasticsurgery.com, viewplasticsurgery.com
E-05 VIEW Plastic Surgery price list for international patients OpenAI 웹검색 X

I can't access specific pricing lists for plastic surgery, as these can vary widely depending on the clinic, country, and type of surgery. However, I recommend checking the websites of the clinics or hospitals you're interested in, as they often provide detailed information for international patients. Additionally, contacting them directly can give you the most accurate and up-to-date pricing information.…

인용:
+ +

04AEO 답변 준비도 65 · B

+

고객의 질문에 얼마나 명확하고 충분하게 답하는가. 8항목 100점.

+
항목배점점수근거 신호판정 근거 (2026-09-10 실측)
AEO1 질문 수요 충족질문 뱅크 대비 답이 있는 문항 비율. 자동 신호는 FAQ 섹션·FAQPage 스키마2013.3 (66%)C2=2FAQ 페이지에 402문항이 서버 렌더링(카테고리 11개). 시술 페이지 하단에도 FAQ 5문항. FAQPage 스키마는 블로그 글에만 있고 FAQ 페이지에는 없음. 질문 뱅크 대비 A·B군은 사이트가 직접 답하고, D·E군 답은 블로그에 있으나 상호가 없음
AEO2 답변의 직접성핵심 페이지 첫 200자에 [상호+지역+전문분야] 정의문 또는 직접 답 존재206.7 (34%)C1=1정의문이 About 메타 설명에만 있음('Founded in 2005, VIEW is a premier 19-story medical center in Gangnam, Seoul'). 본문 첫 단락은 슬로건, 시술 페이지 첫 텍스트는 'Let Me In Season 2/3/4/5 Selected Doctors' 홍보 라벨, 홈 첫 200자는 검색창·메뉴
AEO3 답변 단위의 자기완결성핵심 페이지 단락 샘플 중 상호·시술명이 포함된 비율1510 (67%)C8=25개 핵심 페이지 단락 샘플 50개 중 상호 또는 시술명 포함 26개(52%). 상호 'VIEW' 포함은 7개(14%). FAQ 답변과 블로그 가격 문단은 시술명만 있고 상호가 없어 인용돼도 병원 이름이 남지 않음(실측 8문항)
AEO4 의사결정에 필요한 정보시술 페이지의 가격·시간·회복 수치 밀도와 표·비교 구조159 (60%)C4=1, C5=3시술 페이지 본문에 가격·수술시간·회복기간 0회. 수치는 Motiva 보증(재수술 지원 300만원/개)뿐. HTML 표는 10개 존재. 블로그에는 USD 가격표(V-line $7,000–12,000)와 체류 권장일(10–14일)이 있으나 시술 페이지와 연결되지 않음
AEO5 정보 구조와 가독성H1 1개·서술형, H2 논리 계층106.7 (67%)C3=2전 페이지 H1이 동일하게 'korea plastic surgery'(키워드 라벨). 페이지 고유 제목은 H2·H3. H2 'What would you like to know today?'(검색창)가 모든 페이지에 반복
AEO6 다음 행동의 명확성예약·전화·위치가 본문 텍스트로 연결되는지 (사람 판정)1010 (100%)사람 판정전 페이지 푸터에 전화 +82-2-539-1177 · 이메일 eng_viewps@viewclinic.com · 주소 · 진료시간이 텍스트로 반복. Quick Consultation 폼에 WhatsApp · LINE · KakaoTalk · Viber 선택지와 국가번호 입력. Google Map · Naver Map 링크. 전화·예약·방문 3경로 충족
AEO7 핵심 답변의 텍스트 추출JS 미실행 HTML 본문 비율 + 이미지 alt55 (100%)A3=3, F1=3JS 미실행 HTML 본문 79,646자 서버 렌더링. 메인 이미지 500개 alt 누락 0%
AEO8 사이트 내 답변 발견sitemap 선언·lastmod + canonical 정합54.3 (86%)A5=3, B6=2sitemap index 10개 · URL 482개 · lastmod 2026-09-09. canonical self 지정. 다만 origin.·olden. 서브도메인이 전체 사이트를 200·index로 서빙(canonical은 www 지정)해 AI 답변이 origin.·olden. URL을 인용함
+
AEO 65점의 감점은 AEO2 답변의 직접성(6.7/20)과 AEO4 의사결정 정보(9/15)에 집중됩니다. 정의문이 메타 설명에만 있고 본문은 슬로건으로 시작하며, 시술 페이지에 가격·시간·회복 수치가 없습니다. 이 두 항목이 그대로 시술(D)·가격(E) 질문군의 0~21%로 나타납니다.
+ +

05GEO 출처 준비도 72 · B

+

그 답을 얼마나 검증하고 신뢰할 수 있는 출처로 사용할 수 있는가. 8항목 100점.

+
항목배점점수근거 신호판정 근거 (2026-09-10 실측)
GEO1 주장과 근거의 일치주장 문장에 출처·조건·시점이 붙은 비율 (사람 판정)2013.3 (66%)사람 판정'No.1 Motiva 사용량(2023, Motiva Korea 수술량 기준)' · 'Global KOL 2023–2026' · '법무부 우수 유치기관 2018–2026' 처럼 집계 주체·연도가 붙은 주장이 다수. 그러나 페이지 제목의 'Best Plastic Surgery in Korea' · 'No.1 Trusted Clinic'은 근거 없음. 가슴 페이지 메타 설명은 'No.1 Motiva usage in 2013', 본문은 2023으로 불일치. 안전 페이지의 '마취과 전문의 상시'는 인원 수 없음(의료진 페이지에는 6명 명시)
GEO2 출처의 적합성과 추적성http/www 변형의 301 정본 수렴, URL 안정성1515 (100%)A4=3
GEO3 전문성과 책임 주체전문가 자격·경력 텍스트 + Physician 스키마159 (60%)C7=3, B3=0
GEO4 병원 엔티티와 사실의 정합성업종 스키마·사이트 내 NAP·sameAs·버티컬·GBP·표면 간 NAP·Wikidata156.3 (42%)B2=0, B4=2, B5=0, D1=2, D2=2, D4=2, D6=0
GEO5 사실의 최신성과 정정dateModified·sitemap lastmod·본문 갱신일106.7 (67%)C6=2
GEO6 원천 대비 추가 가치타 사이트에 없는 병원 고유 정보 유형 수 (사람 판정)1010 (100%)사람 판정컨시어지 10항목(10개 언어 통역 무료 · 공항 픽업 · 원내 숙박 · 도보 10분 제휴 호텔 · T-money 제공 · 귀국 후 원격 경과 관찰), 층별 안내(B1 검진센터~15F 치과), 공항 리무진 노선·정류장 번호, 블로그 USD 가격표, FAQ 402건, Motiva 보증 조건(5년 재수술 지원 300만원/개, 10년 교체). 원천 유형 5개 이상
GEO7 발행 관계와 투명성운영 주체·연락처·이해관계 고지, 정보와 광고의 구분 (사람 판정)106.7 (67%)사람 판정푸터에 상호 · 대표(Choi Soon Woo) · 사업자번호 220-08-86777 표기. 전 페이지에 부작용 고지문. 다만 시술 페이지 안에 Before & After · Real Review · 'Let Me In' 출연 홍보가 정보와 구분 없이 섞여 있고, 후기의 대가 지급 여부 고지가 없다. 국문 사이트 후기 광고는 2026-07-12 공정위 시정명령을 받았고 영문 Real Review 섹션도 같은 방식이다
GEO8 인용 식별자와 메타데이터 정합성ld+json 전 블록 파싱 + 화면과 메타 일치55 (100%)B1=3
+
GEO 72점의 감점은 GEO4 엔티티 정합성(6.3/15)과 GEO3 전문성 스키마(9/15)입니다. 의료진 자격·논문은 텍스트로 충분하지만 Physician 스키마가 없고, 병원 자체가 Person 타입으로 선언돼 있습니다. GEO7 투명성(6.7/10)은 후기·전후 섹션의 대가 고지 부재가 원인이며 F-05 답변에서 실제 감점으로 확인됩니다.
+ +

06게이트와 부가 지표

+

게이트 G1(AI 크롤러 접근) · G2(본문 렌더링) 모두 통과. 상한 적용 없음.

+
지표레벨실측
A6 Bing 색인 (ChatGPT 검색 경로)미검증Bing 검색 결과 페이지가 스크립트 렌더링이라 curl로 확인 불가. Bing Webmaster Tools 등록 여부는 소유자 확인 필요
A7 응답 속도·크롤 예산2TTFB 0.87s · 초기 HTML 587KB · 시술 페이지 212KB. 속도 양호, HTML 비대
B7 다국어 hreflang210개 언어(en-US · zh-CN · th · ja · vi · ru · id · mn · es · ar) 양방향 선언. th·jp·vn·ru·id·mn·es·ar 8개 서브도메인은 viewplasticsurgery.com/{lang}/ 로 301. cn은 en-US 대신 en 선언
D3 오픈웹 언급 (해외)2에이전시 블로그(khunkim · clinicsoncall · curemeabroad · kmhglobal), 정부 표면(visitkorea · 강남구 의료관광), Reddit · Purseblog 포럼, LinkedIn에 분산. 영어권 주요 언론 기사·Wikipedia 없음
D5 네이버 플레이스미검증외국인 질의 60문항에서 네이버 표면 인용 0건. 외국인 관점에서는 채점 대상 아님
E1 AI 크롤러 로그미검증서버 로그 접근 필요. Perplexity가 60문항 중 38문항에서 자사 URL을 인용했으므로 PerplexityBot 히트는 존재할 것으로 추정
E2 GA4 AI 유입 채널미검증GA4 접근 필요. chatgpt.com · perplexity.ai · copilot 리퍼러 채널 그룹 설정 여부 미확인
E3 GSC AI Overviews미검증GSC 접근 필요
E4 기준선 스팟체크260문항 × 2엔진 × 1회 실측 완료(이 보고서). 5회 반복 미실시
F2 CMS 보안·최신성2WordPress 7.1(최신 계열). meta generator로 버전 노출
F3 페이지 무게2초기 HTML 587KB(300~800KB 구간)
F4 모바일 대응2viewport 존재 · 반응형. Core Web Vitals 미측정
+ +

07국문 사이트와의 비교

+

같은 병원의 두 사이트를 같은 기준표로 채점했습니다. 영문 사이트가 세 점수 모두 한 등급 높고, 질문 뱅크 언급률도 13~18%p 높습니다. 차이는 콘텐츠 양(FAQ 402건 · 블로그 주 1회 이상 발행 · 의료진 논문 목록)에서 나왔고, 남은 감점 원인(정의문 · 수치 · 스키마 · 상호 없는 문단)은 두 사이트가 같습니다.

+
+
v1.0 종합
54 64
국문 C → 영문 B
+
AEO 답변 준비도
42 65
국문 C → 영문 B
+
GEO 출처 준비도
56 72
국문 C → 영문 B
+
+
항목국문 사이트 (viewclinic.com)영문 사이트 (viewplasticsurgery.com)차이
v1.0 종합54 / C (검증 32/36)64 / B (검증 31/36)+10
AEO 답변 준비도42 / C65 / B+23
GEO 출처 준비도56 / C72 / B+16
질문 뱅크 언급률120문항 · Perplexity 32% · OpenAI 37% (09-01)60문항 · Perplexity 50% · OpenAI 45% (09-10)+18p / +8p
C1 정의문없음 (0)메타 설명에만 (1)본문 정의문은 둘 다 없음
C2 FAQ재검증 후 2FAQ 페이지 402문항 · 시술별 5문항 (2)영문이 양은 많으나 FAQPage 스키마는 블로그에만
C3 H1'VIEW SELFIE' 등 영문 라벨 (0)전 페이지 동일 'korea plastic surgery' (2)둘 다 페이지별 서술형 H1 없음
C4 · C5 수치와 표C4=2 · C5=0C4=1 · C5=3영문은 수치가 블로그에, 표는 시술 페이지에 따로 있음
C6 신선도블로그 2024-05-31 이후 정지 (재검증 후 3)블로그 2026-09-09 발행 · sitemap lastmod 당일 (2)영문은 갱신 활발, dateModified 마크업은 둘 다 없음
C7 전문성2학위 · 전문의 · 학회 · 논문 목록 텍스트 (3)영문 의료진 상세가 더 충실
B2 · B3 스키마B2=1 · B3=0B2=0 · B3=0 (Person 타입 오선언)둘 다 MedicalClinic · Physician 없음
B7 hreflang없음10개 언어 (2)영문만 다국어 연결, 대상 URL 정리 필요
GEO7 투명성3.3 / 10 (공정위 시정명령)6.7 / 10영문 Real Review도 대가 고지 없음, F-05 답변에 노출
+ +

08개선 로드맵

+

우선순위는 실측에서 확인된 감점 순서입니다. 즉시 조치는 개발 작업 없이 텍스트·스키마 수정으로 끝나고, 30일 조치는 시술 페이지 콘텐츠 블록, 90일 조치는 외부 표면과 측정 인프라입니다.

+

즉시 (0–2주) · 텍스트와 스키마

#조치대상 항목·질문군기대 효과
1시술 페이지·블로그 가격 가이드의 첫 문단과 표 캡션에 'At VIEW Plastic Surgery in Gangnam, Seoul, …' 형태로 상호·지역 삽입. FAQ 답변 첫 문장에도 'At VIEW' 추가AEO3 · C8 / D·E군 8문항인용은 되는데 이름이 안 나오는 8문항이 언급으로 전환. 답변 단위 자기완결성 52% → 80%
2JSON-LD: Person → MedicalClinic(+Organization)으로 교체, name · address · telephone · openingHours · medicalSpecialty · availableLanguage(10개) 기재. 의료진 26명 Physician 스키마(자격 · 소속 · sameAs)GEO3 · GEO4 / B2 · B3 · B5엔티티 정합성 6.3 → 12/15. 의료진 질문(A-04 · A-05 · F-02) 근거가 스키마로 확정
3sameAs 채우기: Instagram · TikTok · YouTube · Facebook · Google 비즈니스 프로필 · Bookimed · RealSelf · unni.app · LinkedInGEO4 / B5AI가 표면 간 동일 병원임을 확인. Reddit · Bookimed 인용이 뷰 엔티티로 연결
4FAQ 페이지 402문항에 FAQPage 스키마 부여, 카테고리별 URL(/faq/breast/ 등 11개)로 분할AEO1 / C2질문 수요 충족 13.3 → 20/20. 시술 질문(D) 인용 페이지 확보
5H1을 페이지별 서술형으로 교체('Motiva Breast Augmentation in Seoul at VIEW Plastic Surgery'). 검색창 H2 제거AEO5 / C3제목 계층 6.7 → 10/10
6origin.·olden. 서브도메인 → www 301. 언어 서브도메인 8개의 hreflang을 최종 URL(/th/ 등)로 통일, cn hreflang en-US로 정정AEO8 · B7인용 URL 분산 해소, 다국어 신호 정합
7메타 설명 오류 정정: 가슴 페이지 'No.1 Motiva usage in 2013' → 2023. 제목의 'Best' · 'No.1 Trusted' 표현은 근거 있는 표현으로 교체GEO1주장·근거 일치 13.3 → 16/20

30일 · 시술 페이지 결정 정보

#조치대상 항목·질문군기대 효과
1시술 페이지 상단에 정의문 + 결정 정보 블록: USD 가격대 · 수술 시간 · 마취 · 입원 · 권장 체류일 · 귀국 가능일 · 실밥 제거일을 표로. 부위별 8개 시술군 우선AEO2 · AEO4 / C1 · C4 / D·E군시술(D) 14~21% · 가격(E) 0% 구간의 직접 대응. 답변 직접성 6.7 → 16/20
2블로그 가격 가이드(가슴 · V-line · 코 · 양악 · 눈)와 시술 페이지 상호 링크. 표는 시술 페이지에 요약 이식AEO4 / C4 · C5의사결정 정보 9 → 13/15
3'귀국 후 합병증 대응 · 원격 팔로업' 전용 페이지: 절차 · 연락 채널 · 응답 시간 · 현지 협력 · Motiva 보증 청구 방법F-03 · G-01 · G-04안전(F) · 사후관리(G) 질문군에서 인용 원문 확보
4수상·인증 페이지에 주최 · 연도 · 원문 링크 명시(법무부 우수 유치기관 2018–2026, Motiva KOL, 서울시 표창)GEO1 / C-10정부 인증 질문(C-10)에서 1순위 유지, 주장 근거 일치 향상
5후기 · 전후 · 'Let Me In' 홍보를 정보 페이지와 분리. 후기에 대가 제공 여부 · 개인차 고지 첫 부분에 표기GEO7F-05 부정 답변의 맥락 제공. 발행 투명성 6.7 → 10/10
6dateModified · author · reviewedBy를 시술 페이지와 블로그 글에 마크업. 의료진 검토 표기GEO5 · GEO8최신성 6.7 → 10/10

90일 · 외부 표면과 측정

#조치대상 항목·질문군기대 효과
1Google 비즈니스 프로필: 전화번호 등록, 영문 리뷰 응답, 컨시어지 서비스 속성 기재D2 · D4위치·연락처 질문(B) 오답 위험 제거
2Bookimed · RealSelf · unni.app 프로필 갱신(의료진 · 시술 · 가격대 · 언어). Reddit r/PlasticSurgery · r/korea 질문에 공식 계정으로 사실 답변D1 · D3reddit.com 49문항 · Bookimed 32문항 인용 표면에 뷰 원문 배치. 추천 질문(C) 1순위 비율 상승
3Bing Webmaster Tools 등록 + IndexNow. GSC · GA4 AI 유입 채널 그룹 설정, 서버 로그 AI 크롤러 IP 검증A6 · E1 · E2 · E3ChatGPT 검색 경로 확보, 소유 신호로 월간 측정
460문항 × 2엔진 × 5회 반복 월간 재실측. 질문 뱅크에 일본어 · 중국어 · 태국어 각 60문항 추가(hreflang 언어 순)E4개선 전후 비교 기준선. 언어별 언급률 관리
+ +

09측정 계획과 KPI

+

개선 전후를 같은 60문항 · 같은 두 엔진으로 월 1회 재실측합니다.

+
지표현재 (2026-09-10)90일 목표측정 방법
60문항 언급률Perplexity 50% · OpenAI 45%Perplexity 65% · OpenAI 60%월 1회 60문항 × 2엔진 × 5회 반복
시술(D) · 가격(E) 언급률D 14~21% · E 0%D 40% · E 30%같은 실측의 질문군별 집계
인용됐지만 미언급 문항Perplexity 8문항0문항자사 URL 인용 여부와 상호 등장 여부 교차 집계
자사 사이트 인용률Perplexity 63% · OpenAI 30%Perplexity 75% · OpenAI 45%인용 URL 도메인 집계
추천 질문(C) 1순위Perplexity 4/12 · OpenAI 1/12각 6/12질문군 C 순위 집계
AEO · GEO 점수65 · 72 (B · B)80 · 85 (A 진입)기준표 v2.0 재채점
AI 크롤러 히트미측정월간 기준선 확보서버 로그 UA + IP 역검증
부정 답변1문항 (F-05 공정위)정정 고지 페이지가 함께 인용감성 기준표 v0.3 사람 검토
+ +

A부록 A · 60문항 실측표

+

O = 뷰성형외과 언급, 숫자 = 답변 내 등장 순위. 감성은 후처리 모델 1차 분류.

+
#질문 (영문 원문)단계Perplexity
언급·순위·감성
OpenAI
언급·순위·감성
답변 내 상위 병원 (Perplexity → OpenAI)
A 브랜드 직접 질문 · Brand
A-01Is VIEW Plastic Surgery in Seoul legit? Is it a trustworthy clinic for foreigners?결정O 1 중립O 1 긍정(뷰 외 없음) → (뷰 외 없음)
A-02Tell me about VIEW Plastic Surgery in Gangnam, Korea. What are they known for?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
A-03What procedures does VIEW Plastic Surgery Korea specialize in?결정O 1 O 1 긍정(뷰 외 없음) → (뷰 외 없음)
A-04Who is Dr. Choi Soon Woo of VIEW Plastic Surgery? Is he board certified?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
A-05How many surgeons does VIEW Plastic Surgery have and are they all board-certified plastic surgeons?결정O 1 중립O 1 긍정(뷰 외 없음) → (뷰 외 없음)
A-06Does VIEW Plastic Surgery have English-speaking staff or interpreters?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
A-07How long has VIEW Plastic Surgery been operating and how big is the clinic?결정O 1 긍정O 1 중립(뷰 외 없음) → (뷰 외 없음)
A-08VIEW Plastic Surgery Korea reviews from international patients: what do foreigners say?결정O O 1 긍정(뷰 외 없음) → Girin Plastic Surgery, AB Plastic Surgery
B 이동·체류·운영 · Travel & logistics
B-01Where is VIEW Plastic Surgery located and how do I get there from Incheon Airport?결정O 1 O 1 (뷰 외 없음) → (뷰 외 없음)
B-02Does VIEW Plastic Surgery offer airport pickup for international patients?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
B-03What are VIEW Plastic Surgery's opening hours and can I book a consultation online from abroad?결정O 1 O 1 긍정(뷰 외 없음) → (뷰 외 없음)
B-04Can I contact VIEW Plastic Surgery via WhatsApp or LINE for a consultation?결정O 1 O 1 (뷰 외 없음) → (뷰 외 없음)
B-05Does VIEW Plastic Surgery provide accommodation or hotel partnerships for foreign patients?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
B-06How long should I stay in Seoul after plastic surgery before flying home?탐색X X (뷰 외 없음) → (뷰 외 없음)
B-07Do I need a medical visa for plastic surgery in Korea as a tourist?탐색X X (뷰 외 없음) → (뷰 외 없음)
B-08Which Gangnam plastic surgery clinics are closest to Sinnonhyeon Station?인지O 3 O 6 중립Lala Plastic Surgery Clinic, 345 Plastic Surgery, Girin Plastic Surgery → JUST Plastic Surgery Clinic, 1 mm Plastic Surgery Clinic, 345 Plastic Surgery Clinic
C 추천·비교 · Recommendation & comparison
C-01Best plastic surgery clinic in Seoul for foreigners인지O 4 긍정X JK Plastic Surgery, ID Hospital, Banobagi Plastic Surgery → JK Plastic Surgery Center, ID Hospital, Banobagi Plastic Surgery
C-02Best breast augmentation clinic in Korea for international patients비교X X VG Plastic Surgery, SAERO Plastic Surgery, WOOA Plastic Surgery → SAERO Plastic Surgery, JW Plastic Surgery Center, The Plus Plastic Surgery
C-03Top facial contouring and V-line surgery clinics in Gangnam비교X O 3 긍정TOP Plastic Surgery, The PLUS Plastic Surgery, Glam Plastic Surgery → JK Plastic Surgery, Banobagi Plastic Surgery, BRAUN Plastic Surgery
C-04Best rhinoplasty surgeon in Seoul for foreigners비교O 1 긍정O 7 긍정JW Plastic Surgery, LUHO Plastic Surgery, SAERO Plastic Surgery → AB Plastic Surgery, ONYX Plastic Surgery, WOOA Plastic Surgery & Skin Clinic
C-05Best double jaw surgery clinic in Korea비교O 2 긍정X ID Hospital, JUM Oral and Maxillofacial Surgery, WHY Oral and Maxillofacial Surgery → TJ Plastic Surgery, Sinsang Plastic and Reconstructive Surgery, Brown Eye Medical Clinic
C-06Top 5 plastic surgery clinics in Gangnam, Seoul인지O 5 긍정O 5 긍정JK Plastic Surgery, Opera Plastic Surgery, Banobagi Clinic → 4Ever Plastic Surgery, DA Plastic Surgery, ARC Plastic Surgery
C-07Compare VIEW Plastic Surgery vs ID Hospital vs Banobagi for facial contouring비교O 1 긍정O 1 긍정ID Hospital, Banobagi → ID Hospital, Banobagi
C-08Which Korean plastic surgery clinics use Motiva implants and have the most experience with them?비교O 1 긍정O 2 긍정Ryan Plastic Surgery, JK Plastic Surgery Center, DA Plastic Surgery → U&U Plastic Surgery Clinic, Ryan Plastic Surgery, V Clinic Gangnam
C-09Safest plastic surgery clinic in Korea with anesthesiologists on staff비교O 3 긍정X AB Plastic Surgery, JK Plastic Surgery, DA Plastic Surgery → AB Plastic Surgery Clinic, JK Plastic Surgery Center, Hannaeve Plastic Surgery Clinic
C-10Which Seoul plastic surgery clinics are officially recognized for medical tourism by the Korean government?비교O 1 긍정O 4 긍정Banobagi Plastic Surgery, JK Plastic Surgery Center, Evita Clinic → JK Plastic Surgery Center, HER SHE (HERSHE) Plastic Surgery, Hyundai Aesthetics Plastic Surgery
C-11Best clinic in Korea for double eyelid surgery revision for foreigners비교X X Ahnsungmin Plastic Surgery, Sinsa L Plastic Surgery, 1mm Plastic Surgery → 1MM Plastic Surgery, Etonne Plastic Surgery, Wanna Plastic Surgery
C-12Large plastic surgery hospitals in Seoul with in-house recovery wards비교O 2 긍정X ID Hospital, Grand Plastic Surgery, JK Plastic Surgery → Banobagi Plastic Surgery Clinic, ID Hospital, JW Plastic Surgery
D 시술 정보 · Procedure info
D-01Motiva breast augmentation in Korea: what should I know before booking?탐색X X (뷰 외 없음) → (뷰 외 없음)
D-02What is Motiva Preserve and which clinics in Korea offer it?탐색X X (뷰 외 없음) → U&U Plastic Surgery Clinic, Ryan Plastic Surgery, Golden Diamant Plastic Surgery
D-03How long is recovery after breast augmentation in Korea before I can fly?탐색X X (뷰 외 없음) → (뷰 외 없음)
D-04What is the difference between V-line surgery and square jaw reduction?탐색X X (뷰 외 없음) → (뷰 외 없음)
D-05Double jaw surgery in Korea: recovery timeline and risks for international patients탐색X X (뷰 외 없음) → (뷰 외 없음)
D-06Incisional vs non-incisional double eyelid surgery in Korea: which is better?탐색X X (뷰 외 없음) → (뷰 외 없음)
D-07Rhinoplasty in Korea with rib cartilage vs silicone: pros and cons탐색X X (뷰 외 없음) → (뷰 외 없음)
D-08How is revision rhinoplasty done in Korea and how long do I need to stay?탐색X X (뷰 외 없음) → (뷰 외 없음)
D-09Facelift in Korea for a 50-year-old: what techniques are used?탐색X X (뷰 외 없음) → (뷰 외 없음)
D-10Is liposuction in Korea safe and how many days of downtime should I expect?탐색X X (뷰 외 없음) → (뷰 외 없음)
D-11What does VIEW Plastic Surgery's breast surgery process look like from consultation to aftercare?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
D-12Does VIEW Plastic Surgery do a breast ultrasound or examination before augmentation?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
D-13Subbrow lift vs upper blepharoplasty: which should I get in Korea?탐색X X (뷰 외 없음) → (뷰 외 없음)
D-14Mini lift vs full facelift in Korea: cost and recovery탐색X O 7 (뷰 외 없음) → SeoulFaceliftClinic, Gangnam.Health, medisou
E 가격 · Pricing
E-01How much does breast augmentation cost in Korea for foreigners in 2026?탐색X X (뷰 외 없음) → MISOODA, Medisou, Clinicsoncall
E-02V-line surgery cost in Korea 2026탐색X X (뷰 외 없음) → MISOODA, MedVoyage, Korea Med Guide
E-03How much does double jaw surgery cost in Seoul?탐색X X ID Hospital → Gangnam Beauty Guide, MISOODA, SeoulMedicalInsider
E-04Is plastic surgery in Korea cheaper than in the US? How much can I save?인지X X (뷰 외 없음) → (뷰 외 없음)
E-05VIEW Plastic Surgery price list for international patients결정X X (뷰 외 없음) → (뷰 외 없음)
E-06What hidden costs should I expect for plastic surgery in Korea as a foreigner?탐색X X (뷰 외 없음) → (뷰 외 없음)
E-07Can foreigners get a tax refund on plastic surgery in Korea?탐색X X (뷰 외 없음) → (뷰 외 없음)
E-08Rhinoplasty cost in Gangnam for foreigners탐색X X (뷰 외 없음) → KoreaCareGuide, Gangnam Health, SeoulBeautyTalk
F 안전·신뢰 · Safety & trust
F-01Is plastic surgery in Korea safe for foreigners? What safety standards should I look for?인지X X (뷰 외 없음) → (뷰 외 없음)
F-02Does VIEW Plastic Surgery have anesthesiologists present during surgery?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
F-03What happens if I have complications after returning home from plastic surgery in Korea?탐색X X (뷰 외 없음) → (뷰 외 없음)
F-04How do I verify a Korean plastic surgeon is board certified?탐색X X (뷰 외 없음) → (뷰 외 없음)
F-05Are there red flags or complaints about VIEW Plastic Surgery Korea?결정O 1 부정O 1 부정(뷰 외 없음) → DA Plastic Surgery, AB Plastic Surgery Clinics, SeoulKlinic
F-06Which Korean plastic surgery clinics have a Motiva implant warranty?비교O 2 긍정X JK Plastic Surgery, MINE Clinic, DA Plastic Surgery → Ryan Plastic Surgery, NANA Plastic Surgery, Wonjin Plastic Surgery Hospital
G 사후관리·원격 팔로업 · Aftercare & remote follow-up
G-01Do Korean plastic surgery clinics offer remote follow-up after I go back to my country?탐색O 4 긍정X GIRIN, ROI Plastic Surgery, Link Plastic Surgery → (뷰 외 없음)
G-02What aftercare does VIEW Plastic Surgery provide for international patients?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
G-03Where can I get post-surgery swelling care in Gangnam after surgery?탐색X O 7 긍정Dia Aesthetic, VEI Clinic, Hyundai Aesthetic Surgery Clinic → ONUL Plastic Surgery & Dermatology, Withwin Dermatology, ROI Plastic Surgery
G-04What is the Motiva implant warranty if I get surgery in Korea and live abroad?탐색X X (뷰 외 없음) → Motiva Korea, breastsurgerykorea.com
+ +

B부록 B · v1.0 36항목 판정

+

자동 채점 20항목 + 사람 보정 10항목 + 미검증 6항목. 미검증은 분모에서 제외합니다.

+

A · Access & Crawlability

항목레벨근거
A1 검색용 AI 봇 허용312개 AI 봇 전부 허용. OAI-SearchBot·PerplexityBot·GPTBot UA로 GET → 전부 200
A2 CDN/WAF AI 차단 없음2CDN 사용(Apache/2.4.68 (Debian)), AI UA 차단 없음(전부 200)
A3 서버 렌더링 본문3서버 렌더링. JS 미실행 HTML에서 본문 텍스트 79,646자 추출
A4 HTTPS·리다이렉트 정합3http://viewplasticsurgery.com → 301 → https://www.viewplasticsurgery.com/ 정본 수렴 (4변형 모두)
A5 sitemap.xml 제공3robots.txt에 sitemap 선언, 200 응답. URL 482개, lastmod 최신 2026-09-09
A6 Bing 색인 (ChatGPT 검색 경로)미검증[manual] Bing Webmaster Tools 등록 여부는 오너 계정 접근 필요 (또는 site: 검색 수동 확인)
A7 응답 속도·크롤 예산2TTFB 0.870s / 초기 HTML 587KB. 시술 페이지 212KB (TTFB 양호 / HTML 비대)

B · Entity & Structured Data

항목레벨근거
B1 JSON-LD 문법 유효성3JSON-LD 1블록 전부 유효 + @graph 연결
B2 업종 엔티티 스키마 (MedicalClinic)0업종 엔티티 스키마 없음 (발견 타입: CollectionPage, Person, WebSite)
B3 전문가 스키마 (Physician)0Physician/Attorney 스키마 없음. 전문가 정보는 HTML 텍스트·이미지로만 존재
B4 NAP 사이트 내 일관성2[사람 보정] 전 페이지 푸터 NAP 동일: 107 Bongeunsa-ro, Gangnam-gu / +82-2-539-1177 / eng_viewps@viewclinic.com / 진료시간. 구주소(201-14 Nonhyeon-dong) 병기. 개인정보 페이지에 다른 번호(02-2138-1305, 02-3480-3573) 노출
B5 sameAs 연결0Organization.sameAs: [] (빈 배열). 푸터/본문에 SNS 링크 2종(www.instagram.com, www.tiktok.com), 스키마에 미연결
B6 canonical·중복 제거2rel=canonical self-referencing 존재
B7 다국어 hreflang2[사람 보정] 10개 언어 hreflang 양방향 선언. 그러나 th·jp·vn·ru·id·mn·es·ar 8개 서브도메인은 viewplasticsurgery.com/{lang}/ 로 301. hreflang 대상 URL이 최종 URL이 아니다. cn 페이지는 en-US 대신 en으로 선언

C · Content & Answerability

항목레벨근거
C1 정의문형 첫 문단1[사람 보정] 정의문이 메타 설명에만 있다. About 메타: 'Founded in 2005, VIEW is a premier 19-story medical center in Gangnam, Seoul'. 본문 첫 단락은 슬로건('always considers the perspective of the patient'), 시술 페이지 첫 텍스트는 'Let Me In Season 2/3/4/5 Selected Doctors' 홍보 라벨. 홈 첫 200자는 검색창·메뉴
C2 FAQ 섹션2FAQ 섹션 존재: "VIEW Breast Surgery FAQ" 외 0개. FAQPage 스키마 없음
C3 제목 계층 의미성2H1 1개: "korea plastic surgery". H2 중복 0건 또는 라벨형
C4 구체 수치 (가격·시간·회복)1[사람 보정] 시술 페이지(가슴 Motiva) 본문에 가격·수술시간·회복기간 0회. 수치는 Motiva 보증(재수술 지원 300만원/개) 뿐. 블로그 글에는 USD 가격표(V-line $7,000–12,000, 표 3행)와 체류 기간(10–14일)이 있으나 시술 페이지와 연결되지 않음
C5 표·비교 구조3HTML 표 10개
C6 신선도 신호2최신 갱신 신호 2026-09-09 (sitemap lastmod 2026-09-09). dateModified 마크업 없음
C7 전문가 E-E-A-T (의료진)3[사람 보정] 의료진 상세 페이지에 학위(서울대 의학박사)·전문의 자격·학회 회원·논문 목록이 텍스트. 의료진 목록 26명에 역할(성형외과 전문의 15·이비인후과 1·피부과 3·유방외과 1·영상 1·마취과 6) 표기
C8 패시지 자기완결성2[사람 보정] 5개 핵심 페이지 단락 샘플 50개 중 상호 또는 시술명 포함 26개(52%). 상호 'VIEW' 포함은 7개(14%). FAQ 답변은 'Motiva Preserve is…'처럼 시술명만 있고 상호가 없다

D · Surfaces & Citations

항목레벨근거
D1 업종 버티컬 프로필 (외국인: 국제 리뷰 플랫폼)2[사람 보정] 외국인 대상 리뷰·중개 플랫폼 기준. Bookimed(us-uk.bookimed.com) 프로필과 RealSelf 평점(제3자 인용 4.8/5)이 AI 답변의 인용 출처로 확인됨. 리뷰 수·갱신일·소유자 응답은 직접 실측하지 못함. 강남언니(국문)는 외국인 질의 60문항 어디에도 인용되지 않음
D2 Google 비즈니스 프로필2[사람 보정] Google 비즈니스 프로필 4.9점·리뷰 901건, 소유자 게시 활성, 웹사이트가 영문 사이트로 연결(2026-08-31 실측 인용). 전화번호 미등록. 2026-09-10 재실측은 Places API 키 부재로 미실시
D3 오픈웹 언급 (해외 커뮤니티·언론)2[사람 보정] 뷰를 언급한 AI 답변의 인용처가 유치업체·에이전시 블로그(khunkim.com·clinicsoncall.com·curemeabroad.com·kmhglobal.com), 정부 표면(english.visitkorea.or.kr·medicaltour.gangnam.go.kr), 커뮤니티(reddit.com·forum.purseblog.com), LinkedIn에 분산. 영어권 주요 언론 기사와 Wikipedia 항목은 없음
D4 표면 간 NAP 완전 일치2[사람 보정] 영문 사이트·GBP 주소 일치(107 Bongeunsa-ro). GBP 전화 없음. 강남언니는 국문 표면이라 외국인 질의 근거로는 쓰이지 않음
D5 네이버 플레이스 (AI 브리핑 전용)미검증[semi·사람 판정 필요] 사이트에 플레이스/지도 링크 발견: https://naver.me/x9BxGXkK, 플레이스 존재·홈페이지 역연결·리뷰 수 수동 확인
D6 위키데이터/위키백과 엔티티0Wikidata에서 "VIEW Plastic Surgery (EN)" 검색 결과 없음

E · Measurement

항목레벨근거
E1 AI 크롤러 로그 (IP 검증)미검증[manual] 서버 로그 접근 필요 (AI 크롤러 히트 + IP 검증)
E2 GA4 AI 유입 채널미검증[manual] GA4 접근 필요 (AI 유입 커스텀 채널그룹 여부)
E3 GSC AI Overviews 노출미검증[manual] GSC 접근 필요 (AI Overviews 노출)
E4 기준선 스팟체크2[사람 보정] 2026-09-10 외국인 관점 영문 60문항 × 2엔진(Perplexity sonar, OpenAI gpt-4o web_search 뉴욕 위치) 1회 실측. 5회 반복은 미실시

F · Technical Hygiene

항목레벨근거
F1 이미지 대체텍스트3메인 페이지 이미지 500개 중 0개(0%) alt 누락 또는 빈 값
F2 CMS 보안·최신성2[사람 보정] WordPress 7.1(2026 최신 계열). meta generator로 버전 노출
F3 페이지 무게2초기 HTML 587KB (300~800KB)
F4 모바일 대응2viewport meta 존재, 반응형. CWV 미측정
+ + +
\ No newline at end of file diff --git a/docs/reports/viewclinic/05_global_en/Viewclinic_Global_EN_AEO_GEO_Report_2026-09-10.pdf b/docs/reports/viewclinic/05_global_en/Viewclinic_Global_EN_AEO_GEO_Report_2026-09-10.pdf new file mode 100644 index 0000000..f0a22e8 Binary files /dev/null and b/docs/reports/viewclinic/05_global_en/Viewclinic_Global_EN_AEO_GEO_Report_2026-09-10.pdf differ diff --git a/docs/reports/viewclinic/05_global_en/audit_en_auto.json b/docs/reports/viewclinic/05_global_en/audit_en_auto.json new file mode 100644 index 0000000..34a3d8b --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/audit_en_auto.json @@ -0,0 +1,192 @@ +{ + "_meta": { + "sampleUrls": [ + "https://www.viewplasticsurgery.com", + "https://www.viewplasticsurgery.com/breast/breast-augmentation-motiva.html" + ], + "sampleWarning": "표본 URL 2개 (<5). 판정은 홈·대표 시술 페이지 기준이며 사이트 전체로 일반화하지 말 것. 시술 상세 3개·오시는길·블로그를 curl+파서로 추가 확인할 것 (2026-08-28 뷰성형외과 오판 3건의 원인)" + }, + "results": [ + { + "criterionId": "A1", + "level": 3, + "evidence": "12개 AI 봇 전부 허용. OAI-SearchBot·PerplexityBot·GPTBot UA로 GET → 전부 200", + "source": "robots.txt: User-agent: * / Disallow: /wp-admin/" + }, + { + "criterionId": "A2", + "level": 2, + "evidence": "CDN 사용(Apache/2.4.68 (Debian)), AI UA 차단 없음(전부 200)" + }, + { + "criterionId": "A3", + "level": 3, + "evidence": "서버 렌더링. JS 미실행 HTML에서 본문 텍스트 79,646자 추출" + }, + { + "criterionId": "A4", + "level": 3, + "evidence": "http://viewplasticsurgery.com → 301 → https://www.viewplasticsurgery.com/ 정본 수렴 (4변형 모두)" + }, + { + "criterionId": "A5", + "level": 3, + "evidence": "robots.txt에 sitemap 선언, 200 응답. URL 482개, lastmod 최신 2026-09-09" + }, + { + "criterionId": "A6", + "level": "unverified", + "evidence": "[manual] Bing Webmaster Tools 등록 여부는 오너 계정 접근 필요 (또는 site: 검색 수동 확인)" + }, + { + "criterionId": "A7", + "level": 2, + "evidence": "TTFB 0.870s / 초기 HTML 587KB. 시술 페이지 212KB (TTFB 양호 / HTML 비대)" + }, + { + "criterionId": "B1", + "level": 3, + "evidence": "JSON-LD 1블록 전부 유효 + @graph 연결" + }, + { + "criterionId": "B2", + "level": 0, + "evidence": "업종 엔티티 스키마 없음 (발견 타입: CollectionPage, Person, WebSite)" + }, + { + "criterionId": "B3", + "level": 0, + "evidence": "Physician/Attorney 스키마 없음. 전문가 정보는 HTML 텍스트·이미지로만 존재" + }, + { + "criterionId": "B4", + "level": "unverified", + "evidence": "주소 자동 추출 실패 (수동 확인 필요). 전화 4종: 02-539-1132, 02-2138-1305, 023480-3573" + }, + { + "criterionId": "B5", + "level": 0, + "evidence": "Organization.sameAs: [] (빈 배열). 푸터/본문에 SNS 링크 2종(www.instagram.com, www.tiktok.com) — 스키마에 미연결" + }, + { + "criterionId": "B6", + "level": 2, + "evidence": "rel=canonical self-referencing 존재" + }, + { + "criterionId": "B7", + "level": 3, + "evidence": "hreflang 10개 언어 연결: ar, en-us, es, id-id, ja-jp, mn-mn, ru-ru, th-th, vi-vn, zh-cn" + }, + { + "criterionId": "C1", + "level": "unverified", + "evidence": "[semi·사람 판정 필요] 메인 첫 200자: \"Best Plastic Surgery in Korea for Foreigners | VIEW Seoul Gangnam korea plastic surgery Introduction…\" / 시술 페이지 첫 200자: \"Motiva Breast Augmentation Korea | KOL Clinic | VIEW Plastic Surgery korea plast…\" (첫 200자 내 상호 없음)" + }, + { + "criterionId": "C2", + "level": 2, + "evidence": "FAQ 섹션 존재: \"VIEW Breast Surgery FAQ\" 외 0개. FAQPage 스키마 없음" + }, + { + "criterionId": "C3", + "level": 2, + "evidence": "H1 1개: \"korea plastic surgery\". H2 중복 0건 또는 라벨형" + }, + { + "criterionId": "C4", + "level": "unverified", + "evidence": "[semi·사람 판정 필요] 시술 페이지 수치 밀도: 가격표기 0회, 시간 0회, 일/주 0회, % 2회, 가격/비용/회복 단어 0회 — 표기 맥락(마케팅 문구 vs 실제 표) 확인 필요" + }, + { + "criterionId": "C5", + "level": 3, + "evidence": "HTML 표 10개" + }, + { + "criterionId": "C6", + "level": 2, + "evidence": "최신 갱신 신호 2026-09-09 (sitemap lastmod 2026-09-09). dateModified 마크업 없음" + }, + { + "criterionId": "C7", + "level": "unverified", + "evidence": "[semi·사람 판정 필요] 전문가 언급 0회, 권위 키워드 13회 (KOL) — 자격·경력이 텍스트인지 이미지인지 확인 필요" + }, + { + "criterionId": "C8", + "level": "unverified", + "evidence": "[manual] 핵심 페이지 단락 샘플 10개의 상호·시술명 포함 비율 수동 채점 필요" + }, + { + "criterionId": "D1", + "level": "unverified", + "evidence": "[manual] 업종 버티컬(병의원: 강남언니 / 법률: 로톡) 프로필 수동 실측 필요 — 후기 수·의료진·이벤트·갱신일" + }, + { + "criterionId": "D2", + "level": "unverified", + "evidence": "[manual] Google Maps 검색으로 GBP 소유·리뷰·NAP 수동 실측 필요" + }, + { + "criterionId": "D3", + "level": "unverified", + "evidence": "[semi·사람 판정 필요] 검색 그라운딩 미실시. 사이트에서 발견된 외부 채널: www.tiktok.com(5), www.instagram.com(4), naver.me(2) — naver.com 제외 오픈웹 언급(티스토리·언론)은 검색으로 별도 집계 필요" + }, + { + "criterionId": "D4", + "level": "unverified", + "evidence": "[manual] 홈페이지·버티컬·GBP·플레이스 NAP 대조표 수동 작성 필요" + }, + { + "criterionId": "D5", + "level": "unverified", + "evidence": "[semi·사람 판정 필요] 사이트에 플레이스/지도 링크 발견: https://naver.me/x9BxGXkK — 플레이스 존재·홈페이지 역연결·리뷰 수 수동 확인" + }, + { + "criterionId": "D6", + "level": 0, + "evidence": "Wikidata에서 \"VIEW Plastic Surgery (EN)\" 검색 결과 없음" + }, + { + "criterionId": "E1", + "level": "unverified", + "evidence": "[manual] 서버 로그 접근 필요 (AI 크롤러 히트 + IP 검증)" + }, + { + "criterionId": "E2", + "level": "unverified", + "evidence": "[manual] GA4 접근 필요 (AI 유입 커스텀 채널그룹 여부)" + }, + { + "criterionId": "E3", + "level": "unverified", + "evidence": "[manual] GSC 접근 필요 (AI Overviews 노출)" + }, + { + "criterionId": "E4", + "level": "unverified", + "evidence": "[manual] 기준선 스팟체크 미실시 (질의 10개 × 5회 반복은 별도 단계)" + }, + { + "criterionId": "F1", + "level": 3, + "evidence": "메인 페이지 이미지 500개 중 0개(0%) alt 누락 또는 빈 값" + }, + { + "criterionId": "F2", + "level": "unverified", + "evidence": "meta generator: WordPress 7.1 — 출시일 미상, 수동 판정 필요" + }, + { + "criterionId": "F3", + "level": 2, + "evidence": "초기 HTML 587KB (300~800KB)" + }, + { + "criterionId": "F4", + "level": 2, + "evidence": "viewport meta 존재, 반응형. CWV 미측정" + } + ] +} \ No newline at end of file diff --git a/docs/reports/viewclinic/05_global_en/audit_en_overrides.json b/docs/reports/viewclinic/05_global_en/audit_en_overrides.json new file mode 100644 index 0000000..ab78409 --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/audit_en_overrides.json @@ -0,0 +1,50 @@ +{ + "C1": { + "level": 1, + "evidence": "정의문이 메타 설명에만 있다. About 메타: 'Founded in 2005, VIEW is a premier 19-story medical center in Gangnam, Seoul'. 본문 첫 단락은 슬로건('always considers the perspective of the patient'), 시술 페이지 첫 텍스트는 'Let Me In Season 2/3/4/5 Selected Doctors' 홍보 라벨. 홈 첫 200자는 검색창·메뉴" + }, + "C4": { + "level": 1, + "evidence": "시술 페이지(가슴 Motiva) 본문에 가격·수술시간·회복기간 0회. 수치는 Motiva 보증(재수술 지원 300만원/개) 뿐. 블로그 글에는 USD 가격표(V-line $7,000–12,000, 표 3행)와 체류 기간(10–14일)이 있으나 시술 페이지와 연결되지 않음" + }, + "C7": { + "level": 3, + "evidence": "의료진 상세 페이지에 학위(서울대 의학박사)·전문의 자격·학회 회원·논문 목록이 텍스트. 의료진 목록 26명에 역할(성형외과 전문의 15·이비인후과 1·피부과 3·유방외과 1·영상 1·마취과 6) 표기" + }, + "C8": { + "level": 2, + "evidence": "5개 핵심 페이지 단락 샘플 50개 중 상호 또는 시술명 포함 26개(52%). 상호 'VIEW' 포함은 7개(14%). FAQ 답변은 'Motiva Preserve is…'처럼 시술명만 있고 상호가 없다" + }, + "B4": { + "level": 2, + "evidence": "전 페이지 푸터 NAP 동일: 107 Bongeunsa-ro, Gangnam-gu / +82-2-539-1177 / eng_viewps@viewclinic.com / 진료시간. 구주소(201-14 Nonhyeon-dong) 병기. 개인정보 페이지에 다른 번호(02-2138-1305, 02-3480-3573) 노출" + }, + "B7": { + "level": 2, + "evidence": "10개 언어 hreflang 양방향 선언. 그러나 th·jp·vn·ru·id·mn·es·ar 8개 서브도메인은 viewplasticsurgery.com/{lang}/ 로 301. hreflang 대상 URL이 최종 URL이 아니다. cn 페이지는 en-US 대신 en으로 선언" + }, + "D2": { + "level": 2, + "evidence": "Google 비즈니스 프로필 4.9점·리뷰 901건, 소유자 게시 활성, 웹사이트가 영문 사이트로 연결(2026-08-31 실측 인용). 전화번호 미등록. 2026-09-10 재실측은 Places API 키 부재로 미실시" + }, + "D4": { + "level": 2, + "evidence": "영문 사이트·GBP 주소 일치(107 Bongeunsa-ro). GBP 전화 없음. 강남언니는 국문 표면이라 외국인 질의 근거로는 쓰이지 않음" + }, + "E4": { + "level": 2, + "evidence": "2026-09-10 외국인 관점 영문 60문항 × 2엔진(Perplexity sonar, OpenAI gpt-4o web_search 뉴욕 위치) 1회 실측. 5회 반복은 미실시" + }, + "F2": { + "level": 2, + "evidence": "WordPress 7.1(2026 최신 계열). meta generator로 버전 노출" + }, + "D1": { + "level": 2, + "evidence": "외국인 대상 리뷰·중개 플랫폼 기준. Bookimed(us-uk.bookimed.com) 프로필과 RealSelf 평점(제3자 인용 4.8/5)이 AI 답변의 인용 출처로 확인됨. 리뷰 수·갱신일·소유자 응답은 직접 실측하지 못함. 강남언니(국문)는 외국인 질의 60문항 어디에도 인용되지 않음" + }, + "D3": { + "level": 2, + "evidence": "뷰를 언급한 AI 답변의 인용처가 유치업체·에이전시 블로그(khunkim.com·clinicsoncall.com·curemeabroad.com·kmhglobal.com), 정부 표면(english.visitkorea.or.kr·medicaltour.gangnam.go.kr), 커뮤니티(reddit.com·forum.purseblog.com), LinkedIn에 분산. 영어권 주요 언론 기사와 Wikipedia 항목은 없음" + } +} \ No newline at end of file diff --git a/docs/reports/viewclinic/05_global_en/audit_en_scored.json b/docs/reports/viewclinic/05_global_en/audit_en_scored.json new file mode 100644 index 0000000..67a3fad --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/audit_en_scored.json @@ -0,0 +1,500 @@ +{ + "label": "VIEW EN", + "v1": { + "score": 64, + "grade": "B", + "earned": 55.7, + "possible": 87.0, + "verified": 31, + "total": 36, + "categories": { + "access": 92, + "entity": 38, + "content": 63, + "surface": 63, + "measure": 67, + "hygiene": 80 + } + }, + "aeo": { + "score": 61, + "raw": 61, + "grade": "B", + "earned": 55.0, + "possible": 90.0, + "items": [ + [ + "AEO1", + "질문 수요 충족", + 67 + ], + [ + "AEO2", + "답변의 직접성", + 33 + ], + [ + "AEO3", + "답변 단위의 자기완결성", + 67 + ], + [ + "AEO4", + "의사결정에 필요한 정보", + 60 + ], + [ + "AEO5", + "정보 구조와 가독성", + 67 + ], + [ + "AEO6", + "다음 행동의 명확성", + null + ], + [ + "AEO7", + "핵심 답변의 텍스트 추출", + 100 + ], + [ + "AEO8", + "사이트 내 답변 발견", + 87 + ] + ] + }, + "geo": { + "score": 70, + "raw": 70, + "grade": "B", + "earned": 42.0, + "possible": 60.0, + "items": [ + [ + "GEO1", + "주장과 근거의 일치", + null + ], + [ + "GEO2", + "출처의 적합성과 추적성", + 100 + ], + [ + "GEO3", + "전문성과 책임 주체", + 60 + ], + [ + "GEO4", + "병원 엔티티와 사실의 정합성", + 42 + ], + [ + "GEO5", + "사실의 최신성과 정정", + 67 + ], + [ + "GEO6", + "원천 대비 추가 가치", + null + ], + [ + "GEO7", + "발행 관계와 투명성", + null + ], + [ + "GEO8", + "인용 식별자와 메타데이터 정합성", + 100 + ] + ] + }, + "gates": [ + { + "id": "G1", + "passed": true, + "failedBy": [], + "cap": 40, + "axes": [ + "aeo", + "geo" + ] + }, + { + "id": "G2", + "passed": true, + "failedBy": [], + "cap": 40, + "axes": [ + "aeo", + "geo" + ] + } + ], + "aeo_h": { + "score": 65, + "grade": "B", + "earned": 65.0, + "possible": 100, + "items": [ + [ + "AEO1", + "질문 수요 충족", + 20, + 13.3, + "derived", + [ + "C2=2" + ] + ], + [ + "AEO2", + "답변의 직접성", + 20, + 6.7, + "derived", + [ + "C1=1" + ] + ], + [ + "AEO3", + "답변 단위의 자기완결성", + 15, + 10.0, + "derived", + [ + "C8=2" + ] + ], + [ + "AEO4", + "의사결정에 필요한 정보", + 15, + 9.0, + "derived", + [ + "C4=1", + "C5=3" + ] + ], + [ + "AEO5", + "정보 구조와 가독성", + 10, + 6.7, + "derived", + [ + "C3=2" + ] + ], + [ + "AEO6", + "다음 행동의 명확성", + 10, + 10.0, + "judged", + [] + ], + [ + "AEO7", + "핵심 답변의 텍스트 추출", + 5, + 5.0, + "derived", + [ + "A3=3", + "F1=3" + ] + ], + [ + "AEO8", + "사이트 내 답변 발견", + 5, + 4.3, + "derived", + [ + "A5=3", + "B6=2" + ] + ] + ] + }, + "geo_h": { + "score": 72, + "grade": "B", + "earned": 72.0, + "possible": 100, + "items": [ + [ + "GEO1", + "주장과 근거의 일치", + 20, + 13.3, + "judged", + [] + ], + [ + "GEO2", + "출처의 적합성과 추적성", + 15, + 15.0, + "derived", + [ + "A4=3" + ] + ], + [ + "GEO3", + "전문성과 책임 주체", + 15, + 9.0, + "derived", + [ + "C7=3", + "B3=0" + ] + ], + [ + "GEO4", + "병원 엔티티와 사실의 정합성", + 15, + 6.3, + "derived", + [ + "B2=0", + "B4=2", + "B5=0", + "D1=2", + "D2=2", + "D4=2", + "D6=0" + ] + ], + [ + "GEO5", + "사실의 최신성과 정정", + 10, + 6.7, + "derived", + [ + "C6=2" + ] + ], + [ + "GEO6", + "원천 대비 추가 가치", + 10, + 10.0, + "judged", + [] + ], + [ + "GEO7", + "발행 관계와 투명성", + 10, + 6.7, + "judged", + [] + ], + [ + "GEO8", + "인용 식별자와 메타데이터 정합성", + 5, + 5.0, + "derived", + [ + "B1=3" + ] + ] + ] + }, + "results": { + "A1": { + "criterionId": "A1", + "level": 3, + "evidence": "12개 AI 봇 전부 허용. OAI-SearchBot·PerplexityBot·GPTBot UA로 GET → 전부 200", + "source": "robots.txt: User-agent: * / Disallow: /wp-admin/" + }, + "A2": { + "criterionId": "A2", + "level": 2, + "evidence": "CDN 사용(Apache/2.4.68 (Debian)), AI UA 차단 없음(전부 200)" + }, + "A3": { + "criterionId": "A3", + "level": 3, + "evidence": "서버 렌더링. JS 미실행 HTML에서 본문 텍스트 79,646자 추출" + }, + "A4": { + "criterionId": "A4", + "level": 3, + "evidence": "http://viewplasticsurgery.com → 301 → https://www.viewplasticsurgery.com/ 정본 수렴 (4변형 모두)" + }, + "A5": { + "criterionId": "A5", + "level": 3, + "evidence": "robots.txt에 sitemap 선언, 200 응답. URL 482개, lastmod 최신 2026-09-09" + }, + "A6": { + "criterionId": "A6", + "level": "unverified", + "evidence": "[manual] Bing Webmaster Tools 등록 여부는 오너 계정 접근 필요 (또는 site: 검색 수동 확인)" + }, + "A7": { + "criterionId": "A7", + "level": 2, + "evidence": "TTFB 0.870s / 초기 HTML 587KB. 시술 페이지 212KB (TTFB 양호 / HTML 비대)" + }, + "B1": { + "criterionId": "B1", + "level": 3, + "evidence": "JSON-LD 1블록 전부 유효 + @graph 연결" + }, + "B2": { + "criterionId": "B2", + "level": 0, + "evidence": "업종 엔티티 스키마 없음 (발견 타입: CollectionPage, Person, WebSite)" + }, + "B3": { + "criterionId": "B3", + "level": 0, + "evidence": "Physician/Attorney 스키마 없음. 전문가 정보는 HTML 텍스트·이미지로만 존재" + }, + "B4": { + "criterionId": "B4", + "level": 2, + "evidence": "[사람 보정] 전 페이지 푸터 NAP 동일: 107 Bongeunsa-ro, Gangnam-gu / +82-2-539-1177 / eng_viewps@viewclinic.com / 진료시간. 구주소(201-14 Nonhyeon-dong) 병기. 개인정보 페이지에 다른 번호(02-2138-1305, 02-3480-3573) 노출" + }, + "B5": { + "criterionId": "B5", + "level": 0, + "evidence": "Organization.sameAs: [] (빈 배열). 푸터/본문에 SNS 링크 2종(www.instagram.com, www.tiktok.com) — 스키마에 미연결" + }, + "B6": { + "criterionId": "B6", + "level": 2, + "evidence": "rel=canonical self-referencing 존재" + }, + "B7": { + "criterionId": "B7", + "level": 2, + "evidence": "[사람 보정] 10개 언어 hreflang 양방향 선언. 그러나 th·jp·vn·ru·id·mn·es·ar 8개 서브도메인은 viewplasticsurgery.com/{lang}/ 로 301. hreflang 대상 URL이 최종 URL이 아니다. cn 페이지는 en-US 대신 en으로 선언" + }, + "C1": { + "criterionId": "C1", + "level": 1, + "evidence": "[사람 보정] 정의문이 메타 설명에만 있다. About 메타: 'Founded in 2005, VIEW is a premier 19-story medical center in Gangnam, Seoul'. 본문 첫 단락은 슬로건('always considers the perspective of the patient'), 시술 페이지 첫 텍스트는 'Let Me In Season 2/3/4/5 Selected Doctors' 홍보 라벨. 홈 첫 200자는 검색창·메뉴" + }, + "C2": { + "criterionId": "C2", + "level": 2, + "evidence": "FAQ 섹션 존재: \"VIEW Breast Surgery FAQ\" 외 0개. FAQPage 스키마 없음" + }, + "C3": { + "criterionId": "C3", + "level": 2, + "evidence": "H1 1개: \"korea plastic surgery\". H2 중복 0건 또는 라벨형" + }, + "C4": { + "criterionId": "C4", + "level": 1, + "evidence": "[사람 보정] 시술 페이지(가슴 Motiva) 본문에 가격·수술시간·회복기간 0회. 수치는 Motiva 보증(재수술 지원 300만원/개) 뿐. 블로그 글에는 USD 가격표(V-line $7,000–12,000, 표 3행)와 체류 기간(10–14일)이 있으나 시술 페이지와 연결되지 않음" + }, + "C5": { + "criterionId": "C5", + "level": 3, + "evidence": "HTML 표 10개" + }, + "C6": { + "criterionId": "C6", + "level": 2, + "evidence": "최신 갱신 신호 2026-09-09 (sitemap lastmod 2026-09-09). dateModified 마크업 없음" + }, + "C7": { + "criterionId": "C7", + "level": 3, + "evidence": "[사람 보정] 의료진 상세 페이지에 학위(서울대 의학박사)·전문의 자격·학회 회원·논문 목록이 텍스트. 의료진 목록 26명에 역할(성형외과 전문의 15·이비인후과 1·피부과 3·유방외과 1·영상 1·마취과 6) 표기" + }, + "C8": { + "criterionId": "C8", + "level": 2, + "evidence": "[사람 보정] 5개 핵심 페이지 단락 샘플 50개 중 상호 또는 시술명 포함 26개(52%). 상호 'VIEW' 포함은 7개(14%). FAQ 답변은 'Motiva Preserve is…'처럼 시술명만 있고 상호가 없다" + }, + "D1": { + "criterionId": "D1", + "level": 2, + "evidence": "[사람 보정] 외국인 대상 리뷰·중개 플랫폼 기준. Bookimed(us-uk.bookimed.com) 프로필과 RealSelf 평점(제3자 인용 4.8/5)이 AI 답변의 인용 출처로 확인됨. 리뷰 수·갱신일·소유자 응답은 직접 실측하지 못함. 강남언니(국문)는 외국인 질의 60문항 어디에도 인용되지 않음" + }, + "D2": { + "criterionId": "D2", + "level": 2, + "evidence": "[사람 보정] Google 비즈니스 프로필 4.9점·리뷰 901건, 소유자 게시 활성, 웹사이트가 영문 사이트로 연결(2026-08-31 실측 인용). 전화번호 미등록. 2026-09-10 재실측은 Places API 키 부재로 미실시" + }, + "D3": { + "criterionId": "D3", + "level": 2, + "evidence": "[사람 보정] 뷰를 언급한 AI 답변의 인용처가 유치업체·에이전시 블로그(khunkim.com·clinicsoncall.com·curemeabroad.com·kmhglobal.com), 정부 표면(english.visitkorea.or.kr·medicaltour.gangnam.go.kr), 커뮤니티(reddit.com·forum.purseblog.com), LinkedIn에 분산. 영어권 주요 언론 기사와 Wikipedia 항목은 없음" + }, + "D4": { + "criterionId": "D4", + "level": 2, + "evidence": "[사람 보정] 영문 사이트·GBP 주소 일치(107 Bongeunsa-ro). GBP 전화 없음. 강남언니는 국문 표면이라 외국인 질의 근거로는 쓰이지 않음" + }, + "D5": { + "criterionId": "D5", + "level": "unverified", + "evidence": "[semi·사람 판정 필요] 사이트에 플레이스/지도 링크 발견: https://naver.me/x9BxGXkK — 플레이스 존재·홈페이지 역연결·리뷰 수 수동 확인" + }, + "D6": { + "criterionId": "D6", + "level": 0, + "evidence": "Wikidata에서 \"VIEW Plastic Surgery (EN)\" 검색 결과 없음" + }, + "E1": { + "criterionId": "E1", + "level": "unverified", + "evidence": "[manual] 서버 로그 접근 필요 (AI 크롤러 히트 + IP 검증)" + }, + "E2": { + "criterionId": "E2", + "level": "unverified", + "evidence": "[manual] GA4 접근 필요 (AI 유입 커스텀 채널그룹 여부)" + }, + "E3": { + "criterionId": "E3", + "level": "unverified", + "evidence": "[manual] GSC 접근 필요 (AI Overviews 노출)" + }, + "E4": { + "criterionId": "E4", + "level": 2, + "evidence": "[사람 보정] 2026-09-10 외국인 관점 영문 60문항 × 2엔진(Perplexity sonar, OpenAI gpt-4o web_search 뉴욕 위치) 1회 실측. 5회 반복은 미실시" + }, + "F1": { + "criterionId": "F1", + "level": 3, + "evidence": "메인 페이지 이미지 500개 중 0개(0%) alt 누락 또는 빈 값" + }, + "F2": { + "criterionId": "F2", + "level": 2, + "evidence": "[사람 보정] WordPress 7.1(2026 최신 계열). meta generator로 버전 노출" + }, + "F3": { + "criterionId": "F3", + "level": 2, + "evidence": "초기 HTML 587KB (300~800KB)" + }, + "F4": { + "criterionId": "F4", + "level": 2, + "evidence": "viewport meta 존재, 반응형. CWV 미측정" + } + } +} \ No newline at end of file diff --git a/docs/reports/viewclinic/05_global_en/build_global_en_report.py b/docs/reports/viewclinic/05_global_en/build_global_en_report.py new file mode 100644 index 0000000..f903b29 --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/build_global_en_report.py @@ -0,0 +1,489 @@ +#!/usr/bin/env python3 +"""뷰성형외과 영문 사이트 · 외국인 관점 AEO/GEO 진단 보고서 빌더. + +입력 (같은 폴더): + audit_en_scored.json score_en.py 결과 (v1.0 36항목 + v2.0 AEO/GEO) + question_bank_en.json 외국인 관점 영문 60문항 + qb_en_perplexity_results.jsonl Perplexity sonar 실측 + qb_en_openai_results.jsonl OpenAI gpt-4o web_search(뉴욕 위치) 실측 +출력: + Viewclinic_Global_EN_AEO_GEO_Report_.html / .pdf (Playwright chromium) + +사용: python3 build_global_en_report.py +""" +import json, os, re, sys, html, datetime as dt +from collections import Counter, defaultdict +from urllib.parse import urlparse + +HERE = os.path.dirname(os.path.abspath(__file__)) +DATE = "2026-09-10" +OUT_BASE = os.path.join(HERE, f"Viewclinic_Global_EN_AEO_GEO_Report_{DATE}") +SITE = "www.viewplasticsurgery.com" + +KR_BASE = {"v1": 54, "aeo": 42, "geo": 56} # 국문 사이트 2026-09-07 재채점 (AEO_GEO_RUBRIC_v2.md) + +CATS = {"A": "브랜드 직접 질문", "B": "이동·체류·운영", "C": "추천·비교", "D": "시술 정보", + "E": "가격", "F": "안전·신뢰", "G": "사후관리·원격 팔로업"} +CAT_EN = {"A": "Brand", "B": "Travel & logistics", "C": "Recommendation & comparison", "D": "Procedure info", + "E": "Pricing", "F": "Safety & trust", "G": "Aftercare & remote follow-up"} +STAGE = {"aware": "인지", "explore": "탐색", "compare": "비교", "decision": "결정"} + +V1_NAMES = { + "A1":"검색용 AI 봇 허용","A2":"CDN/WAF AI 차단 없음","A3":"서버 렌더링 본문","A4":"HTTPS·리다이렉트 정합","A5":"sitemap.xml 제공","A6":"Bing 색인 (ChatGPT 검색 경로)","A7":"응답 속도·크롤 예산", + "B1":"JSON-LD 문법 유효성","B2":"업종 엔티티 스키마 (MedicalClinic)","B3":"전문가 스키마 (Physician)","B4":"NAP 사이트 내 일관성","B5":"sameAs 연결","B6":"canonical·중복 제거","B7":"다국어 hreflang", + "C1":"정의문형 첫 문단","C2":"FAQ 섹션","C3":"제목 계층 의미성","C4":"구체 수치 (가격·시간·회복)","C5":"표·비교 구조","C6":"신선도 신호","C7":"전문가 E-E-A-T (의료진)","C8":"패시지 자기완결성", + "D1":"업종 버티컬 프로필 (외국인: 국제 리뷰 플랫폼)","D2":"Google 비즈니스 프로필","D3":"오픈웹 언급 (해외 커뮤니티·언론)","D4":"표면 간 NAP 완전 일치","D5":"네이버 플레이스 (AI 브리핑 전용)","D6":"위키데이터/위키백과 엔티티", + "E1":"AI 크롤러 로그 (IP 검증)","E2":"GA4 AI 유입 채널","E3":"GSC AI Overviews 노출","E4":"기준선 스팟체크", + "F1":"이미지 대체텍스트","F2":"CMS 보안·최신성","F3":"페이지 무게","F4":"모바일 대응"} +V1_CAT = {"A":"A · Access & Crawlability","B":"B · Entity & Structured Data","C":"C · Content & Answerability","D":"D · Surfaces & Citations","E":"E · Measurement","F":"F · Technical Hygiene"} + +V2_DESC = { + "AEO1":"질문 뱅크 대비 답이 있는 문항 비율. 자동 신호는 FAQ 섹션·FAQPage 스키마", + "AEO2":"핵심 페이지 첫 200자에 [상호+지역+전문분야] 정의문 또는 직접 답 존재", + "AEO3":"핵심 페이지 단락 샘플 중 상호·시술명이 포함된 비율", + "AEO4":"시술 페이지의 가격·시간·회복 수치 밀도와 표·비교 구조", + "AEO5":"H1 1개·서술형, H2 논리 계층", + "AEO6":"예약·전화·위치가 본문 텍스트로 연결되는지 (사람 판정)", + "AEO7":"JS 미실행 HTML 본문 비율 + 이미지 alt", + "AEO8":"sitemap 선언·lastmod + canonical 정합", + "GEO1":"주장 문장에 출처·조건·시점이 붙은 비율 (사람 판정)", + "GEO2":"http/www 변형의 301 정본 수렴, URL 안정성", + "GEO3":"전문가 자격·경력 텍스트 + Physician 스키마", + "GEO4":"업종 스키마·사이트 내 NAP·sameAs·버티컬·GBP·표면 간 NAP·Wikidata", + "GEO5":"dateModified·sitemap lastmod·본문 갱신일", + "GEO6":"타 사이트에 없는 병원 고유 정보 유형 수 (사람 판정)", + "GEO7":"운영 주체·연락처·이해관계 고지, 정보와 광고의 구분 (사람 판정)", + "GEO8":"ld+json 전 블록 파싱 + 화면과 메타 일치"} + +V2_HUMAN_EVIDENCE = { + "AEO6": "전 페이지 푸터에 전화 +82-2-539-1177 · 이메일 eng_viewps@viewclinic.com · 주소 · 진료시간이 텍스트로 반복. Quick Consultation 폼에 WhatsApp · LINE · KakaoTalk · Viber 선택지와 국가번호 입력. Google Map · Naver Map 링크. 전화·예약·방문 3경로 충족", + "GEO1": "'No.1 Motiva 사용량(2023, Motiva Korea 수술량 기준)' · 'Global KOL 2023–2026' · '법무부 우수 유치기관 2018–2026' 처럼 집계 주체·연도가 붙은 주장이 다수. 그러나 페이지 제목의 'Best Plastic Surgery in Korea' · 'No.1 Trusted Clinic'은 근거 없음. 가슴 페이지 메타 설명은 'No.1 Motiva usage in 2013', 본문은 2023으로 불일치. 안전 페이지의 '마취과 전문의 상시'는 인원 수 없음(의료진 페이지에는 6명 명시)", + "GEO6": "컨시어지 10항목(10개 언어 통역 무료 · 공항 픽업 · 원내 숙박 · 도보 10분 제휴 호텔 · T-money 제공 · 귀국 후 원격 경과 관찰), 층별 안내(B1 검진센터~15F 치과), 공항 리무진 노선·정류장 번호, 블로그 USD 가격표, FAQ 402건, Motiva 보증 조건(5년 재수술 지원 300만원/개, 10년 교체). 원천 유형 5개 이상", + "GEO7": "푸터에 상호 · 대표(Choi Soon Woo) · 사업자번호 220-08-86777 표기. 전 페이지에 부작용 고지문. 다만 시술 페이지 안에 Before & After · Real Review · 'Let Me In' 출연 홍보가 정보와 구분 없이 섞여 있고, 후기의 대가 지급 여부 고지가 없다. 국문 사이트 후기 광고는 2026-07-12 공정위 시정명령을 받았고 영문 Real Review 섹션도 같은 방식이다"} + +# ─────────────────────────── 데이터 로드 ─────────────────────────── +def load_jsonl(p): + rows = {} + if os.path.exists(p): + for line in open(p, encoding="utf-8"): + if line.strip(): + r = json.loads(line); rows[r["id"]] = r + return rows + +score = json.load(open(os.path.join(HERE, "audit_en_scored.json"), encoding="utf-8")) +qs = json.load(open(os.path.join(HERE, "question_bank_en.json"), encoding="utf-8")) +PP = load_jsonl(os.path.join(HERE, "qb_en_perplexity_results.jsonl")) +OA = load_jsonl(os.path.join(HERE, "qb_en_openai_results.jsonl")) +ENGINES = [("perplexity", "Perplexity", PP), ("openai", "OpenAI 웹검색", OA)] + +def dom(u): + d = urlparse(u).netloc.lower() + return d[4:] if d.startswith("www.") else d + +OWN = ("viewplasticsurgery.com", "viewclinic.com") +def own_cited(r): + return any(any(o in dom(u) for o in OWN) for u in r.get("urls", [])) + +# 집계 +stats = {} +for key, label, rows in ENGINES: + st = {"n": 0, "mentioned": 0, "own": 0, "first": 0, "sent": Counter(), "cat": defaultdict(lambda: [0, 0, 0, 0]), + "clinics": Counter(), "clinic_first": Counter(), "domains": Counter(), "domains_view": Counter(), "own_urls": Counter()} + for q in qs: + r = rows.get(q["id"]) + if not r: continue + st["n"] += 1 + c = st["cat"][q["cat"]]; c[0] += 1 + vm = bool(r.get("view_mentioned")) + if vm: + st["mentioned"] += 1; c[1] += 1 + st["sent"][r.get("view_sentiment") or "neutral"] += 1 + if r.get("view_rank") == 1: st["first"] += 1; c[3] += 1 + if own_cited(r): st["own"] += 1; c[2] += 1 + for i, cl in enumerate([x for x in r.get("clinics", []) if isinstance(x, str)][:8]): + st["clinics"][cl] += 1 + if i == 0: st["clinic_first"][cl] += 1 + ds = {dom(u) for u in r.get("urls", [])} + for d in ds: + st["domains"][d] += 1 + if vm: st["domains_view"][d] += 1 + for u in r.get("urls", []): + if any(o in dom(u) for o in OWN): + path = urlparse(u).path + st["own_urls"][path] += 1 + stats[key] = st + +def pct(a, b): return f"{a*100//b}%" if b else "-" + +# ─────────────────────────── HTML 도우미 ─────────────────────────── +def esc(s): return html.escape(str(s).replace("—", ", ").replace(" ,", ","), quote=False) + +def lvl_badge(level): + if level == "unverified": return '미검증' + cls = {3: "good", 2: "info", 1: "warn", 0: "crit"}[int(level)] + return f'{level}' + +def grade_cls(g): return {"A": "good", "B": "info", "C": "warn", "D": "crit"}[g] + +def ox(v): return 'O' if v else 'X' + +# ─────────────────────────── 섹션 ─────────────────────────── +aeo, geo, v1 = score["aeo_h"], score["geo_h"], score["v1"] +results = score["results"] + +def kpi_row(): + pp, oa = stats["perplexity"], stats["openai"] + cells = [ + ("AEO 답변 준비도", f"{aeo['score']}", aeo["grade"], "영문 사이트가 외국인 질문에 답하는 정도 · 100점"), + ("GEO 출처 준비도", f"{geo['score']}", geo["grade"], "AI가 영문 사이트를 출처로 쓸 수 있는 정도 · 100점"), + ("v1.0 종합 (참고)", f"{v1['score']}", v1["grade"], f"36항목 중 검증 {v1['verified']}개 · 국문 사이트 {KR_BASE['v1']}/C"), + ("Perplexity 언급률", pct(pp["mentioned"], pp["n"]), None, f"{pp['n']}문항 중 {pp['mentioned']} · 자사 사이트 인용 {pct(pp['own'], pp['n'])}"), + ("OpenAI 웹검색 언급률", pct(oa["mentioned"], oa["n"]), None, f"{oa['n']}문항 중 {oa['mentioned']} · 자사 사이트 인용 {pct(oa['own'], oa['n'])}"), + ] + h = '
' + for lab, val, g, sub in cells: + gb = f'{g}' if g else "" + h += f'
{lab}
{val}{gb}
{sub}
' + return h + "
" + +def cat_table(): + h = ['', + '', + ''] + interp = NARR["cat_interp"] + for k in "ABCDEFG": + n = sum(1 for q in qs if q["cat"] == k) + cells = [] + for key, _, _ in ENGINES: + c = stats[key]["cat"].get(k, [0, 0, 0, 0]) + cells.append(f"") + h.append(f"{''.join(cells)}") + tot = [] + for key, _, _ in ENGINES: + st = stats[key]; tot.append(f"") + h.append(f"{''.join(tot)}
질문군문항Perplexity
언급 / 1순위 / 자사 인용
OpenAI 웹검색
언급 / 1순위 / 자사 인용
해석
{pct(c[1], c[0])} / {pct(c[3], c[0])} / {pct(c[2], c[0])}
{k} {CATS[k]}{CAT_EN[k]}{n}{esc(interp.get(k, ''))}
{pct(st['mentioned'], st['n'])} / {pct(st['first'], st['n'])} / {pct(st['own'], st['n'])}
합계{len(qs)}
") + return "".join(h) + +def clinic_table(): + merged = Counter(); first = Counter() + for key, _, _ in ENGINES: + merged.update(stats[key]["clinics"]); first.update(stats[key]["clinic_first"]) + h = [''] + for i, (name, cnt) in enumerate(merged.most_common(12), 1): + cls = " class='hl'" if name == "VIEW Plastic Surgery" else "" + h.append(f"" + f"") + h.append("
#병원 (AI 답변 표기)PerplexityOpenAI합계1순위 등장
{i}{esc(name)}{stats['perplexity']['clinics'].get(name,0)}{stats['openai']['clinics'].get(name,0)}{cnt}{first.get(name,0)}
") + return "".join(h) + +def domain_table(): + merged = Counter(); view = Counter() + for key, _, _ in ENGINES: + merged.update(stats[key]["domains"]); view.update(stats[key]["domains_view"]) + h = [''] + for i, (d, cnt) in enumerate(merged.most_common(18), 1): + cls = " class='hl'" if any(o in d for o in OWN) else "" + h.append(f"" + f"") + h.append("
#인용 도메인PerplexityOpenAI합계 (문항 수)뷰 언급 답변에서표면 유형
{i}{esc(d)}{stats['perplexity']['domains'].get(d,0)}{stats['openai']['domains'].get(d,0)}{cnt}{view.get(d,0)}{esc(surface_type(d))}
") + return "".join(h) + +def surface_type(d): + if any(o in d for o in OWN): return "자사 사이트" + if "reddit" in d or "quora" in d: return "커뮤니티" + if "realself" in d or "whatclinic" in d or "bookimed" in d or "medigo" in d or "trustpilot" in d or "gangnamunni" in d or "yelp" in d: return "리뷰·중개 플랫폼" + if "youtube" in d or "instagram" in d or "tiktok" in d or "facebook" in d: return "소셜" + if "korea" in d and ("herald" in d or "times" in d or "joongang" in d or "yonhap" in d): return "언론" + if d.endswith(".go.kr") or "visitkorea" in d or "medicalkorea" in d or "seoul" in d: return "정부·관광" + if d.endswith(".com") or d.endswith(".net") or d.endswith(".kr") or d.endswith(".org"): return "타 병원·에이전시·블로그" + return "" + +def own_url_table(): + merged = Counter() + for key, _, _ in ENGINES: merged.update(stats[key]["own_urls"]) + if not merged: return "

자사 URL 인용 없음

" + h = [''] + for p, cnt in merged.most_common(12): + h.append(f"") + return "".join(h) + "
인용된 자사 페이지PerplexityOpenAI합계
{esc(p)}{stats['perplexity']['own_urls'].get(p,0)}{stats['openai']['own_urls'].get(p,0)}{cnt}
" + +def sentiment_block(): + h = '
' + for key, label, _ in ENGINES: + s = stats[key]["sent"]; m = stats[key]["mentioned"] + h += (f'

{label}

{s.get("positive",0)} 긍정 · {s.get("neutral",0)} 중립 · {s.get("negative",0)} 부정

' + f'

뷰 언급 {m}문항 기준

') + h += f'

판정 기준

답변이 뷰성형외과를 어떻게 규정하는지를 후처리 모델이 긍정·중립·부정으로 분류. 감성 기준표 v0.3의 1차 근사치이며 사람 검토 전 값

' + return h + +def quote_cards(ids): + h = '
' + for qid, key in ids: + rows = PP if key == "perplexity" else OA + r = rows.get(qid) + if not r: continue + q = next(x for x in qs if x["id"] == qid) + ans = re.sub(r"\[\d+\]", "", r.get("answer", "")).strip() + ans = re.sub(r"\s+", " ", ans).replace("—", ", ").replace(" ,", ",")[:420] + eng = "Perplexity" if key == "perplexity" else "OpenAI 웹검색" + doms = sorted({dom(u) for u in r.get("urls", [])})[:5] + h += (f'
{qid} {esc(q["question"])} {eng} {ox(r.get("view_mentioned"))}
' + f'

{esc(ans)}…

인용: {esc(", ".join(doms))}
') + return h + "
" + +def v2_table(axis): + h = [''] + for iid, name, w, earned, basis, sigs in axis["items"]: + if earned is None: + cell, sig = "미검증", "" + else: + p = earned / w + cls = "good" if p >= 0.8 else "info" if p >= 0.6 else "warn" if p >= 0.4 else "crit" + cell = f"{earned:g}({round(p*100)}%)" + sig = ", ".join(sigs) if sigs else "사람 판정" + ev = V2_HUMAN_EVIDENCE.get(iid) or NARR["v2_evidence"].get(iid, "") + h.append(f"") + return "".join(h) + "
항목배점점수근거 신호판정 근거 (2026-09-10 실측)
{iid} {name}{esc(V2_DESC[iid])}{w}{cell}{sig}{esc(ev)}
" + +def v1_table(): + h = [] + for c in "ABCDEF": + h.append(f'

{V1_CAT[c]}

') + for cid in sorted(k for k in V1_NAMES if k[0] == c): + r = results.get(cid, {}) + lv = r.get("level", "unverified") + ev = r.get("evidence", "") + h.append(f"") + h.append("
항목레벨근거
{cid} {V1_NAMES[cid]}{lvl_badge(lv)}{esc(ev)}
") + return "".join(h) + +def compare_table(): + rows = NARR["compare_rows"] + h = [''] + for a, b, c, d in rows: + h.append(f"") + return "".join(h) + "
항목국문 사이트 (viewclinic.com)영문 사이트 (viewplasticsurgery.com)차이
{esc(a)}{esc(b)}{esc(c)}{esc(d)}
" + +def roadmap(): + h = "" + for phase, color, items in NARR["roadmap"]: + h += f'

{esc(phase)}

' + for i, (act, target, effect) in enumerate(items, 1): + h += f"" + h += "
#조치대상 항목·질문군기대 효과
{i}{esc(act)}{esc(target)}{esc(effect)}
" + return h + +def appendix_questions(): + h = [''] + cur = None + for q in qs: + if q["cat"] != cur: + cur = q["cat"] + h.append(f"") + cells = []; names = [] + for key, _, rows in ENGINES: + r = rows.get(q["id"]) + if not r: cells.append(""); names.append("-"); continue + s = {"positive": "긍정", "neutral": "중립", "negative": "부정"}.get(r.get("view_sentiment") or "", "") + cells.append(f"") + cl = [x for x in r.get("clinics", []) if isinstance(x, str) and x != "VIEW Plastic Surgery"][:3] + names.append(", ".join(cl) if cl else "(뷰 외 없음)") + h.append(f"{''.join(cells)}") + return "".join(h) + "
#질문 (영문 원문)단계Perplexity
언급·순위·감성
OpenAI
언급·순위·감성
답변 내 상위 병원 (Perplexity → OpenAI)
{cur} {CATS[cur]} · {CAT_EN[cur]}
-{ox(r.get('view_mentioned'))} {r.get('view_rank') or ''} {s}
{q['id']}{esc(q['question'])}{STAGE[q['stage']]}{esc(names[0])} → {esc(names[1])}
" + +# ─────────────────────────── 서술 (실측 후 작성) ─────────────────────────── +NARR = json.load(open(os.path.join(HERE, "narrative_ko.json"), encoding="utf-8")) + +# ─────────────────────────── 렌더 ─────────────────────────── +CSS = """ +:root{--ink:#0A1128;--navy:#021341;--violet:#4F1DA1;--accent:#6C5CE7;--indigo:#1D0024;--light:#F7F8FC;--line:#E4E6F0;--slate6:#475569;--slate5:#64748B; +--good-bg:#ECFDF5;--good-tx:#047857;--good-bd:#A7F3D0;--info-bg:#EEF2FF;--info-tx:#3730A3;--info-bd:#C7D2FE;--warn-bg:#FFFBEB;--warn-tx:#B45309;--warn-bd:#FDE68A;--crit-bg:#FEF2F2;--crit-tx:#B91C1C;--crit-bd:#FECACA} +*{box-sizing:border-box}html{-webkit-print-color-adjust:exact;print-color-adjust:exact} +body{margin:0;font-family:"Pretendard Variable",Pretendard,"Apple SD Gothic Neo","Noto Sans KR",sans-serif;color:var(--indigo);background:#fff;font-size:15px;line-height:1.65;word-break:keep-all} +.page{max-width:1080px;margin:0 auto;padding:0 40px 60px} +.serif{font-family:"Playfair Display",Georgia,serif} +.cover{background:linear-gradient(135deg,var(--ink) 0%,var(--navy) 55%,#2A1466 100%);color:#fff;padding:64px 56px 52px;margin:0 -40px 36px;position:relative;overflow:hidden} +.cover:after{content:"";position:absolute;right:-120px;top:-120px;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(108,92,231,.45),transparent 70%)} +.eyebrow{font-family:Inter,Pretendard,sans-serif;font-size:12px;letter-spacing:.2em;text-transform:uppercase;color:#C4B5FD;font-weight:600} +.cover h1{font-size:38px;line-height:1.25;margin:14px 0 8px;font-weight:800} +.cover .sub{font-size:19px;color:#DDD6FE;margin:0 0 22px} +.cover .meta{font-size:14px;color:#C4B5FD;display:flex;gap:22px;flex-wrap:wrap} +.cover .meta b{color:#fff;font-weight:600} +h2{font-family:"Playfair Display",Georgia,serif;font-size:28px;color:var(--indigo);margin:44px 0 6px;font-weight:700;display:flex;align-items:center;gap:12px} +h2 .n{font-size:14px;font-family:Inter,Pretendard,sans-serif;letter-spacing:.15em;color:var(--accent);font-weight:700} +h2 + .lead{font-size:17px;color:var(--violet);margin:0 0 18px;font-weight:500} +h3{font-size:20px;margin:28px 0 10px;color:var(--indigo)} +h4{font-size:16px;margin:18px 0 8px;color:var(--indigo)} +p{margin:0 0 12px} +.kpis{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin:8px 0 22px} +.kpi{background:var(--light);border:1px solid var(--line);border-radius:12px;padding:16px 16px 14px} +.kpi .lab{font-size:13px;font-weight:600;color:var(--slate6)} +.kpi .val{font-family:"Playfair Display",Georgia,serif;font-size:40px;line-height:1.1;margin:6px 0 4px;color:var(--indigo);display:flex;align-items:baseline;gap:8px} +.kpi .sub{font-size:12.5px;color:var(--slate6);line-height:1.45} +.grade{font-family:Inter,Pretendard,sans-serif;font-size:15px;font-weight:800;border-radius:999px;padding:2px 10px} +.good{background:var(--good-bg);color:var(--good-tx);border:1px solid var(--good-bd)}.info{background:var(--info-bg);color:var(--info-tx);border:1px solid var(--info-bd)} +.warn{background:var(--warn-bg);color:var(--warn-tx);border:1px solid var(--warn-bd)}.crit{background:var(--crit-bg);color:var(--crit-tx);border:1px solid var(--crit-bd)} +.unv{background:#F1F5F9;color:var(--slate5);border:1px solid var(--line)} +.badge{display:inline-block;font-family:Inter,Pretendard,sans-serif;font-size:15px;font-weight:800;border-radius:8px;padding:1px 10px;min-width:34px;text-align:center} +.badge.unv{font-size:12px;font-weight:600} +table.t{width:100%;border-collapse:collapse;font-size:14px;margin:8px 0 18px;page-break-inside:auto} +table.t th{background:var(--light);text-align:left;font-weight:700;padding:9px 10px;border-bottom:2px solid var(--line);font-size:13.5px;color:var(--indigo);vertical-align:bottom} +table.t th small{font-weight:500;color:var(--slate6)} +table.t td{padding:9px 10px;border-bottom:1px solid var(--line);vertical-align:top} +table.t tr{page-break-inside:avoid} +table.t td.num{text-align:center;white-space:nowrap} +table.t .mono{font-family:Inter,Menlo,monospace;font-size:12.5px;color:var(--slate6)} +table.t tr.hl td{background:#F3F0FF;font-weight:600} +table.t tr.sum td{background:var(--light)} +table.t tr.grp td{background:#EEF2FF;color:var(--violet);font-size:14px} +td .cat{display:block;font-size:12.5px;color:var(--slate5);font-weight:400;line-height:1.4;margin-top:2px} +.o{color:var(--good-tx);font-weight:800}.x{color:var(--slate5)} +.findings{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:6px 0 10px} +.card{background:#fff;border:1px solid var(--line);border-radius:12px;padding:16px 18px;page-break-inside:avoid} +.card h4{margin:0 0 6px;font-size:16px} +.card p{font-size:14.5px;margin:0} +.card .big{font-size:26px;font-family:"Playfair Display",Georgia,serif;margin:2px 0} +.card .big small{font-size:13px;font-family:Pretendard,sans-serif;color:var(--slate6)} +.card .sub{font-size:13px;color:var(--slate6);margin-top:4px} +.card.dark{background:var(--navy);color:#fff;border:0}.card.dark h4{color:#C4B5FD}.card.dark p{color:#fff} +.num-badge{display:inline-block;width:26px;height:26px;border-radius:50%;background:var(--accent);color:#fff;font-weight:800;text-align:center;line-height:26px;font-size:13px;margin-right:8px;font-family:Inter,Pretendard,sans-serif} +.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:6px 0 14px} +.prio{font-size:19px;font-weight:700;color:var(--indigo);margin:14px 0 8px} +ol.actions{padding-left:0;list-style:none;margin:0} +ol.actions li{padding:10px 0;border-bottom:1px solid var(--line);font-size:15px;display:flex;gap:10px;align-items:flex-start} +.quotes{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:6px 0 16px} +.quote{background:var(--light);border:1px solid var(--line);border-radius:12px;padding:14px 16px;page-break-inside:avoid} +.quote .qh{font-size:14px;margin-bottom:6px;color:var(--indigo)} +.quote .eng{display:inline-block;font-size:11.5px;background:#fff;border:1px solid var(--line);border-radius:999px;padding:0 8px;margin-left:6px;color:var(--slate6);font-family:Inter,Pretendard,sans-serif} +.quote p{font-size:13.5px;color:var(--slate6);margin:0 0 6px;line-height:1.55} +.quote .cite{font-size:12px;color:var(--slate5);font-family:Inter,Pretendard,sans-serif} +h4.v1cat{font-family:"Playfair Display",Georgia,serif;font-size:20px;margin:22px 0 6px;color:var(--indigo)} +h4.phase{font-size:17px;padding:8px 14px;border-radius:8px;margin:22px 0 6px} +h4.phase.crit{background:var(--crit-bg);color:var(--crit-tx)}h4.phase.warn{background:var(--warn-bg);color:var(--warn-tx)}h4.phase.info{background:var(--info-bg);color:var(--info-tx)} +.note{background:var(--light);border-left:4px solid var(--accent);padding:12px 16px;border-radius:0 10px 10px 0;font-size:14px;margin:12px 0 18px} +.note b{color:var(--violet)} +.footer{margin-top:40px;padding-top:16px;border-top:1px solid var(--line);font-size:12.5px;color:var(--slate5)} +.pb{page-break-before:always} +@page{size:A4;margin:12mm 11mm 14mm} +@media print{body{font-size:13.5px}.page{max-width:none;padding:0}.cover{margin:0 0 24px;padding:44px 40px 36px}.cover h1{font-size:32px}h2{font-size:24px;margin-top:26px} +.kpis{grid-template-columns:repeat(5,1fr);gap:8px}.kpi .val{font-size:30px}table.t{font-size:12px}table.t th{font-size:12px} +.findings,.quotes{grid-template-columns:1fr 1fr}.grid3{grid-template-columns:repeat(3,1fr)}} +""" + +def render(): + pp, oa = stats["perplexity"], stats["openai"] + findings = "".join(f'

{i}{esc(t)}

{esc(b)}

' for i, (t, b) in enumerate(NARR["findings"], 1)) + actions = "".join(f'
  • {i}{esc(a)}
  • ' for i, a in enumerate(NARR["top_actions"], 1)) + method_rows = "".join(f"{esc(a)}{esc(b)}" for a, b in NARR["method"]) + limits = "".join(f"
  • {esc(x)}
  • " for x in NARR["limits"]) + aux_rows = "".join(f"{esc(a)}{lvl_badge(l)}{esc(b)}" for a, l, b in NARR["aux"]) + kpi_rows = "".join(f"{esc(a)}{esc(b)}{esc(c)}{esc(d)}" for a, b, c, d in NARR["kpi_plan"]) + + body = f""" +
    +
    +
    INFINITH AI Discovery · Global Patient Edition
    +

    뷰성형외과 영문 사이트
    AEO · GEO 진단 보고서

    +

    외국인 환자 관점 질문 60문항 실측과 답변·출처 준비도 채점

    +
    진단일 {DATE}대상 {SITE} (en-US · x-default)기준표 AEO/GEO v2.0 (v1.0 36항목 병행)답변엔진 Perplexity sonar · OpenAI gpt-4o web_search (뉴욕)문의 o2oteam@o2o.kr
    +
    + +

    01요약 판정

    +

    {esc(NARR["lead"])}

    +{kpi_row()} +
    {findings}
    +
    먼저 할 일 5가지
    +
      {actions}
    + +

    02진단 범위와 방법

    +

    국문 사이트 진단(2026-08-31 · 09-07)과 같은 기준표를 영문 사이트와 외국인 질문에 적용했습니다.

    +{method_rows}
    +

    이번 측정의 한계

      {limits}
    + +

    03외국인 질의 실측 결과

    +

    {esc(NARR["qb_lead"])}

    +

    3.1 질문군별 언급률

    +

    셀 값은 순서대로 뷰성형외과 언급 비율, 답변에서 첫 번째로 등장한 비율, 답변이 viewplasticsurgery.com 페이지를 인용한 비율입니다.

    +{cat_table()} +

    3.2 답변에 등장한 병원

    +

    {esc(NARR["clinic_text"])}

    +{clinic_table()} +

    3.3 AI가 근거로 쓴 표면

    +

    {esc(NARR["domain_text"])}

    +{domain_table()} +

    인용된 자사 페이지

    +{own_url_table()} +

    3.4 답변 감성

    +{sentiment_block()} +

    3.5 답변 사례

    +{quote_cards(NARR["quote_ids"])} + +

    04AEO 답변 준비도 {aeo['score']} · {aeo['grade']}

    +

    고객의 질문에 얼마나 명확하고 충분하게 답하는가. 8항목 100점.

    +{v2_table(aeo)} +
    {esc(NARR["aeo_note"])}
    + +

    05GEO 출처 준비도 {geo['score']} · {geo['grade']}

    +

    그 답을 얼마나 검증하고 신뢰할 수 있는 출처로 사용할 수 있는가. 8항목 100점.

    +{v2_table(geo)} +
    {esc(NARR["geo_note"])}
    + +

    06게이트와 부가 지표

    +

    게이트 G1(AI 크롤러 접근) · G2(본문 렌더링) 모두 통과. 상한 적용 없음.

    +{aux_rows}
    지표레벨실측
    + +

    07국문 사이트와의 비교

    +

    {esc(NARR["compare_lead"])}

    +
    +
    v1.0 종합
    {KR_BASE['v1']} {v1['score']}
    국문 C → 영문 {v1['grade']}
    +
    AEO 답변 준비도
    {KR_BASE['aeo']} {aeo['score']}
    국문 C → 영문 {aeo['grade']}
    +
    GEO 출처 준비도
    {KR_BASE['geo']} {geo['score']}
    국문 C → 영문 {geo['grade']}
    +
    +{compare_table()} + +

    08개선 로드맵

    +

    {esc(NARR["roadmap_lead"])}

    +{roadmap()} + +

    09측정 계획과 KPI

    +

    개선 전후를 같은 60문항 · 같은 두 엔진으로 월 1회 재실측합니다.

    +{kpi_rows}
    지표현재 (2026-09-10)90일 목표측정 방법
    + +

    A부록 A · 60문항 실측표

    +

    O = 뷰성형외과 언급, 숫자 = 답변 내 등장 순위. 감성은 후처리 모델 1차 분류.

    +{appendix_questions()} + +

    B부록 B · v1.0 36항목 판정

    +

    자동 채점 20항목 + 사람 보정 10항목 + 미검증 6항목. 미검증은 분모에서 제외합니다.

    +{v1_table()} + + +
    """ + head = f""" +뷰성형외과 영문 사이트 AEO · GEO 진단 보고서 {DATE} + + + +""" + return head + body + "" + + +def to_pdf(html_path, pdf_path): + from playwright.sync_api import sync_playwright + with sync_playwright() as p: + b = p.chromium.launch() + pg = b.new_page() + pg.goto("file://" + html_path, wait_until="networkidle") + pg.wait_for_timeout(1200) + pg.emulate_media(media="print") + pg.pdf(path=pdf_path, format="A4", print_background=True, prefer_css_page_size=True) + b.close() + + +if __name__ == "__main__": + out_html = OUT_BASE + ".html" + open(out_html, "w", encoding="utf-8").write(render()) + print("HTML:", out_html) + if "--no-pdf" not in sys.argv: + to_pdf(out_html, OUT_BASE + ".pdf") + print("PDF:", OUT_BASE + ".pdf") diff --git a/docs/reports/viewclinic/05_global_en/narrative_ko.json b/docs/reports/viewclinic/05_global_en/narrative_ko.json new file mode 100644 index 0000000..d011cf4 --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/narrative_ko.json @@ -0,0 +1,421 @@ +{ + "lead": "영문 사이트는 국문 사이트보다 답변·출처 준비도가 모두 높습니다(AEO 65 · GEO 72, 둘 다 B). 외국인이 병원 이름을 알고 묻는 질문에는 두 엔진 모두 100% 답하지만, 병원을 모르는 상태의 시술·가격 질문에서는 언급률이 0~21%에 그칩니다. 원인은 콘텐츠 부족이 아니라 인용된 문단에 상호가 없어서입니다.", + "findings": [ + [ + "이름을 알면 100%, 모르면 0~21%", + "브랜드(A)·이동·체류(B) 질문군은 두 엔진 모두 뷰성형외과를 1순위로 답하고 viewplasticsurgery.com을 직접 인용합니다. 반면 시술 정보(D)는 Perplexity 14% · OpenAI 21%, 가격(E)은 두 엔진 모두 0%입니다. 외국인 환자 여정에서 가장 긴 구간이 비어 있습니다." + ], + [ + "인용은 되는데 이름이 안 나오는 문항 8개", + "Perplexity는 가격 질문(E-01 가슴성형 비용, E-02 V-line 비용)과 시술 질문(D-01·D-04·D-05·D-10)에서 뷰 블로그·시술 페이지를 출처로 썼지만 답변에 'VIEW'가 한 번도 등장하지 않았습니다. 인용된 문단이 'The cost of V-line surgery in Seoul ranges…'처럼 상호 없이 쓰여 있어 AI가 수치만 가져가고 병원 이름은 남기지 않습니다." + ], + [ + "추천 질문의 경쟁 구도: JK · ID · Banobagi", + "'Best plastic surgery clinic in Seoul for foreigners' 류 추천 질문(C)에서 뷰는 Perplexity 9/12, OpenAI 6/12에 등장했지만 1순위는 드뭅니다. JK Plastic Surgery(KAHF 인증 4회 연속), ID Hospital, Banobagi가 상위를 차지하고, 그 근거는 유치 에이전시·중개 플랫폼의 영문 가이드 글입니다." + ], + [ + "AI가 근거로 쓰는 표면은 Reddit · Bookimed · 에이전시 가이드", + "두 엔진 합산 인용 도메인 1위는 viewplasticsurgery.com(54문항), 2위는 reddit.com(49문항)입니다. 그다음이 us-uk.bookimed.com · clinicsoncall.com · koreaclinicguide.com · clinicseoul.net · unni.app 같은 중개·가이드 표면입니다. 강남언니 국문 페이지는 60문항 어디에도 인용되지 않았습니다." + ], + [ + "엔티티 스키마 0, hreflang은 리다이렉트 URL", + "홈 JSON-LD가 병원을 Person 타입으로 선언하고 MedicalClinic·Physician 스키마와 sameAs가 없습니다(GEO4 6.3/15). 10개 언어 hreflang은 갖췄지만 8개 언어 서브도메인이 경로 URL로 301 하고, origin.·olden. 서브도메인이 전체 사이트를 색인 가능 상태로 서빙해 AI 인용 URL이 분산됩니다." + ], + [ + "부정 답변 1건: 공정위 후기 광고 시정명령", + "'Are there red flags about VIEW Plastic Surgery'(F-05) 질문에 Perplexity는 국문 사이트 후기 광고에 대한 2026-07 공정위 시정명령을 첫 문장으로 답했습니다. 영문 Real Review 섹션도 같은 구조(대가 고지 없음)라 GEO7 발행 투명성 항목의 감점 요인입니다." + ] + ], + "top_actions": [ + "시술 페이지·블로그 가격 가이드의 첫 문단과 표 캡션에 'At VIEW Plastic Surgery in Gangnam, Seoul' 형태로 상호·지역을 넣습니다. 인용은 되는데 이름이 안 나오는 8문항이 바로 대상입니다.", + "MedicalClinic + Physician JSON-LD를 추가하고 Person 타입을 Organization/MedicalClinic으로 바꾸며 sameAs에 Instagram·TikTok·YouTube·Google 프로필·Bookimed·RealSelf·unni.app을 연결합니다.", + "시술 페이지 상단에 결정 정보 블록(USD 가격대 · 수술 시간 · 입원 · 권장 체류일 · 귀국 가능일)을 표로 두고 블로그 가격 가이드와 상호 링크합니다. 가격(E)·시술(D) 질문군 0~21%의 직접 대응입니다.", + "FAQ 402문항에 FAQPage 스키마를 붙이고 카테고리별 URL로 나눕니다. 전 페이지 동일 H1('korea plastic surgery')을 페이지별 서술형 H1으로 교체합니다.", + "origin.·olden. 서브도메인을 www로 301 하고 언어 서브도메인 hreflang을 최종 URL로 통일합니다. 후기·전후 섹션에 대가 제공 여부와 개인차 고지를 넣어 정보 페이지와 분리합니다." + ], + "method": [ + [ + "진단 대상", + "https://www.viewplasticsurgery.com (en-US, x-default). 홈 · About · 의료진 · 컨시어지 · 오시는길 · 안전 · 수상 · FAQ · 가슴(Motiva) · 코 · 윤곽 · 블로그 목록 · 블로그 글 1건 등 13개 페이지를 JS 미실행 HTML로 수집" + ], + [ + "자동 채점", + "scripts/audit_aeo_geo.py (기준표 v1.0 36항목 중 자동 20항목). AI 봇 12종 UA 접근, sitemap, JSON-LD, hreflang, H1/H2, FAQ, 표, alt, TTFB 실측" + ], + [ + "사람 판정", + "C1 정의문 · C4 수치 · C7 전문성 · C8 자기완결성 · B4/B7 · D1~D4 · E4 · F2 (10항목) + v2.0 사람 판정 4항목(AEO6 · GEO1 · GEO6 · GEO7). 근거는 각 표에 기재" + ], + [ + "질문 뱅크", + "외국인 환자 관점 영문 60문항 · 7군 (브랜드 8 · 이동·체류 8 · 추천·비교 12 · 시술 14 · 가격 8 · 안전·신뢰 6 · 사후관리 4). 국문 120문항 뱅크와 같은 퍼널 구조" + ], + [ + "답변엔진", + "Perplexity API sonar (자체 웹검색) · OpenAI Responses API gpt-4o + web_search (사용자 위치 미국 뉴욕). 소비자 ChatGPT UI 자동 조회는 약관 위반이라 쓰지 않음. 각 문항 1회 질의, 2026-09-10" + ], + [ + "후처리", + "답변에서 병원명 최대 8개를 등장 순서로 추출(gpt-4o-mini). VIEW Plastic Surgery · View Clinic · VIEW Seoul 등 표기 변형을 같은 병원으로 정규화. 감성은 긍정·중립·부정 1차 분류" + ], + [ + "점수 산식", + "v2.0: 항목 점수 = 파생 신호(v1.0 레벨 0~3) 가중 평균 × 배점, 사람 판정 우선, 미검증은 분모 제외. 게이트 실패 시 상한 40. 등급 A 81+ · B 61–80 · C 41–60 · D 40 이하" + ] + ], + "limits": [ + "질의는 문항당 1회입니다. 답변엔진은 같은 질문에도 매번 다른 병원을 고를 수 있어 5회 반복 평균이 정식 기준선입니다.", + "OpenAI gpt-4o는 60문항 중 23문항에서 웹검색을 실행하지 않고 모델 기억으로 답했습니다(시술·가격 일반 질문 대부분). 이 문항의 미언급은 사이트 문제가 아니라 모델 기억에 뷰가 없다는 뜻입니다.", + "Google 비즈니스 프로필은 2026-08-31 실측값(4.9점 · 리뷰 901건)을 인용했습니다. 이번에는 Places API 키가 없어 재실측하지 못했습니다.", + "Bing 색인(A6), 서버 로그(E1), GA4(E2), GSC(E3)는 소유자 계정이 필요해 미검증입니다.", + "감성 분류는 후처리 모델의 1차 판정이며 감성 기준표 v0.3의 사람 검토 전 값입니다." + ], + "qb_lead": "Perplexity는 60문항 중 30문항(50%), OpenAI 웹검색은 27문항(45%)에서 뷰성형외과를 언급했습니다. 국문 120문항 실측(2026-09-01, Perplexity 32% · OpenAI 37%)보다 높지만, 상승분은 전부 병원 이름이 들어간 질문에서 나왔습니다.", + "cat_interp": { + "A": "두 엔진 모두 전 문항 1순위. 자사 사이트·에이전시 블로그·정부 의료관광 페이지가 근거", + "B": "공항 픽업·숙박·WhatsApp 상담은 컨시어지 페이지가 직접 인용됨. 미언급 2문항은 비자·체류기간 일반 질문", + "C": "Perplexity는 9/12 언급하나 1순위는 4건. OpenAI는 절반. JK·ID·Banobagi가 상위, 근거는 제3자 가이드 글", + "D": "병원 이름이 들어간 D-11·D-12만 언급. 나머지 12문항은 뷰 페이지가 인용돼도 이름이 안 나옴", + "E": "두 엔진 모두 0. Perplexity는 뷰 블로그 가격 가이드를 2문항에서 인용했으나 상호 없이 수치만 사용. OpenAI는 가격 질문 대부분을 검색 없이 답변", + "F": "마취과 전문의(F-02)·보증(F-06)은 언급. 안전 일반론(F-01·F-03·F-04)은 미언급. F-05는 공정위 시정명령이 첫 문장", + "G": "병원 이름이 있는 G-02·G-04만 언급. 원격 팔로업 일반 질문(G-01)에서 Perplexity 4순위" + }, + "clinic_text": "두 엔진을 합쳐 뷰성형외과는 57문항에서 언급됐고 그중 40문항이 1순위입니다. 그러나 1순위는 대부분 브랜드·체류 질문입니다. 병원을 고르는 추천·비교 질문에서는 JK Plastic Surgery, ID Hospital, Banobagi, AB Plastic Surgery, SAERO가 반복 등장합니다.", + "domain_text": "인용 도메인은 세 층으로 나뉩니다. 자사 사이트(viewplasticsurgery.com 54문항), 커뮤니티(reddit.com 49문항), 그리고 중개·가이드 표면(Bookimed · clinicsoncall · koreaclinicguide · clinicseoul.net · unni.app · khunkim.com)입니다. 강남언니 국문 페이지와 네이버는 한 번도 인용되지 않았습니다. 외국인 대상 GEO는 이 세 층에 원문을 두는 일입니다.", + "quote_ids": [ + [ + "E-02", + "perplexity" + ], + [ + "C-01", + "perplexity" + ], + [ + "C-02", + "openai" + ], + [ + "F-05", + "perplexity" + ], + [ + "D-11", + "openai" + ], + [ + "E-05", + "openai" + ] + ], + "aeo_note": "AEO 65점의 감점은 AEO2 답변의 직접성(6.7/20)과 AEO4 의사결정 정보(9/15)에 집중됩니다. 정의문이 메타 설명에만 있고 본문은 슬로건으로 시작하며, 시술 페이지에 가격·시간·회복 수치가 없습니다. 이 두 항목이 그대로 시술(D)·가격(E) 질문군의 0~21%로 나타납니다.", + "geo_note": "GEO 72점의 감점은 GEO4 엔티티 정합성(6.3/15)과 GEO3 전문성 스키마(9/15)입니다. 의료진 자격·논문은 텍스트로 충분하지만 Physician 스키마가 없고, 병원 자체가 Person 타입으로 선언돼 있습니다. GEO7 투명성(6.7/10)은 후기·전후 섹션의 대가 고지 부재가 원인이며 F-05 답변에서 실제 감점으로 확인됩니다.", + "v2_evidence": { + "AEO1": "FAQ 페이지에 402문항이 서버 렌더링(카테고리 11개). 시술 페이지 하단에도 FAQ 5문항. FAQPage 스키마는 블로그 글에만 있고 FAQ 페이지에는 없음. 질문 뱅크 대비 A·B군은 사이트가 직접 답하고, D·E군 답은 블로그에 있으나 상호가 없음", + "AEO2": "정의문이 About 메타 설명에만 있음('Founded in 2005, VIEW is a premier 19-story medical center in Gangnam, Seoul'). 본문 첫 단락은 슬로건, 시술 페이지 첫 텍스트는 'Let Me In Season 2/3/4/5 Selected Doctors' 홍보 라벨, 홈 첫 200자는 검색창·메뉴", + "AEO3": "5개 핵심 페이지 단락 샘플 50개 중 상호 또는 시술명 포함 26개(52%). 상호 'VIEW' 포함은 7개(14%). FAQ 답변과 블로그 가격 문단은 시술명만 있고 상호가 없어 인용돼도 병원 이름이 남지 않음(실측 8문항)", + "AEO4": "시술 페이지 본문에 가격·수술시간·회복기간 0회. 수치는 Motiva 보증(재수술 지원 300만원/개)뿐. HTML 표는 10개 존재. 블로그에는 USD 가격표(V-line $7,000–12,000)와 체류 권장일(10–14일)이 있으나 시술 페이지와 연결되지 않음", + "AEO5": "전 페이지 H1이 동일하게 'korea plastic surgery'(키워드 라벨). 페이지 고유 제목은 H2·H3. H2 'What would you like to know today?'(검색창)가 모든 페이지에 반복", + "AEO7": "JS 미실행 HTML 본문 79,646자 서버 렌더링. 메인 이미지 500개 alt 누락 0%", + "AEO8": "sitemap index 10개 · URL 482개 · lastmod 2026-09-09. canonical self 지정. 다만 origin.·olden. 서브도메인이 전체 사이트를 200·index로 서빙(canonical은 www 지정)해 AI 답변이 origin.·olden. URL을 인용함" + }, + "aux": [ + [ + "A6 Bing 색인 (ChatGPT 검색 경로)", + "unverified", + "Bing 검색 결과 페이지가 스크립트 렌더링이라 curl로 확인 불가. Bing Webmaster Tools 등록 여부는 소유자 확인 필요" + ], + [ + "A7 응답 속도·크롤 예산", + 2, + "TTFB 0.87s · 초기 HTML 587KB · 시술 페이지 212KB. 속도 양호, HTML 비대" + ], + [ + "B7 다국어 hreflang", + 2, + "10개 언어(en-US · zh-CN · th · ja · vi · ru · id · mn · es · ar) 양방향 선언. th·jp·vn·ru·id·mn·es·ar 8개 서브도메인은 viewplasticsurgery.com/{lang}/ 로 301. cn은 en-US 대신 en 선언" + ], + [ + "D3 오픈웹 언급 (해외)", + 2, + "에이전시 블로그(khunkim · clinicsoncall · curemeabroad · kmhglobal), 정부 표면(visitkorea · 강남구 의료관광), Reddit · Purseblog 포럼, LinkedIn에 분산. 영어권 주요 언론 기사·Wikipedia 없음" + ], + [ + "D5 네이버 플레이스", + "unverified", + "외국인 질의 60문항에서 네이버 표면 인용 0건. 외국인 관점에서는 채점 대상 아님" + ], + [ + "E1 AI 크롤러 로그", + "unverified", + "서버 로그 접근 필요. Perplexity가 60문항 중 38문항에서 자사 URL을 인용했으므로 PerplexityBot 히트는 존재할 것으로 추정" + ], + [ + "E2 GA4 AI 유입 채널", + "unverified", + "GA4 접근 필요. chatgpt.com · perplexity.ai · copilot 리퍼러 채널 그룹 설정 여부 미확인" + ], + [ + "E3 GSC AI Overviews", + "unverified", + "GSC 접근 필요" + ], + [ + "E4 기준선 스팟체크", + 2, + "60문항 × 2엔진 × 1회 실측 완료(이 보고서). 5회 반복 미실시" + ], + [ + "F2 CMS 보안·최신성", + 2, + "WordPress 7.1(최신 계열). meta generator로 버전 노출" + ], + [ + "F3 페이지 무게", + 2, + "초기 HTML 587KB(300~800KB 구간)" + ], + [ + "F4 모바일 대응", + 2, + "viewport 존재 · 반응형. Core Web Vitals 미측정" + ] + ], + "compare_lead": "같은 병원의 두 사이트를 같은 기준표로 채점했습니다. 영문 사이트가 세 점수 모두 한 등급 높고, 질문 뱅크 언급률도 13~18%p 높습니다. 차이는 콘텐츠 양(FAQ 402건 · 블로그 주 1회 이상 발행 · 의료진 논문 목록)에서 나왔고, 남은 감점 원인(정의문 · 수치 · 스키마 · 상호 없는 문단)은 두 사이트가 같습니다.", + "compare_rows": [ + [ + "v1.0 종합", + "54 / C (검증 32/36)", + "64 / B (검증 31/36)", + "+10" + ], + [ + "AEO 답변 준비도", + "42 / C", + "65 / B", + "+23" + ], + [ + "GEO 출처 준비도", + "56 / C", + "72 / B", + "+16" + ], + [ + "질문 뱅크 언급률", + "120문항 · Perplexity 32% · OpenAI 37% (09-01)", + "60문항 · Perplexity 50% · OpenAI 45% (09-10)", + "+18p / +8p" + ], + [ + "C1 정의문", + "없음 (0)", + "메타 설명에만 (1)", + "본문 정의문은 둘 다 없음" + ], + [ + "C2 FAQ", + "재검증 후 2", + "FAQ 페이지 402문항 · 시술별 5문항 (2)", + "영문이 양은 많으나 FAQPage 스키마는 블로그에만" + ], + [ + "C3 H1", + "'VIEW SELFIE' 등 영문 라벨 (0)", + "전 페이지 동일 'korea plastic surgery' (2)", + "둘 다 페이지별 서술형 H1 없음" + ], + [ + "C4 · C5 수치와 표", + "C4=2 · C5=0", + "C4=1 · C5=3", + "영문은 수치가 블로그에, 표는 시술 페이지에 따로 있음" + ], + [ + "C6 신선도", + "블로그 2024-05-31 이후 정지 (재검증 후 3)", + "블로그 2026-09-09 발행 · sitemap lastmod 당일 (2)", + "영문은 갱신 활발, dateModified 마크업은 둘 다 없음" + ], + [ + "C7 전문성", + "2", + "학위 · 전문의 · 학회 · 논문 목록 텍스트 (3)", + "영문 의료진 상세가 더 충실" + ], + [ + "B2 · B3 스키마", + "B2=1 · B3=0", + "B2=0 · B3=0 (Person 타입 오선언)", + "둘 다 MedicalClinic · Physician 없음" + ], + [ + "B7 hreflang", + "없음", + "10개 언어 (2)", + "영문만 다국어 연결, 대상 URL 정리 필요" + ], + [ + "GEO7 투명성", + "3.3 / 10 (공정위 시정명령)", + "6.7 / 10", + "영문 Real Review도 대가 고지 없음, F-05 답변에 노출" + ] + ], + "roadmap_lead": "우선순위는 실측에서 확인된 감점 순서입니다. 즉시 조치는 개발 작업 없이 텍스트·스키마 수정으로 끝나고, 30일 조치는 시술 페이지 콘텐츠 블록, 90일 조치는 외부 표면과 측정 인프라입니다.", + "roadmap": [ + [ + "즉시 (0–2주) · 텍스트와 스키마", + "crit", + [ + [ + "시술 페이지·블로그 가격 가이드의 첫 문단과 표 캡션에 'At VIEW Plastic Surgery in Gangnam, Seoul, …' 형태로 상호·지역 삽입. FAQ 답변 첫 문장에도 'At VIEW' 추가", + "AEO3 · C8 / D·E군 8문항", + "인용은 되는데 이름이 안 나오는 8문항이 언급으로 전환. 답변 단위 자기완결성 52% → 80%" + ], + [ + "JSON-LD: Person → MedicalClinic(+Organization)으로 교체, name · address · telephone · openingHours · medicalSpecialty · availableLanguage(10개) 기재. 의료진 26명 Physician 스키마(자격 · 소속 · sameAs)", + "GEO3 · GEO4 / B2 · B3 · B5", + "엔티티 정합성 6.3 → 12/15. 의료진 질문(A-04 · A-05 · F-02) 근거가 스키마로 확정" + ], + [ + "sameAs 채우기: Instagram · TikTok · YouTube · Facebook · Google 비즈니스 프로필 · Bookimed · RealSelf · unni.app · LinkedIn", + "GEO4 / B5", + "AI가 표면 간 동일 병원임을 확인. Reddit · Bookimed 인용이 뷰 엔티티로 연결" + ], + [ + "FAQ 페이지 402문항에 FAQPage 스키마 부여, 카테고리별 URL(/faq/breast/ 등 11개)로 분할", + "AEO1 / C2", + "질문 수요 충족 13.3 → 20/20. 시술 질문(D) 인용 페이지 확보" + ], + [ + "H1을 페이지별 서술형으로 교체('Motiva Breast Augmentation in Seoul at VIEW Plastic Surgery'). 검색창 H2 제거", + "AEO5 / C3", + "제목 계층 6.7 → 10/10" + ], + [ + "origin.·olden. 서브도메인 → www 301. 언어 서브도메인 8개의 hreflang을 최종 URL(/th/ 등)로 통일, cn hreflang en-US로 정정", + "AEO8 · B7", + "인용 URL 분산 해소, 다국어 신호 정합" + ], + [ + "메타 설명 오류 정정: 가슴 페이지 'No.1 Motiva usage in 2013' → 2023. 제목의 'Best' · 'No.1 Trusted' 표현은 근거 있는 표현으로 교체", + "GEO1", + "주장·근거 일치 13.3 → 16/20" + ] + ] + ], + [ + "30일 · 시술 페이지 결정 정보", + "warn", + [ + [ + "시술 페이지 상단에 정의문 + 결정 정보 블록: USD 가격대 · 수술 시간 · 마취 · 입원 · 권장 체류일 · 귀국 가능일 · 실밥 제거일을 표로. 부위별 8개 시술군 우선", + "AEO2 · AEO4 / C1 · C4 / D·E군", + "시술(D) 14~21% · 가격(E) 0% 구간의 직접 대응. 답변 직접성 6.7 → 16/20" + ], + [ + "블로그 가격 가이드(가슴 · V-line · 코 · 양악 · 눈)와 시술 페이지 상호 링크. 표는 시술 페이지에 요약 이식", + "AEO4 / C4 · C5", + "의사결정 정보 9 → 13/15" + ], + [ + "'귀국 후 합병증 대응 · 원격 팔로업' 전용 페이지: 절차 · 연락 채널 · 응답 시간 · 현지 협력 · Motiva 보증 청구 방법", + "F-03 · G-01 · G-04", + "안전(F) · 사후관리(G) 질문군에서 인용 원문 확보" + ], + [ + "수상·인증 페이지에 주최 · 연도 · 원문 링크 명시(법무부 우수 유치기관 2018–2026, Motiva KOL, 서울시 표창)", + "GEO1 / C-10", + "정부 인증 질문(C-10)에서 1순위 유지, 주장 근거 일치 향상" + ], + [ + "후기 · 전후 · 'Let Me In' 홍보를 정보 페이지와 분리. 후기에 대가 제공 여부 · 개인차 고지 첫 부분에 표기", + "GEO7", + "F-05 부정 답변의 맥락 제공. 발행 투명성 6.7 → 10/10" + ], + [ + "dateModified · author · reviewedBy를 시술 페이지와 블로그 글에 마크업. 의료진 검토 표기", + "GEO5 · GEO8", + "최신성 6.7 → 10/10" + ] + ] + ], + [ + "90일 · 외부 표면과 측정", + "info", + [ + [ + "Google 비즈니스 프로필: 전화번호 등록, 영문 리뷰 응답, 컨시어지 서비스 속성 기재", + "D2 · D4", + "위치·연락처 질문(B) 오답 위험 제거" + ], + [ + "Bookimed · RealSelf · unni.app 프로필 갱신(의료진 · 시술 · 가격대 · 언어). Reddit r/PlasticSurgery · r/korea 질문에 공식 계정으로 사실 답변", + "D1 · D3", + "reddit.com 49문항 · Bookimed 32문항 인용 표면에 뷰 원문 배치. 추천 질문(C) 1순위 비율 상승" + ], + [ + "Bing Webmaster Tools 등록 + IndexNow. GSC · GA4 AI 유입 채널 그룹 설정, 서버 로그 AI 크롤러 IP 검증", + "A6 · E1 · E2 · E3", + "ChatGPT 검색 경로 확보, 소유 신호로 월간 측정" + ], + [ + "60문항 × 2엔진 × 5회 반복 월간 재실측. 질문 뱅크에 일본어 · 중국어 · 태국어 각 60문항 추가(hreflang 언어 순)", + "E4", + "개선 전후 비교 기준선. 언어별 언급률 관리" + ] + ] + ] + ], + "kpi_plan": [ + [ + "60문항 언급률", + "Perplexity 50% · OpenAI 45%", + "Perplexity 65% · OpenAI 60%", + "월 1회 60문항 × 2엔진 × 5회 반복" + ], + [ + "시술(D) · 가격(E) 언급률", + "D 14~21% · E 0%", + "D 40% · E 30%", + "같은 실측의 질문군별 집계" + ], + [ + "인용됐지만 미언급 문항", + "Perplexity 8문항", + "0문항", + "자사 URL 인용 여부와 상호 등장 여부 교차 집계" + ], + [ + "자사 사이트 인용률", + "Perplexity 63% · OpenAI 30%", + "Perplexity 75% · OpenAI 45%", + "인용 URL 도메인 집계" + ], + [ + "추천 질문(C) 1순위", + "Perplexity 4/12 · OpenAI 1/12", + "각 6/12", + "질문군 C 순위 집계" + ], + [ + "AEO · GEO 점수", + "65 · 72 (B · B)", + "80 · 85 (A 진입)", + "기준표 v2.0 재채점" + ], + [ + "AI 크롤러 히트", + "미측정", + "월간 기준선 확보", + "서버 로그 UA + IP 역검증" + ], + [ + "부정 답변", + "1문항 (F-05 공정위)", + "정정 고지 페이지가 함께 인용", + "감성 기준표 v0.3 사람 검토" + ] + ] +} \ No newline at end of file diff --git a/docs/reports/viewclinic/05_global_en/qb_en_openai_results.jsonl b/docs/reports/viewclinic/05_global_en/qb_en_openai_results.jsonl new file mode 100644 index 0000000..b2e780e --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/qb_en_openai_results.jsonl @@ -0,0 +1,60 @@ +{"id": "A-01", "cat": "A", "question": "Is VIEW Plastic Surgery in Seoul legit? Is it a trustworthy clinic for foreigners?", "engine": "openai", "answer": "Here’s a detailed and balanced assessment of whether **VIEW Plastic Surgery** in Seoul is legitimate and a good choice for international patients:\n\n---\n\n## Official Accreditation & Transparency\n\n- **Accreditation & Official Recognition**\n - VIEW Plastic Surgery has been consecutively designated as an **Outstanding Medical Tourism Institution** by the Korean Ministry of Justice from **2018 through 2026**, reflecting a strong and consistent public sector endorsement. ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)).\n - It also holds commendations from the **Ministry of Health and Welfare (2021)** and the **Seoul Metropolitan Government (2024)** for medical tourism promotion ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/community/notice/index.html?utm_source=openai)).\n - According to the Gangnam Clinic Index (dated July 2026), VIEW is officially **KHIDI-registered** (Korea Health Industry Development Institute for foreign-patient services) and **HIRA-registered** (supports national health administration credibility). The clinic is operated by board-certified specialists, notably Dr. Choi Soon Woo, a recognized plastic surgeon ([gangnamclinicindex.com](https://gangnamclinicindex.com/en/register/view-plastic-surgery/?utm_source=openai)).\n\nThese formal recognitions and verifications strongly suggest VIEW is a **legitimate**, credentialed clinic operating transparently and responsibly—particularly in the medical tourism sector.\n\n---\n\n## Reputation Among Patients & Independent Reviews\n\n- **Independent Ratings & Reviews**\n - On **Google**, VIEW Plastic Surgery maintains a stellar **4.9 out of 5**, based on approximately 808 reviews as of June 2026 ([medtraveling.com](https://www.medtraveling.com/clinics/view-plastic-surgery?utm_source=openai)).\n - On **RealSelf**, it holds a **4.8 rating** from 55 reviews. Patients repeatedly praise the attentive and professional staff and highlight smooth routing, especially for rhinoplasty and facial contouring—frequently noting excellent translator support ([realself.com](https://www.realself.com/practices/view-plastic-surgery-seoul-gangnam?utm_source=openai)).\n - On **SeoulClinics**, VIEW is vetted with a **4.9 rating** from 705 Google reviews, and the platform notes it offers international patient services, including English concierge and interpreters ([seoulclinics.io](https://seoulclinics.io/clinics/view_gangnam?utm_source=openai)).\n\nThese reviews reflect high satisfaction among foreign patients, particularly around supportive services and language assistance.\n\n---\n\n## Foreigner Considerations and Review Caveats\n\n- **Potential Foreigner Premiums & Review Bias**\n - Community discussions in forums like Reddit (r/SeoulPlasticSurgery and r/KoreaSeoulBeauty) emphasize that **many review platforms in South Korea may include paid or incentivized testimonials**, which can skew perception. Clinics may offer discounts in exchange for positive reviews—these dynamics can raise transparency concerns ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1u0wyob/most_korean_clinic_reviews_are_paid_i_wrote_one/?utm_source=openai)).\n - Foreigners may also encounter **higher pricing (\"foreigner premiums\")**, unless they bring their own translator or negotiate terms—something consistently mentioned by insiders ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1u0wyob/most_korean_clinic_reviews_are_paid_i_wrote_one/?utm_source=openai)).\n - Some reviewers caution that **clinics highly marketed to foreign patients may lack accountability**, and advise potential clients to critically evaluate surgeons, clinic culture, and to avoid being drawn solely by marketing or zero-negative-review profiles ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1so0kca/clinic_advice/?utm_source=openai)).\n\nThese insights suggest the importance of cautious decision-making: while VIEW has strong credentials and favorable reviews, it's wise to engage with multiple sources and remain mindful of potential marketing bias.\n\n---\n\n## Foreign Patient Experience: Positive Testimonials\n\n- A user on **PurseForum** shared a glowing account, stating the experience was \"life changing\"... “especially if you’re a foreigner to Korea.” They praised staff kindness, safe care, and even logistics like airport pick-up and partial hotel accommodation—highlighting a supportive, foreigner-oriented service ethos ([forum.purseblog.com](https://forum.purseblog.com/threads/my-experience-at-view-plastic-surgery-in-seoul.1067271/?utm_source=openai)).\n- Multiple independent patient reviews on RealSelf describe translators as particularly helpful, and praise operational smoothness, post-op care, and surgical outcomes ([realself.com](https://www.realself.com/practices/view-plastic-surgery-seoul-gangnam?utm_source=openai)).\n\n---\n\n## Summary Assessment\n\n**Yes, VIEW Plastic Surgery appears to be a legitimate and reputable clinic**:\n\n- It is well-established (operating since 2005), and carries **governmental accreditation** and **industry recognition**.\n- It demonstrates a solid **board-certified medical staff** and structured **international patient support**, including managed interpretation, concierge services, and safety systems.\n- **Patient satisfaction** among foreign clients is consistently high across multiple review platforms.\n- That said, **market realities** such as promotional review systems and pricing discrepancies exist in the broader Korean medical tourism industry—VIEW is no exception. Exercising due diligence through direct consultation, verifying pricing transparency, understanding the policy on interpretation, and reviewing before/after portfolios is strongly recommended.\n\n---\n\n## Tips for Foreign Prospective Patients\n\n1. **Request direct surgeon consultations** (ideally via video call) to discuss your individual goals, see previous results, and confirm operative staff will remain consistent.\n2. **Clarify costs and possible surcharges**—ask whether quoted prices are inclusive of VAT, and if there are \"foreigner\" rates.\n3. **Evaluate translator arrangements**—bringing a trusted interviewer or confirming official interpreters can help in avoiding unnecessary premiums.\n4. **Do not rely solely on reviews**—look at before-and-after galleries, ask for peer referrals, and consult independent reviewers if available.\n5. **Seek second opinions**—even within Seoul, comparing VIEW with other accredited clinics will help you feel confident in your choice.\n\n---\n\n### Final Verdict\n\nVIEW Plastic Surgery in Gangnam is **genuine, accredited, and frequently endorsed by foreign patients** for its high-quality service, medical expertise, and international patient support. While it benefits from strong civic and professional validation, as with all overseas medical journeys, exercising careful research and asking direct questions will ensure your experience is as safe and satisfying as possible.\n\nLet me know if you’d like help comparing specific procedures, understanding cost breakdowns, or exploring alternative clinics with similar accreditation.", "urls": ["https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/community/notice/index.html?utm_source=openai", "https://gangnamclinicindex.com/en/register/view-plastic-surgery/?utm_source=openai", "https://www.medtraveling.com/clinics/view-plastic-surgery?utm_source=openai", "https://www.realself.com/practices/view-plastic-surgery-seoul-gangnam?utm_source=openai", "https://seoulclinics.io/clinics/view_gangnam?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1u0wyob/most_korean_clinic_reviews_are_paid_i_wrote_one/?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1u0wyob/most_korean_clinic_reviews_are_paid_i_wrote_one/?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1so0kca/clinic_advice/?utm_source=openai", "https://forum.purseblog.com/threads/my-experience-at-view-plastic-surgery-in-seoul.1067271/?utm_source=openai", "https://www.realself.com/practices/view-plastic-surgery-seoul-gangnam?utm_source=openai"], "measured_at": "2026-09-10T15:11:25", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-02", "cat": "A", "question": "Tell me about VIEW Plastic Surgery in Gangnam, Korea. What are they known for?", "engine": "openai", "answer": "Here’s a detailed overview of **VIEW Plastic Surgery**, a prominent clinic located in the heart of Gangnam, Seoul:\n\n • **Location & Building** \n VIEW Plastic Surgery is situated at **107 Bongeunsa‑ro, Gangnam‑gu, Seoul (Nonhyeon‑dong)**, just a short walk from Sinnonhyeon Station (Line 9) ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)). It occupies a dedicated 19‑floor “Safe Smart Building,” designed to integrate consultation rooms, surgical theaters, recovery suites, and aftercare facilities under one roof ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)).\n\n • **Emphasis on Safety & Smart Infrastructure** \n VIEW places patient safety at the core of its operations. Their **\"VIEW Safety Surgery System\"** includes thorough pre‑operative screening, one‑on‑one anesthesia care by board‑certified anesthesiologists, real‑time intraoperative monitoring, and compliance with hospital‑grade safety standards ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)).\n\n • **Comprehensive Specialty Coverage** \n Since its founding in 2005, VIEW has expanded into a **comprehensive plastic surgery clinic**, offering a wide array of procedures: breast surgery, facial contouring (including double jaw), rhinoplasty, eye surgery, liposuction, anti‑aging treatments, male plastic surgery, and dermatology ([english.visitkorea.or.kr](https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022&utm_source=openai)). According to a recent YouTube feature, they are organized around **six core surgical specialties**:\n 1. Breast surgery (including UIU Breast Augmentation and extensive use of Motiva implants) \n 2. Facial contouring & orthognathic (double jaw) surgery \n 3. Eye surgery & anti‑aging procedures \n 4. Rhinoplasty (both functional and cosmetic) \n 5. Liposuction and body contouring \n 6. Dermatology and skin care ([youtube.com](https://www.youtube.com/watch?v=7R74XYweTGk&utm_source=openai))\n\n • **International Reach & Medical Tourism Accreditation** \n VIEW has been repeatedly certified as an **Outstanding Medical Tourism Institution** by the Ministry of Justice (from 2018 onward), and is recognized as an **official Gangnam Medical Tourism Partner**, reflecting its commitment to serving international patients ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)). It also received commendations such as the 2025 **Gangnam Medical Tourism Online Service Quality Award** ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)). Multilingual support (including English, Chinese, Japanese, Russian, Vietnamese, Thai, Indonesian, and Mongolian) further underscores its international patient services ([medicaltour.gangnam.go.kr](https://medicaltour.gangnam.go.kr/medical/clinic/view.do?cid=408&medical_seq=802&utm_source=openai)).\n\n • **Global Brand Recognition & Awards** \n VIEW has garnered numerous accolades and international recognitions:\n • Appointed as a **Motiva Global Key Opinion Leader** since 2023 (CEO Dr. Choi Soon‑Woo) ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)) \n • Motiva Grand Award recipient (2020, 2021, 2024, 2025) ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)) \n • Ranked No. 1 in Motiva implant procedures in 2023 ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)) \n • Recognized as a **Gold Standard Clinic** for Ultherapy Full Face by Merz Aesthetics (2024) ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)) \n • Awarded the **Medical Korea Global Healthcare Merit Award** by Korea’s Ministry of Health and Welfare (2021) and a commendation from Seoul Metropolitan Government (2024) ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)) \n • Winner of the **Medical Asia Grand Prize** in Facial Contouring (2018) and breast augmentation award at KBS N Brand Awards (2023) ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)) \n • Internationally celebrated in the **Thailand Beauty Awards** (2024) ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/about-VIEW.html?utm_source=openai))\n\n • **Research Orientation & Clinical Standards** \n VIEW emphasizes evidence‑based practices, with ongoing academic research and clinical data supporting their surgical techniques and outcomes ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)). \n Their care model ensures the **same surgeon handles each patient’s consultation, surgery, and follow‑up**, which is an attractive feature for many patients ([youtube.com](https://www.youtube.com/watch?v=7R74XYweTGk&utm_source=openai)).\n\n • **Patient Feedback & Reputation** \n On platforms like RealSelf, VIEW holds an **average rating of 4.8** (based on 55 reviews), pointing to high patient satisfaction ([realself.com](https://www.realself.com/practices/view-plastic-surgery-seoul-gangnam?utm_source=openai)). \n In online forums and Reddit discussions, VIEW is frequently mentioned among reputable, full‑service Gangnam clinics—particularly valued for its comprehensive services and safety standards ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1vhzpeg/i_worked_in_the_korean_plastic_surgery_industry/?utm_source=openai)).\n\nSummary \nVIEW Plastic Surgery in Gangnam, Seoul, is recognized for its:\n\n- expansive, safety‑focused 19‑story facility optimized for all aspects of care;\n- full spectrum of plastic surgery and skin procedures;\n- high international reputation and medical tourism credentials;\n- consistent recognition by global partners and awards;\n- research‑driven and surgeon‑consistency care model; \n- high patient satisfaction and strong online reputation.\n\nIf you'd like to explore specific procedures, surgeon profiles, pricing, or international client services in more detail, feel free to ask!", "urls": ["https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022&utm_source=openai", "https://www.youtube.com/watch?v=7R74XYweTGk&utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://medicaltour.gangnam.go.kr/medical/clinic/view.do?cid=408&medical_seq=802&utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/Introduction/about-VIEW.html?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.youtube.com/watch?v=7R74XYweTGk&utm_source=openai", "https://www.realself.com/practices/view-plastic-surgery-seoul-gangnam?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1vhzpeg/i_worked_in_the_korean_plastic_surgery_industry/?utm_source=openai"], "measured_at": "2026-09-10T15:11:36", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-03", "cat": "A", "question": "What procedures does VIEW Plastic Surgery Korea specialize in?", "engine": "openai", "answer": "Here’s a detailed look at the procedures and specialties offered by **VIEW Plastic Surgery Korea**, based on the most up-to-date information available:\n\n---\n\n**1. Broad Range of Surgical Specialties**\n\nSince its founding in 2005, VIEW Plastic Surgery has evolved into a comprehensive center renowned across multiple domains of plastic surgery. They emphasize a balanced approach across various surgical areas, including:\n- Breast surgery \n- Facial contouring \n- Orthognathic (double jaw) surgery \n- Eye and nose procedures \n- Wrinkle reduction \n- Liposuction \n- Male plastic surgery \n- Dermatology and skin care \n([english.visitkorea.or.kr](https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022&utm_source=openai))\n\n---\n\n**2. Expanded Menu of Medical Services**\n\nIn its offerings, VIEW Clinic explicitly cites a wide array of specialized procedures:\n- Breast procedures: augmentation, reduction, lifting, revision, implant removal \n- Facial contouring: V-line (jawline), zygoma (cheekbone reduction), square jaw reduction, chin surgery, facial implants, contouring revisions \n- Double jaw (orthognathic) correction \n- Eye surgery and rhinoplasty (nose surgery) \n- Liposuction, tummy tucks, facial liposuction, fat grafting \n- Anti-aging procedures: thread lifts (e.g., triple face fit), mini-lifts, facelifts \n- Male-specific surgeries: male rhinoplasty, eye surgery, facial contouring tailored to male anatomy, gynecomastia correction \n- Dermatology treatments including Ultherapy, Thermage, anti-aging therapies, skin boosters, brightening, acne/scar care, slimming \n- Hair transplantation and stem cell therapies \n([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai))\n\n---\n\n**3. Excellence in Breast Surgery (Notable Recognition)**\n\nVIEW has achieved specific recognition and leadership in breast implant procedures:\n- Ranked **No. 1 in Motiva implant procedures (2023)** \n- Certified as a **Gold Standard Clinic for Ultherapy Full Face by Merz Aesthetics (2024)** \n([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai))\n\n---\n\n**4. Advanced Orthognathic Techniques**\n\nOne standout offering is their proprietary **Nano Bimaxillary Osteotomy™**, a 4th generation two-jaw surgery technique. It emphasizes precision planning and exceptional safety to create a balanced, natural facial contour while addressing both aesthetic and functional concerns. \nThis procedure is carried out by their \"Facial Bone Dream Team,\" which includes plastic surgeons, dentists, anesthesiologists, and diagnostic specialists to deliver coordinated, expert care. \n([kmhglobal.com](https://www.kmhglobal.com/department/view-plastic-surgery?utm_source=openai))\n\n---\n\n**5. Comprehensive Pre‑operative and Post‑operative Systems**\n\nVIEW is structured to provide a seamless, fully integrated care pathway:\n\n- **In-house pre-surgery examination center** — offers:\n * Blood tests and ECG for general surgical readiness \n * Breast ultrasound and mammography (pre- and post-surgery screening) \n * Radiological exams including 3D-CT and X-ray for facial bone planning \n * InBody body composition analysis for liposuction planning \n([viewplasticsurgery.com](https://www.viewplasticsurgery.com/safe-system/examination-centar.html?utm_source=openai))\n\n- **Facility layout**:\n * B1: Health & Breast Examination Center \n * 1F–4F: Consultation and Dermatology \n * Floors 5F–15F covering consultation, wards, surgery, treatment, aftercare, and dental services \n([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/virtual-tour.html?utm_source=openai))\n\n---\n\n**Summary**\n\nVIEW Plastic Surgery Korea specializes in a truly holistic set of aesthetic and reconstructive procedures, offering:\n\n- Comprehensive surgical options across breast, face, jaw, eyes, nose, body, skin, and hair\n- Specialized male procedures\n- Advanced orthognathic techniques like Nano Bimaxillary Osteotomy™\n- Highly recognized breast implant services\n- Integrated pre-op and post-op evaluation and care using hospital-grade equipment and coordinated specialist teams\n\nLet me know if you’d like more details on any of these specific procedures, their technologies, or surgeon profiles!", "urls": ["https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022&utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.kmhglobal.com/department/view-plastic-surgery?utm_source=openai", "https://www.viewplasticsurgery.com/safe-system/examination-centar.html?utm_source=openai", "https://www.viewplasticsurgery.com/Introduction/virtual-tour.html?utm_source=openai"], "measured_at": "2026-09-10T15:11:46", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-04", "cat": "A", "question": "Who is Dr. Choi Soon Woo of VIEW Plastic Surgery? Is he board certified?", "engine": "openai", "answer": "Here is what I was able to find about Dr. Choi Soon Woo of VIEW Plastic Surgery in Seoul, South Korea, and whether he is board certified:\n\n• According to the official VIEW Plastic Surgery website, Dr. Choi Soon Woo is listed explicitly as “CEO, Board Certified Plastic Surgeon,” with his education and training including a PhD in medicine from Seoul National University, plastic surgery residency and board certification at Seoul National University Hospital, and an adjunct professorship in plastic surgery at the same institution. He is also noted to be an active or lifetime member in numerous Korean and international professional societies. ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=choi-soon-woo&utm_source=openai))\n\n• A third-party site, Khunkim.com, similarly describes Dr. Choi as a \"Board Certified Plastic Surgeon,\" with credentials including training and faculty positions at Seoul National University. ([khunkim.com](https://khunkim.com/en/hospitals/view/doctors/choi-soon-woo?utm_source=openai))\n\nIn summary:\n\n- Dr. Choi Soon Woo serves as the CEO and chief surgeon at VIEW Plastic Surgery in Gangnam, Seoul. ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=choi-soon-woo&utm_source=openai)) \n- He is confirmed to be a **board-certified plastic surgeon**, having completed residency and received certification through Seoul National University Hospital. ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=choi-soon-woo&utm_source=openai)) \n\nTherefore, yes—based on the information available through the official clinic website and reputable external sources, Dr. Choi Soon Woo is indeed board certified as a plastic surgeon.\n\nIf you’d like more details about his qualifications, specific procedures he specializes in, or patient reviews, feel free to ask!", "urls": ["https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=choi-soon-woo&utm_source=openai", "https://khunkim.com/en/hospitals/view/doctors/choi-soon-woo?utm_source=openai", "https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=choi-soon-woo&utm_source=openai", "https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=choi-soon-woo&utm_source=openai"], "measured_at": "2026-09-10T15:11:54", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-05", "cat": "A", "question": "How many surgeons does VIEW Plastic Surgery have and are they all board-certified plastic surgeons?", "engine": "openai", "answer": "VIEW Plastic Surgery, located in Gangnam, Seoul, operates a large, specialized medical center and has a substantial team of surgeons.\n\nAccording to the clinic’s official medical staff listing, VIEW Plastic Surgery has the following professionals:\n\n- A total of **twelve (12)** surgeons explicitly titled “Board Certified Plastic Surgeon” are listed:\n 1. Dr. Choi Soon Woo (CEO)\n 2. Dr. Yun Chang Woon \n 3. Dr. Kim Jeong Min \n 4. Dr. Kim Do Hyung \n 5. Dr. Chung Jae Hyun \n 6. Dr. Cho Jin Woo \n 7. Dr. Son Yoo Sung \n 8. Dr. Lee Dong Kyu \n 9. Dr. Kim So Young \n 10. Dr. Oh Won Seok \n 11. Dr. Park Gun Wook \n 12. Dr. Park Jin Woo \n 13. Dr. Oh Jeong Seok \n 14. Dr. Oh Joon Seok \n (These were all listed as board-certified plastic surgeons on their site) ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/introduction/doctors/?utm_source=openai))\n\nHowever, another source—the “Khunkim” platform profiling VIEW’s medical team—reports a total of **16 surgeons** affiliated with VIEW Plastic Surgery ([khunkim.com](https://khunkim.com/en/hospitals/view/doctors?utm_source=openai)). This discrepancy may reflect additional surgeons not highlighted in the main “board-certified” section, possibly including other specialties or more recent staff additions.\n\nMoreover, a clinic brochure notes the **“Number of Doctors: 15”**, which likely includes not only plastic surgeons but also dermatologists, breast specialists, or anesthesiologists ([assets.website-files.com](https://assets.website-files.com/5bf603f84ae3426101807d56/6075a308fd248cf60dd1b4fb_K_medical_ebook.pdf?utm_source=openai)).\n\nSummarizing:\n\n- Official VIEW Plastic Surgery staff page lists **14 board-certified plastic surgeons** ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/introduction/doctors/?utm_source=openai)).\n- The **Khunkim directory** references **16 surgeons**, possibly the full roster including all categories ([khunkim.com](https://khunkim.com/en/hospitals/view/doctors?utm_source=openai)).\n- The clinic brochure indicates **15 doctors** total, encompassing all medical staff ([assets.website-files.com](https://assets.website-files.com/5bf603f84ae3426101807d56/6075a308fd248cf60dd1b4fb_K_medical_ebook.pdf?utm_source=openai)).\n\nRegarding certification, all surgeons listed under “Board Certified Plastic Surgeon” are indeed recognized specialists in plastic surgery—meaning each has undergone the formal training and obtained official certification in the field as per Korean medical standards ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/introduction/doctors/?utm_source=openai)). It’s important to note that VIEW also employs professionals in related fields (e.g., otorhinolaryngology, dermatology, anesthesiology), who are not plastic surgeons but specialists in their own right.\n\nIf you're comparing these figures for decision-making, it may be helpful to verify directly with the clinic:\n\n- The **most up-to-date count of board-certified plastic surgeons** currently handling procedures.\n- How many **surgeons in total** are on staff, including related specialties.\n- Each individual provider’s **board certification status**, especially if you want confirmation of credentials recognized by the **Korean Society of Plastic and Reconstructive Surgeons (KSPRS)**, which is the relevant certifying authority in South Korea ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ofilu1?utm_source=openai)).\n\nIn summary:\n\n- VIEW Plastic Surgery lists about **14 board-certified plastic surgeons** according to their own website.\n- Other third‑party data suggest **15 to 16 doctors** are affiliated with the clinic.\n- All labeled “board-certified plastic surgeon” have formal credentials, while other medical staff are specialists in their respective fields, not plastic surgeons.\n\nLet me know if you'd like help cross‑referencing individual surgeons or verifying their specific certifications!", "urls": ["https://www.viewplasticsurgery.com/introduction/doctors/?utm_source=openai", "https://khunkim.com/en/hospitals/view/doctors?utm_source=openai", "https://assets.website-files.com/5bf603f84ae3426101807d56/6075a308fd248cf60dd1b4fb_K_medical_ebook.pdf?utm_source=openai", "https://www.viewplasticsurgery.com/introduction/doctors/?utm_source=openai", "https://khunkim.com/en/hospitals/view/doctors?utm_source=openai", "https://assets.website-files.com/5bf603f84ae3426101807d56/6075a308fd248cf60dd1b4fb_K_medical_ebook.pdf?utm_source=openai", "https://www.viewplasticsurgery.com/introduction/doctors/?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ofilu1?utm_source=openai"], "measured_at": "2026-09-10T15:12:07", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-06", "cat": "A", "question": "Does VIEW Plastic Surgery have English-speaking staff or interpreters?", "engine": "openai", "answer": "Yes — **VIEW Plastic Surgery** does provide English-speaking staff and interpreters to assist international patients throughout their experience. Here's a detailed overview based on the most recent and relevant information available as of September 2026:\n\n• According to VIEW’s official information on their international patient concierge services, they offer **multilingual online consultations and real‑time professional interpretation** in **10 languages**, at no extra charge. This ensures clear and seamless communication throughout the process. ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai)) \n• Further details from their FAQ and other official sources confirm that consultations are offered in **Korean, English, and Thai**, and they explicitly mention having English‑speaking support. ([khunkim.com](https://khunkim.com/en/hospitals/view/faq?utm_source=openai)) \n• A downloadable medical brochure or e‑book published by VIEW Plastic Surgery also states that they provide **1:1 escort services** by medical coordinators who can communicate in **English**, among several other languages (including Chinese, Russian, Japanese, Vietnamese, Thai, and Indonesian). ([assets.website-files.com](https://assets.website-files.com/5bf603f84ae3426101807d56/6075a308fd248cf60dd1b4fb_K_medical_ebook.pdf?utm_source=openai)) \n\nUser experiences corroborate this official information:\n• One reviewer described having an **English team member accompany them at every step of the procedures**, explaining and interpreting as needed. ([forum.purseblog.com](https://forum.purseblog.com/threads/view-plastic-surgery.1068026/?utm_source=openai)) \n• On a Peruvian/U.S.-based forum, a patient noted that “the surgeon did not speak English, but the translator explained everything to me.” ([forum.purseblog.com](https://forum.purseblog.com/threads/nipple-surgery-consultation-experience-with-view-da-pride-and-note.1066961/?utm_source=openai)) \n• Additional reviews highlight “translators [who] are competent, patient, and ensure clear communication between patients and doctors.” ([docentpro.com](https://docentpro.com/places/view-plastic-surgery_NTQ1Njc1?utm_source=openai)) \n\nSummary:\n\n- VIEW Plastic Surgery provides **professional interpretation services**, including English, during **online consultations** and **in-person consultations**.\n- They ensure **English-speaking support** through dedicated staff members and medical coordinators who escort and assist international patients throughout the entire treatment process.\n- Patient reviews strongly reinforce the presence of supportive, English-speaking team members and translators available throughout the consultation, treatment, and aftercare phases.\n\nSo if English is your preferred language, you can feel confident that VIEW Plastic Surgery is well-equipped to support you with language assistance throughout your journey.", "urls": ["https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai", "https://khunkim.com/en/hospitals/view/faq?utm_source=openai", "https://assets.website-files.com/5bf603f84ae3426101807d56/6075a308fd248cf60dd1b4fb_K_medical_ebook.pdf?utm_source=openai", "https://forum.purseblog.com/threads/view-plastic-surgery.1068026/?utm_source=openai", "https://forum.purseblog.com/threads/nipple-surgery-consultation-experience-with-view-da-pride-and-note.1066961/?utm_source=openai", "https://docentpro.com/places/view-plastic-surgery_NTQ1Njc1?utm_source=openai"], "measured_at": "2026-09-10T15:12:15", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-07", "cat": "A", "question": "How long has VIEW Plastic Surgery been operating and how big is the clinic?", "engine": "openai", "answer": "Here’s what I found on **VIEW Plastic Surgery** based on official and third-party sources:\n\n• **How long VIEW Plastic Surgery has been operating:** \nEstablished in **2005**, VIEW Plastic Surgery has been in operation for approximately **21 years** as of 2026. This timeline is confirmed in multiple sources: \n  – Their official “history” section outlines their origins dating back to 2005 ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/history.html?utm_source=openai)). \n  – VisitKorea’s medical tourism portal similarly states that the clinic opened in **May 2005** ([english.visitkorea.or.kr](https://english.visitkorea.or.kr/svc/contents/MedicalKorea/contentsMedicalKoreaView.do?dataSetId=116&menuSn=923&vcontsId=206022&utm_source=openai)). \n  – A third-party site also notes the clinic’s opening in 2005 and emphasizes its growth across various specialties since then ([inflo.kr](https://inflo.kr/en/service/hospital_view.php?idx=43&utm_source=openai)).\n\n• **Size and scale of the clinic:** \nVIEW Plastic Surgery occupies a **dedicated 19-story building** in Gangnam, Seoul, comprising multiple floors tailored to specific functions—consultation, examination, surgery, recovery, and more ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/introduction/aboutview/?utm_source=openai)). \nA clinic overview site provides additional operational details:\n  – Approximately **15 certified plastic surgeons** on staff, with about **20 beds** available for patient care ([experts-beauty.com](https://experts-beauty.com/en/clinic/view/?utm_source=openai)). \nFurther documentation (a PDF medical ebook) cites **15 doctors** and **28 beds**, suggesting slight variance depending on the data source ([assets.website-files.com](https://assets.website-files.com/5bf603f84ae3426101807d56/6075a308fd248cf60dd1b4fb_K_medical_ebook.pdf?utm_source=openai)). \nA third-party review platform (iCloudHospital.com) mentions a medical team of **17 professionals** working collaboratively across consultation, surgery, and recovery services ([icloudhospital.com](https://icloudhospital.com/en-US/hospitals/view-plastic-surgery?utm_source=openai)).\n\nIn summary:\n\n- VIEW Plastic Surgery has been in operation since **2005**—around **21 years** as of mid-2026. \n- The clinic is **large in scale**, housed in a **19-floor dedicated building** and staffed by approximately **15–17 medical professionals**, with around **20–28 beds** to accommodate patients.\n\nIf you'd like more specific information—for instance, floor-by-floor layout, number of operating rooms, or staff breakdown—feel free to let me know!", "urls": ["https://www.viewplasticsurgery.com/Introduction/history.html?utm_source=openai", "https://english.visitkorea.or.kr/svc/contents/MedicalKorea/contentsMedicalKoreaView.do?dataSetId=116&menuSn=923&vcontsId=206022&utm_source=openai", "https://inflo.kr/en/service/hospital_view.php?idx=43&utm_source=openai", "https://www.viewplasticsurgery.com/introduction/aboutview/?utm_source=openai", "https://experts-beauty.com/en/clinic/view/?utm_source=openai", "https://assets.website-files.com/5bf603f84ae3426101807d56/6075a308fd248cf60dd1b4fb_K_medical_ebook.pdf?utm_source=openai", "https://icloudhospital.com/en-US/hospitals/view-plastic-surgery?utm_source=openai"], "measured_at": "2026-09-10T15:12:23", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "neutral"} +{"id": "A-08", "cat": "A", "question": "VIEW Plastic Surgery Korea reviews from international patients: what do foreigners say?", "engine": "openai", "answer": "Here’s what international patients—particularly foreigners—commonly say about getting plastic surgery in South Korea, based on firsthand reviews, professional observations, and patient journeys:\n\n---\n\n## 1. Communication & Foreign‑Patient Support\n\n- Many clinics are praised for strong foreign‑patient support: English, Japanese, Chinese (and sometimes more) language services; WhatsApp, LINE, Viber contact; and dedicated foreign‐patient coordinators. These elements help ease anxieties around communication and logistics. For example, VIEW Plastic Surgery is explicitly noted for its multilingual support and high RealSelf ratings (4.8/5 from overseas patients) during 2026 ([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n\n- Patients often report that smooth organization—from pre‑trip planning to post‑op follow‑ups—is a significant relief. On community feedback platforms, people highlight feeling supported by clinics that explain things slowly, offer online consultations before flights, and follow up in English during recovery ([patients.community](https://www.patients.community/t/what-are-the-most-foreigner-friendly-plastic-surgery-clinics-in-seoul/291?utm_source=openai)).\n\n---\n\n## 2. Quality, Reputation, and Transparency\n\n- Clinics recognized by official bodies often inspire confidence. VIEW Plastic Surgery, for instance, has been repeatedly designated as an “Outstanding Medical Tourism Institution” by Korea’s Ministry of Justice (2018–2026) and employs board‑certified anesthesiologists and real‑time intraoperative monitoring ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/?utm_source=openai)).\n\n- However, transparency issues—such as \"ghost surgeries\" where an unknown surgeon performs major tasks—remain a real patient concern. Several international patients on Reddit report situations where multiple doctors are involved without clear disclosure, and recommend explicitly asking who will perform the procedure and getting that information in writing ([reddit.com](https://www.reddit.com/r/KoreaPlasticSurgery/comments/1qmdxuu/had_surgery_in_korea_as_a_foreigner_something_i/?utm_source=openai)).\n\n- Other common concerns include pushy deposit requests and rushed consultations. Patients advise thorough research, in‑person consultations, and clear documentation to avoid clinics that seem overly sales‑driven or opaque about who will handle their surgery ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1uimrmn/clinics_u_must_avoid/?utm_source=openai)).\n\n---\n\n## 3. Safety & Risks\n\n- Overall, South Korea is widely regarded as a top-tier destination for plastic surgery, known for experienced surgeons and significantly lower prices (40–75% less than in the U.S.) ([inkoreanow.com](https://inkoreanow.com/plastic-surgery-korea-safety-guide/?utm_source=openai)).\n\n- Still, risks are real. Ghost surgery, unlicensed practitioners, and clinics that cut corners have been documented. Patients are urged to verify credentials and avoid overly aggressive marketing tactics ([inkoreanow.com](https://inkoreanow.com/plastic-surgery-korea-safety-guide/?utm_source=openai)).\n\n- One insider with five years of experience in the industry emphasizes that complications—like asymmetry or undesired results—aren’t as rare as one might hope. Consent forms are thorough, and obtaining compensation can be difficult unless the issue was not adequately disclosed or was outside the normal risks ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1vhzpeg/i_worked_in_the_korean_plastic_surgery_industry/?utm_source=openai)).\n\n---\n\n## 4. Variability in Patient Experiences\n\n- Positive experiences often highlight responsive, empathetic surgeons and staff who take time to understand patient goals and engage in thoughtful consultations. For instance, a RealSelf reviewer who traveled from the U.S. felt especially confident at Girin Plastic Surgery due to attentive communication from Dr. Lee and Dr. Yoon ([realself.com](https://www.realself.com/review/canthoplasty-great-international-patients?utm_source=openai)).\n\n- Another patient praised AB Plastic Surgery for its smooth process—English translators, clear documentation, WhatsApp communication, and a subtle, natural result after a double‑eyelid and ptosis correction surgery ([realself.com](https://www.realself.com/review/double-eyelid-surgery-foreigner-experience-ab-plastic-surgery?utm_source=openai)).\n\n- Yet, there are also reports of regret. One Redditor shared that after a surgery, their clinic repeatedly pressured them to remove a negative review posted on an app. This underscores potential issues with patient autonomy and feedback suppression ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1lp405s?utm_source=openai)).\n\n---\n\n## 5. Recommendations from Internals & Locals\n\n- Clinic insiders and locals give practical advice: avoid paying hefty deposits before being certain, insist on clarity about which surgeon will perform your procedure, and prioritize clinics that deliver transparent and calm consultations over flashy marketing ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1uimrmn/clinics_u_must_avoid/?utm_source=openai)).\n\n- A former interpreter/intermediary in the industry cautions that even reviews marked as “paid with my own money” (내돈내산) can be part of marketing. Patients should cross‑check information and remain discerning ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1vhzpeg/i_worked_in_the_korean_plastic_surgery_industry/?utm_source=openai)).\n\n---\n\n## Summary: What Foreigners Say\n\nStrengths:\n• Advanced surgical expertise and lower costs than in Western countries. \n• Good foreigner‑friendly infrastructure: multilingual staff, secure communication channels, and recognized clinic accreditations.\n\nChallenges:\n• Potential for ambiguity or misrepresentation—e.g., unclear who performs surgery or aggressive deposit tactics. \n• Genuine risk of complications, which may be hard to address post‑procedure. \n• Some feedback systems may pressure patients to suppress negative reviews.\n\nTips for Prospective Patients:\n• Do deep research, consult multiple clinics in person if possible. \n• Demand transparency: ask, document, and confirm the surgeon’s identity. \n• Favor clinics with credentials and formal language support. \n• Be cautious of pushy marketing; take your time to choose.\n\nIf you’d like help exploring reviews by clinic or procedure type, or need guidance in sorting trustworthy patient testimonials, feel free to ask!\n\n(Note: All statements reflect reports and sources available as of September 10, 2026.)", "urls": ["https://kclinichelp.com/?utm_source=openai", "https://www.patients.community/t/what-are-the-most-foreigner-friendly-plastic-surgery-clinics-in-seoul/291?utm_source=openai", "https://www.viewplasticsurgery.com/?utm_source=openai", "https://www.reddit.com/r/KoreaPlasticSurgery/comments/1qmdxuu/had_surgery_in_korea_as_a_foreigner_something_i/?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1uimrmn/clinics_u_must_avoid/?utm_source=openai", "https://inkoreanow.com/plastic-surgery-korea-safety-guide/?utm_source=openai", "https://inkoreanow.com/plastic-surgery-korea-safety-guide/?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1vhzpeg/i_worked_in_the_korean_plastic_surgery_industry/?utm_source=openai", "https://www.realself.com/review/canthoplasty-great-international-patients?utm_source=openai", "https://www.realself.com/review/double-eyelid-surgery-foreigner-experience-ab-plastic-surgery?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1lp405s?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1uimrmn/clinics_u_must_avoid/?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1vhzpeg/i_worked_in_the_korean_plastic_surgery_industry/?utm_source=openai"], "measured_at": "2026-09-10T15:12:35", "clinics": ["VIEW Plastic Surgery", "Girin Plastic Surgery", "AB Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "B-01", "cat": "B", "question": "Where is VIEW Plastic Surgery located and how do I get there from Incheon Airport?", "engine": "openai", "answer": "Here’s a clear, step-by-step guide to help you:\n\n**1. VIEW Plastic Surgery – Location** \n- **Address:** 107, Bongeunsa‑ro, Gangnam‑gu, Seoul, Korea (Nonhyeon‑dong 201‑14) ([origin.viewplasticsurgery.com](https://origin.viewplasticsurgery.com/?page_id=8281&utm_source=openai)). \n- It’s just about **50 meters** from **Sinnonhyeon Station** on **Seoul Subway Line 9**, typically near **Exit 3 or Exit 6** depending on clinic maps ([origin.viewplasticsurgery.com](https://origin.viewplasticsurgery.com/?page_id=8281&utm_source=openai)).\n\n**2. Transportation Options from Incheon International Airport to Sinnonhyeon Station**\n\nYou have several convenient choices, depending on your priorities (speed, cost, convenience, luggage):\n\n**— Option A: Airport Limousine Bus (Most convenient door-to-door service)** \n- Look for **Route 6009 or 6703**. These buses run directly from Incheon Airport to stops including **Sinnonhyeon Station** and **Gangnam/COEX**. ([ivisitkorea.com](https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai)) \n- **Travel time:** Around **1 hour 10 minutes** (traffic dependent). ([ivisitkorea.com](https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai)) \n- **Fare:** Approximately **₩18,000** (~US$11–12). ([ivisitkorea.com](https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai)) \n- Buses depart every **15–20 minutes** from Terminal 1 and Terminal 2. ([ivisitkorea.com](https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai)) \n- Late-night services (e.g., N6703) are available if arriving after regular hours. ([ivisitkorea.com](https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai)) \n- This option is especially good if you have heavy luggage, since there's no need to transfer or navigate stairs. ([reddit.com](https://www.reddit.com/r/koreatravel/comments/1vulzhj/question_about_bussing_from_icn_to_gangnam/?utm_source=openai))\n\n**— Option B: Train + Subway (Budget-friendly)** \n- Take the **AREX (Airport Railroad Express)**—either express or all-stop—from Incheon Airport to **Seoul Station**. \n • **Express option:** ~43 minutes, fare ~₩9,500 ([jusofind.kr](https://jusofind.kr/en/guide/transport/incheon-airport-to-seoul-station?utm_source=openai)) \n • **All-stop option:** ~60–66 minutes, fare ~₩4,950 ([jusofind.kr](https://jusofind.kr/en/guide/transport/incheon-airport-to-seoul-station?utm_source=openai)) \n- At Seoul Station, transfer to the subway system (likely Line 4 or Line 2) and make your way to **Line 9**. From there, ride to **Sinnonhyeon Station** ([incheon.go.kr](https://www.incheon.go.kr/world/wd03050102?utm_source=openai)). \n- **Total cost:** Typically around **₩10,000–12,000**; **Total time:** 1 to 1.5 hours depending on transfers.\n\n**— Option C: Taxi or Rideshare (Fastest or if you prefer private transport)** \n- A **regular taxi** will take about **60–90 minutes**, depending on traffic, with an estimated fare between **₩55,000–75,000** ([rome2rio.com](https://www.rome2rio.com/s/Incheon-Airport-ICN/Sinnonhyeon?utm_source=openai)). \n- There are also **deluxe** and **international taxis** (multilingual, slightly more expensive) available ([english.seoul.go.kr](https://english.seoul.go.kr/service/entry/getting-to-seoul-from-incheon-airport/?utm_source=openai)). \n- Ideal if you’re arriving late, have multiple passengers, or require direct drop-off.\n\n**— Option D: New M6463 Metropolitan Express Bus (Emerging alternative)** \n- Launched in early 2026, Route **M6463** connects **Yeongjong/Eco City** through Incheon Airport Expressway to **Gangnam Station area** ([incheon.go.kr](https://www.incheon.go.kr/en/EN020401/3065014?utm_source=openai)). \n- While promising for future use, at this point the **Airport Limousine Bus (6009/6703)** remains the more established, easily accessible option.\n\n---\n\n**3. Suggested Route Summary**\n\n- If you prioritize simplicity, comfort, and minimal walking: \n **Airport → Route 6009/6703 bus → Down to Sinnonhyeon Station stop → Walk ~50 m to VIEW Plastic Surgery.**\n\n- If you're traveling light and want a cost-effective journey: \n **Airport → AREX to Seoul Station → Transfer via subway to Line 9 → Exit at Sinnonhyeon Station**.\n\n- For quickest, private, and direct service (especially late at night or with lots of luggage): \n Take a **Taxi or Rideshare** directly to the clinic.\n\n---\n\nPlease let me know your preferences—such as luggage, budget, or arrival time—and I can help refine these recommendations further!", "urls": ["https://origin.viewplasticsurgery.com/?page_id=8281&utm_source=openai", "https://origin.viewplasticsurgery.com/?page_id=8281&utm_source=openai", "https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai", "https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai", "https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai", "https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai", "https://www.ivisitkorea.com/best-way-from-incheon-airport-to-gangnam-station/?utm_source=openai", "https://www.reddit.com/r/koreatravel/comments/1vulzhj/question_about_bussing_from_icn_to_gangnam/?utm_source=openai", "https://jusofind.kr/en/guide/transport/incheon-airport-to-seoul-station?utm_source=openai", "https://jusofind.kr/en/guide/transport/incheon-airport-to-seoul-station?utm_source=openai", "https://www.incheon.go.kr/world/wd03050102?utm_source=openai", "https://www.rome2rio.com/s/Incheon-Airport-ICN/Sinnonhyeon?utm_source=openai", "https://english.seoul.go.kr/service/entry/getting-to-seoul-from-incheon-airport/?utm_source=openai", "https://www.incheon.go.kr/en/EN020401/3065014?utm_source=openai"], "measured_at": "2026-09-10T15:12:47", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": null} +{"id": "B-02", "cat": "B", "question": "Does VIEW Plastic Surgery offer airport pickup for international patients?", "engine": "openai", "answer": "VIEW Plastic Surgery, located in Gangnam, Seoul, explicitly offers airport pickup services for international patients through its International Patient Concierge Services. Here’s a detailed breakdown:\n\n• **Standard Concierge Service** \nVIEW provides airport **pick-up and drop-off services** as part of its standard offering to international patients—making arrival and departure smooth and stress-free. ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai))\n\n• **Premium/VIP Concierge Service** \nFor those opting for the Premium/VIP level, airport transfers are elevated with a **vehicle upgrade**, enhancing privacy and comfort during the ride to and from the clinic or hospital. ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai))\n\nAdditional support related to travel logistics includes hotel accommodation assistance, T-money transportation cards, multilingual interpretation, help with meals and shopping, in-hospital recovery support, and ongoing remote follow‑up after surgery. ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai))\n\n**Summary:** Yes—VIEW Plastic Surgery does offer airport pickup for international patients. If you choose their Standard Concierge package, you'll receive basic pickup/drop-off service. The Premium/VIP package includes an upgraded, more private vehicle.", "urls": ["https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai", "https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai", "https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai"], "measured_at": "2026-09-10T15:12:55", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "B-03", "cat": "B", "question": "What are VIEW Plastic Surgery's opening hours and can I book a consultation online from abroad?", "engine": "openai", "answer": "Here’s the most up‑to‑date information on VIEW Plastic Surgery’s operating hours and how you can book a consultation online from abroad:\n\nOperating Hours \nVIEW Plastic Surgery, located in Gangnam, Seoul, typically operates under the following schedule (all times in Korea Standard Time): \n- Monday through Thursday: 10:00 AM to 7:00 PM \n- Friday: 10:00 AM to 9:00 PM (extended hours) \n- Saturday: 10:00 AM to 5:00 PM \n- Sunday: Closed ([jp.viewplasticsurgery.com](https://jp.viewplasticsurgery.com/m/working_hours.html?utm_source=openai)) \n\nNote: One external resource lists slightly different hours—Monday to Thursday until 6:30 PM, Friday until 9:00 PM, and Saturday until 4:30 PM—but that may be less current than the official clinic sources ([stmstyle.com](https://www.stmstyle.com/en/hospital/view-plastic-surgery/?utm_source=openai)). Based on more recent and official information, the 7 PM weekday closing appears more reliable.\n\nBooking a Consultation Online from Abroad \nYes, you can book an online consultation with VIEW Plastic Surgery from overseas. They provide a structured online consultation process via their website, where you complete a detailed form (including personal information, medical history, desired procedures, and optional photos) and then receive a one-on-one expert online consultation ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/consultation/?utm_source=openai)).\n\nInformation from international patients and community channels attests to this, noting that: \n- There’s no charge for the initial consultation. \n- They support multiple languages and have staff who cater specifically to international patients ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/?utm_source=openai)). \n- VIEW Plastic Surgery confirms through Reddit posts that you can indeed book an online consultation via their website or by messaging on their English WhatsApp number ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/?utm_source=openai)).\n\nSummary in Table Form\n\n| Question | Answer |\n|----------------------------------|------------------------------------------------------------------------|\n| Opening Hours | Mon–Thu: 10:00–19:00, Fri: 10:00–21:00, Sat: 10:00–17:00, Sun: Closed |\n| Available for foreign patients? | Yes – online consultation form on website; multilingual support, no fee |\n\nIf you’d like guidance on how to fill out the consultation form, or what to expect next after submitting it, feel free to ask!", "urls": ["https://jp.viewplasticsurgery.com/m/working_hours.html?utm_source=openai", "https://www.stmstyle.com/en/hospital/view-plastic-surgery/?utm_source=openai", "https://www.viewplasticsurgery.com/consultation/?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/?utm_source=openai"], "measured_at": "2026-09-10T15:13:03", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "B-04", "cat": "B", "question": "Can I contact VIEW Plastic Surgery via WhatsApp or LINE for a consultation?", "engine": "openai", "answer": "You can indeed contact **VIEW Plastic Surgery** via **WhatsApp** and **LINE** for a consultation:\n\n- According to VIEW Plastic Surgery’s official X (formerly Twitter) account, they provide the following direct messaging options:\n - WhatsApp: **+82‑10‑2103‑7174**\n - LINE ID: **viewinquiry** ([x.com](https://x.com/viewhospital?lang=en&utm_source=openai))\n\n- Additionally, an English-language directory listing confirms that VIEW supports consultations via WhatsApp, LINE, as well as KakaoTalk, email, and phone ([10mag.com](https://10mag.com/directory/health-beauty/health-beauty/seoul/view-plastic-surgery-gangnam-gu-seoul/?utm_source=openai)).\n\nThese channels are offered as part of their online consultation process, which you can also initiate via a submission form on their website ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/consultation/?utm_source=openai)).\n\n---\n\n### Tips for Messaging VIEW via WhatsApp or LINE\n\nFrom user experiences shared on platforms like Reddit:\n\n- It's common for international plastic surgery clinics in South Korea to conduct **initial consultations over WhatsApp**, where they typically ask for background information and photos from various angles ([reddit.com](https://www.reddit.com/r/PlasticSurgery/comments/1iu2pnt?utm_source=openai)).\n- Clients are often advised to introduce themselves clearly—mentioning age, nationality, desired procedure, medical history—and attach recent, unfiltered photos as part of the inquiry ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1uarazz/how_to_message_clinics_on_whatsapp_as_a_foreigner/?utm_source=openai)).\n- After an initial chat-based consultation, most clinics will require an **in-person follow-up** before scheduling surgery or confirming details ([reddit.com](https://www.reddit.com/r/KoreaPlasticSurgery/comments/1s7gt9s/how_to_go_about_securing_your_surgery_date_when/?utm_source=openai)).\n\n---\n\n### Summary Table\n\n| Contact Method | Details |\n|----------------|---------|\n| WhatsApp | +82‑10‑2103‑7174 |\n| LINE | ID: viewinquiry |\n\n---\n\n### What You Can Do Next\n\n1. **Choose your preferred messaging method** (WhatsApp or LINE).\n2. **Send a message** introducing yourself, including:\n - Your name, age, nationality, gender\n - The procedure you’re interested in\n - Any relevant medical or surgical history\n - Photos (clear, within the last 3 months, showing the target area from multiple angles)\n3. **Wait for their reply**—since multilingual support is likely available, especially for international clients.\n4. If requested, **arrange an in-person consultation** at their Gangnam, Seoul location before moving forward with any surgery.\n\nLet me know if you'd like help drafting your initial message or handling any following steps!", "urls": ["https://x.com/viewhospital?lang=en&utm_source=openai", "https://10mag.com/directory/health-beauty/health-beauty/seoul/view-plastic-surgery-gangnam-gu-seoul/?utm_source=openai", "https://www.viewplasticsurgery.com/consultation/?utm_source=openai", "https://www.reddit.com/r/PlasticSurgery/comments/1iu2pnt?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1uarazz/how_to_message_clinics_on_whatsapp_as_a_foreigner/?utm_source=openai", "https://www.reddit.com/r/KoreaPlasticSurgery/comments/1s7gt9s/how_to_go_about_securing_your_surgery_date_when/?utm_source=openai"], "measured_at": "2026-09-10T15:13:11", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": null} +{"id": "B-05", "cat": "B", "question": "Does VIEW Plastic Surgery provide accommodation or hotel partnerships for foreign patients?", "engine": "openai", "answer": "Here’s what I found regarding VIEW Plastic Surgery’s accommodation and hotel partnership offerings for foreign patients:\n\n• **In-hospital, hotel-class VIP accommodations available** \n VIEW Plastic Surgery provides luxurious, hotel-quality VIP rooms inside the clinic—specifically located on the 7th floor—which allow patients to recover in comfort without leaving the facility ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/virtual-tour.html?utm_source=openai)).\n\n• **Partnerships with nearby hotels** \n The clinic also partners with several hotels within a 10-minute walking distance, offering convenient lodging options tailored to patients’ needs ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai)).\n\n• **Assistance with bookings and discounted rates** \n A dedicated international patient concierge helps with hotel reservations—either arranging free or discounted accommodations at partner hotels. This service is part of their broader international patient support system ([medicaltour.gangnam.go.kr](https://medicaltour.gangnam.go.kr/bbs/coordinator_en/view.do?msg_seq=5&utm_source=openai)).\n\n• **Real patient experiences confirm support** \n A patient shared on a public forum that VIEW arranged airport pickup and helped book a partner hotel, easing logistical concerns during recovery ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1qcbe4z/tomorrow_im_planning_to_get_eye_surgery_at_a/?utm_source=openai)).\n\nIn summary: **Yes**, VIEW Plastic Surgery does offer accommodation support for foreign patients—both through **on-site, hotel-style VIP rooms** and **agreements with nearby hotels**, complete with concierge assistance for bookings. Let me know if you'd like details on costs, booking procedures, or availability.", "urls": ["https://www.viewplasticsurgery.com/Introduction/virtual-tour.html?utm_source=openai", "https://www.viewplasticsurgery.com/Introduction/concierge-services.html?utm_source=openai", "https://medicaltour.gangnam.go.kr/bbs/coordinator_en/view.do?msg_seq=5&utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1qcbe4z/tomorrow_im_planning_to_get_eye_surgery_at_a/?utm_source=openai"], "measured_at": "2026-09-10T15:13:19", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "B-06", "cat": "B", "question": "How long should I stay in Seoul after plastic surgery before flying home?", "engine": "openai", "answer": "The recommended duration for staying in Seoul after plastic surgery varies depending on the type of procedure and individual recovery rates. However, a general guideline is:\n\n1. **Minor Procedures (e.g., eyelid surgery, nose reshaping):** 5 to 7 days.\n2. **More Invasive Procedures (e.g., facelift, breast augmentation):** 10 to 14 days.\n\nThese time frames allow for initial healing and follow-up appointments. Always consult with your surgeon for personalized advice based on your specific procedure and health condition.", "urls": [], "measured_at": "2026-09-10T15:13:23", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "B-07", "cat": "B", "question": "Do I need a medical visa for plastic surgery in Korea as a tourist?", "engine": "openai", "answer": "As a tourist, you generally do not need a separate medical visa for plastic surgery in South Korea if your stay is within the allowed duration of a tourist visa or visa-free entry. However, certain requirements and conditions might apply:\n\n1. **Stay Duration**: Ensure your stay does not exceed the period allowed for tourists from your country. This can vary depending on your nationality.\n\n2. **Documentation**: You may need to show documentation related to your medical procedure, such as appointment confirmation from the clinic or hospital.\n\n3. **Purpose of Visit**: If your primary reason for traveling is medical, it can be helpful to inform immigration officers at the point of entry.\n\n4. **Health Insurance**: Consider having travel insurance that covers medical procedures.\n\nFor specific requirements, check with the South Korean embassy or consulate in your country before traveling, as regulations can change.", "urls": [], "measured_at": "2026-09-10T15:13:29", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "B-08", "cat": "B", "question": "Which Gangnam plastic surgery clinics are closest to Sinnonhyeon Station?", "engine": "openai", "answer": "Here are several well-regarded plastic surgery clinics located closest to Sinnonhyeon Station in the Gangnam area. The distances and access details are current as of mid‑2026:\n\nJust steps from the station:\n\n- **JUST Plastic Surgery Clinic** — Located just a 1‑minute walk from Exit 7 of Sinnonhyeon Station, this clinic specializes in eyes, lifting, and double‑chin procedures.([rightme.kr](https://rightme.kr/en/clinics/just-plastic-surgery-clinic-1384400954/?utm_source=openai)) \n- **1 mm Plastic Surgery Clinic** — Approximately 102 meters from Exit 7 of Sinnonhyeon Station, this clinic focuses on meticulous eye surgeries (e.g., double eyelid and revision surgery).([rightme.kr](https://rightme.kr/en/clinics/1mm-plastic-surgery-clinic-5154300912/?utm_source=openai)) \n- **345 Plastic Surgery Clinic** — Situated about 134 meters from Exit 4 of Line 9 at Sinnonhyeon Station, it offers services like facial contouring (including double jaw surgery), breast procedures, fillers, and botox.([rightme.kr](https://rightme.kr/en/clinics/345-plastic-surgery-clinic-7440102105/?utm_source=openai)) \n- **Thank You Plastic Surgery Clinic** — Around 104 meters from Exit 6 of Sinnonhyeon Station, offering eye, nose, contour, and breast procedures with 3D‑customized designs and comprehensive aftercare.([rightme.kr](https://rightme.kr/en/clinics/thank-you-plastic-surgery-clinic-1954900743/?utm_source=openai)) \n- **BETWEEN Plastic Surgery** — Located near Exits 7 and 8 of Sinnonhyeon Station (Line 9 / Shinbundang Line), this clinic is known for natural beauty–fit rhinoplasty and eye surgery.([eng.btwps.com](https://eng.btwps.com/?utm_source=openai)) \n- **View Plastic Surgery** — About 92 meters from the station (roughly a 2‑minute walk), this clinic is part of a medical facility offering plastic surgery, general surgery, and dermatology.([medi-spec.com](https://medi-spec.com/en/h/byuseonghyeongoegwauiwon-gangnam-18026?utm_source=openai)) \n- **Noonopi Plastic Surgery** — Less than a 3‑minute walk from Exit 6 of Sinnonhyeon Station, located on the 5th floor of the Hanwell Building.([noonopiclinic.com](https://noonopiclinic.com/en/about/maps?utm_source=openai)) \n- **IK Plastic Surgery** — Approximately a 2‑minute walk from the station (Exits 7 or 8), located in the Yuhwa Building on Gangnam‑daero — known for convenient access and specialist eye surgery services.([en.ikplastic.com](https://en.ikplastic.com/?utm_source=openai)) \n\nAdditional mention from user reviews:\n\n- **Gowa Clinic** — Referenced informally in an August 2026 Reddit comment as being near Exit 9 of Sinnonhyeon Station. Not formally listed in clinic directories, but praised for its English‑speaking staff, doctor‑led consultation, and customized skin treatments.([reddit.com](https://www.reddit.com/r/KoreaPlasticSurgery/comments/1vn4tbe/looking_for_a_good_lifting_clinic_in_gangnam_with/?utm_source=openai)) \n\n— \n**Summary Table (by approximate distance from Sinnonhyeon Station):** \n- ~92 m – View Plastic Surgery \n- ~102 m – 1 mm Plastic Surgery Clinic \n- ~104 m – Thank You Plastic Surgery Clinic \n- ~134 m – 345 Plastic Surgery Clinic \n- ~<3 min walk – Noonopi Plastic Surgery \n- 2‑min walk – IK Plastic Surgery \n- 1‑min walk – JUST Plastic Surgery Clinic \n- Nearby Exits 7/8 – BETWEEN Plastic Surgery \n- Unlisted but near Exit 9 – Gowa Clinic \n\nIf you're targeting a specific procedure—such as eye surgery, facial contouring, rhinoplasty, or breast augmentation—let me know, and I can help narrow down the list further based on specialty, credentials, language support, or even user reviews and accessibility.", "urls": ["https://rightme.kr/en/clinics/just-plastic-surgery-clinic-1384400954/?utm_source=openai", "https://rightme.kr/en/clinics/1mm-plastic-surgery-clinic-5154300912/?utm_source=openai", "https://rightme.kr/en/clinics/345-plastic-surgery-clinic-7440102105/?utm_source=openai", "https://rightme.kr/en/clinics/thank-you-plastic-surgery-clinic-1954900743/?utm_source=openai", "https://eng.btwps.com/?utm_source=openai", "https://medi-spec.com/en/h/byuseonghyeongoegwauiwon-gangnam-18026?utm_source=openai", "https://noonopiclinic.com/en/about/maps?utm_source=openai", "https://en.ikplastic.com/?utm_source=openai", "https://www.reddit.com/r/KoreaPlasticSurgery/comments/1vn4tbe/looking_for_a_good_lifting_clinic_in_gangnam_with/?utm_source=openai"], "measured_at": "2026-09-10T15:13:39", "clinics": ["JUST Plastic Surgery Clinic", "1 mm Plastic Surgery Clinic", "345 Plastic Surgery Clinic", "Thank You Plastic Surgery Clinic", "BETWEEN Plastic Surgery", "VIEW Plastic Surgery", "Noonopi Plastic Surgery", "IK Plastic Surgery"], "view_mentioned": true, "view_rank": 6, "view_sentiment": "neutral"} +{"id": "C-01", "cat": "C", "question": "Best plastic surgery clinic in Seoul for foreigners", "engine": "openai", "answer": "Here’s an up-to-date and well-researched guide to some of the **best plastic surgery clinics in Seoul** for **foreigners**, with a focus on safety, language support, accreditation, and patient experience.\n\n---\n\n## Top Clinics for International Patients\n\n### JK Plastic Surgery Center (Apgujeong, Gangnam‑gu)\n- **Why it stands out**: JK is the **only clinic** in South Korea to have received **KAHF accreditation** (Korean Accreditation for Hospitals Serving Foreign Patients) from the Ministry of Health and Welfare—**four consecutive times as of early 2026**.([clinicseoul.net](https://www.clinicseoul.net/jk-plastic-surgery-korea/?utm_source=openai)) \n- **Key strengths**:\n - 0% medical accident record since opening in 1998([koreaexperience.com](https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai)) \n - Over 100,000 surgeries performed for patients from 110+ countries([clinicseoul.net](https://www.clinicseoul.net/jk-plastic-surgery-korea/?utm_source=openai)) \n - Comprehensive “one-stop service” including limousine airport pickup, partner hotels (like The Shilla), and recovery suites([koreaexperience.com](https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai)) \n- **Considerations**: Premium pricing—approximately **20–40% above the Gangnam average**([clinicseoul.net](https://www.clinicseoul.net/jk-plastic-surgery-korea/?utm_source=openai)). Mixed reviews occasionally round on coordinators.\n\n---\n\n### ID Hospital (Sinsa‑dong, Gangnam‑gu)\n- **Highlights**:\n - Known for **facial contouring** (such as V‑line surgery) and complex facial bone/orthognathic procedures([koreaexperience.com](https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai)).\n - A large-scale, specialized facility spanning multiple floors, with dedicated spaces for foreign patients and an on-site guesthouse to promote amenity-rich recovery([koreaexperience.com](https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai)).\n- Ideal if you're seeking advanced structural aesthetic surgery within a highly professional, anatomically-focused environment.\n\n---\n\n### Banobagi Plastic Surgery (Gangnam‑gu)\n- **Strengths**:\n - Recognized by the **Seoul Metropolitan City government** as a **medical tourism partner**([english.visitkorea.or.kr](https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792&utm_source=openai)).\n - Specialized in facial contouring, double jaw surgery, and more, also featured on makeover shows like *Let Me In*([english.visitkorea.or.kr](https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792&utm_source=openai)).\n - Holds a **병원 (hospital)** license—which under Korean law entails stricter staffing ratios and full anesthesiology coverage([seoulplasticsurgeon.com](https://www.seoulplasticsurgeon.com/blog/10-korean-plastic-surgery-clinics-foreign-patients-search-most?utm_source=openai)).\n- A robust, mainstream choice with high visibility and medical-tourism infrastructure.\n\n---\n\n### SAERO Plastic Surgery (Gangnam)\n- **Why it's notable** (as per Bookimed):\n - Ranked **#1 clinic for foreigners in Korea**, excelling in facial procedures with the benefit of **single-surgeon continuity**([us-uk.bookimed.com](https://us-uk.bookimed.com/article/plastic-surgery-in-korea/?utm_source=openai)).\n - Impressive 5.0/5 rating, with a consistent approach—great if you prefer to see the **same lead surgeon** throughout consultation and surgery([us-uk.bookimed.com](https://us-uk.bookimed.com/article/plastic-surgery-in-korea/?utm_source=openai)).\n\n---\n\n### Additional Noteworthy Clinics\n- **AB Plastic Surgery**: Modern, multilingual (English, Chinese, Japanese), large team, high patient reviews (RealSelf 4.9/5 from 127 reviews)([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n- **NANA Plastic Surgery Hospital**: Comprehensive language support (including Vietnamese, Indonesian), KSPRS-certified surgeons, RealSelf reviews (4.8/5 from 110 reviews), though some concerns noted in a complaint case from Feb 2026([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n- **SNUPS Clinic**: Board-certified surgeon, good English support, positive foreign-patient reports in early 2026([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n- **JW Plastic Surgery Center**: Multi-language coordinators, solid RealSelf score (4.8/5), recent positive overseas-patient feedback for rhinoplasty, V-line, facelift procedures([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n\n---\n\n## Important Considerations for Foreign Patients\n\n1. **KAHF Accreditation & Hospital Licensing** \n Clinics with **KAHF certification** and/or **병원** licensing (like JK, Banobagi) adhere to higher medical standards—particularly staffing, emergency preparedness, and legal oversight([seoulplasticsurgeon.com](https://www.seoulplasticsurgeon.com/blog/10-korean-plastic-surgery-clinics-foreign-patients-search-most?utm_source=openai)).\n\n2. **Language and Aftercare Support** \n English (and often Chinese, Japanese, Thai, etc.) support via interpreters and coordinators is essential—not only for consultations but also for follow-up and recovery planning.\n\n3. **Safety Infrastructure** \n Premier clinics increasingly offer amenities like CCTV in operating rooms (by law since late 2024), in-house anesthesiologists, and stronger safety protocols—JK leads in institutional safety([koreaexperience.com](https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai)).\n\n4. **Price Transparency** \n Expect **20–40% premium pricing** at high-end, internationally oriented clinics (e.g., JK). However, broader medical-tourism pricing trends (e.g., post–VAT refund abolition in 2026) mean even discounted outlets may now cost more than previously reported([wellmap.co](https://wellmap.co/blog/cosmetic-surgery-seoul-guide?utm_source=openai)).\n\n5. **User Feedback is Mixed** \n Many high-profile clinics benefit from strong marketing and SEO presence—not always translating to superior surgical outcomes([seoulplasticsurgeon.com](https://www.seoulplasticsurgeon.com/blog/10-korean-plastic-surgery-clinics-foreign-patients-search-most?utm_source=openai)). Reddit discussions often underscore variable experiences and challenge the notion that popular names equal the best results([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jy4mnt/comparing_plastic_surgery_consultations_in_seoul/?utm_source=openai)).\n\n---\n\n## Summary Table\n\n- **Safety & Accreditation Focus**: JK Plastic Surgery Center \n- **Complex Contouring & Infrastructure**: ID Hospital \n- **Holistic Medical-Hospital Experience**: Banobagi \n- **Personalized Single-Surgeon Service**: SAERO Plastic Surgery \n- **Modern Teams with Strong Reviews**: AB Plastic, NANA, JW, SNUPS \n\n---\n\n## Final Recommendations\n\n- Start by **defining your key priorities**—are you looking for maximum institutional safety, surgical specialization, budget-friendliness, or personalized care?\n- Confirm language support, interpretive services, and pricing transparency before committing.\n- Ask for surgeon credentials (board certification via KSPRS), verify surgical footage policies (like CCTV), and compare aftercare plans.\n- If uncertain, consider utilizing a **government-registered medical tourism concierge**, such as **Seoul Medical Insider**, which facilitates direct matching with reputable clinics and centralized English-speaking coordination([seoulmedicalinsider.com](https://www.seoulmedicalinsider.com/?utm_source=openai)).\n\nLet me know if you’d like help narrowing it down by procedure type, budget range, or any other specific preferences!", "urls": ["https://www.clinicseoul.net/jk-plastic-surgery-korea/?utm_source=openai", "https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai", "https://www.clinicseoul.net/jk-plastic-surgery-korea/?utm_source=openai", "https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai", "https://www.clinicseoul.net/jk-plastic-surgery-korea/?utm_source=openai", "https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai", "https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792&utm_source=openai", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792&utm_source=openai", "https://www.seoulplasticsurgeon.com/blog/10-korean-plastic-surgery-clinics-foreign-patients-search-most?utm_source=openai", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/?utm_source=openai", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://www.seoulplasticsurgeon.com/blog/10-korean-plastic-surgery-clinics-foreign-patients-search-most?utm_source=openai", "https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul?utm_source=openai", "https://wellmap.co/blog/cosmetic-surgery-seoul-guide?utm_source=openai", "https://www.seoulplasticsurgeon.com/blog/10-korean-plastic-surgery-clinics-foreign-patients-search-most?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jy4mnt/comparing_plastic_surgery_consultations_in_seoul/?utm_source=openai", "https://www.seoulmedicalinsider.com/?utm_source=openai"], "measured_at": "2026-09-10T15:13:52", "clinics": ["JK Plastic Surgery Center", "ID Hospital", "Banobagi Plastic Surgery", "SAERO Plastic Surgery", "AB Plastic Surgery", "NANA Plastic Surgery Hospital", "SNUPS Clinic", "JW Plastic Surgery Center"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "C-02", "cat": "C", "question": "Best breast augmentation clinic in Korea for international patients", "engine": "openai", "answer": "Here’s a carefully curated guide to some of the best breast augmentation clinics in South Korea—particularly Seoul—that are well-suited for international patients. All options have strong credentials, language support, and positive feedback from overseas clients. Where available, I’ve included accreditation and specialization details to help you decide with confidence.\n\n---\n\n## Top-Rated Clinics for International Patients\n\n### 1. SAERO Plastic Surgery (Seoul)\n- Ranked #1 among Bookimed’s top 25 breast augmentation clinics in Seoul in 2026 ([us-uk.bookimed.com](https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/city%3Dseoul/procedure%3Dbreast-augmentation/best/?utm_source=openai)).\n- Led by Dr. Park Young Kyu (25+ years of experience).\n- Specializes in personalized plans combining fat transfer and implants (especially Motiva) with over 900 surgeries and 98% patient recommendation rate ([us-uk.bookimed.com](https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/city%3Dseoul/procedure%3Dbreast-augmentation/best/?utm_source=openai)).\n\n### 2. JW Plastic Surgery Center (Gangnam)\n- Consistently ranked Tier 1 (Score: 94/100) in Clinic Ranking Korea’s top 10 list ([clinicrankingkorea.com](https://clinicrankingkorea.com/clinic-ranking-korea-plastic-surgery-top-10/?utm_source=openai)).\n- Known particularly for breast augmentation and foreigner-friendliness.\n- Strong English-support infrastructure and transparent pricing ([clinicrankingkorea.com](https://clinicrankingkorea.com/clinic-ranking-korea-plastic-surgery-top-10/?utm_source=openai)).\n\n### 3. The Plus Plastic Surgery (Sinsa)\n- Tier 1 clinic (Score: 92/100) with a boutique style, high surgeon-to-patient ratio, and well-documented outcomes ([clinicrankingkorea.com](https://clinicrankingkorea.com/clinic-ranking-korea-plastic-surgery-top-10/?utm_source=openai)).\n- Featured by Medical Departures as a top clinic for breast augmentation, winner of “Global Patients' Choice” ([medicaldepartures.com](https://www.medicaldepartures.com/info/Breast-Augmentation/south-korea?utm_source=openai)).\n\n### 4. AB Plastic Surgery (Gangnam/Seocho)\n- Highly rated by international patients: 4.9/5 on RealSelf with 127 reviews ([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n- KAHF-accredited center with English, Japanese, and Chinese interpretation, supporting overseas consultations and ongoing care ([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n\n### 5. UNE Plastic Surgery (Gangnam)\n- Breast-specialty clinic where Dr. Kim Uigeon personally conducts consultations, surgeries, and follow-ups—no “ghost surgeon” concerns ([wuneprs.com](https://wuneprs.com/en/international/?utm_source=openai)).\n- Uses FDA-approved implants (Motiva, Mentor) with serial-numbered warranty cards; careful selection based on patient anatomy ([wuneprs.com](https://wuneprs.com/en/international/?utm_source=openai)).\n\n### 6. Global Plastic Surgery (Gangnam/Apgujeong)\n- A longstanding practice with 30 years' operation and leadership in Korean Society for Aesthetic Plastic Surgery ([medicaltravelkorea.com](https://medicaltravelkorea.com/en/magazine/167/Breast-Augmentation-Korea-Gangnam-Implant-Fat-Transfer-2026?utm_source=openai)).\n- Offers comprehensive breast augmentation and other cosmetic procedures, with multilingual support.\n\n### 7. Opera Plastic Surgery (Seocho)\n- Featured by Medical Travel Korea as a trusted Foreign Patient Attraction Institution, ensuring certified staff and transparent pricing ([medicaltravelkorea.com](https://medicaltravelkorea.com/en/magazine/167/Breast-Augmentation-Korea-Gangnam-Implant-Fat-Transfer-2026?utm_source=openai)).\n- Ideal for fat-transfer-only augmentation and emphasizing direct surgeon involvement (no ghost surgery) ([medicaltravelkorea.com](https://medicaltravelkorea.com/en/magazine/167/Breast-Augmentation-Korea-Gangnam-Implant-Fat-Transfer-2026?utm_source=openai)).\n\n### 8. SAERO & Allied Accredited Options\n- In addition to the above, several government-accredited centers also offer strong support and pricing transparency, such as JK Plastic Surgery Centre, Samsung Medical Center, and Asan Medical Center—with international patient support and formal pricing protocols ([my1health.com](https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea?utm_source=openai)).\n\n---\n\n## Quick Comparison Table\n\n(For readability—this is a textual table)\n\n- SAERO: #1 overall, Motiva & fat transfer, extremely high recommendation rate.\n- JW Plastic Surgery: Tier 1, known for breast augmentation; excellent foreign-patient infrastructure.\n- The Plus Plastic Surgery: Boutique, high outcome documentation, top award winner.\n- AB Plastic Surgery: KAHF-accredited, multilingual support, stellar reviews.\n- UNE Plastic Surgery: Breast-focused, ensures surgeon-operated process and implant traceability.\n- Global Plastic Surgery: Established clinic with leadership credentials and experience.\n- Opera Plastic Surgery: Fat-transfer specialist, certified foreign-patient institution.\n\n---\n\n## Factors to Consider When Choosing a Clinic\n\n1. **Accreditation & Patient Rights**\n - Look for Ministry of Health-approved Foreign Patient Attraction certifications or KAHF accreditation to ensure safety and transparency ([medicaltravelkorea.com](https://medicaltravelkorea.com/en/magazine/167/Breast-Augmentation-Korea-Gangnam-Implant-Fat-Transfer-2026?utm_source=openai)).\n\n2. **Surgeon Involvement (No Ghost Surgery)**\n - Critical for ensuring trust. Clinics like UNE and Opera guarantee that the surgeon you consult will also operate on you ([wuneprs.com](https://wuneprs.com/en/international/?utm_source=openai)).\n\n3. **Language and International Patient Support**\n - Choose clinics with strong English-speaking staff or interpreter services (e.g., JW, AB, UNE) ([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n\n4. **Procedure Types & Specializations**\n - Decide if you want traditional implants, fat transfer, or a combination. SAERO, The Plus, and Opera cover diverse techniques ([us-uk.bookimed.com](https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/city%3Dseoul/procedure%3Dbreast-augmentation/best/?utm_source=openai)).\n\n5. **Transparent Pricing & Aftercare**\n - Ask for detailed breakdowns—particularly with clinics that treat international patients under unified pricing (e.g., AB, JK, JW) ([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n\n6. **Reputation & Patient Reviews**\n - RealSelf and Bookimed, plus independent platforms and Reddit discussions, can provide personal insights and satisfaction trends ([realself.com](https://www.realself.com/find/South-Korea/Seoul/Breast-Augmentation?utm_source=openai)).\n\n---\n\n## Final Recommendations\n\n- **If you prioritize top-ranking results with a blend of lipotransfer and implants**: SAERO Plastic Surgery.\n- **If you want an internationally experienced clinic with strong infrastructure**: JW Plastic Surgery or AB Plastic Surgery.\n- **For those concerned about ghost surgeries and seeking surgeon continuity**: UNE Plastic Surgery or Opera.\n- **For boutique service with meticulous result documentation**: The Plus Plastic Surgery.\n\n---\n\nLet me know if you’d like help comparing quotes, arranging consultation schedules, or understanding visa/logistics support—especially as an international medical tourist.", "urls": ["https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/city%3Dseoul/procedure%3Dbreast-augmentation/best/?utm_source=openai", "https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/city%3Dseoul/procedure%3Dbreast-augmentation/best/?utm_source=openai", "https://clinicrankingkorea.com/clinic-ranking-korea-plastic-surgery-top-10/?utm_source=openai", "https://clinicrankingkorea.com/clinic-ranking-korea-plastic-surgery-top-10/?utm_source=openai", "https://clinicrankingkorea.com/clinic-ranking-korea-plastic-surgery-top-10/?utm_source=openai", "https://www.medicaldepartures.com/info/Breast-Augmentation/south-korea?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://wuneprs.com/en/international/?utm_source=openai", "https://wuneprs.com/en/international/?utm_source=openai", "https://medicaltravelkorea.com/en/magazine/167/Breast-Augmentation-Korea-Gangnam-Implant-Fat-Transfer-2026?utm_source=openai", "https://medicaltravelkorea.com/en/magazine/167/Breast-Augmentation-Korea-Gangnam-Implant-Fat-Transfer-2026?utm_source=openai", "https://medicaltravelkorea.com/en/magazine/167/Breast-Augmentation-Korea-Gangnam-Implant-Fat-Transfer-2026?utm_source=openai", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea?utm_source=openai", "https://medicaltravelkorea.com/en/magazine/167/Breast-Augmentation-Korea-Gangnam-Implant-Fat-Transfer-2026?utm_source=openai", "https://wuneprs.com/en/international/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/city%3Dseoul/procedure%3Dbreast-augmentation/best/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://www.realself.com/find/South-Korea/Seoul/Breast-Augmentation?utm_source=openai"], "measured_at": "2026-09-10T15:14:07", "clinics": ["SAERO Plastic Surgery", "JW Plastic Surgery Center", "The Plus Plastic Surgery", "AB Plastic Surgery", "UNE Plastic Surgery", "Global Plastic Surgery", "Opera Plastic Surgery", "JK Plastic Surgery Centre"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "C-03", "cat": "C", "question": "Top facial contouring and V-line surgery clinics in Gangnam", "engine": "openai", "answer": "Here are some of the top facial contouring and V‑line (jaw/chin/cheekbone) surgery clinics located in Seoul’s Gangnam district, based on comprehensive rankings, certifications, patient reviews, and service features (as of September 2026):\n\n1. **JK Plastic Surgery (Apgujeong, Gangnam)** \n - Established in 1998, JK is one of the longest-running facial contouring clinics in Gangnam. Their safety protocols are highly robust, including 24-hour operating room CCTV, uninterruptible power supply, emergency anesthesia medication (dantrolene), and more than 120 hospital safety/service evaluations. ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n - Led by Dr. Kwon Joo, an expert in both facial contouring and two-jaw surgery, making it a strong choice for complex or revision procedures. ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n\n2. **Banobagi Plastic Surgery (Gangnam)** \n - Founded in 2000, Banobagi is known for its full-time anesthesiologist team and advanced 3D‑CT surgical planning. Dr. Chang Hyun Oh and Dr. Jae Sang Ban lead the facial contouring team. ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n - Excellent multilingual coordination (1:1 support in 8+ languages), ideal for international patients seeking accessible communication and individualized care. ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n\n3. **View Plastic Surgery (Gangnam)** \n - Operating since 2005, View has received the 2018 Medical Asia Grand Prize for facial contouring and is recognized as an \"Excellent Institution\" by Korea’s Ministry of Justice, highlighting its strong support for international patients. ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n - Holds the highest number of verified reviews (39) on the MISOODA platform, reflecting extensive patient feedback. ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n - Specializes in facial bone contouring and V‑line procedures. ([topclinicseoul.com](https://topclinicseoul.com/top-vline-surgery-clinics-korea/?utm_source=openai)) \n\n4. **BRAUN Plastic Surgery (Gangnam)** \n - Since 2009, BRAUN has emphasized 3D‑CT–planned bone contouring, led by Dr. Tae‑Gyu Kim (15+ years of experience). ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n - Offers the widest language support among listed clinics (10 languages including Southeast Asian ones), which is especially beneficial for a diverse international clientele. ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n\n5. **GIRIN Plastic Surgery (Gangnam/Seocho)** \n - Notable for having the largest surgical team (30 doctors) on the MISOODA platform and led by Dr. Seung Ryong Lee (specialist in facial contouring since 2007). ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n - Certified by KIMA and open 365 days a year—ideal for patients needing scheduling flexibility or combined procedures. ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n - Known for specializing in facial bone contouring, including V‑line surgery. ([medtraveling.com](https://medtraveling.com/south-korea/face-contouring?utm_source=openai)) \n\n6. **345 Plastic Surgery (Gangnam)** \n - Located near Sinnonhyeon Station (116, Bongeunsa-ro, Gangnam-gu), 345 is managed by Dr. Park Jong‑lim (facial‑bone expert, 26 years’ experience, over 10,000 surgeries) and Dr. Han Gyu‑nam (soft‑tissue specialist, ~19 years). Combined, they report over 15,900 surgeries performed as of 2026. ([gangnamdrk.com](https://gangnamdrk.com/clinics/345-plastic-surgery?utm_source=openai)) \n - Offers comprehensive facial contouring services along with an in‑house dermatology department for recovery. ([gangnamdrk.com](https://gangnamdrk.com/clinics/345-plastic-surgery?utm_source=openai)) \n - Known for transparent and specific pricing—MISOODA collected real patient quotes ranging from ₩6.6M to ₩23.8M (2024–2026), helping prospective patients with budget clarity. ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)) \n\n7. **Ipche Plastic Surgery (Gangnam)** \n - Focused exclusively on facial‑bone reshaping (square jaw reduction, cheekbone reduction, genioplasty), including revisions for asymmetry. Recognition in April 2026 as a “GOLD TIER” clinic with a 4.3 rating underscores its specialization. ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/clinics/ipche-ps/?utm_source=openai)) \n\n8. **Other Notable Clinics Based on Public Reviews** \n - *Made Young Plastic Surgery Clinic* and *BT Plastic Surgery Clinic* have high review volumes in Naver and Kakao platforms, indicating strong local presence. ([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/gangnam-station-facial-bone?utm_source=openai)) \n - *21 Plastic Surgery Clinic* and *Want Plastic Surgery Clinic* achieve top ratings (Kakao 5, Google ~4.9–5), though fewer details are available on their V‑line offerings. ([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/gangnam-station-facial-bone?utm_source=openai)) \n\n9. **Verified Listings and Ratings from Gangnam Beauty Guide** \n - **345 Plastic Surgery** and **Banobagi Plastic Surgery** each have high Google ratings (~4.8), with hundreds to thousands of reviews. ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/clinics/?utm_source=openai)) \n - **View Plastic Surgery** appears prominently as well, noted for facial contouring among a broad list of high-rated Gangnam clinics. ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/clinics/?utm_source=openai)) \n - Other clinics with reputable ratings and facial‑contouring services include *Bondi Plastic Surgery* (~4.5) and *The Face Dental Clinic* (~4.7), among many others. ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/clinics/?utm_source=openai)) \n\nRecommendations Recap: \n- For **longstanding experience and documented safety protocols**: JK Plastic Surgery. \n- For **advanced planning and strong international support**: Banobagi or View. \n- For **cutting-edge 3D bone contouring and Southeast Asian language support**: BRAUN. \n- For **flexible scheduling and large surgical teams (e.g., multiple combined procedures)**: GIRIN. \n- For **transparent pricing and expert combined bone and soft-tissue expertise**: 345 Plastic Surgery. \n- For **revision-focused facial-bone specialists**: Ipche Plastic Surgery. \n- For more cost-effective or high-volume clinics with strong local reviews: Made Young or BT, or top-rated boutique clinics like 21 and Want. \n\nIf you’d like help comparing specific aspects—such as pricing, availability, surgeon portfolios, or international patient coordination—feel free to ask!", "urls": ["https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://topclinicseoul.com/top-vline-surgery-clinics-korea/?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://medtraveling.com/south-korea/face-contouring?utm_source=openai", "https://gangnamdrk.com/clinics/345-plastic-surgery?utm_source=openai", "https://gangnamdrk.com/clinics/345-plastic-surgery?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://gangnambeautyguide.com/en/clinics/ipche-ps/?utm_source=openai", "https://www.plasticsurgeryko.com/en/gangnam-station-facial-bone?utm_source=openai", "https://www.plasticsurgeryko.com/en/gangnam-station-facial-bone?utm_source=openai", "https://gangnambeautyguide.com/en/clinics/?utm_source=openai", "https://gangnambeautyguide.com/en/clinics/?utm_source=openai", "https://gangnambeautyguide.com/en/clinics/?utm_source=openai"], "measured_at": "2026-09-10T15:14:22", "clinics": ["JK Plastic Surgery", "Banobagi Plastic Surgery", "VIEW Plastic Surgery", "BRAUN Plastic Surgery", "GIRIN Plastic Surgery", "345 Plastic Surgery", "Ipche Plastic Surgery", "Made Young Plastic Surgery Clinic"], "view_mentioned": true, "view_rank": 3, "view_sentiment": "positive"} +{"id": "C-04", "cat": "C", "question": "Best rhinoplasty surgeon in Seoul for foreigners", "engine": "openai", "answer": "Here are several highly regarded rhinoplasty clinics and surgeons in Seoul, especially noted for their foreign-patient support and strong outcomes. I’ve organized them by reputation, foreign-language assistance, structural credibility, and patient reviews to help you make an informed decision:\n\n---\n\n## Clinic & Surgeon Highlights\n\n### 1. **AB Plastic Surgery (Gangnam / Seocho-gu)**\n- RealSelf lists a rating of **4.9/5** from **127 international patient reviews**, with a detailed surgery report as recent as February 2026 ([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n- Provides full foreign-patient support: English, Japanese, Chinese interpretation, plus WhatsApp communication, consultation, travel planning, and follow-up ([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n\n### 2. **ONYX Plastic Surgery (Gangnam)**\n- Featured in a recent 2026 guide as highly English‑friendly. Known for handling complex rhinoplasty types—revision, male, Asian-specific—and emphasizing structural aesthetics over trend-driven styles ([gangnamwomenshealth.com](https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-rhinoplasty-clinics-in-seoul?utm_source=openai)).\n\n### 3. **WOOA Plastic Surgery & Skin Clinic (Gangnam)**\n- Often top-rated among foreign‑friendly clinics. SeoulVera lists it with a **4.7** rating and notes it’s HIRA‑verified with 224 real reviews ([seoulvera.com](https://www.seoulvera.com/zh/rhinoplasty?utm_source=openai)).\n\n### 4. **Banobagi Plastic Surgery**\n- Among clinics recognized by a structural trust registry, with a high score **86.8** and confirmed foreign-patient readiness ([koreabeautyclinicrating.com](https://koreabeautyclinicrating.com/rhinoplasty/?utm_source=openai)).\n- Also featured on SeoulVera’s list as foreigner‑friendly and HIRA‑verified, with many real reviews ([seoulvera.com](https://www.seoulvera.com/zh/rhinoplasty?utm_source=openai)).\n\n### 5. **Girin Plastic Surgery, Onlif Plastic Surgery, Sketch Plastic Surgery, View Plastic Surgery**\n- These appear in Medical Tourism Chat’s 2026 listings with ratings around **4.9**, indicating strong reputations among international patients ([medicaltourismchat.com](https://medicaltourismchat.com/providers/south-korea/rhinoplasty?utm_source=openai)).\n- Sketch Plastic Surgery is also highlighted in the Gangnam Beauty Guide editorial picks for rhinoplasty & revision work, with ~19,391 Google reviews and a 4.7 rating ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/?utm_source=openai)).\n- View Plastic Surgery also appears on Medical Tourism Chat with a 4.9 rating ([medicaltourismchat.com](https://medicaltourismchat.com/providers/south-korea/rhinoplasty?utm_source=openai)).\n\n### 6. **JK Plastic Surgery and ID Hospital**\n- Ranked highest (JK, 92.2; ID Hospital, 91.4) in a structural verification registry for foreign‑patient readiness ([koreabeautyclinicrating.com](https://koreabeautyclinicrating.com/rhinoplasty/?utm_source=openai)).\n\n### 7. **Deesse Plastic Surgery (Dr. Jin Hyung Kim)**\n- Dr. Jin Hyung Kim is the Chief Director and lead rhinoplasty surgeon. Deesse welcomes international patients seeking high-quality nose surgery in Korea ([deesseclinic.com](https://www.deesseclinic.com/specialties/nose-surgery?utm_source=openai)).\n\n### 8. **Dr. Myung Ju Lee**\n- Recognized globally; listed among the “10 Best Rhinoplasty Surgeons in the World 2026.” Known for autologous nose surgeries and high prestige with international clientele ([drsamrizk.com](https://www.drsamrizk.com/wp-content/uploads/2026/04/bignewsnetwork-10best-rhinoplasty-surgeons-in-the-world2026.pdf?utm_source=openai)).\n\n---\n\n## Summary Table (Concise Overview)\n\n• **AB Plastic Surgery** – Top-rated among international patients; excellent support services \n• **ONYX Plastic Surgery** – Ideal for complex, structured rhinoplasty cases \n• **WOOA Plastic Surgery** – High review count; widely foreigner‑friendly \n• **Banobagi Plastic Surgery** – Trust-certified, strong foreign‑patient reputation \n• **Sketch / Girin / Onlif / View** – High ratings; strong visibility in medical tourism listings \n• **JK Plastic Surgery / ID Hospital** – Structurally verified for foreign-patient readiness \n• **Deesse (Dr. Kim)** – Lead surgeon well regarded for rhinoplasty; global clientele \n• **Dr. Myung Ju Lee** – Internationally acclaimed rhinoplasty expert\n\n---\n\n## Factors When Choosing\n\n1. **Foreign‑patient services** \n Clinics like AB, ONYX, WOOA, and Banobagi offer interpreters, WhatsApp support, consultation, travel assistance—key for seamless care ([kclinichelp.com](https://kclinichelp.com/?utm_source=openai)).\n\n2. **Credibility & Structural Proof** \n Regulatory or trust registry scores (e.g., JK, ID, Banobagi) give insight into shared transparency and oversight ([koreabeautyclinicrating.com](https://koreabeautyclinicrating.com/rhinoplasty/?utm_source=openai)).\n\n3. **Surgeon’s expertise & procedural complexity** \n Dr. Myung Ju Lee (world-recognized), ONYX (complex case strength), and Deesse (dedicated rhinoplasty lead) stand out ([deesseclinic.com](https://www.deesseclinic.com/specialties/nose-surgery?utm_source=openai)).\n\n4. **Reviews & reputation** \n Clinics like Sketch Plastic Surgery (19k reviews), WOOA (HIRA verified, 224 reviews), and AB (127 int’l reviews) offer social proof ([seoulvera.com](https://www.seoulvera.com/zh/rhinoplasty?utm_source=openai)).\n\n---\n\n## Recommendations\n\n- If this is your **first rhinoplasty** and you prioritize foreign patient care, **AB Plastic Surgery** and **WOOA** are excellent starting points.\n- For **complex or revision surgery**, consider **ONYX Plastic Surgery** or **Dr. Myung Ju Lee**’s clinic (if accessible to international clients).\n- If having a **highly verified clinic** is important, **JK Plastic Surgery**, **ID Hospital**, and **Banobagi** are structurally prestigious.\n- For a **renowned surgeon** specializing in rhinoplasty, **Deesse (Dr. Jin Hyung Kim)** and **Dr. Myung Ju Lee** are top tier.\n\n---\n\n## Next Steps\n\n- Reach out for English-language consultations—many clinics offer WhatsApp or email contact.\n- Ask to review before/after photos of past foreign patients with similar nose goals to yours.\n- Confirm what type of procedure suits you (open vs. closed rhinoplasty, cartilage use, ethnic/natural style, etc.).\n- If possible, arrange a teleconsultation to assess communication and surgeon rapport before planning travel.\n\nSeoul is a world-leading destination for rhinoplasty. With the array of highly reputable surgeons and clinics, you’re positioned to find a provider who matches your aesthetic goals, procedural complexity needs, and comfort with communication. Let me know if you'd like direct contact info or other specific guidance!", "urls": ["https://kclinichelp.com/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-rhinoplasty-clinics-in-seoul?utm_source=openai", "https://www.seoulvera.com/zh/rhinoplasty?utm_source=openai", "https://koreabeautyclinicrating.com/rhinoplasty/?utm_source=openai", "https://www.seoulvera.com/zh/rhinoplasty?utm_source=openai", "https://medicaltourismchat.com/providers/south-korea/rhinoplasty?utm_source=openai", "https://gangnambeautyguide.com/en/?utm_source=openai", "https://medicaltourismchat.com/providers/south-korea/rhinoplasty?utm_source=openai", "https://koreabeautyclinicrating.com/rhinoplasty/?utm_source=openai", "https://www.deesseclinic.com/specialties/nose-surgery?utm_source=openai", "https://www.drsamrizk.com/wp-content/uploads/2026/04/bignewsnetwork-10best-rhinoplasty-surgeons-in-the-world2026.pdf?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://koreabeautyclinicrating.com/rhinoplasty/?utm_source=openai", "https://www.deesseclinic.com/specialties/nose-surgery?utm_source=openai", "https://www.seoulvera.com/zh/rhinoplasty?utm_source=openai"], "measured_at": "2026-09-10T15:14:38", "clinics": ["AB Plastic Surgery", "ONYX Plastic Surgery", "WOOA Plastic Surgery & Skin Clinic", "Banobagi Plastic Surgery", "Girin Plastic Surgery", "Onlif Plastic Surgery", "Sketch Plastic Surgery", "VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 7, "view_sentiment": "positive"} +{"id": "C-05", "cat": "C", "question": "Best double jaw surgery clinic in Korea", "engine": "openai", "answer": "Here are some of the most highly recommended clinics in South Korea—particularly in Seoul—for double‑jaw (two‑jaw or orthognathic) surgery, based on recent expert rankings, review analyses, and clinic comparison data:\n\n---\n\n## Top Plastic Surgery Clinics (Plastic Surgery–Focused)\n\n1. **TJ Plastic Surgery**\n - Rating: 4.9★ with 700+ reviews \n - Focus: Facial bone surgery & double jaw alignment \n - Price range: approx. USD $18,000–$30,000 \n - Notable surgeon: Dr. Tack‑Jin Chang (19+ years experience, 8,500+ procedures) ([jawsurgerykorea.com](https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai))\n\n2. **Sinsang Plastic and Reconstructive Surgery**\n - Rating: 4.8★ with 420+ reviews \n - Specializes in reconstructive jaw and asymmetry correction \n - Price: approx. USD $19,000–$31,000 \n - Lead Surgeon: Dr. Young Jae Lee (17 years, 6,500+ procedures) ([jawsurgerykorea.com](https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai))\n\n3. **Brown Eye Medical Clinic**\n - Rating: 4.7★ with 390+ reviews \n - Focus on facial harmony and contour planning \n - Price range: approximately USD $17,000–$28,000 \n - Surgeon: Dr. Hansen Lee (15 years, 5,000+ procedures) ([jawsurgerykorea.com](https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai))\n\n4. **Hannaeve Plastic Surgery**\n - Rating: 4.8★ with 360+ reviews \n - Specialized in contouring and profile balance \n - Price range: $18,000–$29,000 \n - Surgeon: Dr. Hyeong‑bin Son (16 years, 5,500+ procedures) ([jawsurgerykorea.com](https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai))\n\n5. **SoonPlus Plastic Surgery**\n - Rating: 4.8★ with 340+ reviews \n - Specializes in bone contouring and facial proportions \n - Price: $18,500–$30,500 \n - Surgeon: Dr. Soon‑Dong Kim (18 years, 7,000+ procedures) ([jawsurgerykorea.com](https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai))\n\n---\n\n## Clinics with Integrated Jaw Surgery and Reconstruction\n\n- **Severance Hospital**\n - JCI‑accredited; part of Yonsei University health system \n - Procedures cost around USD $20,000–$28,000 \n - Recognized for orthognathic surgery expertise ([us-uk.bookimed.com](https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai))\n\n- **Seoul National University Hospital (SNUH)**\n - Performs over 500 orthognathic surgeries annually \n - Uses advanced 3D‑imaging and computer‑assisted planning \n - Costs typically USD $14,000–$17,400 \n - JCI‑accredited and globally recognized ([us-uk.bookimed.com](https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai))\n\n- **Asan Medical Center**\n - Ranked among South Korea’s top university hospitals \n - ISO‑ and Korean Institute for Healthcare Accreditation accredited ([us-uk.bookimed.com](https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai))\n\n- **Chung‑Ang University Hospital**\n - Offers affordable, high‑quality orthognathic surgery \n - English‑speaking staff available for international patients ([us-uk.bookimed.com](https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai))\n\n---\n\n## Clinics with High Review Volumes and Strong Patient Feedback\n\n- **Face Line Plastic Surgery Clinic**\n - Nearly 1,000 aggregated reviews across platforms (Naver, Google, Kakao) \n - Stable ratings around 4.6 \n - Frequent mentions of jaw surgery in patient reviews \n - Good accessibility in Apgujeong with cone‑beam CT available ([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/seoul-double-jaw?utm_source=openai))\n\n- **Irumi Plastic Surgery Clinic**\n - 438 reviews, 5.0 Google rating \n - Two board‑certified specialists and cone‑beam CT on site \n - Convenient location near Sinsa Station ([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/seoul-double-jaw?utm_source=openai))\n\n- **Glam Plastic Surgery Clinic**\n - Strong mentions of double jaw surgeries in reviews \n - High Google rating (4.8) and accessible location near Sinsa \n - Equipped with cone‑beam CT ([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/seoul-double-jaw?utm_source=openai))\n\n---\n\n## Dental/Oral & Maxillofacial Surgery Clinics for Two‑Jaw Coordination \n\nThese clinics offer integrated management—with orthodontics, anesthesia, and facial bone surgery all coordinated:\n\n- **Seoul Face 21 Dental Hospital**\n - Excellent ratings: 4.9 on Google, 299 Naver reviews \n - Features oral/maxillofacial surgeons, orthodontics, and anesthesiology specialists \n - Very close to Gangnam Station (27 m distance) ([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/gangnam-station-double-jaw?utm_source=openai))\n\n- **Max Oral and Maxillofacial Surgery Dental Clinic**\n - Noted for precise and kind explanations during consultations \n - Specialized approach to two‑jaw surgery ([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/gangnam-station-double-jaw?utm_source=openai))\n\n---\n\n## Other Notable Clinics (Popular in Media)\n\n- **Seoul Cheil Plastic Surgery Clinic** \n - Often cited as a top choice for orthognathic surgery, offering both functional and aesthetic correction ([gangnam.dentist](https://www.gangnam.dentist/blog/orthognathic-surgery-korea?utm_source=openai))\n\n- **D.A Plastic Surgery Clinic** \n - Located near Gangnam Station; highly accessible \n - Offers comprehensive contouring and “Smile Triple Jaw Surgery” ([koreaclinicguide.com](https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea?utm_source=openai))\n\n- **Banobagi Plastic Surgery** \n - Large multi-floor setup with facial contouring expertise \n - Known for custom, conservative treatment plans ([koreaclinicguide.com](https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea?utm_source=openai))\n\n- **ID Hospital Korea** \n - Renowned for orthognathic surgery and safety-focused care \n - Structured post-op programs tailored per patient ([koreaclinicguide.com](https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea?utm_source=openai))\n\n---\n\n## Summary Table\n\nNo markdown tables due to format, but here’s a quick structured breakdown:\n\n- Most **review-driven and plastic-surgery focused**: TJ, Sinsang, Brown Eye, Hannaeve, SoonPlus.\n- Best-known **academic/university hospital options**: SNUH, Severance, Asan, Chung-Ang.\n- High **review volume and aesthetics**: Face Line, Irumi, Glam.\n- Integrated **OMS + orthodontics coordination**: Seoul Face 21, Max Oral Clinic.\n- Additional **media/popular picks**: Seoul Cheil, D.A, Banobagi, ID Hospital.\n\n---\n\n### Choosing the Right Clinic: What to Consider\n\n1. **Surgical Needs**: Complex structural issues may benefit from university hospital resources and research-backed protocols (SNUH, Severance, Asan). ([us-uk.bookimed.com](https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai))\n\n2. **Experience & Specialization**: Clinics like TJ Plastic Surgery and Sinsang have surgeons with extensive double‑jaw experience and strong reputations. ([jawsurgerykorea.com](https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai))\n\n3. **Patient Feedback & Trust**: High review volumes and positive feedback (Face Line, Irumi) suggest consistency in outcomes and patient care. ([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/seoul-double-jaw?utm_source=openai))\n\n4. **Comprehensive Treatment Model**: Clinics such as Seoul Face 21 offer coordinated orthodontic and surgical care under one roof. ([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/gangnam-station-double-jaw?utm_source=openai))\n\n5. **International Patient Support**: Many clinics provide translation services, international coordinators, VAT handling, and airport transfers (e.g., ID Hospital, Banobagi). ([koreaclinicguide.com](https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea?utm_source=openai))\n\n---\n\n### Final Recommendations\n\n- For academic-grade reliability and advanced technology → **Seoul National University Hospital** or **Severance Hospital**.\n- For aesthetic contouring with strong client reviews → **Face Line**, **Irumi**, **Glam**, **TJ Plastic Surgery**.\n- For an integrated surgical and orthodontic experience → **Seoul Face 21 Dental Hospital**.\n- For accessibility, custom planning, and media-backed reputation → **Seoul Cheil**, **ID Hospital**, **Banobagi Plastic Surgery**.\n\n---\n\nBefore proceeding, it's essential to schedule consultations (many offer virtual or English-speaking support), compare treatment plans, review credentials and patient before-and-after cases, and consider cost, after-care, and follow-up protocols.\n\nLet me know if you'd like help narrowing it down based on your medical needs, budget, or location preferences!", "urls": ["https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai", "https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai", "https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai", "https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai", "https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai", "https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai", "https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai", "https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai", "https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai", "https://www.plasticsurgeryko.com/en/seoul-double-jaw?utm_source=openai", "https://www.plasticsurgeryko.com/en/seoul-double-jaw?utm_source=openai", "https://www.plasticsurgeryko.com/en/seoul-double-jaw?utm_source=openai", "https://www.plasticsurgeryko.com/en/gangnam-station-double-jaw?utm_source=openai", "https://www.plasticsurgeryko.com/en/gangnam-station-double-jaw?utm_source=openai", "https://www.gangnam.dentist/blog/orthognathic-surgery-korea?utm_source=openai", "https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea?utm_source=openai", "https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea?utm_source=openai", "https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea?utm_source=openai", "https://us-uk.bookimed.com/clinics/country%3Drepublic-of-korea/procedure%3Dorthognathic-surgery/best/?utm_source=openai", "https://www.jawsurgerykorea.com/specialties/double-jaw-alignment?utm_source=openai", "https://www.plasticsurgeryko.com/en/seoul-double-jaw?utm_source=openai", "https://www.plasticsurgeryko.com/en/gangnam-station-double-jaw?utm_source=openai", "https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea?utm_source=openai"], "measured_at": "2026-09-10T15:14:51", "clinics": ["TJ Plastic Surgery", "Sinsang Plastic and Reconstructive Surgery", "Brown Eye Medical Clinic", "Hannaeve Plastic Surgery", "SoonPlus Plastic Surgery", "Severance Hospital", "Seoul National University Hospital (SNUH)", "Asan Medical Center"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "C-06", "cat": "C", "question": "Top 5 plastic surgery clinics in Gangnam, Seoul", "engine": "openai", "answer": "Here are five of the most highly regarded plastic surgery clinics in Gangnam, Seoul, based on thorough review volume, ratings, and transparency in registration. All information is current as of early September 2026:\n\n1. 4Ever Plastic Surgery \n – Located at 2F, 157 Dosan‑daero, Gangnam‑gu, Seoul. \n – Boasts approximately 14,650 reviews with a strong average rating of 4.6.([gangnambeautyguide.com](https://gangnambeautyguide.com/en/?utm_source=openai)) \n\n2. DA Plastic Surgery \n – Located at 3F, 125 Teheran‑ro, Gangnam‑gu, Seoul. \n – Holds around 13,396 reviews with an average rating of 4.7.([gangnambeautyguide.com](https://gangnambeautyguide.com/en/?utm_source=openai)) \n\n3. ARC Plastic Surgery \n – Though situated in neighboring Seocho‑gu (still part of the broader Gangnam area), it’s frequently highlighted for its reputation. \n – Located at 368 Sapyeong‑daero, Seocho‑gu, with approximately 12,576 reviews and a rating of 4.7.([gangnambeautyguide.com](https://gangnambeautyguide.com/en/?utm_source=openai)) \n\n4. Noselab Clinic \n – Situated at 3F, 556 Gangnam‑daero, Gangnam‑gu. \n – Has around 11,522 reviews and a rating of 4.5.([gangnambeautyguide.com](https://gangnambeautyguide.com/en/?utm_source=openai)) \n\n5. View Plastic Surgery \n – Located at 107 Bongeunsa‑ro, Gangnam‑gu, Seoul. \n – Holds approximately 9,167 reviews with an exceptional rating of 4.8.([gangnambeautyguide.com](https://gangnambeautyguide.com/en/clinics/?utm_source=openai)) \n\n---\n\n### Additional Noteworthy Clinics (Based on Official Transparency Registers)\n\nBeyond review volume and ratings, transparency and regulatory registration are important when choosing a clinic.\n\nAccording to the *Gangnam Clinic Index* (updated July 2026), which ranks clinics by documentation transparency, accreditation, and compliance:\n\n- VIEW Plastic Surgery (Bongeunsa‑ro, Gangnam) ranks highest (Transparency Index 79) and is registered with KHIDI and HIRA.([gangnamclinicindex.com](https://gangnamclinicindex.com/en/?utm_source=openai)) \n- JW Plastic Surgery (Samseong‑ro) ranks second (Index 78), fully registered. \n- ID Hospital (a hospital-scale facility on Dosan‑daero) is third (Index 77). \n- DA Plastic Surgery ranks fourth (Index 76), and Lienjang Plastic Surgery is sixth (Index 75), all fully registered and compliant.([gangnamclinicindex.com](https://gangnamclinicindex.com/en/?utm_source=openai)) \n\n---\n\n### Summary Table\n\n| Clinic Name | Location | Reviews & Rating | Registered/Transparent? |\n|--------------------------|----------------------------------|--------------------------|----------------------------------------|\n| 4Ever Plastic Surgery | Dosan‑daero, Gangnam‑gu | ~14,650 reviews, 4.6 | Not explicitly listed in transparency index |\n| DA Plastic Surgery | Teheran‑ro, Gangnam‑gu | ~13,396 reviews, 4.7 | Yes (Index 76) |\n| ARC Plastic Surgery | Sapyeong‑daero, Seocho‑gu | ~12,576 reviews, 4.7 | Not listed in transparency index |\n| Noselab Clinic | Gangnam‑daero, Gangnam‑gu | ~11,522 reviews, 4.5 | Not listed in transparency index |\n| View Plastic Surgery | Bongeunsa‑ro, Gangnam‑gu | ~9,167 reviews, 4.8 | Yes (Index 79) |\n| JW Plastic Surgery | Samseong‑ro, Gangnam‑gu | — | Yes (Index 78) |\n| ID Hospital | Dosan‑daero, Gangnam‑gu | — | Yes (Index 77) |\n| Lienjang Plastic Surgery | Seocho‑daero (but Gangnam area) | — | Yes (Index 75) |\n\n---\n\n### How to Choose?\n\n- **For broad popularity and patient volume:** 4Ever Plastic Surgery and DA Plastic Surgery stand out by review count and average ratings.\n- **If compliance and documentation are your priorities:** VIEW Plastic Surgery, DA Plastic Surgery, JW Plastic Surgery, and ID Hospital rank highest in transparency and registration.\n- **For highly specialized or boutique options:** ARC Plastic Surgery and Noselab Clinic are notable for their specific reputations, though not top-ranked by transparency index.\n\n---\n\n### Tips Before Visiting\n\n- Always verify that the clinic offers services in your preferred language, especially if you’re a foreign visitor. Clinics vary in their English-language support.([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/gangnam-station?utm_source=openai)) \n- Consider contacting clinics for consultations, which are commonly booked via KakaoTalk, phone, or online platforms.([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/gangnam-station?utm_source=openai)) \n\n---\n\nLet me know if you'd like comparisons based on specific procedures (e.g. rhinoplasty, facial contouring) or assistance with appointment planning.", "urls": ["https://gangnambeautyguide.com/en/?utm_source=openai", "https://gangnambeautyguide.com/en/?utm_source=openai", "https://gangnambeautyguide.com/en/?utm_source=openai", "https://gangnambeautyguide.com/en/?utm_source=openai", "https://gangnambeautyguide.com/en/clinics/?utm_source=openai", "https://gangnamclinicindex.com/en/?utm_source=openai", "https://gangnamclinicindex.com/en/?utm_source=openai", "https://www.plasticsurgeryko.com/en/gangnam-station?utm_source=openai", "https://www.plasticsurgeryko.com/en/gangnam-station?utm_source=openai"], "measured_at": "2026-09-10T15:15:05", "clinics": ["4Ever Plastic Surgery", "DA Plastic Surgery", "ARC Plastic Surgery", "Noselab Clinic", "VIEW Plastic Surgery", "JW Plastic Surgery", "ID Hospital", "Lienjang Plastic Surgery"], "view_mentioned": true, "view_rank": 5, "view_sentiment": "positive"} +{"id": "C-07", "cat": "C", "question": "Compare VIEW Plastic Surgery vs ID Hospital vs Banobagi for facial contouring", "engine": "openai", "answer": "When comparing VIEW Plastic Surgery, ID Hospital, and Banobagi for facial contouring, consider the following aspects:\n\n### 1. Reputation and Experience\n- **VIEW Plastic Surgery**: Known for a personalized approach and state-of-the-art facilities. Doctors often have international training and extensive experience in facial contouring.\n- **ID Hospital**: One of the largest plastic surgery hospitals in Seoul, with a strong reputation for facial bone surgery and a large team of specialists.\n- **Banobagi**: Featured in various media and popular for their celebrity clientele. Known for natural-looking results and comprehensive consultations.\n\n### 2. Services and Technology\n- **VIEW Plastic Surgery**: Offers 3D simulation technology to preview results. They provide a wide range of facial contouring options.\n- **ID Hospital**: Specializes in orthognathic surgery and V-line surgery. Advanced technology and in-house medical staff are available for various procedures.\n- **Banobagi**: Utilizes advanced 3D CT scanning for precise planning and also offers minimally invasive options.\n\n### 3. Safety and Accreditation\n- All three hospitals prioritize patient safety and have high standards. They are all accredited and have measures in place to ensure quality and safety during procedures.\n\n### 4. Patient Reviews and Satisfaction\n- **VIEW Plastic Surgery**: Generally positive reviews for their personalized care and attention to detail.\n- **ID Hospital**: Praised for their comprehensive pre-and post-op care and consistent results.\n- **Banobagi**: Known for high patient satisfaction, with reviews highlighting natural results and friendly staff.\n\n### 5. Cost\n- Prices can vary widely based on the specific procedures and individual needs. It is advisable to consult directly with each hospital for a personalized quote.\n\n### 6. Location and Accessibility\n- All three are located in Seoul, South Korea, a hub for medical tourism with easy access from the airport.\n\n### Conclusion\nAll three options have strong reputations and excellent services for facial contouring. Personal preferences regarding approach, availability for consultation, and budget might guide your choice. It’s essential to have consultations with each to discuss your specific needs and goals.", "urls": [], "measured_at": "2026-09-10T15:15:13", "clinics": ["VIEW Plastic Surgery", "ID Hospital", "Banobagi"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "C-08", "cat": "C", "question": "Which Korean plastic surgery clinics use Motiva implants and have the most experience with them?", "engine": "openai", "answer": "Here are several reputable South Korean plastic surgery clinics known both for using Motiva implants and for having substantial experience with them:\n\n• **U&U Plastic Surgery Clinic** (Gangnam, Seoul) \n U&U holds the distinction of being the top user of Motiva implants in Korea, based on 2024 warranty statistics, and is recognized as an officially certified “Preservé” clinic—an advanced tissue-preserving Motiva technique ([unupskorea.com](https://unupskorea.com/preservation?utm_source=openai)).\n\n• **VIEW Plastic Surgery** (Seoul) \n VIEW was ranked number one in Motiva implant usage in 2023 and is also recognized as a Motiva Global Key Opinion Leader (KOL), indicating a high level of clinical and academic expertise in breast surgery with Motiva implants ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai)).\n\n• **Ryan Plastic Surgery** (Seoul) \n Led by Dr. Sangmun Choi, this clinic has extensive experience, having performed over 3,000 Motiva-registered augmentations since 2011 and presented data from more than 2,130 Motiva cases at the ISAPS 2025 World Congress ([goodbyeacup.com](https://goodbyeacup.com/?utm_source=openai)).\n\n• **V Clinic Gangnam** (Seoul) \n Under the care of Dr. Yoon Hong‑sang—a surgeon with over 20 years of experience—this clinic offers Motiva breast surgery using the Preservé method. It emphasizes safe, precise, and individualized surgical procedures ([vclinicglobal.kr](https://www.vclinicglobal.kr/en/signature/plastic-surgery/breast-surgery?utm_source=openai)).\n\n• **ARC Plastic Surgery Clinic** (likely Seoul) \n A recent patient review (April 29, 2026 surgery) notes a successful Motiva Ergonomix augmentation performed by Dr. Yoon Tae‑Keun. Post-operative outcomes at one and two months were very positive, with natural settling and minimal scarring ([realself.com](https://www.realself.com/review/breast-implants-time-breast-augmentation-ft-arc?utm_source=openai)).\n\n• **Verygood Plastic Surgery** (Seoul) \n This clinic is an authorized Motiva implant provider, led by Dr. Im Young‑min (M.D., Ph.D.), and offers both primary augmentations and revision surgeries with a focus on natural results and long-term satisfaction ([verygoodaesthetics.com](https://www.verygoodaesthetics.com/specialties/breast-surgery?utm_source=openai)).\n\n• **NANA Plastic Surgery** (location: Korea-wide/breast clinic) \n NANA Breast Clinic emphasizes Motiva implants when striving for a natural feel, aesthetic outcomes, and thorough post-operative aftercare, including verification technologies like UDI and BlueSeal ([en.nanahospital.com](https://en.nanahospital.com/page/breast_implants?utm_source=openai)).\n\n• **Golden Diamant Plastic Surgery** (Cheongdam-dong, Gangnam-gu, Seoul) \n Dr. Song Sang‑hoon has over 20 years of experience and specializes in the Motiva Preservé insertion technique—focusing on tissue preservation and tailored surgical planning ([goldendiamant.com](https://goldendiamant.com/en/motiva.html?utm_source=openai)).\n\n• **Wooa Plastic Surgery** (Seoul) \n A Redditor’s experience one year after surgery praised the clinic’s small incisions, smooth recovery, and a structured aftercare regimen—including laser, RF (radio-frequency), and scar treatments specific to Motiva patients ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1p655dn/1_year_after_my_motiva_breast_augmentation_at/?utm_source=openai)).\n\n• **Note Plastic Surgery** (Gangnam, Seoul) \n A patient review highlights Motiva Ergonomix breast augmentation (dual-placement: mini 275 cc & demi 340 cc) performed by Dr. Soongeun Kwon. The clinic’s environment, personalized care, and quick recovery are emphasized ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1rcf7ah/breast_augmentation_at_note_plastic_surgery_in/?utm_source=openai)).\n\n---\n\n### Summary Table (informally formatted)\n\nName — Location — Highlights \n- **U&U Plastic Surgery Clinic** (Gangnam, Seoul) — #1 Motiva usage, certified Preservé clinic (2024) \n- **VIEW Plastic Surgery** (Seoul) — #1 in 2023 Motiva use, Global KOL \n- **Ryan Plastic Surgery** (Seoul) — >3,000 Motiva cases, ISAPS 2025 presentation \n- **V Clinic Gangnam** — Dr. Yoon Hong‑sang, 20+ yrs experience, Motiva Preservé \n- **ARC Plastic Surgery Clinic** — Recent positive Motiva Ergonomix outcomes \n- **Verygood Plastic Surgery** — Authorized Motiva provider, natural focus \n- **NANA Breast Clinic** — Motiva specialist, thorough aftercare \n- **Golden Diamant** — Dr. Song (20+ yrs), Motiva Preservé technique \n- **Wooa Plastic Surgery** — Excellent aftercare, smooth recovery, Motiva patients \n- **Note Plastic Surgery** — Positive review, Motiva Ergonomix by Dr. Kwon\n\n---\n\nIf you'd like more detail on any clinic—such as pricing, consultation style, or surgical approach—just let me know!", "urls": ["https://unupskorea.com/preservation?utm_source=openai", "https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai", "https://goodbyeacup.com/?utm_source=openai", "https://www.vclinicglobal.kr/en/signature/plastic-surgery/breast-surgery?utm_source=openai", "https://www.realself.com/review/breast-implants-time-breast-augmentation-ft-arc?utm_source=openai", "https://www.verygoodaesthetics.com/specialties/breast-surgery?utm_source=openai", "https://en.nanahospital.com/page/breast_implants?utm_source=openai", "https://goldendiamant.com/en/motiva.html?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1p655dn/1_year_after_my_motiva_breast_augmentation_at/?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1rcf7ah/breast_augmentation_at_note_plastic_surgery_in/?utm_source=openai"], "measured_at": "2026-09-10T15:15:24", "clinics": ["U&U Plastic Surgery Clinic", "VIEW Plastic Surgery", "Ryan Plastic Surgery", "V Clinic Gangnam", "ARC Plastic Surgery Clinic", "Verygood Plastic Surgery", "NANA Plastic Surgery", "Golden Diamant Plastic Surgery"], "view_mentioned": true, "view_rank": 2, "view_sentiment": "positive"} +{"id": "C-09", "cat": "C", "question": "Safest plastic surgery clinic in Korea with anesthesiologists on staff", "engine": "openai", "answer": "Here are several highly regarded plastic surgery clinics in South Korea—especially around Seoul—that are noted for their safety infrastructure and have anesthesiologists on staff. Each features robust medical protocols and clear accreditation to enhance patient safety. I’ve listed them with context-specific details so you can make an informed choice:\n\n● AB Plastic Surgery Clinic (Seoul, opened 2020) \n– Reported zero medical accidents since its opening in September 2020, thanks to an integrated patient safety system covering pre-op screening, anesthesia management, intraoperative monitoring, emergency preparedness, and post-op recovery ([healthdailysouthkorea.com](https://www.healthdailysouthkorea.com/agp-article/936798226-ab-plastic-surgery-clinic-reports-zero-medical-accidents-since-2020?utm_source=openai)). \n– As of February 2025, boasts a 47.1% anesthesiologist-to-surgeon ratio—about double the industry average—facilitating dedicated one-to-one anesthesia care per surgery ([healthdailysouthkorea.com](https://www.healthdailysouthkorea.com/agp-article/936798226-ab-plastic-surgery-clinic-reports-zero-medical-accidents-since-2020?utm_source=openai)). \n– Received KAHF International Medical Accreditation (2025–2029) from Korea’s Ministry of Health and Welfare, which includes rigorous assessments across over 130 safety-related criteria ([medicalkorea.or.kr](https://www.medicalkorea.or.kr/en/kahfAccreditedHospitals/view%3FmedicalProviderNo%3D39169%26amp%3BcurPage%3D1?utm_source=openai)). \n– The clinic supports international patients, offering multilingual service and comprehensive safety protocols ([us-uk.bookimed.com](https://us-uk.bookimed.com/article/plastic-surgery-in-korea/?utm_source=openai)).\n\n● JK Plastic Surgery Center (Gangnam, since 1998) \n– The longest-standing clinic listed in recent comparative summaries, known for its detailed public disclosure of safety measures: 24-hour CCTV in operating rooms, uninterruptible power supply (UPS), availability of dantrolene for anesthesia emergencies, and evaluations across 120+ hospital safety and service indicators ([misooda.com](https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai)). \n– Holds the unique distinction of being the first and only plastic surgery clinic in Korea to acquire the Ministry of Health and Welfare’s “Foreign Patient Attracting Medical Institution” (KAHF) certification for four consecutive cycles ([medicalkorea.or.kr](https://www.medicalkorea.or.kr/en/kahfAccreditedHospitals/view%3FmedicalProviderNo%3D6540?utm_source=openai)). \n– Features resident anesthesiologists, real-time monitoring, and recovery protocols supervised directly by anesthesiologists ([jkplastic.com](https://www.jkplastic.com/en/about-us/our-way/safety.asp?utm_source=openai)).\n\n● Hannaeve Plastic Surgery Clinic (Anyang, since 2011) \n– Operates with board-certified plastic surgeons and a full-time anesthesiologist on staff ([hannaeveglobal.com](https://www.hannaeveglobal.com/?utm_source=openai)). \n– Its facility includes seven operating rooms, UPS backup, patient-controlled analgesia (PCA) systems, and hyperbaric oxygen therapy, with emergency protocols mirroring those of university hospitals ([hannaeveglobal.com](https://www.hannaeveglobal.com/?utm_source=openai)).\n\n● Faceline Plastic Surgery (Sinsa-dong, Gangnam, since 2005) \n– Maintains a perfect safety record over two decades—no accidents, no deaths, no transfusion-associated events ([icloudhospital.com](https://icloudhospital.com/hospitals/faceline-plastic-surgery?utm_source=openai)). \n– An anesthesiologist is present on-site at all times during procedures, and structured safety protocols are enforced at every stage of surgery ([icloudhospital.com](https://icloudhospital.com/hospitals/faceline-plastic-surgery?utm_source=openai)).\n\n● Braun Plastic Surgery (Seocho-gu, Gangnam) \n– Offers one-to-one anesthesia care, where an anesthesiologist monitors patients throughout the entire surgery ([braunps.com](https://www.braunps.com/page/Clinicsafety?utm_source=openai)). \n– Equipped with advanced emergency systems—including defibrillators, UPS, and a surgeon/staff real-name system—and has surgeons trained as CPR/KALS (Korean Advanced Life Support) instructors ([braunps.com](https://www.braunps.com/page/Clinicsafety?utm_source=openai)). \n– Uses CCTV to record the entire surgery for transparency and review ([braunps.com](https://www.braunps.com/page/Clinicsafety?utm_source=openai)).\n\n● Respect Plastic Surgery (Gangnam) \n– Employs a Seoul National University–trained anesthesiology specialist (Dr. Yoo Myung Sik), who provides dedicated, hands-on anesthesia care from preoperative assessment through postoperative recovery ([respectps.clinic](https://www.respectps.clinic/en/blog/respect-plastic-surgery-seoul-surgeons-credentials-published-research?utm_source=openai)). \n– This level of anesthesia staffing—exclusive and consistent—is rare among Korean plastic clinics ([respectps.clinic](https://www.respectps.clinic/en/blog/respect-plastic-surgery-seoul-surgeons-credentials-published-research?utm_source=openai)).\n\n---\n\nRecommendation Summary\n\nIf your highest priority is *proven safety infrastructure with strong anesthesia care*, two clinics stand out:\n\n1. **AB Plastic Surgery Clinic** is exceptional based on its zero-accident record, robust safety infrastructure, and KAHF accreditation (2025–2029). \n2. **JK Plastic Surgery Center** offers long-term operations, transparent protocols, and repeated KAHF certification—ideal for complex procedures in a well-vetted environment.\n\nOther excellent options include **Faceline**, **Braun**, **Hannaeve**, and **Respect Plastic Surgery**, each offering dedicated anesthesiologists, meticulous safety processes, and reputable standards.\n\n---\n\nHow to Proceed\n\n– Contact the clinics directly with questions about their anesthesia protocols, emergency preparedness, and accreditation. \n– Look for alignment with your specific needs—e.g., comfort of facility, language support, or post-op care. \n– Always verify credentials like KAHF certification and board-certified anesthesiologists before finalizing.\n\nLet me know if you’d like assistance comparing any two in more detail, arranging contact, or exploring options outside Seoul—even with your presumed location in New York and considering your timeline, I can help you prepare thoroughly.", "urls": ["https://www.healthdailysouthkorea.com/agp-article/936798226-ab-plastic-surgery-clinic-reports-zero-medical-accidents-since-2020?utm_source=openai", "https://www.healthdailysouthkorea.com/agp-article/936798226-ab-plastic-surgery-clinic-reports-zero-medical-accidents-since-2020?utm_source=openai", "https://www.medicalkorea.or.kr/en/kahfAccreditedHospitals/view%3FmedicalProviderNo%3D39169%26amp%3BcurPage%3D1?utm_source=openai", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/?utm_source=openai", "https://www.misooda.com/en/surgery-guides/best-v-line-surgery-clinics-korea-2026?utm_source=openai", "https://www.medicalkorea.or.kr/en/kahfAccreditedHospitals/view%3FmedicalProviderNo%3D6540?utm_source=openai", "https://www.jkplastic.com/en/about-us/our-way/safety.asp?utm_source=openai", "https://www.hannaeveglobal.com/?utm_source=openai", "https://www.hannaeveglobal.com/?utm_source=openai", "https://icloudhospital.com/hospitals/faceline-plastic-surgery?utm_source=openai", "https://icloudhospital.com/hospitals/faceline-plastic-surgery?utm_source=openai", "https://www.braunps.com/page/Clinicsafety?utm_source=openai", "https://www.braunps.com/page/Clinicsafety?utm_source=openai", "https://www.braunps.com/page/Clinicsafety?utm_source=openai", "https://www.respectps.clinic/en/blog/respect-plastic-surgery-seoul-surgeons-credentials-published-research?utm_source=openai", "https://www.respectps.clinic/en/blog/respect-plastic-surgery-seoul-surgeons-credentials-published-research?utm_source=openai"], "measured_at": "2026-09-10T15:15:40", "clinics": ["AB Plastic Surgery Clinic", "JK Plastic Surgery Center", "Hannaeve Plastic Surgery Clinic", "Faceline Plastic Surgery", "Braun Plastic Surgery", "Respect Plastic Surgery"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "C-10", "cat": "C", "question": "Which Seoul plastic surgery clinics are officially recognized for medical tourism by the Korean government?", "engine": "openai", "answer": "Here is a clearer, up-to-date overview (as of September 10, 2026) of *Seoul plastic surgery clinics officially recognized for medical tourism by the Korean government*:\n\n---\n\n### 1. Clinics Certified via the Korean Accreditation Program for Hospitals Serving Foreign Patients (KAHF)\n\nThese clinics are recognized by the **Ministry of Health and Welfare (MOHW)** under the **Korean Accreditation Program for Hospitals Serving Foreign Patients (KAHF)**—a key credential that denotes rigorous standards for treating international patients.\n\n- **JK Plastic Surgery Center** \n - The **first plastic surgery clinic in Korea** to receive KAHF certification and the **only one to obtain it for four consecutive cycles**. Certified as **Foreign Patient Attraction Medical Institution No. 0001** by the MOHW. ([medicalkorea.or.kr](https://www.medicalkorea.or.kr/en/kahfAccreditedHospitals/view%3FmedicalProviderNo%3D6540?utm_source=openai)) \n - Recognized with multiple commendations:\n - **Prime Minister’s Commendation** (2013, 2017, 2024)\n - **Minister of Health and Welfare Award** (2010, 2011, 2014) ([medicaltour.gangnam.go.kr](https://medicaltour.gangnam.go.kr/2021/content/clinicDetail.do?medical_seq=199&utm_source=openai))\n\n---\n\n### 2. Clinics Highlighted in the “Medical Korea” Official Guide\n\n“Medical Korea” is a multilingual platform approved by the MOHW and typically features clinics with high medical standards for international patients:\n\n- **HER SHE (HERSHE) Plastic Surgery** \n - The only plastic surgery clinic designated by the MOHW’s KAHF. Other accolades include winning Korea Health Industry Awards and the Minister’s Citation in Medical Korea 2021. Located at **730 Samseong‑ro, Gangnam‑gu, Seoul**. ([english.visitkorea.or.kr](https://english.visitkorea.or.kr/public/asis/contents/medical/pdf/directory_enu.pdf?utm_source=openai))\n\n- **Hyundai Aesthetics Plastic Surgery** \n - Recognized through awards such as:\n - **KCA Outstanding Professional Award (2021)**\n - **Grand Prize** for Eye Revision Surgery (So‑Young Asia Medical and Cosmetic Surgery Award)\n - **Global New Korean Award** in healthcare. Located at **Dosan‑daero, Gangnam‑gu, Seoul**. ([english.visitkorea.or.kr](https://english.visitkorea.or.kr/public/asis/contents/medical/pdf/directory_enu.pdf?utm_source=openai))\n\n- **View Plastic Surgery** \n - Known for a **17-year record of zero accidents**, Minister’s Citation in Medical Korea 2021, and media exposure (e.g. TV show *“Let Me In”*). Address: **Bongeunsa‑ro, Gangnam‑gu, Seoul**. ([english.visitkorea.or.kr](https://english.visitkorea.or.kr/public/asis/contents/medical/pdf/directory_enu.pdf?utm_source=openai))\n\n---\n\n### 3. Municipal-Level “Medical Tourism Partner Institutions”\n\nSeoul Metropolitan Government designates **Medical Tourism Partner Institutions**, which typically include trusted plastic surgery clinics:\n\n- **HERSHE (허쉬성형외과)** is listed under the Seoul Medical Tourism partner institutions with multilingual support (English, Chinese, Japanese, Indonesian). ([medical.visitseoul.net](https://medical.visitseoul.net/organization/hospital/hospitalList?utm_source=openai)) \n\nWhile not exhaustive, these designations reinforce these clinics' legitimacy in Seoul’s medical tourism ecosystem.\n\n---\n\n### Summary Table\n\n| Clinic Name | Recognition / Accreditation |\n|----------------------------------|--------------------------------------------------------------------------------------------------------------|\n| **JK Plastic Surgery Center** | KAHF-certified (4 cycles), Foreign Patient Attraction No. 0001, MOHW commendations (Prime Minister, Minister) |\n| **HER SHE (HERSHE)** | KAHF-designated, Health Industry Award wins, MOHW citation in Medical Korea 2021 |\n| **Hyundai Aesthetics** | Multiple healthcare awards including KCA, So-Young Award, Global New Korean Award |\n| **View Plastic Surgery** | Zero-accident record, MOHW citation 2021, TV/media exposure (Let Me In), strong safety profile |\n| **HERSHE (as per Seoul partner)**| Recognized by Seoul Metropolitan Government as medical tourism partner clinic |\n\n---\n\n### Notes & Additional Resources\n\n- The **Foreign Patient Attraction registry** is officially maintained and searchable via the **Foreign Patient Attraction Information System** run by the **Korea Health Industry Development Institute (KHIDI)** under the MOHW. ([news.seoul.go.kr](https://news.seoul.go.kr/welfare/archives/541972?utm_source=openai))\n\n- The **Seoul data portal** also provides a public dataset listing all \"medical tourism licensed\" institutions, including their names, addresses, and target countries—available in Korean and English. ([data.edmgr.kr](https://data.edmgr.kr/dataView.do?id=data-seoul-go-kr-datalist-oa-12973-s-1&utm_source=openai))\n\n---\n\n### Final Thoughts\n\nFor international patients considering plastic surgery in Seoul, clinics with **KAHF certification**, **MOHW commendations**, and **designation by Seoul’s medical tourism authorities** stand out in terms of quality, safety, and reliability. Notably:\n\n- **JK Plastic Surgery Center** stands as the most decorated and historically certified clinic for foreign patient care.\n- **HER SHE (HERSHE)**, **Hyundai Aesthetics**, and **View Plastic Surgery** are also recognized through awards and formal listings that reflect their standing within Korea’s medical tourism landscape.\n\nIf you'd like, I can help you explore clinic specifics further—such as services, languages supported, or any recent developments.", "urls": ["https://www.medicalkorea.or.kr/en/kahfAccreditedHospitals/view%3FmedicalProviderNo%3D6540?utm_source=openai", "https://medicaltour.gangnam.go.kr/2021/content/clinicDetail.do?medical_seq=199&utm_source=openai", "https://english.visitkorea.or.kr/public/asis/contents/medical/pdf/directory_enu.pdf?utm_source=openai", "https://english.visitkorea.or.kr/public/asis/contents/medical/pdf/directory_enu.pdf?utm_source=openai", "https://english.visitkorea.or.kr/public/asis/contents/medical/pdf/directory_enu.pdf?utm_source=openai", "https://medical.visitseoul.net/organization/hospital/hospitalList?utm_source=openai", "https://news.seoul.go.kr/welfare/archives/541972?utm_source=openai", "https://data.edmgr.kr/dataView.do?id=data-seoul-go-kr-datalist-oa-12973-s-1&utm_source=openai"], "measured_at": "2026-09-10T15:15:51", "clinics": ["JK Plastic Surgery Center", "HER SHE (HERSHE) Plastic Surgery", "Hyundai Aesthetics Plastic Surgery", "VIEW Plastic Surgery", "HERSHE"], "view_mentioned": true, "view_rank": 4, "view_sentiment": "positive"} +{"id": "C-11", "cat": "C", "question": "Best clinic in Korea for double eyelid surgery revision for foreigners", "engine": "openai", "answer": "Here are several highly regarded clinics in Seoul known for revision (secondary) double eyelid surgery that have strong reputations among international patients. These selections are based on recent sources emphasising language support, technical expertise, and patient reviews as of late 2026.\n\n---\n\n1MM Plastic Surgery \n- Recognized widely for its focus on eyelid procedures—both primary and revision—and personalized surgical planning with attention to natural eyelid movement. You’ll find it praised for subtle, natural-looking results in complex cases.([gangnamobgyn.com](https://www.gangnamobgyn.com/foreigners-clinic-guide-korea/best-revision-double-eyelid-surgery-clinics-seoul?utm_source=openai)) \n- Acts as an eye-only specialist with approximately 20 years of experience dedicated to eyelids, making it a top choice for complicated eyelid issues or ptosis combinations.([gangnamwomenshealth.com](https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-double-eyelid-surgery-clinics-in-seoul?utm_source=openai))\n\nEtonne Plastic Surgery \n- Known for advanced reconstructive techniques in revision eyelid surgery. Patients come from abroad for its expertise in handling complex cases.([gangnamobgyn.com](https://www.gangnamobgyn.com/foreigners-clinic-guide-korea/best-revision-double-eyelid-surgery-clinics-seoul?utm_source=openai))\n\nWanna Plastic Surgery (Dr. Tae Joon Choi) \n- In April 2026, a patient had a revision non-incisional double eyelid surgery with Dr. Choi, combined with epicanthoplasty and under-eye fat repositioning. The experience was described as thoughtful and confidence-instilling, highlighting Dr. Choi’s expertise in natural revision outcomes.([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1uxw7lw/my_revision_eyelid_surgery_experience/?utm_source=openai))\n\nGangnam Seoyeon Clinic (Dr. Choi) \n- A patient in April 2026 specifically consulted with Dr. Choi for revision purposes. The clinic has a reputation for being engaged and responsive—possibly slightly more expensive, but with positive attention in online communities.([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1n1bu5n/revision_des/?utm_source=openai))\n\nClinics Mentioned by Name in Reddit Threads \n- Several other clinics that users report as well-known for revision eye work and relatively foreigner‑friendly include Symphony Plastic Surgery, Link Plastic Surgery, Motive Plastic Surgery, Ahn Sung Min Plastic Surgery, and Bio Plastic Surgery.([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1v97jq8/which_is_the_best_clinic_for_revision_eye_surgery/?utm_source=openai)) \n- Patients also point to IK Plastic Surgery as an option, described as newer but with some local revision clientele.([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1v97jq8/which_is_the_best_clinic_for_revision_eye_surgery/?utm_source=openai))\n\n---\n\n Additional Clinics with Strong Foreign‑Patient Support (Beyond Revision-Specific Focus)\n\nGangnam HERA Plastic Surgery Clinic \n- Offers on-site English medical interpreters, WhatsApp consultations and aftercare, and transparent same pricing for local and international patients. RealSelf reviews praise foreign‑patient experiences in eye surgery contexts.([kclinichelp.com](https://kclinichelp.com/?utm_source=openai))\n\nMarble Plastic Surgery \n- Supports English (and other languages) with official multilingual channels, board-certified surgeons, and foreign‑patient reviews documenting eyelid surgery and recovery.([kclinichelp.com](https://kclinichelp.com/?utm_source=openai))\n\nThank You Plastic Surgery (Dr. Hyung‑Suk Kim) \n- Another clinic with strong foreign‑patient systems—English/Japanese/Chinese support, high RealSelf ratings. Patients report natural, affordable results, smooth communication via WhatsApp, and highly praised interpreter service.([kclinichelp.com](https://kclinichelp.com/?utm_source=openai))\n\n---\n\n How to Choose the Best Clinic for You\n\n- Bring your **previous surgical details** to consultations (photos, notes), as revision surgery demands customized planning.([bookkoreamedical.com](https://bookkoreamedical.com/guides/best-double-eyelid-clinics-gangnam-seoul/?utm_source=openai)) \n- Confirm **language support** directly—ask if there will be an English-speaking coordinator or translator during consultation, surgery, and follow‑up.([plasticsurgeryko.com](https://www.plasticsurgeryko.com/en/seoul-double-eyelid?utm_source=openai)) \n- Want **natural results**? Clinics like 1MM Plastic Surgery, Wanna (Dr. Choi), and Thank You Plastic Surgery come with strong reputations for preserving eyelid function and subtle aesthetics.([gangnamobgyn.com](https://www.gangnamobgyn.com/foreigners-clinic-guide-korea/best-revision-double-eyelid-surgery-clinics-seoul?utm_source=openai)) \n- **Budget and logistics** matter—Book Korea Medical can coordinate free consultations for many Gangnam clinics and will handle multiple languages at no markup.([bookkoreamedical.com](https://bookkoreamedical.com/guides/best-double-eyelid-clinics-gangnam-seoul/?utm_source=openai)) \n- **Patient feedback and transparency**: Platforms like SeoulVera surface real patient reviews with trust scoring, helping differentiate genuine clinics from paid promotions.([seoulvera.com](https://www.seoulvera.com/en?utm_source=openai))\n\n---\n\n Summary Table\n\n| Clinic / Surgeon | Key Strengths |\n|----------------------------------|--------------------------------------------------------------------------------|\n| 1MM Plastic Surgery | Eye-specialist, revision focus, natural outcomes |\n| Etonne Plastic Surgery | Advanced reconstructive techniques for complex revisions |\n| Wanna Plastic Surgery (Dr. Choi) | Excellent revision case reviews, natural aesthetic results |\n| Gangnam Seoyeon (Dr. Choi) | Positive consultation feedback, engaged clinic approach |\n| Symphony, Link, Motive, Ahn Sung Min, Bio PS | Recommended by Reddit users for revision and foreigner‑friendly services |\n| Gangnam HERA | Strong language support, clear pricing, foreign‑patient-friendly |\n| Marble PS | Multilingual channels, board‑certified surgeons, positive reviews |\n| Thank You PS (Dr. Hyung‑Suk Kim) | Affordable, natural, reliable interpreter support |\n\n---\n\n Recommendation Steps for Your Next Actions:\n\n1. **Narrow your list to two or three clinics**—for instance: 1MM, Wanna Plastic Surgery (Dr. Choi), and Thank You Plastic Surgery.\n2. **Reach out for initial consultations**, asking about revision experience, interpreters, follow‑up logistics, and pricing.\n3. **Compare consultation quality, transparency, and comfort level** before making your final choice.\n\nWith your patient goals and budget in mind, any of the above clinics could be a great option. If you'd like help drafting emails to them or comparing their consultation offers, I'd be happy to assist.", "urls": ["https://www.gangnamobgyn.com/foreigners-clinic-guide-korea/best-revision-double-eyelid-surgery-clinics-seoul?utm_source=openai", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-double-eyelid-surgery-clinics-in-seoul?utm_source=openai", "https://www.gangnamobgyn.com/foreigners-clinic-guide-korea/best-revision-double-eyelid-surgery-clinics-seoul?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1uxw7lw/my_revision_eyelid_surgery_experience/?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1n1bu5n/revision_des/?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1v97jq8/which_is_the_best_clinic_for_revision_eye_surgery/?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1v97jq8/which_is_the_best_clinic_for_revision_eye_surgery/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://kclinichelp.com/?utm_source=openai", "https://bookkoreamedical.com/guides/best-double-eyelid-clinics-gangnam-seoul/?utm_source=openai", "https://www.plasticsurgeryko.com/en/seoul-double-eyelid?utm_source=openai", "https://www.gangnamobgyn.com/foreigners-clinic-guide-korea/best-revision-double-eyelid-surgery-clinics-seoul?utm_source=openai", "https://bookkoreamedical.com/guides/best-double-eyelid-clinics-gangnam-seoul/?utm_source=openai", "https://www.seoulvera.com/en?utm_source=openai"], "measured_at": "2026-09-10T15:16:05", "clinics": ["1MM Plastic Surgery", "Etonne Plastic Surgery", "Wanna Plastic Surgery", "Gangnam Seoyeon Clinic", "Symphony Plastic Surgery", "Link Plastic Surgery", "Motive Plastic Surgery", "Ahn Sung Min Plastic Surgery"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "C-12", "cat": "C", "question": "Large plastic surgery hospitals in Seoul with in-house recovery wards", "engine": "openai", "answer": "Seoul is well-known for its advanced plastic surgery facilities. Some of the large plastic surgery hospitals with in-house recovery wards include:\n\n1. **Banobagi Plastic Surgery Clinic**: Known for its comprehensive services and in-patient recovery facilities.\n2. **ID Hospital**: A large facility offering a wide range of surgeries along with dedicated recovery rooms.\n3. **JW Plastic Surgery**: Provides personalized recovery care with in-house amenities.\n4. **Dream Medical Group**: Offers extensive pre- and post-operative care with on-site recovery options.\n5. **Grand Plastic Surgery**: Features modern recovery rooms and 24-hour medical staff availability for post-surgery care.\n\nAlways ensure to research the hospitals, verify accreditations, and consult with medical professionals before proceeding with surgery.", "urls": [], "measured_at": "2026-09-10T15:16:09", "clinics": ["Banobagi Plastic Surgery Clinic", "ID Hospital", "JW Plastic Surgery", "Dream Medical Group", "Grand Plastic Surgery"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-01", "cat": "D", "question": "Motiva breast augmentation in Korea: what should I know before booking?", "engine": "openai", "answer": "Before booking Motiva breast augmentation in Korea, here are some key things to consider:\n\n1. **Research Clinics and Surgeons**:\n - Look for reputable clinics with certified and experienced plastic surgeons.\n - Read reviews and testimonials from previous patients.\n\n2. **Consultation**:\n - Schedule consultations with multiple surgeons to discuss your goals and concerns.\n - Ensure the surgeon is familiar with Motiva implants specifically.\n\n3. **Procedure Details**:\n - Understand the types of Motiva implants available (e.g., Motiva Ergonomix, Motiva SilkSurface).\n - Discuss the surgical procedure, including incision location and anesthesia options.\n\n4. **Cost**:\n - Get a detailed cost estimate, including the procedure, anesthesia, facility fees, and follow-up appointments.\n - Check if there are additional costs for consultations or post-operative care.\n\n5. **Recovery**:\n - Learn about the recovery process, potential downtime, and post-operative care.\n - Plan for follow-up appointments.\n\n6. **Safety and Risks**:\n - Discuss potential risks and complications with the surgeon.\n - Ensure the clinic follows international safety standards.\n\n7. **Travel Considerations**:\n - Plan for travel arrangements, including lodging and transportation during your stay in Korea.\n - Budget for additional expenses and ensure you have time for recovery before traveling back.\n\n8. **Legal and Language**:\n - Understand the legal aspects and patient rights in Korea.\n - Consider language barriers and whether the clinic offers translation services.\n\n9. **Before and After Photos**:\n - Request to see before and after photos of previous patients to assess the surgeon's work.\n\n10. **Accreditation**:\n - Confirm that the clinic is accredited by a recognized healthcare agency.\n\nBeing well-informed and choosing a trustworthy clinic and surgeon are crucial for a successful outcome.", "urls": [], "measured_at": "2026-09-10T15:16:24", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-02", "cat": "D", "question": "What is Motiva Preserve and which clinics in Korea offer it?", "engine": "openai", "answer": "Here’s what **Motiva Preservé** is, and which clinics in South Korea currently offer it:\n\n---\n\nWhat is **Motiva Preservé**?\n\n• **Preservé** is an advanced breast augmentation technique by Motiva® that emphasizes *tissue preservation*. Rather than cutting through muscle or glandular tissue to create a pocket for the implant, surgeons gently separate and stretch the existing tissues — including muscles, nerves, and ligaments — using specialized tools such as an inflatable balloon and channel separator. This approach aims to minimize tissue trauma and inflammation, resulting in smaller scars, faster recovery, and preservation of natural anatomy and sensation ([motiva.health](https://motiva.health/surgeons-preserve/?utm_source=openai)).\n\n• It typically uses Motiva’s **SmoothSilk® Ergonomix2®** implants combined with the Preservé tools and technique. The result is a soft, natural look and feel, with improved stability and a low rate of complications — including reduced risk of malposition over time and a low-inflammatory response ([motiva.health](https://motiva.health/surgeons-preserve/?utm_source=openai)).\n\n• Additional benefits highlighted include smaller incisions (typically 2.0–3.5 cm), reduced pain, quicker return to daily life (some within 1–3 days), and a sense of maintaining one's own anatomy ([imagepreserve.kr](https://imagepreserve.kr/?utm_source=openai)).\n\n---\n\nWhich clinics in South Korea offer Motiva Preservé?\n\nBased on the latest information, the following clinics in Seoul are known to offer the Motiva Preservé technique:\n\n1. **U&U Plastic Surgery Clinic (Gangnam, Seoul)** \n - Officially launched Preservé in August 2025. It is a designated launch clinic for Motiva Preservé in Korea, with Motiva training and recognition as a Key Opinion Leader (KOL) and high-volume Motiva implant user ([unupskorea.com](https://unupskorea.com/preservation?utm_source=openai)).\n\n2. **Ryan Plastic Surgery (Seocho-gu, Seoul)** \n - Operates a “Motiva Preservé Technique Center” providing tissue-preserving breast augmentation with English consultations and an international patient focus ([goodbyeacup.com](https://goodbyeacup.com/?utm_source=openai)).\n\n3. **Golden Diamant Plastic Surgery (Cheongdam, Gangnam, Seoul)** \n - Offers Motiva Preservé procedures, with a focus on minimizing muscle and nerve damage and providing personalized care and recovery support by Board-certified Dr. Song Sang‑hoon ([goldendiamant.com](https://goldendiamant.com/en/motiva.html?utm_source=openai)).\n\n4. **Wooa Medical / Wooa Plastic Surgery Clinic (likely in Seoul)** \n - Describes Motiva Preservé as a tissue‑preservation‑oriented breast surgery method, available only at hospitals that have completed Motiva Korea’s Preservé protocol ([wooamedical.com](https://wooamedical.com/preserve?utm_source=openai)).\n\n---\n\nSummary\n\nMotiva Preservé is a minimally invasive breast augmentation approach focused on preserving natural tissue structures by using specialized expansion tools rather than conventional dissection. In South Korea, at least four clinics in Seoul currently offer this technique: U&U Plastic Surgery Clinic, Ryan Plastic Surgery, Golden Diamant Plastic Surgery, and Wooa Medical Clinic. Each of these clinics is certified or trained to perform the Preservé protocol, as required by Motiva Korea.\n\nLet me know if you'd like more details—such as surgeon profiles, pricing estimates, or patient reviews!", "urls": ["https://motiva.health/surgeons-preserve/?utm_source=openai", "https://motiva.health/surgeons-preserve/?utm_source=openai", "https://imagepreserve.kr/?utm_source=openai", "https://unupskorea.com/preservation?utm_source=openai", "https://goodbyeacup.com/?utm_source=openai", "https://goldendiamant.com/en/motiva.html?utm_source=openai", "https://wooamedical.com/preserve?utm_source=openai"], "measured_at": "2026-09-10T15:16:32", "clinics": ["U&U Plastic Surgery Clinic", "Ryan Plastic Surgery", "Golden Diamant Plastic Surgery", "Wooa Medical"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-03", "cat": "D", "question": "How long is recovery after breast augmentation in Korea before I can fly?", "engine": "openai", "answer": "After breast augmentation surgery, patients are generally advised to wait at least 1 to 2 weeks before flying. However, the specific recovery time can vary based on individual circumstances and the advice of your surgeon. It's important to follow your surgeon's recommendations regarding flying and any other post-operative care. Always consult with your healthcare provider for tailored advice.", "urls": [], "measured_at": "2026-09-10T15:16:36", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-04", "cat": "D", "question": "What is the difference between V-line surgery and square jaw reduction?", "engine": "openai", "answer": "**V-line surgery** and **square jaw reduction** are both types of cosmetic surgical procedures aimed at altering the shape of the jaw and lower face, but they target different aspects and outcomes:\n\n1. **V-line Surgery:**\n - **Purpose**: Specifically designed to create a slimmer, more oval face shape with a pointed chin—resembling a \"V\" shape.\n - **Procedure**: Involves the reduction of both the jawline width and chin alteration. Typically, it includes mandibular angle reduction (shaving down the jawbone) and genioplasty (reshaping or shortening the chin).\n - **Result**: A more delicate, feminine facial contour with emphasis on a sharper chin and jawline.\n\n2. **Square Jaw Reduction:**\n - **Purpose**: Aimed at reducing the width and prominence of a square or angular jawline.\n - **Procedure**: Focuses on the lower jaw (mandible), primarily reducing the masseter muscles or shaving down the outer part of the jawbone.\n - **Result**: A softer, less angular jawline, but not necessarily with a pointed chin like V-line surgery.\n\nIn summary, while both procedures involve altering the jaw's shape, V-line surgery includes chin reshaping for a V-shaped contour, whereas square jaw reduction focuses only on reducing the width and angularity of the jawline.", "urls": [], "measured_at": "2026-09-10T15:16:42", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-05", "cat": "D", "question": "Double jaw surgery in Korea: recovery timeline and risks for international patients", "engine": "openai", "answer": "Double jaw surgery, also known as bimaxillary osteotomy, is a significant procedure that is often sought in Korea for both medical and cosmetic reasons. Here's a general overview of the recovery timeline and potential risks, especially for international patients:\n\n### Recovery Timeline\n\n1. **Immediate Post-Operation (0-1 Week):**\n - **Hospital Stay:** Patients typically stay in the hospital for a few days.\n - **Swelling and Bruising:** These are most pronounced during this period.\n - **Diet:** Liquid-only diet is necessary.\n\n2. **Short-Term Recovery (2-4 Weeks):**\n - **Swelling Reduction:** Noticeable decrease in swelling.\n - **Introduction of Soft Foods:** Gradual reintroduction of soft foods is possible.\n - **Pain Management:** Pain and discomfort should decrease.\n\n3. **Mid-Term Recovery (1-3 Months):**\n - **Swelling Continues to Subside:** Most swelling is gone, but some residual swelling may persist.\n - **Improved Functionality:** Improved jaw function and ability to eat more normally.\n\n4. **Long-Term Recovery (3-12 Months):**\n - **Final Swelling Resolution:** Full resolution of swelling may take up to a year.\n - **Bone Healing:** Complete bone healing can take six months to a year.\n\n### Risks and Considerations for International Patients\n\n1. **Medical Risks:**\n - **Infection:** As with any surgery, there is a risk of infection.\n - **Bleeding:** Some bleeding is common immediately post-surgery.\n - **Nerve Damage:** Temporary or permanent numbness may occur.\n\n2. **Travel and Follow-Up:**\n - **Initial Travel Restrictions:** Flying too soon post-surgery can be uncomfortable or risky due to swelling and pressure changes.\n - **Follow-Up Care:** It may be complicated if choosing to travel back to the home country soon after surgery. Coordinating post-operative care is essential.\n\n3. **Cultural and Language Barriers:**\n - **Communication:** Language differences might affect understanding surgical risks and post-operative care instructions.\n - **Support System:** Accessing in-person support from family or friends might be limited.\n\n4. **Legal and Insurance Considerations:**\n - **Insurance Coverage:** Verify if the procedure and any complications are covered under health insurance.\n - **Legal Protections:** Understand the legal aspects of undergoing surgery abroad in case of complications.\n\n### Recommendations\n\n- **Choose a Reputable Clinic:** Research credentials and reviews of clinics and surgeons.\n- **Plan for Extended Stay:** Consider staying in the country for an extended period for follow-up consultations.\n- **Arrange for Support:** Ensure you have assistance available, especially immediately post-surgery.\n\nIt's essential to thoroughly consult with your surgeon regarding your specific case and any additional considerations relevant to your health and circumstances.", "urls": [], "measured_at": "2026-09-10T15:16:48", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-06", "cat": "D", "question": "Incisional vs non-incisional double eyelid surgery in Korea: which is better?", "engine": "openai", "answer": "In Korea, double eyelid surgery is a popular cosmetic procedure and can be performed using either incisional or non-incisional methods. Each approach has its pros and cons, and the choice depends on individual needs and conditions.\n\n### Incisional Method:\n**Pros:**\n- **Permanent Results:** Offers long-lasting or permanent results.\n- **Versatile:** Suitable for those with thicker eyelid skin or excess fat.\n- **Customizable:** Allows for precise customization of the eyelid shape.\n\n**Cons:**\n- **Longer Recovery Time:** Requires a longer healing period, with initial swelling and bruising lasting a few weeks.\n- **Scarring:** Potential for scarring, although it typically fades over time.\n\n### Non-Incisional Method:\n**Pros:**\n- **Quicker Recovery:** Less downtime compared to the incisional method.\n- **Less Scarring:** Minimal scarring since no incision is made.\n- **Reversible:** Can be undone or adjusted if desired.\n\n**Cons:**\n- **Less Durable for Some:** May not be suitable for individuals with thicker skin or excess fat, as results might not last as long.\n- **Limited Correction:** Might not address more complex eyelid conditions as effectively.\n\n### Considerations:\n- **Skin Type and Anatomical Needs:** Evaluate the thickness of eyelid skin and amount of fat.\n- **Desired Outcome:** Consider whether temporary or permanent results are preferred.\n- **Healing Time:** Assess tolerance for downtime and potential scarring.\n\nUltimately, the best choice depends on personal preferences, anatomical considerations, and the surgeon’s recommendation. Consulting with a qualified plastic surgeon in Korea, who can assess individual needs and goals, is essential for determining the most suitable option.", "urls": [], "measured_at": "2026-09-10T15:16:54", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-07", "cat": "D", "question": "Rhinoplasty in Korea with rib cartilage vs silicone: pros and cons", "engine": "openai", "answer": "### Rhinoplasty in Korea: Rib Cartilage vs. Silicone\n\n**Rib Cartilage:**\n\n#### Pros:\n1. **Natural Material**: Since it’s your own tissue, there’s a lower risk of rejection or infection.\n2. **Better Integration**: Tends to integrate well with existing nasal structures, providing a more natural look and feel.\n3. **Durability**: Less susceptible to movement or shifting over time compared to synthetic implants.\n4. **Versatility**: Can be shaped more precisely to achieve specific contours.\n\n#### Cons:\n1. **Invasive Procedure**: Harvesting rib cartilage requires an additional surgical site, which can lead to more pain and a longer recovery period.\n2. **Potential for Scarring**: Rib harvest may leave a visible scar.\n3. **Risk of Warping**: Over time, crafted cartilage can change shape.\n\n**Silicone:**\n\n#### Pros:\n1. **Simplicity**: Easier procedure with a shorter surgery time and recovery period.\n2. **No Additional Incisions**: Doesn’t require harvesting material from other parts of the body.\n3. **Consistent Shape**: Maintains its form over time without warping.\n\n#### Cons:\n1. **Risk of Infection**: Higher risk of infection or rejection as it is a foreign material.\n2. **Appearance**: May look less natural and have a greater risk of noticeable edges or shifting.\n3. **Potential for Complications**: Requires removal if complications arise.\n\n### Considerations:\n- **Surgeon's Expertise**: Preference might depend on the surgeon’s experience and specialization.\n- **Cost**: Rib cartilage procedures might be more expensive due to the complexity.\n- **Desired Outcome**: Consider the natural look vs. structural longevity.\n\nAlways consult with a qualified plastic surgeon to discuss options tailored to individual needs and circumstances.", "urls": [], "measured_at": "2026-09-10T15:17:02", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-08", "cat": "D", "question": "How is revision rhinoplasty done in Korea and how long do I need to stay?", "engine": "openai", "answer": "Revision rhinoplasty in Korea typically involves the following steps:\n\n1. **Consultation**: Your surgeon will evaluate your previous surgery and discuss your goals.\n2. **Preoperative Assessment**: Medical evaluations and planning the surgical approach.\n3. **Surgery**: The procedure is tailored to correct issues from the previous rhinoplasty, such as structural or aesthetic concerns.\n4. **Recovery**: Initial recovery in the clinic might take a day or two.\n\n**Stay Duration**: You should plan to stay in Korea for about 1 to 2 weeks. This allows time for pre-surgery consultations, the procedure, and initial post-operative care, including follow-up appointments to monitor healing.\n\nIt’s important to discuss your specific case with a qualified Korean surgeon for personalized advice.", "urls": [], "measured_at": "2026-09-10T15:17:07", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-09", "cat": "D", "question": "Facelift in Korea for a 50-year-old: what techniques are used?", "engine": "openai", "answer": "In Korea, facelifts for a 50-year-old often involve a combination of advanced techniques and minimally invasive procedures. Common methods include:\n\n1. **Full Facelift**: Addresses sagging skin, deep creases, and jowls. Involves lifting and tightening skin around the face and neck.\n\n2. **Mini Facelift**: Less invasive, targeting specific areas like the lower face and jowls for mild to moderate sagging.\n\n3. **Thread Lift**: Uses temporary sutures to lift the skin, stimulating collagen production for a more youthful appearance with minimal downtime.\n\n4. **Endoscopic Facelift**: A less invasive technique using small incisions and a camera to lift specific areas.\n\n5. **Laser and Ultrasound Treatments**: Non-surgical options like Ultherapy use ultrasound to stimulate collagen and tighten skin.\n\n6. **Fat Grafting**: Transfers fat from other body parts to the face to restore volume and smooth out wrinkles.\n\n7. **Injectables**: Botox and fillers help reduce wrinkles and add volume to areas like cheeks and lips.\n\nThese techniques can be customized to meet individual needs and preferences, providing natural-looking results.", "urls": [], "measured_at": "2026-09-10T15:17:12", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-10", "cat": "D", "question": "Is liposuction in Korea safe and how many days of downtime should I expect?", "engine": "openai", "answer": "Liposuction in Korea is generally considered safe, especially if performed by a qualified and experienced surgeon. Korea is known for its advanced medical technology and skilled cosmetic surgeons. However, as with any medical procedure, it’s important to do thorough research and choose a reputable clinic.\n\nIn terms of downtime, recovery from liposuction can vary depending on the extent of the procedure and individual circumstances, but here are some general guidelines:\n\n- **Initial Recovery**: Typically, patients should expect about 1 to 2 weeks for initial recovery. During this time, swelling and bruising are common.\n- **Full Recovery**: It may take several weeks to a few months for swelling to completely subside and for the final results to become apparent.\n- **Normal Activities**: Many patients can return to work and normal daily activities within 1 to 2 weeks, but strenuous activities should be avoided for several weeks.\n\nAlways consult with the surgeon for personalized advice and follow their pre- and post-operative care instructions closely.", "urls": [], "measured_at": "2026-09-10T15:17:18", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-11", "cat": "D", "question": "What does VIEW Plastic Surgery's breast surgery process look like from consultation to aftercare?", "engine": "openai", "answer": "Here’s a detailed breakdown of VIEW Plastic Surgery’s breast surgery process—from consultation through aftercare—based on their official materials:\n\n**1. In-Depth Consultation**\n- The process begins with a tailored, one-on-one consultation. VIEW Plastic Surgery examines your body proportions, current breast size, and overall chest structure, ensuring that the surgical plan aligns with your unique anatomy and aesthetic goals.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai))\n\n**2. Comprehensive Preoperative Examination**\n- You undergo a thorough medical assessment, including breast ultrasound and mammography. This ensures a precise diagnosis and helps identify any underlying issues before surgery.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai))\n\n**3. Personalized Design and Surgical Planning**\n- A customized surgical plan is created. This plan considers your body shape, personal preferences, and anatomical details. In some cases, a 3D virtual simulation may be used to help visualize results.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai))\n\n**4. Safe Surgery Execution**\n- VIEW emphasizes safety and precision through a multidisciplinary surgical team—including plastic surgeons, anesthesiologists, radiologists, and general surgeons. Techniques include:\n - **Dual-Plane V technique**: implants placed two-thirds under muscle and one-third under glandular tissue for a natural teardrop look.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai))\n - **FULL HD endoscopic surgery**: enhances visibility, minimizes tissue damage and bleeding, and reduces capsular contracture risk.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai))\n - **No-touch technique with Keller Funnel 2**: minimizes implant contact and infection risk.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai))\n - **Self-Pain Management Device**: gives patients control over pain management, promoting faster recovery.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai))\n - Surgery is typically quick, with minimal bleeding, enabling same-day discharge and generally no drainage tube.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai))\n\n**5. Intensive Aftercare Program**\n- VIEW offers a comprehensive, multi-stage aftercare program:\n\n • *Day of Surgery*: \n - No drainage bag required. Patients may be discharged same day or opt for hospital stay. VIEW provides pain-relief injections and free compression bra rental.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai))\n\n • *Days 3–7*: \n - Follow-up to check surgical progress. Dressings are changed around day 3. Showering and resuming daily activities are permitted (except for patients with periareolar or inframammary incisions).([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai))\n\n • *2 Weeks Post-Op*: \n - A progress check is conducted. Patients receive breast care education and additional treatments such as high-frequency therapy or management for capsular contracture (as needed).([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai))\n\n • *1–3 Months Post-Op*: \n - Regular follow-ups continue. High-frequency therapy or capsulitis management is available unlimitedly, as is scar management support.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai))\n\n • *6 Months to 1 Year*: \n - Progress check and detailed breast examination, including ultrasound.([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai))\n\n • *After 1 Year*: \n - Annual breast check-ups become available (though additional costs may apply).([viewplasticsurgery.com](https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai))\n\n- Additional elements include:\n - **Premium post-op breast care**: regular doctor visits, follow-up ultrasounds, x-rays to assess implant condition, and identify early signs of issues like capsular contracture.([id.viewplasticsurgery.com](https://id.viewplasticsurgery.com/introduction/system/after-care/?utm_source=openai))\n - **Scar and skin care**: Incorporation of dermatology collaboration for laser treatments, radio-frequency therapy, scar management, and lymphatic massages to support recovery and aesthetics.([id.viewplasticsurgery.com](https://id.viewplasticsurgery.com/breast/breast-augmentation/main/?utm_source=openai))\n - **Self-care education**: Patients receive guidance on breast care, compression bra use, scar treatment, and even receive take-home items like pumpkin juice recipes and topical scar salves to support self-management at home.([id.viewplasticsurgery.com](https://id.viewplasticsurgery.com/breast/breast-augmentation/main/?utm_source=openai))\n\n---\n\n**Summary: VIEW Plastic Surgery’s Breast Surgery Journey**\n\n1. In-depth consultation to align aesthetic goals with anatomy \n2. Medical imaging and health assessments for safety \n3. Customized surgical design—potentially with 3D simulation \n4. Advanced, safe surgical execution (HD endoscopy, no-touch technique, same-day discharge) \n5. Multi-phase, personalized aftercare: from early dressing checks to long-term scar and implant monitoring \n\n---\n\nIf you'd like, I can also share general information about the typical breast surgery process in U.S. practices (such as standard incision types, common aftercare guidelines, and recovery timelines) for comparison. Let me know if you'd like that too!", "urls": ["https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/index.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai", "https://www.viewplasticsurgery.com/breast/breast-reduction.html?utm_source=openai", "https://id.viewplasticsurgery.com/introduction/system/after-care/?utm_source=openai", "https://id.viewplasticsurgery.com/breast/breast-augmentation/main/?utm_source=openai", "https://id.viewplasticsurgery.com/breast/breast-augmentation/main/?utm_source=openai"], "measured_at": "2026-09-10T15:17:29", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "D-12", "cat": "D", "question": "Does VIEW Plastic Surgery do a breast ultrasound or examination before augmentation?", "engine": "openai", "answer": "Yes — VIEW Plastic Surgery does perform breast ultrasound (and other examinations) before breast augmentation.\n\nAccording to information on VIEW’s official site:\n\n• They maintain a one-stop, in-house examination center where patients undergo a **comprehensive preoperative evaluation**, including breast ultrasound and mammography, prior to surgery. This is intended to assess the current health of the breasts and safely plan the augmentation procedure ([origin.viewplasticsurgery.com](https://origin.viewplasticsurgery.com/breast/breast-screening/breast-examination/?utm_source=openai)).\n\n• More specifically, VIEW’s system includes **pre-surgery breast ultrasound screening**, performed by breast disease and radiology specialists to evaluate breast tissue and implant-related considerations ([origin.viewplasticsurgery.com](https://origin.viewplasticsurgery.com/breast/breast-re-operation/?utm_source=openai)).\n\nThese sources consistently indicate that breast ultrasound is an integral part of VIEW’s preoperative process for breast augmentation.\n\nIf you’re considering surgery, it’s always a good idea to confirm directly with the clinic what exact tests are included during your consultation and whether any additional screenings—like mammography—are required based on your age, medical history, or risk profile.", "urls": ["https://origin.viewplasticsurgery.com/breast/breast-screening/breast-examination/?utm_source=openai", "https://origin.viewplasticsurgery.com/breast/breast-re-operation/?utm_source=openai"], "measured_at": "2026-09-10T15:17:36", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "D-13", "cat": "D", "question": "Subbrow lift vs upper blepharoplasty: which should I get in Korea?", "engine": "openai", "answer": "Choosing between a subbrow lift and an upper blepharoplasty depends on your aesthetic goals and the specific concerns you want to address. Here's a brief overview to help you decide:\n\n### Subbrow Lift\n- **Purpose**: Lifts the brow area, reducing sagging eyebrows, and improving the appearance of the upper eyelids.\n- **Benefits**: Improves the arch and position of the eyebrows, opens up the eye area, and can reduce forehead lines.\n- **Ideal for**: Those experiencing sagging eyebrows or wanting a more lifted look around the eyes.\n\n### Upper Blepharoplasty\n- **Purpose**: Removes excess skin and fat from the upper eyelids, enhancing the eye shape and reducing droopiness.\n- **Benefits**: Creates a more defined eyelid crease, reduces skin sagging, and can improve vision if sagging skin hinders sight.\n- **Ideal for**: Those with excess eyelid skin, fat, or drooping eyelids.\n\n### Considerations for Korea\n- **Surgeon Expertise**: Research and choose a board-certified plastic surgeon with experience in the procedure you’re considering.\n- **Consultation**: It's advisable to have a consultation to discuss your goals, get personalized recommendations, and understand potential outcomes.\n- **Cultural Aesthetics**: Korean plastic surgeons often have expertise in procedures tailored to Asian facial features, which might be beneficial depending on your background and aesthetic preferences.\n\nUltimately, a professional consultation will be crucial in determining the best procedure for your needs. Make sure to discuss all options, possible risks, and recovery times with your surgeon.", "urls": [], "measured_at": "2026-09-10T15:17:41", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-14", "cat": "D", "question": "Mini lift vs full facelift in Korea: cost and recovery", "engine": "openai", "answer": "Here’s a detailed, up-to-date comparison between a **mini lift** and a **full facelift** in South Korea, covering both **cost** and **recovery** as of late 2026.\n\n---\n\n## Cost Comparison\n\n**Mini Facelift (Mini Lift)** \n- **Median local patient cost**: ₩2,700,000 (approx. US $1,547) based on 2,080 Korean patient reports ([medisou.com](https://medisou.com/en/procedures/mini-facelift-short-scar-limited-incision-facelift?utm_source=openai)). \n- **Typical pricing at Seoul clinics**: ₩4,000,000–₩9,000,000 (~US $3,000–$6,800) ([seoulfaceliftclinic.com](https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea?utm_source=openai)). \n- **Gangnam-specific range**: ₩5,000,000–₩16,000,000 depending on technique complexity (basic to SMAS, plus add-ons) ([gangnam.health](https://www.gangnam.health/plastic-surgery/facelift/procedures-korea/mini-facelift2bb04c04?utm_source=openai)). \n- **Converted via MISOODA (2026)**: US $4,200–$6,500 for a mini lift vs US $6,000–$11,000 for a full (SMAS) facelift ([misooda.com](https://www.misooda.com/en/surgery-guides/smas-face-lift?utm_source=openai)). \n- **SeoulClinics (2026)**: Mini-lift ranges from ₩5,500,000 to ₩11,000,000 (US $4,000–$8,000) ([seoulclinics.io](https://seoulclinics.io/blog/facelift-cost-seoul-2026?utm_source=openai)).\n\n**Full Facelift** \n- **In South Korea**: ₩12,000,000–₩25,000,000 (~US $7,500–$13,500) ([seoulfaceliftclinic.com](https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea?utm_source=openai)). \n- **Korea Surgeon Hub ranges**: ₩7,000,000–₩15,000,000 (~US $5,100–$10,900) for full SMAS facelift; add-ons like neck lift or fat grafting raise it to ₩10,000,000–₩25,000,000+ (~US $7,300–$18,200+) ([koreaplasticsurgery.org](https://koreaplasticsurgery.org/facelift-in-korea-types-of-facelift-best-clinics-costs/?utm_source=openai)). \n- **SeoulClinics (2026)**: \n - SMAS plication facelift: ₩11,000,000–₩18,000,000 (~US $8,000–$13,200) \n - Full SMAS with skin flap: ₩15,000,000–₩23,000,000 (~US $11,000–$16,900) \n - Deep-plane facelift: ₩20,000,000–₩32,000,000 (~US $14,700–$23,500) ([seoulclinics.io](https://seoulclinics.io/blog/facelift-cost-seoul-2026?utm_source=openai)).\n\n**Summary Comparison** \n- Mini Facelift: roughly **US $1,500 to $8,000** (depending on technique and add-ons). \n- Full Facelift (SMAS): roughly **US $5,000 to $17,000**; Deep Plane variant increases to **US $14,700–$23,500**. \n- Mini lifts are significantly more affordable initially, but the cost can climb when combining modes or selecting premium versions.\n\n---\n\n## Recovery & Downtime\n\n**Mini Facelift** \n- **Medisou** reports downtime of **7–14 days**, with full recovery in **6–16 weeks**, and flight safety at **7 days post-op** ([medisou.com](https://medisou.com/en/procedures/mini-facelift-short-scar-limited-incision-facelift?utm_source=openai)). \n- **SeoulFaceliftClinic** gives similar details: swelling/bruising for ~7–10 days, return to routine around day 10, visible improvements in 2–4 weeks, final contour around 2–3 months ([seoulfaceliftclinic.com](https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea?utm_source=openai)). \n- **Gangnam.Health** states swelling peaks in 5–10 days, bruising lasts 1–2 weeks, returning to daily life in 1–2 weeks, and full results visible in 1–3 months ([gangnam.health](https://www.gangnam.health/plastic-surgery/facelift/procedures-korea/mini-facelift2bb04c04?utm_source=openai)). \n- Anecdotal reports note **7–10 days recovery**, with small incisions easily concealed after the first week ([arkeplasticsurgery.com](https://www.arkeplasticsurgery.com/articles/facelift-comparison-korea-full-vs-mini-vs-thread-lift?utm_source=openai)).\n\n**Full Facelift** \n- **SeoulFaceliftClinic** notes swelling/bruising for ~10–14 days, with final results evolving over several months ([seoulfaceliftclinic.com](https://www.seoulfaceliftclinic.com/blog/facelift-cost-comparison-in-korea-mini-vs-full-vs-deep-plane?utm_source=openai)). \n- **Korea Surgeon Hub** maps days 0–3 (peak swelling), days 4–10 (fading bruising, sutures removed), and full normalization beyond those initial weeks ([koreaplasticsurgery.org](https://koreaplasticsurgery.org/facelift-in-korea-types-of-facelift-best-clinics-costs/?utm_source=openai)). \n- **SeoulClinics**… while not providing explicit days, imply a longer morbidity period in line with deeper dissection and general anesthesia ([seoulclinics.io](https://seoulclinics.io/blog/facelift-cost-seoul-2026?utm_source=openai)). \n- **Arke Clinic anecdote**: full facelift involves 2–3 weeks recovery, with compression garment and notable swelling in early days ([arkeplasticsurgery.com](https://www.arkeplasticsurgery.com/articles/facelift-comparison-korea-full-vs-mini-vs-thread-lift?utm_source=openai)).\n\n**Recovery Summary** \n- **Mini Facelift**: quick initial downtime (~1–2 weeks), full recovery in 2–4 months. \n- **Full Facelift**: initial recovery ~2–3 weeks, gradual resolution of swelling—final outcomes take several months.\n\n---\n\n## Longevity & Maintenance\n\n**Mini Facelift** \n- Provides **5–7 years** of rejuvenation, especially when SMAS manipulation is involved ([arkeplasticsurgery.com](https://www.arkeplasticsurgery.com/articles/facelift-comparison-korea-full-vs-mini-vs-thread-lift?utm_source=openai)). \n- **Gangnam.Health** indicates results lasting **3–7 years** depending on aging, skin quality, and procedure specifics ([gangnam.health](https://www.gangnam.health/plastic-surgery/facelift/procedures-korea/mini-facelift2bb04c04?utm_source=openai)).\n\n**Full Facelift (SMAS or Deep Plane)** \n- SMAS facelift lasts longer than mini, though exact timeframe varies; deep-plane lift often promises the most durable result. \n- **Arke Clinic** differentiates longevity: mini (5–7 years), full SMAS (10–15 years) ([arkeplasticsurgery.com](https://www.arkeplasticsurgery.com/articles/facelift-comparison-korea-full-vs-mini-vs-thread-lift?utm_source=openai)). \n- Deep-plane technique is often regarded as offering the most structural and long-lasting rejuvenation ([seoulfaceliftclinic.com](https://www.seoulfaceliftclinic.com/blog/facelift-cost-comparison-in-korea-mini-vs-full-vs-deep-plane?utm_source=openai)).\n\n---\n\n## Procedure Notes & Considerations\n\n- The **mini lift** is characterized by limited incision (typically near the ear), local anesthesia or twilight sedation, shorter surgery (~1 hour), and focuses on lower face and jawline ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/blog/mini-lift-vs-full-facelift-in-korea-2026-guide-to-cost-recovery/?utm_source=openai)). \n- A **full facelift** involves more extensive incision (temple to post-auricular), general anesthesia, longer surgery (~3–5 hours), and can include neck and deeper soft-tissue work ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/blog/mini-lift-vs-full-facelift-in-korea-2026-guide-to-cost-recovery/?utm_source=openai)). \n- In 2026, **deep-plane dissection** is considered the gold-standard in Korea, allowing repositioning with minimal tension for results lasting over a decade ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/blog/mini-lift-vs-full-facelift-in-korea-2026-guide-to-cost-recovery/?utm_source=openai)). \n- Clinics often offer add-ons—neck lift, fat grafting, skin resurfacing—that increase cost but enhance outcomes; always confirm whether quotes include VAT, aftercare, and medications ([seoulfaceliftclinic.com](https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea?utm_source=openai)).\n\n---\n\n## Summary Table\n\n| Feature | Mini Facelift | Full Facelift (SMAS/Deep Plane) |\n|----------------------|------------------------------------|--------------------------------------------|\n| Cost (approximate) | US $1.5k–$8k | US $5k–$17k (SMAS); US $14.7k–$23.5k (Deep Plane) |\n| Downtime | 1–2 weeks recovery; full 2–4 months| 2–3 weeks recovery; months to final result |\n| Longevity | ~5–7 years | ~10–15 years (especially deep-plane) |\n| Procedure Scope | Lower face and jawline | Full face ± neck; deeper tissue reposition |\n| Ideal Candidate | Early aging, mild sagging | Moderate to severe aging, long-term gain |\n\n---\n\n## Final Thoughts\n\nYour choice between a **mini lift** and a **full facelift** in Korea depends on your **budget**, desired **result longevity**, and **willingness to undergo a longer recovery**. The mini lift offers affordability, quicker downtime, and natural-looking improvement—especially suited for early signs of aging. A full facelift, particularly with deep-plane technique, offers more comprehensive, long-lasting results, though at higher cost and longer recovery.\n\nPlease consult with experienced, board-certified Korean clinics to get personalized quotes, verify what's included, and review before–after photos. Let me know if you’d like help comparing clinics, exploring surgeon credentials, or arranging logistics!", "urls": ["https://medisou.com/en/procedures/mini-facelift-short-scar-limited-incision-facelift?utm_source=openai", "https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea?utm_source=openai", "https://www.gangnam.health/plastic-surgery/facelift/procedures-korea/mini-facelift2bb04c04?utm_source=openai", "https://www.misooda.com/en/surgery-guides/smas-face-lift?utm_source=openai", "https://seoulclinics.io/blog/facelift-cost-seoul-2026?utm_source=openai", "https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea?utm_source=openai", "https://koreaplasticsurgery.org/facelift-in-korea-types-of-facelift-best-clinics-costs/?utm_source=openai", "https://seoulclinics.io/blog/facelift-cost-seoul-2026?utm_source=openai", "https://medisou.com/en/procedures/mini-facelift-short-scar-limited-incision-facelift?utm_source=openai", "https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea?utm_source=openai", "https://www.gangnam.health/plastic-surgery/facelift/procedures-korea/mini-facelift2bb04c04?utm_source=openai", "https://www.arkeplasticsurgery.com/articles/facelift-comparison-korea-full-vs-mini-vs-thread-lift?utm_source=openai", "https://www.seoulfaceliftclinic.com/blog/facelift-cost-comparison-in-korea-mini-vs-full-vs-deep-plane?utm_source=openai", "https://koreaplasticsurgery.org/facelift-in-korea-types-of-facelift-best-clinics-costs/?utm_source=openai", "https://seoulclinics.io/blog/facelift-cost-seoul-2026?utm_source=openai", "https://www.arkeplasticsurgery.com/articles/facelift-comparison-korea-full-vs-mini-vs-thread-lift?utm_source=openai", "https://www.arkeplasticsurgery.com/articles/facelift-comparison-korea-full-vs-mini-vs-thread-lift?utm_source=openai", "https://www.gangnam.health/plastic-surgery/facelift/procedures-korea/mini-facelift2bb04c04?utm_source=openai", "https://www.arkeplasticsurgery.com/articles/facelift-comparison-korea-full-vs-mini-vs-thread-lift?utm_source=openai", "https://www.seoulfaceliftclinic.com/blog/facelift-cost-comparison-in-korea-mini-vs-full-vs-deep-plane?utm_source=openai", "https://www.viewplasticsurgery.com/blog/mini-lift-vs-full-facelift-in-korea-2026-guide-to-cost-recovery/?utm_source=openai", "https://www.viewplasticsurgery.com/blog/mini-lift-vs-full-facelift-in-korea-2026-guide-to-cost-recovery/?utm_source=openai", "https://www.viewplasticsurgery.com/blog/mini-lift-vs-full-facelift-in-korea-2026-guide-to-cost-recovery/?utm_source=openai", "https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea?utm_source=openai"], "measured_at": "2026-09-10T15:17:57", "clinics": ["SeoulFaceliftClinic", "Gangnam.Health", "medisou", "seoulclinics", "Korea Surgeon Hub", "Arke Clinic", "VIEW Plastic Surgery", "arkeplasticsurgery"], "view_mentioned": true, "view_rank": 7, "view_sentiment": null} +{"id": "E-01", "cat": "E", "question": "How much does breast augmentation cost in Korea for foreigners in 2026?", "engine": "openai", "answer": "Here’s what the most up-to-date 2026 sources report regarding breast augmentation costs in South Korea for international patients:\n\n***\n\n**1. MISOODA (2026 guideline via Korea Health Industry Development Institute)** \n• General guideline: **USD 6,000–10,000**, all-inclusive for breast augmentation in Gangnam clinics, matching local Korean prices—no foreigner markup ([misooda.com](https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai)). \n• Detailed cost variations: \n – Silicone implant (primary/standard): **USD 5,000–11,000** \n – Premium Motiva/teardrop: **USD 7,500–12,000** \n – Fat transfer: **USD 6,800–11,000** ([misooda.com](https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai)). \n• Note: As of January 1, 2026, the **10% VAT refund for cosmetic procedures** is no longer available, and VAT (10%) is now included in the quoted total price, with no deduction available ([misooda.com](https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai)).\n\n**2. Medisou (Analytics from patient data, August 2026 rates)** \n• Median paid price: **₩8,800,000 ≈ USD 6,186** (FX as of early August 2026) ([medisou.com](https://medisou.com/en/procedures/breast-augmentation-with-implants?utm_source=openai)). \n• Middle 50% range: **₩5,400,000–₩11,550,000**, i.e. approximately **USD 3,800–8,100** ([medisou.com](https://medisou.com/en/procedures/breast-augmentation-with-implants?utm_source=openai)). \n• VAT refund ended January 2026—no VAT rebate available ([medisou.com](https://medisou.com/en/procedures/breast-augmentation-with-implants?utm_source=openai)).\n\n**3. Clinicsoncall (2026 aggregated pricing across clinics)** \n• Price range: **USD 4,450–16,900**, with average surgery cost around **USD 10,675** ([clinicsoncall.com](https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/?utm_source=openai)). \n• Total trip cost (surgeon, recovery, travel, stay): estimated at **USD 8,000–15,000** for breast augmentation ([clinicsoncall.com](https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/?utm_source=openai)).\n\n**4. ClinicSeoul.net (April 2026 survey of 50 Gangnam clinics)** \n• Primary breast augmentation range: **USD 3,700–9,000** ([clinicseoul.net](https://www.clinicseoul.net/breast-augmentation-korea/?utm_source=openai)). \n – Includes budget Korean-made implants like BellaGel (USD 3,700–5,500), mid-range options like Mentor (USD 4,000–6,500), and premium Motiva Ergonomix (USD 5,000–8,000) ([clinicseoul.net](https://www.clinicseoul.net/breast-augmentation-korea/?utm_source=openai)).\n\n**5. Seoul Medical Insider (June 2026 editorial summary)** \n• Standard implant (e.g., Mentor): **USD 3,700–8,500** \n• Motiva Ergonomix: **USD 5,000–14,000** \n• Implant + lift (mastopexy): up to **USD 11,500–20,000** ([seoulmedicalinsider.com](https://www.seoulmedicalinsider.com/procedures/breast-augmentation-korea?utm_source=openai)).\n\n**6. Gangnam Beauty Guide (April 2026)** \n• Pricing in Gangnam: \n – Mid-tier cohesive silicone (Sebbin, Sientra): **₩7,000,000–10,000,000** ≈ **USD 5,300–7,600** \n – Motiva: **₩9,000,000–13,000,000** ≈ **USD 6,800–9,900** \n – Mentor (premium): **₩10,000,000–15,000,000** ≈ **USD 7,600–11,500** ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/procedures/breast-augmentation/?utm_source=openai)). \n• Combined augmentation + lift: **₩12,000,000–20,000,000** ≈ **USD 9,100–15,200** ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/procedures/breast-augmentation/?utm_source=openai)).\n\n**7. VitalityScount (June 2026 summary)** \n• General estimate: **USD 5,000–10,000** for breast augmentation in South Korea—roughly **30–40%** less than US prices ([vitalityscout.com](https://vitalityscout.com/guides/korea-plastic-surgery-cost?utm_source=openai)).\n\n**8. KoreMed Consulting (2026 estimates)** \n• Quoted as **₩3,500,000–8,000,000** (~USD 2,536–5,797)—though this is notably lower than other sources and may exclude some components or reflect lower-end clinics ([koremedconsulting.com](https://koremedconsulting.com/blog/korean-plastic-surgery-american-patients/?utm_source=openai)).\n\n***\n\n**Summary Estimate Table (All-in for Foreign Patients in 2026)**\n\n- **Low-end clinics / basic implants:** USD 3,700–5,800 \n- **Median cost (typical range):** USD 6,000–8,000 \n- **Mid-to-high tier (premium implant & services):** USD 8,000–12,000 \n- **Complex cases (implant + lift):** USD 11,500–20,000\n\n***\n\n** Additional Considerations for 2026 Medical Tourism from the US East Coast (America/New_York Timezone)**\n\n- **VAT refund removal** is significant: patients must now budget VAT (~10%) into the all-inclusive price ([misooda.com](https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai)).\n- Clinics may charge international patients slightly more, though some agencies guarantee **“same price as locals”** (e.g., MISOODA) ([misooda.com](https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai)).\n- Budget for travel-related costs if not included: accommodations, food, transport, translators, and multiple post-op follow-ups ([misooda.com](https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai)).\n\n***\n\n**Recommendation for Foreign Patients Planning Breast Augmentation in South Korea (2026)**\n\n1. Reach out for **itemized quotes** from multiple accredited clinics, especially specifying implant type, anesthesia, recovery, and follow-up terms.\n2. Confirm whether prices include VAT, and whether any concierge/interpreter services are bundled or cost extra.\n3. Consider higher-tier clinics if you opt for premium implants (like Motiva), but note that reputable mid-tier clinics can still provide excellent results for **USD 6–8K** range.\n4. Plan for a **10–14 day stay** for recovery and follow-ups—both quoted estimates and clinic recommendations suggest this timeframe ([clinicseoul.net](https://www.clinicseoul.net/breast-augmentation-korea/?utm_source=openai)).\n\nLet me know if you’d like tailored suggestions based on implant type or clinic tier, or if you’d like help identifying specific clinics offering English support and clear all-in pricing!", "urls": ["https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai", "https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai", "https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai", "https://medisou.com/en/procedures/breast-augmentation-with-implants?utm_source=openai", "https://medisou.com/en/procedures/breast-augmentation-with-implants?utm_source=openai", "https://medisou.com/en/procedures/breast-augmentation-with-implants?utm_source=openai", "https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/?utm_source=openai", "https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/?utm_source=openai", "https://www.clinicseoul.net/breast-augmentation-korea/?utm_source=openai", "https://www.clinicseoul.net/breast-augmentation-korea/?utm_source=openai", "https://www.seoulmedicalinsider.com/procedures/breast-augmentation-korea?utm_source=openai", "https://gangnambeautyguide.com/en/procedures/breast-augmentation/?utm_source=openai", "https://gangnambeautyguide.com/en/procedures/breast-augmentation/?utm_source=openai", "https://vitalityscout.com/guides/korea-plastic-surgery-cost?utm_source=openai", "https://koremedconsulting.com/blog/korean-plastic-surgery-american-patients/?utm_source=openai", "https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai", "https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai", "https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost?utm_source=openai", "https://www.clinicseoul.net/breast-augmentation-korea/?utm_source=openai"], "measured_at": "2026-09-10T15:18:09", "clinics": ["MISOODA", "Medisou", "Clinicsoncall", "ClinicSeoul.net", "Seoul Medical Insider", "Gangnam Beauty Guide", "VitalityScount", "KoreMed Consulting"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-02", "cat": "E", "question": "V-line surgery cost in Korea 2026", "engine": "openai", "answer": "Here is an updated and comprehensive overview of the cost of V‑line surgery (jaw and chin contouring) in South Korea in 2026. I have included multiple reputable sources to reflect the range of prices and what influences them.\n\n **Summary of Cost Estimates (USD, 2026):**\n\n• MISOODA, a trusted medical tourism facilitator, lists V‑Line surgery in Korea at approximately **$6,000–$15,000** all‑in, matching local pricing and including interpretation and concierge services.([misooda.com](https://www.misooda.com/en/surgery-guides/korean-v-line-surgery?utm_source=openai)) \n• MedVoyage reports a somewhat broader range—**$5,000–$10,000** for V‑line (jaw reduction + chin), depending on complexity.([medvoyage.app](https://medvoyage.app/blog/jaw-surgery-south-korea-cost-2026?utm_source=openai)) \n• Korea Med Guide cites **$5,000–$12,000** for jaw and chin contouring, with combined procedures like cheekbone reduction adding $3,700–$5,600. Thus, V‑line plus zygoma can total **$8,000–$15,000**.([koreamedguide.com](https://koreamedguide.com/v-line-facial-contouring-cost-korea/?utm_source=openai)) \n• Seoul Medical Insider’s June 2026 update gives a comprehensive breakdown:\n – Jaw angle reduction only: **$4,500–$8,000** \n – V‑Line (jaw + chin): **$5,000–$12,000** \n – 3-piece contour (jaw + chin + zygoma): **$10,000–$16,000**([seoulmedicalinsider.com](https://www.seoulmedicalinsider.com/procedures/v-line-jaw-surgery-korea?utm_source=openai)) \n• AskGangnam’s May 2026 benchmark, surveying around 50 Gangnam clinics, reports:\n – V‑line jaw surgery: **$4,500–$13,500** \n – With chin work included: **$6,700–$10,500**([askgangnam.com](https://askgangnam.com/articles/korean-cosmetic-surgery-2026-price-benchmark-procedure-cost?utm_source=openai)) \n• Medicakorea’s August 2026 breakdown confirms V‑line/jaw contouring generally costs **$4,500–$13,500**, ranking it among the more expensive facial procedures.([medicakorea.blogspot.com](https://medicakorea.blogspot.com/2026/08/cost-breakdown-for-popular-medical.html?utm_source=openai)) \n• VitalityScout (June 2026) estimates “facial contouring (V‑line)” at **$8,000–$15,000**, typically 30–50% lower than US prices.([vitalityscout.com](https://vitalityscout.com/guides/korea-plastic-surgery-cost?utm_source=openai)) \n• A more specific case from V‑Line Surgery Korea site estimates primary contouring at **$7,900**, with revision and complex cases up to **$16,000**.([vlinesurgerykorea.com](https://www.vlinesurgerykorea.com/specialties/facial-contouring-treatment-or-slim-and-defined-features?utm_source=openai)) \n\nPutting it all together:\n\n * Jaw‑only procedures can start around **$4,500** and go up to roughly **$8,000**. \n * Standard combined V‑line (jaw + chin) hovers between **$5,000 and $12,000–$13,500**, depending on clinic, surgeon, complexity, and included services. \n * More extensive treatments—V‑line plus cheekbone (zygomatic) reduction—can range from **$10,000 to $16,000**, with upper-end estimates up to **$17,000** in some bundled packages.([misooda.com](https://www.misooda.com/en/surgery-guides/facial-contouring-surgery-in-korea?utm_source=openai)) \n\n **Factors Influencing Cost Variation:**\n\n1. **Scope of Procedure** \n – Basic jaw angle reduction only is less expensive. \n – Adding chin reshaping or combining multiple bony areas increases cost substantially.([seoulmedicalinsider.com](https://www.seoulmedicalinsider.com/procedures/v-line-jaw-surgery-korea?utm_source=openai)) \n\n2. **Clinic Prestige & Surgeon Expertise** \n – Leading specialists or premium Gangnam clinics typically charge more. The variance between $5,000 vs. $12,000 can reflect both surgeon skill/experience and case complexity.([koreamedguide.com](https://koreamedguide.com/v-line-facial-contouring-cost-korea/?utm_source=openai)) \n\n3. **Included Services** \n – Some packages (especially via agencies like MISOODA) include interpreter, concierge, imaging, follow‑ups, and no hidden fees. Others quote just the surgery, excluding extras like anesthesia, CT scans, accommodations, or VAT.([misooda.com](https://www.misooda.com/en/surgery-guides/korean-v-line-surgery?utm_source=openai)) \n\n4. **VAT Refund Removal (2026)** \n – As of January 1, 2026, the 10% VAT refund for foreign cosmetic patients was abolished in Korea, effectively raising costs by that amount compared to pre‑2026 pricing.([misooda.com](https://www.misooda.com/en/surgery-guides/korean-v-line-surgery?utm_source=openai)) \n\n **Estimated Price Ranges (USD) in 2026, South Korea:**\n\n- Jaw angle reduction only: **$4,500–$8,000** \n- V‑line (jaw + chin): **$5,000–$12,000**, possibly up to **$13,500** in premium settings \n- Combined V‑line + cheekbone (zygoma): **$10,000–$16,000**, with some packages reaching **$17,000** \n- Fully bundled facial contouring packages (jaw + cheekbone + V‑line): **$13,000–$17,000** according to some all‑in estimates([misooda.com](https://www.misooda.com/en/surgery-guides/facial-contouring-surgery-in-korea?utm_source=openai)) \n\n **Additional Costs to Budget:**\n\nThough not always included in surgery quotes, international patients should also budget for:\n\n- Pre‑op imaging (CT scans, planning) \n- Anesthesia, hospital stay, OR fees, follow‑ups \n- Interpreter or concierge services if not bundled \n- Accommodation, meals, local transportation, airport transfers \n- Post‑op care items (compression garments, de‑swelling treatments)([misooda.com](https://www.misooda.com/en/surgery-guides/korean-v-line-surgery?utm_source=openai)) \n\n **Bottom Line:**\n\nIn **September 2026**, V‑Line (jaw + chin) surgery in South Korea typically costs **$5,000 to $12,000**, with jaw‑only procedures starting at **$4,500**, and combined contouring with cheekbones reaching up to **$17,000** in full‑service packages. To get a precise quote tailored to your case, I recommend contacting accredited clinics directly or reputable agencies that offer transparent, itemized proposals.\n\nLet me know if you’d like help understanding what’s included in each quote, factors in surgeon selection, or how to compare post‑op recovery expectations!", "urls": ["https://www.misooda.com/en/surgery-guides/korean-v-line-surgery?utm_source=openai", "https://medvoyage.app/blog/jaw-surgery-south-korea-cost-2026?utm_source=openai", "https://koreamedguide.com/v-line-facial-contouring-cost-korea/?utm_source=openai", "https://www.seoulmedicalinsider.com/procedures/v-line-jaw-surgery-korea?utm_source=openai", "https://askgangnam.com/articles/korean-cosmetic-surgery-2026-price-benchmark-procedure-cost?utm_source=openai", "https://medicakorea.blogspot.com/2026/08/cost-breakdown-for-popular-medical.html?utm_source=openai", "https://vitalityscout.com/guides/korea-plastic-surgery-cost?utm_source=openai", "https://www.vlinesurgerykorea.com/specialties/facial-contouring-treatment-or-slim-and-defined-features?utm_source=openai", "https://www.misooda.com/en/surgery-guides/facial-contouring-surgery-in-korea?utm_source=openai", "https://www.seoulmedicalinsider.com/procedures/v-line-jaw-surgery-korea?utm_source=openai", "https://koreamedguide.com/v-line-facial-contouring-cost-korea/?utm_source=openai", "https://www.misooda.com/en/surgery-guides/korean-v-line-surgery?utm_source=openai", "https://www.misooda.com/en/surgery-guides/korean-v-line-surgery?utm_source=openai", "https://www.misooda.com/en/surgery-guides/facial-contouring-surgery-in-korea?utm_source=openai", "https://www.misooda.com/en/surgery-guides/korean-v-line-surgery?utm_source=openai"], "measured_at": "2026-09-10T15:18:23", "clinics": ["MISOODA", "MedVoyage", "Korea Med Guide", "Seoul Medical Insider", "AskGangnam", "Medicakorea", "VitalityScout", "V-Line Surgery Korea"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-03", "cat": "E", "question": "How much does double jaw surgery cost in Seoul?", "engine": "openai", "answer": "Here’s an updated overview as of September 2026 on the cost of double-jaw surgery (bimaxillary orthognathic surgery) in Seoul, South Korea. The figures below include multiple reputable sources and should help you understand the price ranges, cost components, and factors influencing the fees.\n\n---\n\n## Medical vs Cosmetic Considerations\n- **Purpose matters**: If the surgery is deemed *therapeutic*—for functional issues like malocclusion—it may be partially covered by South Korea’s National Health Insurance (typically a 20% inpatient copayment, VAT-exempt, possibly reimbursable via tax credit and indemnity)([mowatool.com](https://www.mowatool.com/en/calculators/health/orthognathic-double-jaw-surgery-cost?utm_source=openai)).\n- If performed for purely *cosmetic* reasons, the procedure is non-covered, VAT at 10% applies, and the full cost is out-of-pocket([mowatool.com](https://www.mowatool.com/en/calculators/health/orthognathic-double-jaw-surgery-cost?utm_source=openai)).\n\n---\n\n## Cost Estimates in Seoul (2026)\n\n**1. Gangnam/Private Clinic Estimates** \n- Surgical fees alone: ₩20–35 million (approx. USD $15,000–26,500) \n- Including orthodontics, hospital stay, and planning: total around ₩25–50 million (USD $19,000–38,000)([gangnambeautyguide.com](https://gangnambeautyguide.com/en/procedures/double-jaw-surgery/?utm_source=openai)).\n\n**2. MISOODA Medical Tourism Quote Guide** \n- All-in inclusive cost for two-jaw surgery: USD $9,000–18,000, with no foreigner markup and a concierge service([misooda.com](https://www.misooda.com/en/surgery-guides/two-jaw-surgery-cost-in-korea?utm_source=openai)).\n\n**3. SeoulMedicalInsider (July 2026)** \n- Typical range: USD $13,000–22,000, depending on case complexity and clinic reputation([seoulmedicalinsider.com](https://www.seoulmedicalinsider.com/blog/two-jaw-surgery-korea-guide?utm_source=openai)).\n\n**4. DoubleJawSurgeryKorea.com Estimates** \n- Conventional double-jaw: USD $12,000–20,000 \n- With 3D planning: USD $15,000–25,000 \n- Complex/segmental: USD $18,000–30,000([doublejawsurgerykorea.com](https://www.doublejawsurgerykorea.com/about-us?utm_source=openai)).\n\n**5. SeoulFacialSurgery Cost Comparison (Dec 2025)** \n- Double jaw surgery range: ₩18–30 million (~USD $13,500–22,300)([seoulfacialsurgery.com](https://www.seoulfacialsurgery.com/blog/korea-jaw-surgery-cost-comparisons?utm_source=openai)).\n\n**6. Segmental Surgery (iCloudHospital, Mar 2026)** \n- Segmental double-jaw surgery: USD $17,000–24,000([doublejawsurgerykorea.com](https://www.doublejawsurgerykorea.com/specialties/segmental-double-jaw-surgery?utm_source=openai)).\n\n**7. MedicalTravelCost Data (July 2026)** \n- Orthognathic surgery in Seoul:\n - From: $8,160 \n - Typical: $12,600 \n - Estimated all-in: ≈ $10,200 \n - In KRW: ₩12–25 million([medicaltravelcost.com](https://medicaltravelcost.com/costs/orthognathic-surgery/south-korea/seoul?utm_source=openai)).\n\n**8. SeoulClinics (Last week)** \n- Private mid-tier clinics:\n - Two-jaw only: ₩13–17 million (USD $9,700–12,700) \n - With genioplasty: ₩17–22 million (USD $12,700–16,500) \n - Flagship hospitals: ₩20–25 million (USD $15,000–18,700)([seoulclinics.io](https://seoulclinics.io/blog/two-jaw-surgery-seoul-guide-2026?utm_source=openai)).\n\n**9. SeoulClinics Full Price Guide (Sept 3, 2026)** \n- Realistic price range: ₩18–38 million (USD $13,000–27,000) \n- Quotes below ₩14 million may indicate compromised quality or hidden cost cuts([seoulclinics.io](https://seoulclinics.io/blog/two-jaw-surgery-cost-seoul-2026?utm_source=openai)).\n\n**10. MedVoyage (Mar 2026)** \n- Double-jaw surgery: USD $10,000–15,000; orthognathic corrective jaw surgery: similarly USD $8,000–15,000([medvoyage.app](https://medvoyage.app/blog/jaw-surgery-south-korea-cost-2026?utm_source=openai)).\n\n**11. KoreaClinicCost (July 2025)** \n- Standard: ₩17–24 million (~USD $12,900–18,200) \n- Complex with genioplasty: ₩22–30 million (~USD $16,700–22,800) \n- Itemized cost breakdown includes anesthesia, imaging, hospital stay, and optional procedures([koreacliniccost.com](https://www.koreacliniccost.com/two-jaw-surgery-double-jaw-surgery-cost-in-korea?utm_source=openai)).\n\n---\n\n## Summary Table\n\n| **Case Type** | **KRW (2026)** | **USD (2026)** |\n|-------------------------------------------|-------------------------|-----------------------------|\n| Minimum (private clinic basic) | ₩13M | $9.7K |\n| Mid-range (with orthognathics bundled) | ₩18–25M | $13K–$18.7K |\n| High end / functional + aesthetic combos | ₩25–38M | $19K–$27K |\n| Segmental or highly complex cases | N/A | $17K–$24K |\n| Budget medical-tourism estimate | N/A | $9K–$18K (all inclusive) |\n\n---\n\n## Final Thoughts & Recommendations\n\n- **Expect complex fee structure**: The cost often excludes orthodontic treatment (₩2–5M pre-op; ₩1.5–3M post-op) and additional planning tools or hospital stay premiums([gangnambeautyguide.com](https://gangnambeautyguide.com/en/procedures/double-jaw-surgery/?utm_source=openai)).\n- **Beware of lowball quotes (< ₩14M)**—they may reflect shortcuts in surgical standards or hidden costs([seoulclinics.io](https://seoulclinics.io/blog/two-jaw-surgery-cost-seoul-2026?utm_source=openai)).\n- **Always request a detailed breakdown**: Ask for specifics on surgeon fees, anesthesia, hospital stay, imaging, orthodontics, VAT inclusion, and aftercare.\n- **Confirm purpose and coverage**: If your case is medically functional and qualifies as therapeutic, insurance and tax benefits may apply; otherwise, expect full out-of-pocket cost([mowatool.com](https://www.mowatool.com/en/calculators/health/orthognathic-double-jaw-surgery-cost?utm_source=openai)).\n- **Stay duration**: Most sources recommend a minimum 2–3 weeks in Korea to cover consultation, surgery, and initial recovery([misooda.com](https://www.misooda.com/en/surgery-guides/two-jaw-surgery-cost-in-korea?utm_source=openai)).\n\n---\n\nIf you’d like help comparing clinics, navigating insurance, or preparing for your consultation, feel free to ask!", "urls": ["https://www.mowatool.com/en/calculators/health/orthognathic-double-jaw-surgery-cost?utm_source=openai", "https://www.mowatool.com/en/calculators/health/orthognathic-double-jaw-surgery-cost?utm_source=openai", "https://gangnambeautyguide.com/en/procedures/double-jaw-surgery/?utm_source=openai", "https://www.misooda.com/en/surgery-guides/two-jaw-surgery-cost-in-korea?utm_source=openai", "https://www.seoulmedicalinsider.com/blog/two-jaw-surgery-korea-guide?utm_source=openai", "https://www.doublejawsurgerykorea.com/about-us?utm_source=openai", "https://www.seoulfacialsurgery.com/blog/korea-jaw-surgery-cost-comparisons?utm_source=openai", "https://www.doublejawsurgerykorea.com/specialties/segmental-double-jaw-surgery?utm_source=openai", "https://medicaltravelcost.com/costs/orthognathic-surgery/south-korea/seoul?utm_source=openai", "https://seoulclinics.io/blog/two-jaw-surgery-seoul-guide-2026?utm_source=openai", "https://seoulclinics.io/blog/two-jaw-surgery-cost-seoul-2026?utm_source=openai", "https://medvoyage.app/blog/jaw-surgery-south-korea-cost-2026?utm_source=openai", "https://www.koreacliniccost.com/two-jaw-surgery-double-jaw-surgery-cost-in-korea?utm_source=openai", "https://gangnambeautyguide.com/en/procedures/double-jaw-surgery/?utm_source=openai", "https://seoulclinics.io/blog/two-jaw-surgery-cost-seoul-2026?utm_source=openai", "https://www.mowatool.com/en/calculators/health/orthognathic-double-jaw-surgery-cost?utm_source=openai", "https://www.misooda.com/en/surgery-guides/two-jaw-surgery-cost-in-korea?utm_source=openai"], "measured_at": "2026-09-10T15:18:35", "clinics": ["Gangnam Beauty Guide", "MISOODA", "SeoulMedicalInsider", "DoubleJawSurgeryKorea", "SeoulFacialSurgery", "iCloudHospital", "MedicalTravelCost", "SeoulClinics"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-04", "cat": "E", "question": "Is plastic surgery in Korea cheaper than in the US? How much can I save?", "engine": "openai", "answer": "Plastic surgery in Korea is generally known to be more affordable than in the United States. However, the exact amount you can save depends on several factors, including the type of procedure, the clinic or surgeon you choose, and additional costs like travel and accommodation. \n\nOn average, surgeries in Korea might be 30-50% less expensive compared to the US. Here's a general comparison:\n\n- **Rhinoplasty**: In Korea, prices might range from $3,000 to $6,000, while in the US, it could be $5,000 to $15,000.\n- **Double Eyelid Surgery**: Typically costs $1,500 to $3,000 in Korea, versus $2,000 to $5,000 in the US.\n- **Facelifts**: In Korea, you might pay around $4,000 to $8,000, compared to $6,000 to $15,000 in the US.\n\nKeep in mind that these figures can vary widely depending on specific circumstances. Additionally, South Korea is known for its high standards and expertise in cosmetic surgery, especially in popular areas like Seoul.\n\nBefore making a decision, consider consulting with multiple clinics, reviewing surgeon credentials, and calculating total expenses, including travel and recovery time.", "urls": [], "measured_at": "2026-09-10T15:18:41", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-05", "cat": "E", "question": "VIEW Plastic Surgery price list for international patients", "engine": "openai", "answer": "I can't access specific pricing lists for plastic surgery, as these can vary widely depending on the clinic, country, and type of surgery. However, I recommend checking the websites of the clinics or hospitals you're interested in, as they often provide detailed information for international patients. Additionally, contacting them directly can give you the most accurate and up-to-date pricing information.", "urls": [], "measured_at": "2026-09-10T15:18:45", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-06", "cat": "E", "question": "What hidden costs should I expect for plastic surgery in Korea as a foreigner?", "engine": "openai", "answer": "When considering plastic surgery in Korea as a foreigner, it's important to be aware of potential hidden costs beyond the procedure itself. Here are some to consider:\n\n1. **Consultation Fees**: Some clinics may charge for initial consultations, especially if you visit multiple surgeons.\n\n2. **Pre-operative Tests**: Blood tests, imaging, and other pre-operative assessments can add to costs.\n\n3. **Anesthesia Fees**: These may not always be included in the quoted price for surgery.\n\n4. **Hospital Stay**: If your procedure requires an overnight stay, there may be additional fees.\n\n5. **Medication**: Post-operative medication, such as painkillers and antibiotics, might not be included.\n\n6. **Revision Surgery**: If needed, touch-ups or revisions can incur extra costs.\n\n7. **Travel and Accommodation**: Consider flight, lodging, and transportation expenses, especially if you need to stay for recovery.\n\n8. **Translation Services**: You may need to hire a translator for medical consultations and communication.\n\n9. **Post-Operative Care**: Follow-up appointments, treatments, or therapies might not be included in the initial price.\n\n10. **Insurance**: Some procedures might require specific insurance coverage, which could be extra.\n\nIt's advisable to get a detailed breakdown of costs from the clinic and discuss any potential additional charges before proceeding.", "urls": [], "measured_at": "2026-09-10T15:18:50", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-07", "cat": "E", "question": "Can foreigners get a tax refund on plastic surgery in Korea?", "engine": "openai", "answer": "Yes, foreigners can be eligible for a Value-Added Tax (VAT) refund on certain cosmetic surgeries performed in South Korea. However, it's important to note a few key points:\n\n1. **Eligible Procedures**: Not all plastic surgeries are eligible for a tax refund. Generally, cosmetic procedures that are purely for aesthetic purposes and are not medically necessary might qualify for VAT refunds.\n\n2. **Registered Clinics**: The surgery must be performed at a clinic registered with the Korean Health Industry Development Institute for the VAT refund program.\n\n3. **Documentation**: You'll need proper documentation, including receipts and potentially a VAT refund application form provided by the clinic.\n\n4. **Refund Process**: The refund is typically processed at the airport when leaving Korea. Present your documents at the tax refund booth.\n\n5. **Duration of Stay**: There may be a requirement on the length of stay or the timing of the procedure relative to your departure from Korea.\n\nIt's advisable to check with the specific clinic and consult the Korean Ministry of Health and Welfare or official tourism sources for the most accurate and up-to-date information.", "urls": [], "measured_at": "2026-09-10T15:18:57", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-08", "cat": "E", "question": "Rhinoplasty cost in Gangnam for foreigners", "engine": "openai", "answer": "Here’s a detailed, updated guide to rhinoplasty costs in Gangnam (Seoul) for foreign patients, reflecting 2026 data. All amounts are based on today’s approximate KRW–USD conversion rates.\n\n**1. Procedure-Only Cost Ranges**\n\n- According to KoreaCareGuide, Gangnam rhinoplasty prices range broadly from 3 million to 12 million KRW (~US 2,200–9,000) for primary cases, depending on complexity and materials. Revision procedures cost more—6 to 15 million KRW (~US 4,500–11,200) ([koreacareguide.com](https://koreacareguide.com/procedures/rhinoplasty-in-gangnam/?utm_source=openai)).\n\n- A blog post for foreign patients estimates primary cases between ₩3,000,000–10,000,000 (~US 2,200–7,500). Basic work (tip or bridge refinement) sits at the lower end; advanced structural techniques like rib cartilage grafts push costs into the upper range. Revision cases usually start from ₩7,000,000 (~US 5,000+) ([gangnam.health](https://www.gangnam.health/blog/how-much-should-foreign-patients-budget-for-nose-surgery-in-gangnam-seoul?utm_source=openai)).\n\n- SeoulBeautyTalk (May 2026) reports actual quotes seen by foreign patients in Gangnam: primary rhinoplasty costing ₩3,500,000–7,000,000; and revision rhinoplasty ranging from ₩6,000,000–12,000,000 ([seoulbeautytalk.com](https://seoulbeautytalk.com/blog/how-much-does-plastic-surgery-cost-in-seoul?utm_source=openai)).\n\n- Gangnam Beauty Guide (April 2026) provides a refined breakdown:\n • Silicone-based augmentation (bridge + tip): ₩4.5M–7.5M (~US 3,400–5,600) \n • Autologous cartilage (septal or ear) in the tip: ₩6M–10M (~US 4,500–7,500) \n • Full rib cartilage rhinoplasty: ₩8M–14M (~US 6,000–10,500) \n • Revision: ₩9M–16M (US 6,750–12,000), with complex revisions going up to ₩25M (~US 19,000) ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/procedures/rhinoplasty/?utm_source=openai)).\n\n- CYL Blog (2026) shows similar pricing:\n • Primary (silicone + tip cartilage): ₩3M–6M (~US 2,300–4,600) \n • Revision: ₩4M–9M (~US 3,100–6,900) \n • Rib cartilage: ₩6M–10M (~US 4,600–7,700) \n • Tip plasty only: ₩2M–3.5M (~US 1,500–2,700) \n • Alar reduction: ₩1M–2M (~US 800–1,500) ([cyl.co.kr](https://cyl.co.kr/blog/nose-surgery-01-rhinoplasty-guide/?utm_source=openai)).\n\n**2. Foreign Patient Pricing & Additional Fees**\n\n- ClinicSeoul.net's March 2026 foreign-patient survey indicates:\n • Standard augmentation rhinoplasty (bridge + tip): US 2,100–3,500 \n • Tip-only: US 1,500–3,200 \n • Structural: US 5,000–8,000 \n • Complex/two-stage: US 8,000–12,000 \n • Revision: US 2,700–7,000+ \n Clinics often impose a 10–20% foreigner surcharge on top of Korean pricing ([clinicseoul.net](https://www.clinicseoul.net/how-much-does-a-nose-job-in-korea-cost/?utm_source=openai)).\n\n- PlacidWay’s July–August 2026 guide corroborates: primary rhinoplasty is around US 2,200–7,500, while revision or rib-cartilage cases often fall between US 6,000–15,000+ ([gangnam.placidway.com](https://gangnam.placidway.com/article/9542/Rhinoplasty-in-Gangnam-South-Korea-Your-Complete-2026-Patient-Guide?utm_source=openai)).\n\n**3. Total All-In Budget (Procedure + Travel + Ancillary Costs)**\n\n- According to SeoulPlasticSurgeon.com (Feb 2026), rhinoplasty quoted at ₩3–5 million often ends up costing ₩6–7 million (~US 3,800–5,400) for foreign patients once you include 7–10 days of accommodation, post-op medications, and coordinator fees—adding roughly 30–40% to the quoted surgery cost ([seoulplasticsurgeon.com](https://www.seoulplasticsurgeon.com/blog/total-cost-calculator-plastic-surgery-lodging-aftercare-gangnam?utm_source=openai)).\n\n- A worked example from GangnamBeauty.guide outlines a tier-vetted, ear-cartilage primary rhinoplasty:\n • Procedure: $7,500 \n • Extras (pre-op tests, nursing, medications): ~$900 \n • 14-night hotel (~$150/night): $2,100 \n • Living expenses: $700 \n • Foreign-card surcharge (≈3.5%): $290 \n • Flight: $1,200–2,200 \n • Insurance: $180 \n Total: ~$13,000–14,000 USD—even though advertised as $7,500 ([gangnambeauty.guide](https://gangnambeauty.guide/en/pricing-in-gangnam/?utm_source=openai)).\n\n- ClinicSeoul.net adds that total realistic cost ranges are: US 4,500–8,000 for standard cases; US 8,000–18,000+ for complex work, when factoring in travel-related expenses ([clinicseoul.net](https://www.clinicseoul.net/how-much-does-a-nose-job-in-korea-cost/?utm_source=openai)).\n\n**4. Summary Table (Estimates)**\n\nProcedure Type | Estimated Surgery Cost (USD) | Estimated All-In Cost (USD)\n---------------|------------------------------|------------------------------\nTip plasty only | $1,500–3,200 | $3,500–5,000\nStandard augmentation (silicone + tip) | $2,100–5,600 | $4,500–8,000\nAutologous cartilage (ear/septal) | $4,500–7,500 | $6,500–10,000\nRib cartilage rhinoplasty (structural) | $6,000–10,500 | $8,000–12,000+\nRevision rhinoplasty | $2,700–12,000 | $6,000–15,000+\n\n**5. Recommendations for Foreign Patients**\n\n1. Always get **itemized, written quotes**, including surgeon’s fee, OR charges, anesthesia, implants/grafts, post-op care, and coordinator services.\n\n2. **Confirm whether a foreigner’s surcharge** (typically 10–20%) or agency commission (15–30%) is applied. Ask for separate breakdowns if needed ([clinicseoul.net](https://www.clinicseoul.net/how-much-does-a-nose-job-in-korea-cost/?utm_source=openai)).\n\n3. Budget for **recovery accommodation**, estimated at ~7–14 nights—factor $90–220/night depending on hotel choice ([gangnambeauty.guide](https://gangnambeauty.guide/en/pricing-in-gangnam/?utm_source=openai)).\n\n4. **Plan for post-op necessities**: medications, splints, follow-up appointments, and possible translator fees.\n\n5. When comparing, be clear about **clinic tier**: lower prices may reflect less experience, hidden charges, or minimal support.\n\n---\n\nIn summary, as of mid‑2026, foreign rhinoplasty patients in Gangnam can expect:\n\n- Clinic procedure fees ranging roughly between **US 2,100 and 12,000**, based on complexity and material choices.\n- A realistic total cost—including surgery, lodging, travel, and miscellaneous fees—likely between **US 4,500 and 15,000+**, particularly for advanced or revision cases.\n\nPlease let me know if you'd like help identifying clinics with English-speaking coordinators, transparent pricing, or assistance planning a full trip and timeline.", "urls": ["https://koreacareguide.com/procedures/rhinoplasty-in-gangnam/?utm_source=openai", "https://www.gangnam.health/blog/how-much-should-foreign-patients-budget-for-nose-surgery-in-gangnam-seoul?utm_source=openai", "https://seoulbeautytalk.com/blog/how-much-does-plastic-surgery-cost-in-seoul?utm_source=openai", "https://gangnambeautyguide.com/en/procedures/rhinoplasty/?utm_source=openai", "https://cyl.co.kr/blog/nose-surgery-01-rhinoplasty-guide/?utm_source=openai", "https://www.clinicseoul.net/how-much-does-a-nose-job-in-korea-cost/?utm_source=openai", "https://gangnam.placidway.com/article/9542/Rhinoplasty-in-Gangnam-South-Korea-Your-Complete-2026-Patient-Guide?utm_source=openai", "https://www.seoulplasticsurgeon.com/blog/total-cost-calculator-plastic-surgery-lodging-aftercare-gangnam?utm_source=openai", "https://gangnambeauty.guide/en/pricing-in-gangnam/?utm_source=openai", "https://www.clinicseoul.net/how-much-does-a-nose-job-in-korea-cost/?utm_source=openai", "https://www.clinicseoul.net/how-much-does-a-nose-job-in-korea-cost/?utm_source=openai", "https://gangnambeauty.guide/en/pricing-in-gangnam/?utm_source=openai"], "measured_at": "2026-09-10T15:19:11", "clinics": ["KoreaCareGuide", "Gangnam Health", "SeoulBeautyTalk", "Gangnam Beauty Guide", "CYL Blog", "ClinicSeoul.net", "PlacidWay", "SeoulPlasticSurgeon.com"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "F-01", "cat": "F", "question": "Is plastic surgery in Korea safe for foreigners? What safety standards should I look for?", "engine": "openai", "answer": "Plastic surgery in Korea is generally considered safe for foreigners, as the country is well-known for its advanced medical technology and skilled surgeons. However, there are important safety standards and considerations to keep in mind:\n\n1. **Accreditation**: Ensure the clinic is accredited by recognized institutions, such as the Korean Accreditation Program for Hospitals serving Foreign Patients (KAHF).\n\n2. **Licensed Surgeons**: Verify that the surgeons are board-certified by organizations like the Korean Society of Plastic and Reconstructive Surgeons (KSPRS).\n\n3. **Facility Standards**: Check that the facility meets international standards for safety and hygiene.\n\n4. **Transparent Communication**: Ensure clear communication about procedures, expectations, risks, and costs. It's important that staff can communicate effectively in your language.\n\n5. **Consultation**: Have thorough consultations with the surgeon about your goals and medical history.\n\n6. **Reviews and Testimonials**: Look for reviews and testimonials from other foreign patients to gauge their experiences.\n\n7. **Emergency Procedures**: Ensure that the clinic has protocols for handling emergencies and complications.\n\n8. **Follow-up Care**: Confirm that there is a plan for follow-up care, both immediately after the procedure and once you return home.\n\nTaking these steps can help ensure a safer experience when considering plastic surgery in Korea.", "urls": [], "measured_at": "2026-09-10T15:19:16", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "F-02", "cat": "F", "question": "Does VIEW Plastic Surgery have anesthesiologists present during surgery?", "engine": "openai", "answer": "Yes — according to reliable, firsthand information shared by View Plastic Surgery itself, full-time anesthesiologists are indeed present during surgeries.\n\nHere's what was stated in a Q&A posted approximately 10 months ago by the clinic on Reddit:\n\n• View Plastic Surgery operates as an international specialty hospital in Gangnam, Seoul, with a hospital-grade anesthesia system in place. ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1odxg9l/greetings_from_view_plastic_surgery_korea_qa/?utm_source=openai)) \n• They explicitly note that **full-time anesthesiologists are on site**, and their facility includes dedicated monitoring, pre-surgery screening, and built-in emergency protocols. ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1odxg9l/greetings_from_view_plastic_surgery_korea_qa/?utm_source=openai)) \n\nThis aligns with practices at hospital-grade plastic surgery centers worldwide, where anesthesiologists (sometimes with the assistance of nurse anesthetists) manage the administration of anesthesia and monitor patients throughout procedures. For example, per the American Society of Plastic Surgeons, during both awake and general anesthetic plastic surgery, an anesthesiologist monitors vital signs continuously throughout and into recovery. ([plasticsurgery.org](https://www.plasticsurgery.org/news/articles/awake-plastic-surgery-vs-procedures-with-general-anesthesia?utm_source=openai))\n\n**In summary:** \nYes, View Plastic Surgery confirms having full-time anesthesiologists present during surgery, as part of their coordinated, hospital-grade safety and anesthesia systems.", "urls": ["https://www.reddit.com/r/SeoulPlasticSurgery/comments/1odxg9l/greetings_from_view_plastic_surgery_korea_qa/?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1odxg9l/greetings_from_view_plastic_surgery_korea_qa/?utm_source=openai", "https://www.plasticsurgery.org/news/articles/awake-plastic-surgery-vs-procedures-with-general-anesthesia?utm_source=openai"], "measured_at": "2026-09-10T15:19:50", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "F-03", "cat": "F", "question": "What happens if I have complications after returning home from plastic surgery in Korea?", "engine": "openai", "answer": "If you experience complications after returning home from plastic surgery in Korea, here are some steps you can take:\n\n1. **Contact Your Surgeon**: Reach out to the surgeon who performed your procedure. They can provide guidance on the next steps and help determine the severity of the complication.\n\n2. **Seek Local Medical Assistance**: It's essential to see a local healthcare provider who can assess your condition and provide immediate care if necessary.\n\n3. **Documentation**: Keep all records of your surgery, including communication with the surgeon and any post-operative instructions. This information will be helpful for any medical professional providing further treatment.\n\n4. **Follow-Up Care**: Some clinics offer virtual follow-up consultations for international patients. Check if this option is available to address your concerns directly with your surgeon.\n\n5. **Insurance**: If you have travel or health insurance that covers medical complications from surgery, contact your insurer to understand your coverage and support options.\n\n6. **Legal Advice**: If you believe the complication resulted from negligence, you may want to consult with a legal professional who specializes in medical tourism or malpractice.\n\nIt's important to act quickly to address any complications to ensure your health and safety.", "urls": [], "measured_at": "2026-09-10T15:19:56", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "F-04", "cat": "F", "question": "How do I verify a Korean plastic surgeon is board certified?", "engine": "openai", "answer": "To verify if a Korean plastic surgeon is board certified, you can follow these steps:\n\n1. **Visit the Official Website**: Go to the website of the Korean Society of Plastic and Reconstructive Surgeons (KSPRS). They usually have a database of board-certified surgeons.\n\n2. **Check the KSPRS Membership**: Board-certified plastic surgeons in Korea are often members of this organization, which maintains a list of qualified practitioners.\n\n3. **Korean Medical Association**: Use the Korean Medical Association's resources to verify the surgeon's license and certification status.\n\n4. **Direct Inquiry**: Contact the surgeon's clinic and ask to see their certification credentials. They should be able to provide proof of their board certification.\n\n5. **Online Reviews and Testimonials**: While not official, checking reviews and testimonials can provide additional insights into the surgeon’s credibility and reputation.\n\n6. **Consultation**: During a consultation, you can ask the surgeon directly about their certification and experience.\n\nMake sure to conduct thorough research and only consider surgeons who provide verifiable proof of their board certification.", "urls": [], "measured_at": "2026-09-10T15:20:03", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "F-05", "cat": "F", "question": "Are there red flags or complaints about VIEW Plastic Surgery Korea?", "engine": "openai", "answer": "Here are several **red flags and complaints** regarding **VIEW Plastic Surgery Korea**, gathered from recent sources. While REVIEW shows many positive reviews and strong ratings, there are also notable concerns—especially from consumer forums and regulatory bodies—that you should consider before proceeding.\n\n---\n\n### Complaints and Allegations\n\n• On Reddit’s **r/KoreaSeoulBeauty**, a critical post from **June 23, 2026** called the clinic \"very shady.\" The user mentioned high prices, concerns about anesthesia-related allergic reactions, constantly changing assistants, and an impersonal experience—leading them to leave without proceeding ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1udkblb/view_plastic_surgery_scam/?utm_source=openai)).\n\n• Another Reddit user reported in **June 2026** that they experienced a \"triple failed surgery\" at the clinic and described the staff as “defensive,” accusing them of gaslighting and dismissing concerns, despite unsatisfactory results ([reddit.com](https://www.reddit.com/r/KoreaTravelBeauty/comments/1m0a7oc/april_31_plastic_surgery_review/?utm_source=openai)).\n\n• A more detailed complaint from **April 2026** cited a botched double jaw surgery, poor post-op support (a video consultation ended abruptly), significant anxiety, and asymmetrical results. The user also flagged the absence of in-surgery shape planning (no pre-op markings) and the use of total sedation as red flags ([reddit.com](https://www.reddit.com/r/KoreaTravelBeauty/comments/1m0a7oc/april_31_plastic_surgery_review/?utm_source=openai)).\n\n• On **r/SeoulPlasticSurgery**, one user had a positive consultation experience with a different tone—saying the surgeon was informative and realistic during consultation, which made them comfortable enough to proceed ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1qcbe4z/tomorrow_im_planning_to_get_eye_surgery_at_a/?utm_source=openai)).\n\n---\n\n### Regulatory Findings and Advertising Concerns\n\n• In **September 2026**, the **Korea Fair Trade Commission (KFTC)** ordered **View Plastic Surgery** (alongside DA and AB Plastic Surgery Clinics) to stop undisclosed paid review campaigns. The commission found that from April 2021 through May 2026, the clinic ran organized advertising that manipulated consumer perception—by commissioning staged reviews and returning deposits only after review posts were made—violating the Fair Labeling and Advertising Act ([cerd.com](https://www.cerd.com/en-ca/article/south-korea-orders-gangnam-area-cosmetic-surgery-clinics-to-stop-undisclosed-paid-review-campaigns?utm_source=openai)).\n\n---\n\n### Mixed Online Feedback\n\n• Platforms like **SeoulKlinic** aggregate ratings, showing a **4.9/5** on Google (622 reviews) and **4.41/5** on Naver (776 reviews), with praise for professionalism, natural-looking results, and good staffing. However, some reviewers expressed that consultations felt rushed due to high patient volume, and one mentioned unclear pricing or aggressive upselling ([clinics.seoulklinic.com](https://clinics.seoulklinic.com/clinics/kr-seoul-gangnam--008?utm_source=openai)).\n\n• On **Cashdoc**, there are hundreds of 5-star “verified” reviews, but some note waiting times or discomfort (e.g., breathing issues post-op), although many are glowing about staff friendliness and results ([cashdoc.me](https://cashdoc.me/en-US/hospital/A1104193/ViewPlasticSurgeryClinic?tab=review&utm_source=openai)).\n\n• A **Vera Korea** user wrote that they ended up with lifelong scars following a breast procedure and formidable stress and time lost due to long waits, expressing profound regret over the experience ([korea.verabeauty.app](https://korea.verabeauty.app/clinic/view-plastic-surgery-clinic-66251584867f53c0d5238952/reviews?utm_source=openai)).\n\n---\n\n### Broader Industry Red Flags (Contextual Insights)\n\nEven beyond VIEW, reputable guides on South Korean plastic surgery emphasize risks and warning signs:\n\n1. **Ghost surgery** is a widespread issue—where the surgeon consulted is not necessarily the one performing the operation. Patients are advised to request written confirmation of who will perform the surgery, and to verify CCTV footage in ORs (now legally required) ([clinicseoul.net](https://www.clinicseoul.net/plastic-surgery-korea-guide/?utm_source=openai)).\n\n2. A blog by independent interpreters highlights a common “red flag”: a 1-minute doctor consultation followed by a 40-minute upsell by a counselor. True medical consultations should last longer and focus on honest evaluation ([seoulbeautytalk.com](https://seoulbeautytalk.com/blog/how-to-choose-plastic-surgery-clinic-seoul-red-flags?utm_source=openai)).\n\n3. Guides on recognizing fake reviews—like repetitive language, a sudden spike in five-star-only ratings, or new low-activity reviewer accounts—are especially relevant given the KFTC finding regarding undisclosed review campaigns ([cyl.co.kr](https://cyl.co.kr/blog/k-005-reading-korean-reviews/?utm_source=openai)).\n\n---\n\n### Summary Table of Concerns\n\n- Reports of unsatisfactory or botched surgeries, aggressive upselling, poor follow-up support, and sedation concerns ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1udkblb/view_plastic_surgery_scam/?utm_source=openai)).\n- Official censure over deceptive marketing practices (faked reviews, undisclosed incentives, deposit-based review enforcement) ([cerd.com](https://www.cerd.com/en-ca/article/south-korea-orders-gangnam-area-cosmetic-surgery-clinics-to-stop-undisclosed-paid-review-campaigns?utm_source=openai)).\n- Consistent praise for staff friendliness and professional appearance, with caveats on rushed consultations and pricing clarity ([clinics.seoulklinic.com](https://clinics.seoulklinic.com/clinics/kr-seoul-gangnam--008?utm_source=openai)).\n- Industry-wide risks including ghost surgery and manipulative consultation processes, which are potential concerns here too ([clinicseoul.net](https://www.clinicseoul.net/plastic-surgery-korea-guide/?utm_source=openai)).\n\n---\n\n### Final Thoughts\n\nVIEW Plastic Surgery appears to be a prominent and modern clinic with numerous satisfied patients and strong overall ratings. That said, the volume of serious complaints—from both personal experience and official regulatory actions—combined with general industry risks in South Korea, strongly suggests the need for caution.\n\nIf you’re considering VIEW (or any clinic), here are some prudent steps:\n\n- **Verify the actual surgeon** who will perform your procedure and request documentation.\n- **Insist on clear pre-op consultations**, ideally in-person, lasting 15–30 minutes with explicit explanations and visual planning (markings/sketches).\n- **Avoid pressure tactics**, especially unexpected upsells or consultant-led packages.\n- **Survey reviews critically**, looking for authenticity and variation rather than overly consistent 5-star language.\n- **Confirm pricing transparency and post-op care**, including support in case of complications.\n\nThese measures will help reduce risks and ensure you make a well-informed choice.", "urls": ["https://www.reddit.com/r/KoreaSeoulBeauty/comments/1udkblb/view_plastic_surgery_scam/?utm_source=openai", "https://www.reddit.com/r/KoreaTravelBeauty/comments/1m0a7oc/april_31_plastic_surgery_review/?utm_source=openai", "https://www.reddit.com/r/KoreaTravelBeauty/comments/1m0a7oc/april_31_plastic_surgery_review/?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1qcbe4z/tomorrow_im_planning_to_get_eye_surgery_at_a/?utm_source=openai", "https://www.cerd.com/en-ca/article/south-korea-orders-gangnam-area-cosmetic-surgery-clinics-to-stop-undisclosed-paid-review-campaigns?utm_source=openai", "https://clinics.seoulklinic.com/clinics/kr-seoul-gangnam--008?utm_source=openai", "https://cashdoc.me/en-US/hospital/A1104193/ViewPlasticSurgeryClinic?tab=review&utm_source=openai", "https://korea.verabeauty.app/clinic/view-plastic-surgery-clinic-66251584867f53c0d5238952/reviews?utm_source=openai", "https://www.clinicseoul.net/plastic-surgery-korea-guide/?utm_source=openai", "https://seoulbeautytalk.com/blog/how-to-choose-plastic-surgery-clinic-seoul-red-flags?utm_source=openai", "https://cyl.co.kr/blog/k-005-reading-korean-reviews/?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1udkblb/view_plastic_surgery_scam/?utm_source=openai", "https://www.cerd.com/en-ca/article/south-korea-orders-gangnam-area-cosmetic-surgery-clinics-to-stop-undisclosed-paid-review-campaigns?utm_source=openai", "https://clinics.seoulklinic.com/clinics/kr-seoul-gangnam--008?utm_source=openai", "https://www.clinicseoul.net/plastic-surgery-korea-guide/?utm_source=openai"], "measured_at": "2026-09-10T15:20:15", "clinics": ["VIEW Plastic Surgery", "DA Plastic Surgery", "AB Plastic Surgery Clinics", "SeoulKlinic"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "negative"} +{"id": "F-06", "cat": "F", "question": "Which Korean plastic surgery clinics have a Motiva implant warranty?", "engine": "openai", "answer": "Here is what I found regarding Korean plastic surgery clinics offering implants with a Motiva warranty, based on the most recent publicly available information:\n\n---\n\n**1. Warranty Provided by the Manufacturer (Motiva):** \n- Motiva implants come with a **standard “Always Confident Warranty®”**, which covers **implant rupture for the lifetime of the device**, and covers **capsular contracture (Baker grades III–IV) for up to 10 years** ([motiva.health](https://motiva.health/patients-product-warranty/?utm_source=openai)). \n- In Korea, Motiva Korea offers additional tiered warranty programs such as Preservé™, With Q, Without Q, and Warranty Plus with options ranging from 5 to 10 years and different financial support levels ([motivakorea.com](https://motivakorea.com/warranty/policy?utm_source=openai)).\n\n---\n\n**2. Clinics in Korea Noting Motiva Warranty:**\n\nSeveral clinics explicitly mention offering Motiva implants along with associated warranty support:\n\n- **Ryan Plastic Surgery (Seoul):** \n Offers Motiva Preservé® technique and explicitly states: **“Motiva Manufacturer Warranty: All Motiva implants come with a 5-year manufacturer warranty covering implant integrity.”** ([goodbyeacup.com](https://goodbyeacup.com/?utm_source=openai)).\n\n- **NANA Plastic Surgery (Korea):** \n Mentions Motiva Ergonomix® with Q technology offering an **extended warranty for reoperation due to rupture or Grade 3 or 4 capsular contracture within 5 years** post-surgery ([en.nanahospital.com](https://en.nanahospital.com/page/implant_surgery_feminine?utm_source=openai)).\n\n- **Wonjin Plastic Surgery Hospital:** \n Highlights that Motiva implants come with a **premium warranty backed by a U.S. insurance company (CNA, rated A-class by S&P)** covering rupture or revision surgery; they reference a **5-year insurance warranty** ([wonjinbeauty.com](https://www.wonjinbeauty.com/en/breast/breast_augment_Implant.php?utm_source=openai)).\n\n- **MD Clinic (엠디외과):** \n States that Motiva warranty covers **implant rupture and capsular contracture (grades III–IV) for up to 10 years** after surgery ([mdclinic.co.kr](https://www.mdclinic.co.kr/html/motiva.php?utm_source=openai)).\n\n- **Eight Plastic Surgery (Eight PRS, possibly “Eight Plastic & Reconstructive Surgery”):** \n Mentions an **extended warranty registered for all patients undergoing surgery with Motiva Ergonomix™ (with UDI Microtransponder)**, covering rupture and capsular contracture within **10 years**, provided documentation is submitted per the brand’s requirements ([eightprs.co.kr](https://www.eightprs.co.kr/page/motiva?utm_source=openai)).\n\n- **U&U Plastic Surgery Clinic:** \n While the direct wording about warranty is limited, this clinic has been recognized by Motiva Korea for its high usage of Motiva Ergonomix surgeries, suggesting strong brand alignment and likely adherence to Motiva’s warranty programs ([unupskorea.com](https://unupskorea.com/2025/03/20/motiva-breast-augmentation?utm_source=openai)).\n\n---\n\n**3. Community Insights (Reddit):** \n- Patients on r/KoreaSeoulBeauty note that the **implant warranty is set by the brand, not the clinic**, and while Motiva’s standard warranty applies, clinics may offer **additional or inclusive lifetime guarantees** (e.g., Wooa clinic) ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1nlf575?utm_source=openai)). \n- A particular clinic, **Wooa Plastic Surgery**, is mentioned in user discussions as offering a **lifetime warranty** on breast implants, which, while not explicitly confirmed via the clinic’s official site, appears in multiple patient anecdotes ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1nawxye?utm_source=openai)).\n\n---\n\n **Summary Table**\n\n| Clinic Name | Warranty Details (from sources) |\n|----------------------------------|----------------------------------------------------------------------------------------------------|\n| Ryan Plastic Surgery (Seoul) | 5-year manufacturer warranty covering implant integrity ([goodbyeacup.com](https://goodbyeacup.com/?utm_source=openai)) |\n| NANA Plastic Surgery | 5-year warranty for rupture / Grade 3–4 capsular contracture with Motiva Ergonomix® with Q ([en.nanahospital.com](https://en.nanahospital.com/page/implant_surgery_feminine?utm_source=openai)) |\n| Wonjin Plastic Surgery Hospital | 5-year premium warranty via CNA insurance for rupture or revision surgery ([wonjinbeauty.com](https://www.wonjinbeauty.com/en/breast/breast_augment_Implant.php?utm_source=openai)) |\n| MD Clinic | Up to 10 years warranty for rupture & capsular contracture (Grades III–IV) ([mdclinic.co.kr](https://www.mdclinic.co.kr/html/motiva.php?utm_source=openai)) |\n| Eight PRS | 10-year extended warranty for Motiva Ergonomix™ with UDI, subject to documentation ([eightprs.co.kr](https://www.eightprs.co.kr/page/motiva?utm_source=openai)) |\n| U&U Plastic Surgery Clinic | Notable Motiva-certified clinic; strong brand alignment—warranty implied ([unupskorea.com](https://unupskorea.com/2025/03/20/motiva-breast-augmentation?utm_source=openai)) |\n| Wooa Plastic Surgery (via forums)| Lifetime warranty touted by patients; not confirmed on official site ([reddit.com](https://www.reddit.com/r/KoreaSeoulBeauty/comments/1nawxye?utm_source=openai)) |\n\n---\n\n**Recommendations for Moving Forward:**\n\n1. **Contact clinics directly** to confirm the exact terms of their warranty (duration, covered issues, registration process, any costs involved).\n2. **Clarify whether the clinic’s warranty is supplementary to the standard Motiva warranty**, or if it's the only warranty they rely on.\n3. **Ask about registration requirements**, especially if opting into extended warranties through Motiva Korea (e.g., Warranty Plus or Preservé programs) ([motivakorea.com](https://motivakorea.com/warranty/policy?utm_source=openai)).\n4. **Verify documentation and eligibility criteria**; many warranties require proper registration, compliance with surgical protocols, and submission of supportive medical documentation.\n5. **For international patients**, choose clinics that provide warranty documentation in English and ensure follow-up support is accessible once back home ([wuneprs.com](https://wuneprs.com/en/international/?utm_source=openai)).\n\n---\n\nIf you’d like, I can help you draft sample questions to ask clinics or assist in comparing clinics based on other criteria like surgical expertise or aftercare programs.", "urls": ["https://motiva.health/patients-product-warranty/?utm_source=openai", "https://motivakorea.com/warranty/policy?utm_source=openai", "https://goodbyeacup.com/?utm_source=openai", "https://en.nanahospital.com/page/implant_surgery_feminine?utm_source=openai", "https://www.wonjinbeauty.com/en/breast/breast_augment_Implant.php?utm_source=openai", "https://www.mdclinic.co.kr/html/motiva.php?utm_source=openai", "https://www.eightprs.co.kr/page/motiva?utm_source=openai", "https://unupskorea.com/2025/03/20/motiva-breast-augmentation?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1nlf575?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1nawxye?utm_source=openai", "https://goodbyeacup.com/?utm_source=openai", "https://en.nanahospital.com/page/implant_surgery_feminine?utm_source=openai", "https://www.wonjinbeauty.com/en/breast/breast_augment_Implant.php?utm_source=openai", "https://www.mdclinic.co.kr/html/motiva.php?utm_source=openai", "https://www.eightprs.co.kr/page/motiva?utm_source=openai", "https://unupskorea.com/2025/03/20/motiva-breast-augmentation?utm_source=openai", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1nawxye?utm_source=openai", "https://motivakorea.com/warranty/policy?utm_source=openai", "https://wuneprs.com/en/international/?utm_source=openai"], "measured_at": "2026-09-10T15:20:27", "clinics": ["Ryan Plastic Surgery", "NANA Plastic Surgery", "Wonjin Plastic Surgery Hospital", "MD Clinic", "Eight Plastic Surgery", "U&U Plastic Surgery Clinic", "Wooa Plastic Surgery"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "G-01", "cat": "G", "question": "Do Korean plastic surgery clinics offer remote follow-up after I go back to my country?", "engine": "openai", "answer": "Many Korean plastic surgery clinics do offer remote follow-up services for international patients. These may include online consultations, emails, or video calls to monitor your recovery and address any concerns after you return to your country. It's important to confirm these details with the specific clinic prior to your procedure, as services can vary.", "urls": [], "measured_at": "2026-09-10T15:20:32", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "G-02", "cat": "G", "question": "What aftercare does VIEW Plastic Surgery provide for international patients?", "engine": "openai", "answer": "VIEW Plastic Surgery provides various aftercare services for international patients to ensure a smooth recovery. These services typically include:\n\n1. **Post-operative Check-ups**: Regular follow-up appointments to monitor recovery and address any concerns.\n2. **24/7 Support**: Access to medical staff for assistance and queries at any time.\n3. **Detailed Recovery Plans**: Guidelines on medication, activities, and dietary restrictions to aid healing.\n4. **Accommodation and Transportation Assistance**: Help with finding suitable places to stay and arranging transportation.\n5. **Translation Services**: Language assistance to ensure clear communication.\n\nIt's essential to check directly with VIEW Plastic Surgery for the most current and detailed aftercare options available.", "urls": [], "measured_at": "2026-09-10T15:20:38", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "G-03", "cat": "G", "question": "Where can I get post-surgery swelling care in Gangnam after surgery?", "engine": "openai", "answer": "Here are several reputable clinics in Gangnam (Seoul) offering post-surgery swelling care. I’ve provided a variety of options—ranging from plastic surgery aftercare centers and dermatology clinics to traditional Korean medicine facilities—so you can choose according to your preferences and recovery needs.\n\n---\n\n**1. ONUL Plastic Surgery & Dermatology** \n- Located at 596 Gangnam-daero, 10/11th floors, Gangnam-gu, Seoul. \n- Offers a tailored, 1:1 post‑surgery swelling management program featuring technologies like radiofrequency cryotherapy, ultrasonic oxygen therapy, ionzyme, HydroVeil hydrogen hydrotherapy, regeneration laser, and specialized scar/pigment care. ([en.onulps.com](https://en.onulps.com/document/Post-op-care-program?utm_source=openai)) \n- Open Mon–Thu (10 a.m. – 7 p.m.), Fri until 8 p.m., and Sat until 4 p.m. Closed Sundays and public holidays. ([en.onulps.com](https://en.onulps.com/document/Post-op-care-program?utm_source=openai)) \n\n**2. Withwin Dermatology (Apgujeong)** \n- Situated at 4F ISA Building, 51 Apgujeong-ro 30-gil, Gangnam-gu, Seoul. \n- Focuses on systemic recovery: swelling and bruise reduction, improved circulation, hydration, and skin stabilization through devices like Bellasonic (dual-frequency ultrasound), DDR bruise-laser, LED Bellalux, negative-pressure Vacumed, negative-ion “Dermiocare,” and Cryocell cooling care. ([widwinskin.com](https://widwinskin.com/en/Plastic-surgery-aftercare/?utm_source=openai)) \n\n**3. ROI Plastic Surgery** \n- Located on the 7th floor, Sinsa Square, 652 Gangnam-daero. \n- Provides structured aftercare including scheduled check-ups, LED therapy for tissue regeneration, and radiofrequency (RF) treatments to reduce swelling and restore elasticity. Also emphasizes avoiding saunas/hot baths to prevent exacerbation of swelling. ([roisurgery.com](https://roisurgery.com/scar-care-en.html?utm_source=openai)) \n\n**4. MINE Plastic Surgery** \n- Address: 813 Nonhyeon-ro, Gangnam-gu (4th Floor, near Apgujeong Station Exit 4). \n- Offers “Smart Lux” swelling treatments at various post-op intervals: Day 1 (inside-mouth disinfection), Day 3, 1 week (high-frequency massage), and 2 weeks follow-up. ([mineclinic.com](https://mineclinic.com/after-care/?utm_source=openai)) \n\n**5. TheLINE Plastic Surgery** \n- Located at 65 Garosu-gil, 4–6F, Gangnam-gu. \n- Utilizes an 8-step post-op care system: cryotherapy for swelling and bruising, low-frequency therapy, radiofrequency, IV therapy, and SVF (stromal vascular fraction) regenerative care. ([thelineclinic.com](https://thelineclinic.com/care-program?utm_source=openai)) \n\n**6. Pose Clinic** \n- Address: 848 Nonhyeon-ro, Gangnam-gu. \n- Specialized in body care post-surgery: endermology (for edema, lymphatic circulation, skin elasticity), Thermawave, and hyperbaric oxygen therapy (HBOT) to reduce inflammation and accelerate wound healing. ([global.poseclinic.co.kr](https://global.poseclinic.co.kr/en/page-55nq?utm_source=openai)) \n\n**7. VIEW Plastic Surgery** \n- Offers advanced recovery technology: APL swelling-reduction laser, hyperbaric oxygen chamber therapy, IVNT (intravenous nutrient therapy), and dedicated lymphatic massage rooms. Located in a multi-floor facility with structured treatment centers. ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/Introduction/virtual-tour.html?utm_source=openai)) \n\n**8. TS Plastic Surgery** \n- Located at 12/13F Rex Tower, 108 Dosan-daero, Gangnam-gu (near Sinsa Station Exit 2). \n- Post-eye and nose surgery recovery includes hand massage and equipment-based therapies aimed at brightening skin complexion and reducing swelling and bruising for faster recovery. ([tsplasticsurgery.com](https://tsplasticsurgery.com/aesthetic/aesthetic_eye.php?utm_source=openai)) \n\n**9. Reborn Oriental Medicine Hospital (Ribom Gangnam Branch)** \n- Traditional Korean medicine approach: 2-week herbal treatment program for post-surgery swelling, highly rated (4.9/5 from ~76 reviews). \n- Located at 7 Hakdong-ro 50-gil, Nonhyeon-dong, Gangnam-gu. ₩200,000 for 2-week herbal medicine care. ([hoev.net](https://hoev.net/en-US/hospitalevent/eventdetail/5655?utm_source=openai)) \n\n---\n\n**3. Quick Comparison of These Clinics**\n\n| Clinic / Type | Main Swelling Treatments | Location Highlights |\n|----------------------------------------------|----------------------------------------------------------|-----------------------------------------------|\n| ONUL Plastic Surgery | RF cryo, HydroVeil, lasers, injections | Gangnam-daero, 10/11F |\n| Withwin Dermatology | Ultrasound, LED therapy, negative pressure, cryocell | Apgujeong area |\n| ROI Plastic Surgery | LED + RF treatments, scheduled check-ups | Sinsa Square, Gangnam-daero |\n| MINE Plastic Surgery | Smart Lux treatments, massage, check-ups | Nonhyeon-ro near Apgujeong |\n| TheLINE Plastic Surgery | Cryo, SVF care, low-frequency, IV therapy | Garosu-gil, Gangnam |\n| Pose Clinic | Endermology, HBOT, Thermawave | Nonhyeon-ro, Gangnam |\n| VIEW Plastic Surgery | Laser, hyperbaric chamber, IVNT, lymphatic massage rooms | Multi-floor advanced center |\n| TS Plastic Surgery | Hand/equipment massage, complexion recovery | Dosan-daero near Sinsa |\n| Reborn Oriental Medicine (Ribom Gangnam) | Herbal medicine for swelling | Nonhyeon-dong, Gangnam-gu |\n\n---\n\n**4. Choosing the Right Option**\n\n- If you prefer **advanced medical technology** (e.g., laser, RF, IV therapy), consider **ONUL**, **Withwin**, **ROI**, **TheLINE**, **VIEW**, or **TS**.\n- For **body contouring or lipo-specific swelling**, **Pose Clinic** is well-equipped.\n- If you favor **traditional medicine and herbal treatments**, **Reborn Oriental Medicine (Ribom)** is a respected, highly rated choice.\n- Many plastic surgery clinics (e.g., **MINE**, **ONUL**) offer integrated aftercare as part of their packages. Make sure to check if swelling treatments are included or available as add-ons.\n\n---\n\n**5. What Locals and Users Report**\n\nOn forums like r/SeoulPlasticSurgery and KoreaSeoulBeauty, patients commonly recommend hyperbaric oxygen therapy (HBOT) and laser de-swelling treatments in Gangnam-area clinics, praising their effectiveness in reducing bruising and edema. Some have shared positive experiences getting laser sessions and HBOT at clinics even when their surgery providers didn't include them. ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1s2b76b/recovery_places_tips/?utm_source=openai))\n\n---\n\nIf you'd like help choosing the best clinic based on your specific surgery type (e.g., facial vs. body), budget, or treatment preference, feel free to let me know—I’d be happy to assist further!", "urls": ["https://en.onulps.com/document/Post-op-care-program?utm_source=openai", "https://en.onulps.com/document/Post-op-care-program?utm_source=openai", "https://widwinskin.com/en/Plastic-surgery-aftercare/?utm_source=openai", "https://roisurgery.com/scar-care-en.html?utm_source=openai", "https://mineclinic.com/after-care/?utm_source=openai", "https://thelineclinic.com/care-program?utm_source=openai", "https://global.poseclinic.co.kr/en/page-55nq?utm_source=openai", "https://www.viewplasticsurgery.com/Introduction/virtual-tour.html?utm_source=openai", "https://tsplasticsurgery.com/aesthetic/aesthetic_eye.php?utm_source=openai", "https://hoev.net/en-US/hospitalevent/eventdetail/5655?utm_source=openai", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1s2b76b/recovery_places_tips/?utm_source=openai"], "measured_at": "2026-09-10T15:20:53", "clinics": ["ONUL Plastic Surgery & Dermatology", "Withwin Dermatology", "ROI Plastic Surgery", "MINE Plastic Surgery", "TheLINE Plastic Surgery", "Pose Clinic", "VIEW Plastic Surgery", "TS Plastic Surgery"], "view_mentioned": true, "view_rank": 7, "view_sentiment": "positive"} +{"id": "G-04", "cat": "G", "question": "What is the Motiva implant warranty if I get surgery in Korea and live abroad?", "engine": "openai", "answer": "Here’s a comprehensive overview of the Motiva® implant warranty options if you undergo surgery in South Korea but live abroad:\n\n---\n\n## Global (Standard) Warranty — \"Always Confident\" + Product Replacement Policy\n\n- **Always Confident Warranty®**: All Motiva® implants worldwide are covered for **lifelong protection against rupture**. If a rupture occurs—and the implant is properly registered and the surgery adheres to guidelines—Motiva will provide a **free replacement implant**, and a replacement for the opposite side may also be provided ([motiva.health](https://motiva.health/patients-product-warranty/?utm_source=openai)).\n \n- **Product Replacement Policy**: Motiva also offers coverage for **capsular contracture (Baker grades III & IV)** for **10 years** following implantation ([motiva.health](https://motiva.health/patients-product-warranty/?utm_source=openai)).\n\n- Note: These warranties apply only if the surgery followed the company's usage protocols and was performed by a qualified surgeon, and provided that you registered the implants within the stated timeframe (typically within 90 days) ([motiva.health](https://motiva.health/patients-product-warranty/?utm_source=openai)).\n\n---\n\n## South Korea–Specific Warranty Programs\n\n### Motiva Korea (Without Q and With Q)\n- **Without Q Warranty**: Covers implant rupture and Baker III/IV capsular contracture within **10 years**, offering replacement of the implant for revision surgery ([motivakorea.com](https://motivakorea.com/warranty/policy?utm_source=openai)).\n- **With Q Warranty**: Covers the same events—but within **5 years**, plus up to **₩3 million (~USD 2,300)** in revision surgery cost support, per unit ([motivakorea.com](https://motivakorea.com/warranty/policy?utm_source=openai)).\n- **Preservé™ Warranty**: Another tier that covers rupture, contracture (grades III/IV), and also bottoming‑out or lateral displacement. Provides support for 5 years, and up to 10 years for implant replacement ([motivakorea.com](https://motivakorea.com/warranty/policy?utm_source=openai)).\n\n### Motiva Warranty Plus (Subscription-Based Add-On)\nMotiva Korea also offers subscription-style extended coverage for those wanting more reassurance:\n- **With Q Standard**: ₩55,000/month → ₩3 million support per unit for rupture or Baker III/IV.\n- **Without Q Standard**: ₩55,000/month → same coverage as above.\n- **Without Q Premium**: ₩88,000/month → ₩4 million support per unit, plus implant support if you opt for size change.\n- **Without Q Platinum**: ₩110,000/month → ₩5 million per unit, with coverage for size change (one pair of implants) ([mtoz.motivaimplants.co.kr](https://mtoz.motivaimplants.co.kr/warranty?utm_source=openai)).\n\nThese plans can be canceled anytime and are valid up to 10 years post-surgery. After an 18-month minimum subscription period, monthly fees drop to ₩9,900 ([mtoz.motivaimplants.co.kr](https://mtoz.motivaimplants.co.kr/warranty?utm_source=openai)).\n\n---\n\n## If You Live Abroad: Key Considerations\n\n1. **Registration Is Crucial** \n Registration—typically within 90 days of surgery—is essential to activate the Always Confident Warranty® and extended coverage ([motiva.health](https://motiva.health/patients-product-warranty/?utm_source=openai)).\n\n2. **Warranty Validity Across Borders** \n The core Motiva warranty (rupture + contracture) is international—you don't have to live in Korea for it to apply. However, promotional or Korea-specific programs (like Warranty Plus or tiered With Q/Without Q) may require you to engage with Motiva Korea directly and might involve documentation from the Korean clinic ([motivakorea.com](https://motivakorea.com/warranty/policy?utm_source=openai)).\n\n3. **Financial and Logistical Support** \n Even though implant replacement is free, these programs may offer additional financial assistance for revision surgery—especially useful when living abroad, where travel and hospital costs can be significant ([mtoz.motivaimplants.co.kr](https://mtoz.motivaimplants.co.kr/warranty?utm_source=openai)).\n\n4. **Keep Your Implant Card and Records** \n For international patients, it's especially important to retain your implant card, serial numbers, and registration confirmation. Many warranty claims fail due to missed deadlines or a lack of documentation ([breastsurgerykorea.com](https://breastsurgerykorea.com/breast-implant-card-warranty-records/?utm_source=openai)).\n\n---\n\n## Summary Table\n\n| Warranty Type | Coverage | Duration | Notes |\n|----------------------------------|-------------------------------------------|-------------------|----------------------------------------|\n| Always Confident Warranty® | Rupture replacement (free) | Lifetime | Global warranty; needs registration |\n| Product Replacement Policy | Baker III/IV capsular contracture | 10 years | Global warranty; needs registration |\n| Korea “With Q” | Rupture + Baker III/IV + financial support | 5 years | Korea-specific; includes ₩3M per unit |\n| Korea “Without Q” | Rupture + Baker III/IV | 10 years | Korea-specific; implant-only support |\n| Korea Preservé™ | Rupture, contracture, position issues | 5–10 years | Korea-specific extended tier |\n| Warranty Plus (Paid Monthly) | Varied extended support and funds | Up to 10 years | Optional add-on; financial benefits |\n\n---\n\n## Recommendations If You Live Abroad\n\n- **Register your implants** as soon as possible post-surgery (usually within 90 days).\n- **Clarify with your Korean clinic** which tier or add-on programs your surgery qualifies for.\n- **Keep records and implant card** safely—essential for any warranty claim.\n- **Confirm where and how claims can be processed**—especially as an international patient, you may need to coordinate remotely.\n- **Consider a paid extended plan** (like Warranty Plus) if you're concerned about additional surgery or travel costs.\n\nIf you'd like help interpreting specific program documentation, translation assistance, or navigating the claim process from abroad, I’m happy to assist!", "urls": ["https://motiva.health/patients-product-warranty/?utm_source=openai", "https://motiva.health/patients-product-warranty/?utm_source=openai", "https://motiva.health/patients-product-warranty/?utm_source=openai", "https://motivakorea.com/warranty/policy?utm_source=openai", "https://motivakorea.com/warranty/policy?utm_source=openai", "https://motivakorea.com/warranty/policy?utm_source=openai", "https://mtoz.motivaimplants.co.kr/warranty?utm_source=openai", "https://mtoz.motivaimplants.co.kr/warranty?utm_source=openai", "https://motiva.health/patients-product-warranty/?utm_source=openai", "https://motivakorea.com/warranty/policy?utm_source=openai", "https://mtoz.motivaimplants.co.kr/warranty?utm_source=openai", "https://breastsurgerykorea.com/breast-implant-card-warranty-records/?utm_source=openai"], "measured_at": "2026-09-10T15:21:04", "clinics": ["Motiva Korea", "breastsurgerykorea.com"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} diff --git a/docs/reports/viewclinic/05_global_en/qb_en_perplexity_results.jsonl b/docs/reports/viewclinic/05_global_en/qb_en_perplexity_results.jsonl new file mode 100644 index 0000000..db1a4e3 --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/qb_en_perplexity_results.jsonl @@ -0,0 +1,60 @@ +{"id": "A-01", "cat": "A", "question": "Is VIEW Plastic Surgery in Seoul legit? Is it a trustworthy clinic for foreigners?", "engine": "perplexity", "answer": "**VIEW Plastic Surgery in Seoul appears legitimate and reasonably established, but “trustworthy for foreigners” is harder to verify from reviews alone.** The clinic says it has operated since 2005 and markets itself as a medical tourism clinic for international patients, and independent directories report a high Google rating (4.9/5 from 808 reviews), which suggests strong patient satisfaction overall.[4][5]\n\nThat said, most of the available evidence is **testimonial-heavy** rather than independent clinical verification. The clinic’s own site publishes many positive patient stories and says it has been recognized by the Korean Ministry of Justice as an Outstanding Medical Tourism Institution every year since 2018, but those are self-reported claims and should be treated as marketing unless you independently confirm them.[5][6][7][12][15][17][18]\n\nWhat supports a “legit” impression:\n- **Long operating history** since 2005.[4]\n- **Large volume of reviews** with a very high Google score on an independent review platform.[4]\n- **Foreign-patient focus**, including multilingual consultations and medical-tourism positioning.[5][8][16]\n- Multiple third-party patient-review pages describing generally positive experiences.[3][11][19][20]\n\nWhat is still uncertain:\n- I did **not** find a clearly independent, authoritative source here confirming surgical outcomes, complication rates, board-certified surgeon credentials, or regulator inspection details.\n- Some third-party pages make very strong claims, such as “no medical negligence reported in 13 years,” but those claims should be verified separately because they are not backed by obvious primary regulatory documentation in the results shown.[9]\n\nIf you’re considering them as a foreign patient, I’d treat VIEW as **plausibly reputable, but still requiring normal due diligence**:\n- Confirm the exact surgeon’s credentials and specialty.\n- Ask whether the consultation, consent forms, and aftercare can be done in your language.\n- Request before/after cases for your exact procedure and revision rate if available.\n- Verify anesthesia coverage, emergency protocols, and follow-up care for international patients.\n- Compare with at least 2–3 other Seoul clinics before deciding.\n\nIf you want, I can also help you with a **foreign-patient checklist** for VIEW specifically, or compare VIEW against other Seoul clinics you’re considering.", "urls": ["https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mxtlfy/concern_regarding_view_plastic_surgery_in_seoul/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1od2h3w/view_plastic_surgery_has_anyone_had_any/", "https://www.realself.com/review/facial-asymmetry-correction-view-plastic-surgery-highly-recommend-consulting", "https://medtraveling.com/clinics/view-plastic-surgery", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/review/real-review/?pageid=44&mod=document&uid=69745", "https://www.viewplasticsurgery.com/review/real-review?mod=document&uid=69721", "https://khunkim.com/en/hospitals/view", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1kzpm51/view_plastic_surgery_thoughts/", "https://www.realself.com/review/seoul-rhinoplasty-great-experience-view", "https://www.viewplasticsurgery.com/viewrealreview/korea-plastic-surgery-review-nose-eye-revision-in-seoul/", "https://koreaplasticsurgery.tistory.com/entry/My-Real-Experience-with-Korean-Plastic-Surgery-at-View-Clinic", "https://www.viewplasticsurgery.com/viewrealreview/korean-plastic-surgery-review-my-experience-at-a-seoul-plastic-surgery-clinic-before-after-4-months/", "https://www.viewplasticsurgery.com/review/real-review/?uid=69739&mod=document&pageid=1", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://www.viewplasticsurgery.com/review/real-review/?uid=69751&mod=document&pageid=1", "https://www.viewplasticsurgery.com/review/real-review?mod=document&uid=69738", "https://www.realself.com/review/view-plastic-surgery-experience", "https://forum.purseblog.com/threads/my-experience-n-review-on-view-plastic-surgery-clinic-revision-rhinoplasty-double-eyelid-surgery.986767/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mxtlfy/concern_regarding_view_plastic_surgery_in_seoul/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1od2h3w/view_plastic_surgery_has_anyone_had_any/", "https://www.realself.com/review/facial-asymmetry-correction-view-plastic-surgery-highly-recommend-consulting", "https://medtraveling.com/clinics/view-plastic-surgery", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/review/real-review/?pageid=44&mod=document&uid=69745", "https://www.viewplasticsurgery.com/review/real-review?mod=document&uid=69721", "https://khunkim.com/en/hospitals/view", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1kzpm51/view_plastic_surgery_thoughts/", "https://www.realself.com/review/seoul-rhinoplasty-great-experience-view", "https://www.viewplasticsurgery.com/viewrealreview/korea-plastic-surgery-review-nose-eye-revision-in-seoul/", "https://koreaplasticsurgery.tistory.com/entry/My-Real-Experience-with-Korean-Plastic-Surgery-at-View-Clinic", "https://www.viewplasticsurgery.com/viewrealreview/korean-plastic-surgery-review-my-experience-at-a-seoul-plastic-surgery-clinic-before-after-4-months/", "https://www.viewplasticsurgery.com/review/real-review/?uid=69739&mod=document&pageid=1", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://www.viewplasticsurgery.com/review/real-review/?uid=69751&mod=document&pageid=1", "https://www.viewplasticsurgery.com/review/real-review?mod=document&uid=69738", "https://www.realself.com/review/view-plastic-surgery-experience", "https://forum.purseblog.com/threads/my-experience-n-review-on-view-plastic-surgery-clinic-revision-rhinoplasty-double-eyelid-surgery.986767/"], "measured_at": "2026-09-10T15:11:19", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "neutral"} +{"id": "A-02", "cat": "A", "question": "Tell me about VIEW Plastic Surgery in Gangnam, Korea. What are they known for?", "engine": "perplexity", "answer": "VIEW Plastic Surgery in Gangnam is a **large, multi-specialty cosmetic surgery hospital** rather than a clinic focused on just one niche. It is known for offering a broad range of procedures—especially **breast surgery, facial contouring, orthognathic (two-jaw) surgery, eye and nose surgery, liposuction/body contouring, and anti-aging treatments**.[16][17]\n\nWhat it appears to be known for most:\n- **Comprehensive plastic surgery** across many categories, with the hospital describing itself as having grown “across all areas” since opening in 2005.[16]\n- **Breast surgery** and **facial contouring/jaw surgery**, which are repeatedly highlighted in third-party listings and clinic descriptions.[12][14][17]\n- **Medical tourism and foreign-patient services**: VIEW says it has been recognized as an **Outstanding Medical Tourism Institution** by Korea’s Ministry of Justice every year since 2018, and it promotes multilingual and international-patient support.[1][15]\n- **Awards and public recognition**, including a 2021 Medical Korea healthcare merit award and later government/medical-tourism recognitions noted by the clinic.[15]\n- A reputation as a **“full-service” plastic surgery hospital** with a broad surgical lineup, rather than a single-specialty boutique practice.[12][16]\n\nA few practical details:\n- The clinic is in **Gangnam-gu, Seoul**, at **107 Bongeunsa-ro**.[2][3][16]\n- It has **extended Friday hours** and is **closed on Sundays** according to the listings.[2][4][11]\n\nIf you want, I can also break down:\n- their **most common procedures**\n- what **reviews/patient feedback** tend to say\n- how VIEW compares with other well-known Gangnam plastic surgery hospitals", "urls": ["https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/Introduction/working-hours-direction.html", "https://www.viewplasticsurgery.com/introduction/direction/", "https://unni.app/us/hospitals/189", "https://khunkim.com/en/hospitals/view", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/", "https://vn.viewplasticsurgery.com/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://id.viewplasticsurgery.com/", "https://english.visitkorea.or.kr/svc/contents/MedicalKorea/contentsMedicalKoreaView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://kosmedi.co.kr/view-plastic-surgery/", "https://10mag.com/directory/health-beauty/health-beauty/seoul/view-plastic-surgery-gangnam-gu-seoul/", "https://www.viewplasticsurgery.com/introduction/introduction/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://www.viewplasticsurgery.com/notice/view-plastic-surgery-at-gangnam-medical-tour-with-asas/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1od2h3w/view_plastic_surgery_has_anyone_had_any/", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/Introduction/working-hours-direction.html", "https://www.viewplasticsurgery.com/introduction/direction/", "https://unni.app/us/hospitals/189", "https://khunkim.com/en/hospitals/view", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/", "https://vn.viewplasticsurgery.com/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://id.viewplasticsurgery.com/", "https://english.visitkorea.or.kr/svc/contents/MedicalKorea/contentsMedicalKoreaView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://kosmedi.co.kr/view-plastic-surgery/", "https://10mag.com/directory/health-beauty/health-beauty/seoul/view-plastic-surgery-gangnam-gu-seoul/", "https://www.viewplasticsurgery.com/introduction/introduction/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://www.viewplasticsurgery.com/notice/view-plastic-surgery-at-gangnam-medical-tour-with-asas/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1od2h3w/view_plastic_surgery_has_anyone_had_any/"], "measured_at": "2026-09-10T15:11:27", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-03", "cat": "A", "question": "What procedures does VIEW Plastic Surgery Korea specialize in?", "engine": "perplexity", "answer": "VIEW Plastic Surgery Korea specializes in **breast surgery**, **facial contouring**, **orthognathic/double-jaw surgery**, **eye surgery**, **nose surgery (rhinoplasty)**, **liposuction/body contouring**, and **anti-aging/lifting** procedures.[1][6][12]\n\nIt also offers related services such as **male plastic surgery**, **dermatology/skin treatments**, and **hair transplant**.[1][7][17]\n\nExamples of procedures listed by the clinic include:\n- **Breast**: augmentation, reduction, lift, correction, implant removal, revision surgery.[1][2][17]\n- **Face contouring**: cheekbone reduction, square jaw surgery, V-line, chin/front chin surgery, revision.[1][4][19]\n- **Orthognathic surgery**: protruding mouth correction, three-jaw surgery, revision.[1][19]\n- **Eyes**: double eyelid surgery, ptosis correction, canthoplasty, under-eye fat repositioning, middle-aged eye surgery, revision.[1][3][5][19]\n- **Nose**: rhinoplasty, nose tip surgery, alar reduction, revision rhinoplasty.[1][3][19]\n- **Body**: liposuction, fat grafting, tummy tuck.[1][11][19]\n- **Anti-aging**: thread lift, facelift, brow lift, mini lift.[1][11][19]", "urls": ["https://kosmedi.co.kr/view-plastic-surgery/", "https://www.viewplasticsurgery.com/facial-contour/index.html", "https://www.viewplasticsurgery.com/", "https://www.koreaclinicguide.com/clinic/view-plastic-surgery/enquiry", "https://khunkim.com/en/hospitals/view/procedure/upper-lower-blepharoplasty", "https://khunkim.com/en/hospitals/view", "https://unni.app/us/hospitals/189", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://khunkim.com/en/hospitals/view/procedure/breast-augmentation", "https://www.placidway.com/profile/322788/View-Plastic-Surgery", "https://www.myguideseoul.com/beauty-and-medical/view-plastic-surgery-clinic", "http://www.kmhglobal.com/department/view-plastic-surgery", "https://medtour.help/clinic/klinika-plasticheskoj-hirurgii-view/", "https://medtraveling.com/clinics/view-plastic-surgery", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://experts-medical.com/en/clinic/plastic-surgery-clinic-view/", "https://www.viewplasticsurgery.com/review/real-review?mod=document&uid=69738", "https://forum.purseblog.com/threads/my-experience-n-review-on-view-plastic-surgery-clinic-revision-rhinoplasty-double-eyelid-surgery.986767/", "https://kosmedi.co.kr/view-plastic-surgery/", "https://www.viewplasticsurgery.com/facial-contour/index.html", "https://www.viewplasticsurgery.com/", "https://www.koreaclinicguide.com/clinic/view-plastic-surgery/enquiry", "https://khunkim.com/en/hospitals/view/procedure/upper-lower-blepharoplasty", "https://khunkim.com/en/hospitals/view", "https://unni.app/us/hospitals/189", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://khunkim.com/en/hospitals/view/procedure/breast-augmentation", "https://www.placidway.com/profile/322788/View-Plastic-Surgery", "https://www.myguideseoul.com/beauty-and-medical/view-plastic-surgery-clinic", "http://www.kmhglobal.com/department/view-plastic-surgery", "https://medtour.help/clinic/klinika-plasticheskoj-hirurgii-view/", "https://medtraveling.com/clinics/view-plastic-surgery", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://experts-medical.com/en/clinic/plastic-surgery-clinic-view/", "https://www.viewplasticsurgery.com/review/real-review?mod=document&uid=69738", "https://forum.purseblog.com/threads/my-experience-n-review-on-view-plastic-surgery-clinic-revision-rhinoplasty-double-eyelid-surgery.986767/"], "measured_at": "2026-09-10T15:11:35", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": null} +{"id": "A-04", "cat": "A", "question": "Who is Dr. Choi Soon Woo of VIEW Plastic Surgery? Is he board certified?", "engine": "perplexity", "answer": "Dr. Choi Soon Woo is the **CEO and lead/representative board-certified plastic surgeon** at VIEW Plastic Surgery in Seoul. The clinic describes him as a **Board-Certified Plastic Surgeon** and says he has a PhD in Medicine from Seoul National University, was a resident/specialist at Seoul National University Hospital, and was appointed an adjunct professor in plastic surgery there.[1][2][7]\n\nYes — according to VIEW Plastic Surgery and multiple doctor-profile listings, he is **board certified** as a plastic surgeon.[1][2][3][5][11]", "urls": ["https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=choi-soon-woo", "https://www.viewplasticsurgery.com/introduction/doctors/", "https://olden.viewplasticsurgery.com/introduction/doctors/", "https://clinicsoncall.com/en/doctors/dr-choi-soon-woon/", "https://us-uk.bookimed.com/doctor/choi-soon-woo/procedure=breast-augmentation/", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/home-backup/", "https://id.viewplasticsurgery.com/", "https://viewplasticsurgery.com/ru/", "https://www.viewplasticsurgery.com/article-news/dr-choi-soon-woo-representativedirector-of-view-plastic-surgery/", "https://us-uk.bookimed.com/doctors/country=republic-of-korea/procedure=breast-augmentation/", "https://cashdoc.me/en-US/hospitalevent/eventdetail/1216", "https://khunkim.com/en/hospitals/view/doctors", "https://www.viewplasticsurgery.com/before_after_case/facefat-graft/", "https://clinicsoncall.com/en/doctors/dr-choi-soon-woo/", "https://www.viewplasticsurgery.com/view_dm_slide/breast-correction/", "https://us-uk.bookimed.com/doctors/country=republic-of-korea/direction=plastic-surgery/", "https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=cho-jin-woo", "https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=choi-soon-woo", "https://www.viewplasticsurgery.com/introduction/doctors/", "https://olden.viewplasticsurgery.com/introduction/doctors/", "https://clinicsoncall.com/en/doctors/dr-choi-soon-woon/", "https://us-uk.bookimed.com/doctor/choi-soon-woo/procedure=breast-augmentation/", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/home-backup/", "https://id.viewplasticsurgery.com/", "https://viewplasticsurgery.com/ru/", "https://www.viewplasticsurgery.com/article-news/dr-choi-soon-woo-representativedirector-of-view-plastic-surgery/", "https://us-uk.bookimed.com/doctors/country=republic-of-korea/procedure=breast-augmentation/", "https://cashdoc.me/en-US/hospitalevent/eventdetail/1216", "https://khunkim.com/en/hospitals/view/doctors", "https://www.viewplasticsurgery.com/before_after_case/facefat-graft/", "https://clinicsoncall.com/en/doctors/dr-choi-soon-woo/", "https://www.viewplasticsurgery.com/view_dm_slide/breast-correction/", "https://us-uk.bookimed.com/doctors/country=republic-of-korea/direction=plastic-surgery/", "https://www.viewplasticsurgery.com/Introduction/medical-staff-detail.html?staff=cho-jin-woo"], "measured_at": "2026-09-10T15:11:40", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-05", "cat": "A", "question": "How many surgeons does VIEW Plastic Surgery have and are they all board-certified plastic surgeons?", "engine": "perplexity", "answer": "VIEW Plastic Surgery appears to have **16 surgeons/doctors** listed on its medical team page, according to a third-party directory that specifically says “The 16 surgeons at VIEW Plastic Surgery”[1] and another clinic profile that says it has “16 doctor profiles”[5]. \n\nThey are **not all board-certified plastic surgeons**. The clinic’s own doctor page lists several as **“Board Certified Plastic Surgeon,”** but the team description also says the 16 listed doctors include **plastic surgery, oral & maxillofacial surgery, anesthesiology, and dermatology**[5], which indicates the full roster is broader than only board-certified plastic surgeons. The clinic’s doctor page visible in search results shows at least four doctors explicitly labeled board-certified plastic surgeons, but the results do not show that every doctor on the roster has that same certification[4][10].", "urls": ["https://khunkim.com/en/hospitals/view/doctors", "https://unni.app/us/hospitals/189", "https://medtraveling.com/clinics/view-plastic-surgery", "https://www.viewplasticsurgery.com/Introduction/medical-staff.html", "https://khunkim.com/en/hospitals/view", "https://www.viewplasticsurgery.com/", "http://www.kmhglobal.com/department/view-plastic-surgery", "https://vn.viewplasticsurgery.com/", "https://www.theviewhospital.com/specialties/plastic-surgery", "https://www.viewplasticsurgery.com/introduction/doctors/", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC6236507/", "https://www.madisonps.com/blog/global-plastic-surgery-statistics-country-by-country-breakdown", "https://www.ibisworld.com/united-states/number-of-businesses/plastic-surgeons/4157/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC7451795/", "https://academic.oup.com/asj/advance-article/doi/10.1093/asj/sjag028/8444719", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://www.viewplasticsurgery.com/real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/", "https://www.viewplasticsurgery.com/consultation/", "https://khunkim.com/en/hospitals/view/doctors", "https://unni.app/us/hospitals/189", "https://medtraveling.com/clinics/view-plastic-surgery", "https://www.viewplasticsurgery.com/Introduction/medical-staff.html", "https://khunkim.com/en/hospitals/view", "https://www.viewplasticsurgery.com/", "http://www.kmhglobal.com/department/view-plastic-surgery", "https://vn.viewplasticsurgery.com/", "https://www.theviewhospital.com/specialties/plastic-surgery", "https://www.viewplasticsurgery.com/introduction/doctors/", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC6236507/", "https://www.madisonps.com/blog/global-plastic-surgery-statistics-country-by-country-breakdown", "https://www.ibisworld.com/united-states/number-of-businesses/plastic-surgeons/4157/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC7451795/", "https://academic.oup.com/asj/advance-article/doi/10.1093/asj/sjag028/8444719", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://www.viewplasticsurgery.com/real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/", "https://www.viewplasticsurgery.com/consultation/"], "measured_at": "2026-09-10T15:11:48", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "neutral"} +{"id": "A-06", "cat": "A", "question": "Does VIEW Plastic Surgery have English-speaking staff or interpreters?", "engine": "perplexity", "answer": "Yes. VIEW Plastic Surgery says it provides **multilingual consultation and real-time interpretation support**, and that **professional consultants and interpreters** are available during consultation.[1] Their safety/international-patient information also states they offer interpretation in **English** and other languages, with dedicated coordinators on-site for international clients.[16]\n\nThere is also independent corroboration from a Gangnam medical-tourism page quoting VIEW’s English Department head as saying they support English-speaking guests and have **native-level interpreter coordinators** available.[4] Additional third-party listings and patient reviews also describe **English-speaking staff** at the clinic.[5][7][19]\n\nIf you want, I can also check whether they offer **native English-speaking staff** specifically, versus just interpreters and English support.", "urls": ["https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/Introduction/medical-staff.html", "https://www.realself.com/review/facial-asymmetry-correction-view-plastic-surgery-highly-recommend-consulting", "https://medicaltour.gangnam.go.kr/bbs/coordinator_en/view.do?msg_seq=5", "https://en.uniclinics.com/medical-tourism/south-korea/clinics/view-plastic-surgery", "https://www.linkedin.com/company/view-plastic-surgery", "https://www.realself.com/review/view-plastic-surgery-experience", "https://viewplasticsurgery.com/es/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.viewplasticsurgery.com/home-backup/", "https://khunkim.com/en/hospitals/view", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=orthognathic-surgery/best/", "https://www.theviewhospital.com/specialties/plastic-surgery", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://unni.app/us/hospitals/189", "https://www.viewplasticsurgery.com/safe-system/safety-first.html", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/", "https://www.viewplasticsurgery.com/consultation/", "https://experts-medical.com/en/clinic/plastic-surgery-clinic-view/", "https://www.viewplasticsurgery.com/real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/Introduction/medical-staff.html", "https://www.realself.com/review/facial-asymmetry-correction-view-plastic-surgery-highly-recommend-consulting", "https://medicaltour.gangnam.go.kr/bbs/coordinator_en/view.do?msg_seq=5", "https://en.uniclinics.com/medical-tourism/south-korea/clinics/view-plastic-surgery", "https://www.linkedin.com/company/view-plastic-surgery", "https://www.realself.com/review/view-plastic-surgery-experience", "https://viewplasticsurgery.com/es/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.viewplasticsurgery.com/home-backup/", "https://khunkim.com/en/hospitals/view", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=orthognathic-surgery/best/", "https://www.theviewhospital.com/specialties/plastic-surgery", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://unni.app/us/hospitals/189", "https://www.viewplasticsurgery.com/safe-system/safety-first.html", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/", "https://www.viewplasticsurgery.com/consultation/", "https://experts-medical.com/en/clinic/plastic-surgery-clinic-view/", "https://www.viewplasticsurgery.com/real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/"], "measured_at": "2026-09-10T15:11:53", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-07", "cat": "A", "question": "How long has VIEW Plastic Surgery been operating and how big is the clinic?", "engine": "perplexity", "answer": "VIEW Plastic Surgery has been operating since **2005**, so it has been in business for about **21 years**.[1][2][3]\n\nIt is a **large-scale clinic** that operates its own **19-story building** in Gangnam; the clinic describes the building as having **four basement floors and 15 floors above ground**, with each floor dedicated to specialized patient care.[13][3]", "urls": ["https://medtraveling.com/clinics/view-plastic-surgery", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://www.viewplasticsurgery.com/", "https://english.visitkorea.or.kr/svc/contents/MedicalKorea/contentsMedicalKoreaView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://hospitals-travel.ru/en/doctors/li-don-chan", "https://www.vinmec.com/eng/hospital/vinmec-view-aesthetic-center-vinmec-times-city-international-hospital", "https://www.vinmec.com/eng/specialties/beauty-center-vinmec-view", "https://www.viewplasticsurgery.com/introduction/introduction/", "https://unni.app/us/hospitals/189", "https://www.aeysurgery.com/view", "https://id.viewplasticsurgery.com/introduction/introduction/", "https://www.linkedin.com/company/view-plastic-surgery", "https://www.viewplasticsurgery.com/Introduction/about-VIEW.html", "https://medica-tour.com/hospitals/treatment-in-south-korea/view-plastic-surgery-clinic", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://elclinics.com/all-clinics/treatment-in-south-korea/view-plastic-surgery-hospital-in-seoul/", "https://www.viewplasticsurgery.com/consultation/", "https://www.viewplasticsurgery.com/review/before-after.html", "https://www.viewplasticsurgery.com/real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/", "https://www.viewplasticsurgery.com/review/index.html", "https://medtraveling.com/clinics/view-plastic-surgery", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://www.viewplasticsurgery.com/", "https://english.visitkorea.or.kr/svc/contents/MedicalKorea/contentsMedicalKoreaView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://hospitals-travel.ru/en/doctors/li-don-chan", "https://www.vinmec.com/eng/hospital/vinmec-view-aesthetic-center-vinmec-times-city-international-hospital", "https://www.vinmec.com/eng/specialties/beauty-center-vinmec-view", "https://www.viewplasticsurgery.com/introduction/introduction/", "https://unni.app/us/hospitals/189", "https://www.aeysurgery.com/view", "https://id.viewplasticsurgery.com/introduction/introduction/", "https://www.linkedin.com/company/view-plastic-surgery", "https://www.viewplasticsurgery.com/Introduction/about-VIEW.html", "https://medica-tour.com/hospitals/treatment-in-south-korea/view-plastic-surgery-clinic", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://elclinics.com/all-clinics/treatment-in-south-korea/view-plastic-surgery-hospital-in-seoul/", "https://www.viewplasticsurgery.com/consultation/", "https://www.viewplasticsurgery.com/review/before-after.html", "https://www.viewplasticsurgery.com/real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/", "https://www.viewplasticsurgery.com/review/index.html"], "measured_at": "2026-09-10T15:11:58", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "A-08", "cat": "A", "question": "VIEW Plastic Surgery Korea reviews from international patients: what do foreigners say?", "engine": "perplexity", "answer": "Foreign patients generally describe **good results, professional staff, and strong support for international visitors** at Korean plastic surgery clinics, but they also warn that experiences can vary a lot by clinic. Reviews commonly mention **English-speaking coordinators, clear explanations, modern facilities, and reassuring aftercare**. [6][13][19]\n\nWhat foreigners most often say:\n\n- **Positive communication/support:** International-patient reviews frequently praise staff for speaking English, explaining procedures clearly, and guiding patients through appointments and recovery. [6][13]\n- **Natural-looking results:** Many review snippets emphasize satisfaction with the final look, often describing results as natural rather than obvious. [19]\n- **Professionalism and safety systems:** Some clinics are specifically reviewed as having strong safety practices and attentive teams, which reassures overseas patients. [9][14]\n- **Comfort during the process:** Foreign reviewers often mention that having coordinators or staff accompany them reduced anxiety and made the experience smoother. [3][6]\n- **Value and travel appeal:** Some international patients say the combination of expertise, reputation, and pricing made Korea worth the trip. [9][14][16]\n\nAt the same time, there are **cautionary notes** in broader coverage: not every clinic is equally trustworthy, and some patients report problems with aftercare, refunds, or overly polished review pages. Independent advice sources recommend looking for reviews with **specific procedure details, recovery timelines, and follow-up updates**, and being skeptical of generic praise only. [10][18]\n\nIf you want, I can also turn these into a **clinic-by-clinic review summary** for View Plastic Surgery Korea specifically, or extract the **most common pros/cons foreigners mention** from the reviews you provided.", "urls": ["https://abplasticsurgerykorea.com/before-and-after/my-plastic-surgery-story", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jnrlk2/my_detailed_experience_with_plastic_surgery_in/", "https://seoulcosmeticsurgery.com/reviews/", "https://www.vippskorea.com/reviews", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mxcl95/clinic_recommendations_for_foreigners/", "https://www.linkpskorea.com/", "https://www.viewplasticsurgery.com/viewrealreview/korean-plastic-surgery-review-my-experience-at-a-seoul-plastic-surgery-clinic-before-after-4-months/", "https://community.icloudhospital.com/t/is-it-safe-for-foreigners-to-undergo-plastic-surgery-in-korea/899", "https://www.viewplasticsurgery.com/viewrealreview/my-real-experience-with-korean-plastic-surgery-at-view-clinic/", "https://clinicreviewkorea.com/plastic-surgery-review-korea-international-patient-guide/", "https://mediglobus.com/clinics/country-korea/specialities-plastic-surgery/", "https://www.whatclinic.com/cosmetic-plastic-surgery/south-korea", "https://clinicsoncall.com/en/clinic/the-plus-plastic-surgery/", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.realself.com/find/South-Korea/Plastic-Surgeon", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1i7820u/is_it_worth_going_to_south_korea_for_plastic/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1g8tcfs/proscons_of_going_to_seoul_for_surgery_compared/", "https://www.aljazeera.com/news/2024/12/23/as-south-korea-draws-visitors-chasing-beauty-dodgy-practices-pose-risks", "https://clinicsoncall.com/en/clinics/country-south-korea/plastic-surgery/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mcoxsq/plastic_surgery_in_korea_who_should_i_use/", "https://abplasticsurgerykorea.com/before-and-after/my-plastic-surgery-story", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jnrlk2/my_detailed_experience_with_plastic_surgery_in/", "https://seoulcosmeticsurgery.com/reviews/", "https://www.vippskorea.com/reviews", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mxcl95/clinic_recommendations_for_foreigners/", "https://www.linkpskorea.com/", "https://www.viewplasticsurgery.com/viewrealreview/korean-plastic-surgery-review-my-experience-at-a-seoul-plastic-surgery-clinic-before-after-4-months/", "https://community.icloudhospital.com/t/is-it-safe-for-foreigners-to-undergo-plastic-surgery-in-korea/899", "https://www.viewplasticsurgery.com/viewrealreview/my-real-experience-with-korean-plastic-surgery-at-view-clinic/", "https://clinicreviewkorea.com/plastic-surgery-review-korea-international-patient-guide/", "https://mediglobus.com/clinics/country-korea/specialities-plastic-surgery/", "https://www.whatclinic.com/cosmetic-plastic-surgery/south-korea", "https://clinicsoncall.com/en/clinic/the-plus-plastic-surgery/", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.realself.com/find/South-Korea/Plastic-Surgeon", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1i7820u/is_it_worth_going_to_south_korea_for_plastic/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1g8tcfs/proscons_of_going_to_seoul_for_surgery_compared/", "https://www.aljazeera.com/news/2024/12/23/as-south-korea-draws-visitors-chasing-beauty-dodgy-practices-pose-risks", "https://clinicsoncall.com/en/clinics/country-south-korea/plastic-surgery/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mcoxsq/plastic_surgery_in_korea_who_should_i_use/"], "measured_at": "2026-09-10T15:12:08", "clinics": [], "view_mentioned": true, "view_rank": null, "view_sentiment": null} +{"id": "B-01", "cat": "B", "question": "Where is VIEW Plastic Surgery located and how do I get there from Incheon Airport?", "engine": "perplexity", "answer": "VIEW Plastic Surgery is in **Gangnam-gu, Seoul**, at **107 Bongeunsa-ro**, and the clinic says it is **within about 50 meters of Exit 3 of Sinnonhyeon Station on Subway Line 9**.[2][3][8]\n\nFrom **Incheon Airport**, the clinic’s directions page lists **Airport Limousine Bus 6703** as a direct option toward the area around the clinic.[2][3] The page also says to arrive at the **1st-floor reception** and notes the clinic’s parking lot is on the left.[2][3]\n\nIf you want the simplest route:\n- **Airport Limousine Bus 6703** from Incheon Airport toward the Gangnam/Sinnonhyeon area, then walk to the clinic near **Sinnonhyeon Station Exit 3**.[2][3]\n- Or take **AREX/Subway into Seoul**, transfer to **Line 9**, and get off at **Sinnonhyeon Station Exit 3**; the clinic is a short walk from there.[2][3][8]\n\nIf you want, I can also give you a **step-by-step route from Terminal 1 or Terminal 2** with estimated travel time.", "urls": ["https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/introduction/direction/", "https://www.viewplasticsurgery.com/Introduction/working-hours-direction.html", "https://unni.app/us/hospitals/189", "https://kosmedi.co.kr/view-plastic-surgery/", "https://khunkim.com/en/hospitals/view", "https://www.placidway.com/profile/322788/View-Plastic-Surgery", "https://10mag.com/directory/health-beauty/health-beauty/seoul/view-plastic-surgery-gangnam-gu-seoul/", "https://vn.viewplasticsurgery.com/", "https://www.myguideseoul.com/beauty-and-medical/view-plastic-surgery-clinic", "https://english.visitkorea.or.kr/svc/contents/MedicalKorea/contentsMedicalKoreaView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://en.uniclinics.com/medical-tourism/south-korea/clinics/view-plastic-surgery", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://id.viewplasticsurgery.com/introduction/", "https://id.viewplasticsurgery.com/", "https://www.koreaclinicguide.com/clinic/view-plastic-surgery/enquiry", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/introduction/direction/", "https://www.viewplasticsurgery.com/Introduction/working-hours-direction.html", "https://unni.app/us/hospitals/189", "https://kosmedi.co.kr/view-plastic-surgery/", "https://khunkim.com/en/hospitals/view", "https://www.placidway.com/profile/322788/View-Plastic-Surgery", "https://10mag.com/directory/health-beauty/health-beauty/seoul/view-plastic-surgery-gangnam-gu-seoul/", "https://vn.viewplasticsurgery.com/", "https://www.myguideseoul.com/beauty-and-medical/view-plastic-surgery-clinic", "https://english.visitkorea.or.kr/svc/contents/MedicalKorea/contentsMedicalKoreaView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://en.uniclinics.com/medical-tourism/south-korea/clinics/view-plastic-surgery", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=116&vcontsId=206022", "https://id.viewplasticsurgery.com/introduction/", "https://id.viewplasticsurgery.com/", "https://www.koreaclinicguide.com/clinic/view-plastic-surgery/enquiry", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/"], "measured_at": "2026-09-10T15:12:15", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": null} +{"id": "B-02", "cat": "B", "question": "Does VIEW Plastic Surgery offer airport pickup for international patients?", "engine": "perplexity", "answer": "Yes. VIEW Plastic Surgery states that it provides **airport pick-up and drop-off services** for **international patients** as part of its concierge services.[1][2]\n\nIt also describes this as part of a broader international-patient support system that includes multilingual consultation, interpretation support, accommodation assistance, and post-operative follow-up.[2][3] If you want, I can also pull the clinic’s contact details or summarize what the airport service includes.[1]", "urls": ["https://www.viewplasticsurgery.com/Introduction/concierge-services.html", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://www.viewplasticsurgery.com/before_after_case/zygoma-reductionangular-jaw-reductiongenioplastypa-6-months-2/", "https://en.uniclinics.com/medical-tourism/south-korea/clinics/view-plastic-surgery", "https://us-uk.bookimed.com/clinic/view-plastic-surgery-hospital/direction=maxillofacial-surgery/", "https://medtour.help/clinic/klinika-plasticheskoj-hirurgii-view/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=jawline-contouring/", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://secondmin.co.kr/whats-included-in-a-korean-plastic-surgery-package-for-foreigners/", "https://www.medicalkorea.or.kr/en/mostvisitedmedicalinstitutions/view?medicalProviderNo=39169", "https://us-uk.bookimed.com/clinics/procedure=co2-laser-treatment/", "https://forum.purseblog.com/threads/view-plastic-surgery.1067918/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mdf2cr/do_plastic_surgery_clinics_usually_offer_airport/", "https://www.seoulmedicalinsider.com/", "https://www.vippskorea.com/contact-us/out-of-town-patients.html", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://abplasticsurgerykorea.com/ab-blog/korea-plastic-surgery-faq-guide-for-foreigners", "https://www.viewplasticsurgery.com/Introduction/concierge-services.html", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://www.viewplasticsurgery.com/before_after_case/zygoma-reductionangular-jaw-reductiongenioplastypa-6-months-2/", "https://en.uniclinics.com/medical-tourism/south-korea/clinics/view-plastic-surgery", "https://us-uk.bookimed.com/clinic/view-plastic-surgery-hospital/direction=maxillofacial-surgery/", "https://medtour.help/clinic/klinika-plasticheskoj-hirurgii-view/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=jawline-contouring/", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://secondmin.co.kr/whats-included-in-a-korean-plastic-surgery-package-for-foreigners/", "https://www.medicalkorea.or.kr/en/mostvisitedmedicalinstitutions/view?medicalProviderNo=39169", "https://us-uk.bookimed.com/clinics/procedure=co2-laser-treatment/", "https://forum.purseblog.com/threads/view-plastic-surgery.1067918/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mdf2cr/do_plastic_surgery_clinics_usually_offer_airport/", "https://www.seoulmedicalinsider.com/", "https://www.vippskorea.com/contact-us/out-of-town-patients.html", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://abplasticsurgerykorea.com/ab-blog/korea-plastic-surgery-faq-guide-for-foreigners"], "measured_at": "2026-09-10T15:12:21", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "B-03", "cat": "B", "question": "What are VIEW Plastic Surgery's opening hours and can I book a consultation online from abroad?", "engine": "perplexity", "answer": "VIEW Plastic Surgery’s main clinic hours are **Monday–Thursday 10:00–19:00**, **Friday 10:00–21:00** for late treatment, and **Saturday 10:00–17:00**; the clinic is **closed on Sundays and national holidays**.[1][3][5]\n\nYes, you can **contact them from abroad** to arrange a consultation. Their official site lists a phone number and email, and a Gangnam medical tourism directory says consultations are available in multiple languages including English, Chinese, Japanese, Russian, Vietnamese, Thai, Indonesian, and Mongolian.[10][5] The sources provided do **not clearly show a dedicated online booking form**, so the safest reading is that booking is likely handled by **direct contact through the official website or phone/email**, rather than a confirmed self-service online reservation system.[10][16]", "urls": ["https://www.viewplasticsurgery.com/Introduction/working-hours-direction.html", "https://www.viewplasticsurgery.com/introduction/direction/", "https://unni.app/us/hospitals/189", "https://viewplasticsurgery.com/th/introduction/direction/", "https://medicaltour.gangnam.go.kr/medical/clinic/view.do?medical_seq=802", "https://viewplasticsurgery.com/jp/", "http://www.kmhglobal.com/department/view-plastic-surgery", "https://kosmedi.co.kr/view-plastic-surgery/", "https://www.viewskinclinic.com/about-view/location-working-hours/", "https://www.viewplasticsurgery.com/", "https://www.myguideseoul.com/beauty-and-medical/view-plastic-surgery-clinic", "https://www.152harleystreet.com/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022", "https://www.placidway.com/profile/322788/View-Plastic-Surgery", "https://id.viewplasticsurgery.com/", "https://khunkim.com/en/hospitals/view", "https://www.uvmhealth.org/locations/plastic-reconstructive-and-cosmetic-surgery-university-of-vermont-medical-center", "https://uamshealth.com/location/plastic-surgery/aesthetic-plastic-surgery-clinic/", "https://www.healthgrades.com/group-directory/vt-vermont/colchester/mountain-lake-plastic-surgery-plc-x83vq9", "https://www.pittsburghplasticsurgery.com/", "https://www.viewplasticsurgery.com/Introduction/working-hours-direction.html", "https://www.viewplasticsurgery.com/introduction/direction/", "https://unni.app/us/hospitals/189", "https://viewplasticsurgery.com/th/introduction/direction/", "https://medicaltour.gangnam.go.kr/medical/clinic/view.do?medical_seq=802", "https://viewplasticsurgery.com/jp/", "http://www.kmhglobal.com/department/view-plastic-surgery", "https://kosmedi.co.kr/view-plastic-surgery/", "https://www.viewskinclinic.com/about-view/location-working-hours/", "https://www.viewplasticsurgery.com/", "https://www.myguideseoul.com/beauty-and-medical/view-plastic-surgery-clinic", "https://www.152harleystreet.com/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022", "https://www.placidway.com/profile/322788/View-Plastic-Surgery", "https://id.viewplasticsurgery.com/", "https://khunkim.com/en/hospitals/view", "https://www.uvmhealth.org/locations/plastic-reconstructive-and-cosmetic-surgery-university-of-vermont-medical-center", "https://uamshealth.com/location/plastic-surgery/aesthetic-plastic-surgery-clinic/", "https://www.healthgrades.com/group-directory/vt-vermont/colchester/mountain-lake-plastic-surgery-plc-x83vq9", "https://www.pittsburghplasticsurgery.com/"], "measured_at": "2026-09-10T15:12:29", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": null} +{"id": "B-04", "cat": "B", "question": "Can I contact VIEW Plastic Surgery via WhatsApp or LINE for a consultation?", "engine": "perplexity", "answer": "Yes — **VIEW Plastic Surgery** appears to accept consultation inquiries via both **WhatsApp** and **LINE**. Their official social profiles list **WhatsApp: +82-10-2103-7174** and **LINE: viewinquiry** for contact, and they also offer an **online consultation** form on their website.[2][9][10][5]\n\nIf you want, I can also help you find the **best contact method for English-speaking patients** or draft a short message you can send.", "urls": ["https://www.facebook.com/viewclinic/posts/listen-were-the-most-explicitfurther-info-contact-us-on-whatsapp-english-82-10-2/1244159554594094/", "https://x.com/viewhospital", "https://www.instagram.com/p/DJEGM12Sm5K/", "https://www.youtube.com/watch?v=1hM7BRAKXxE", "https://www.viewplasticsurgery.com/consultation/", "http://www.youtube.com/watch?v=tl-SEl_S9Hs", "https://www.viewplasticsurgery.com/", "https://www.youtube.com/watch?v=em94a70Jrcw", "https://www.youtube.com/watch?v=9i1WhCCWaMk", "https://www.youtube.com/watch?v=cReR6vuc9bE", "https://www.instagram.com/view_plastic_surgery/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/", "https://experts-medical.com/clinic/view-plastic-surgery-clinic/", "https://www.viewplasticsurgery.com/Introduction/working-hours-direction.html", "https://www.viewplasticsurgery.com/model-recruitment/index.html", "https://www.viewplasticsurgery.com/community/index.html", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://www.vippskorea.com/contact-us/online-consultation.html", "https://www.facebook.com/viewclinic/posts/listen-were-the-most-explicitfurther-info-contact-us-on-whatsapp-english-82-10-2/1244159554594094/", "https://x.com/viewhospital", "https://www.instagram.com/p/DJEGM12Sm5K/", "https://www.youtube.com/watch?v=1hM7BRAKXxE", "https://www.viewplasticsurgery.com/consultation/", "http://www.youtube.com/watch?v=tl-SEl_S9Hs", "https://www.viewplasticsurgery.com/", "https://www.youtube.com/watch?v=em94a70Jrcw", "https://www.youtube.com/watch?v=9i1WhCCWaMk", "https://www.youtube.com/watch?v=cReR6vuc9bE", "https://www.instagram.com/view_plastic_surgery/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/", "https://experts-medical.com/clinic/view-plastic-surgery-clinic/", "https://www.viewplasticsurgery.com/Introduction/working-hours-direction.html", "https://www.viewplasticsurgery.com/model-recruitment/index.html", "https://www.viewplasticsurgery.com/community/index.html", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://www.vippskorea.com/contact-us/online-consultation.html"], "measured_at": "2026-09-10T15:12:34", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": null} +{"id": "B-05", "cat": "B", "question": "Does VIEW Plastic Surgery provide accommodation or hotel partnerships for foreign patients?", "engine": "perplexity", "answer": "Yes. VIEW Plastic Surgery says it provides **accommodation support** for international patients, including **in-hospital accommodation** and **hotel partnerships within a 10-minute walk**.[1][3] It also states that it offers **premium hotel partnerships** and **airport pickup/drop-off** as part of its international patient concierge service.[1][3]\n\nThere is also a medical-tourism listing that says foreign patients can reserve rooms at **partner hotels for free or at a reduced cost**, and that the clinic has **hotel-class VIP accommodation** inside the hospital.[2] Another third-party clinic listing similarly says View offers **hotel-linked services and accommodation at discounted prices**.[10]\n\nIf you want, I can also check whether these accommodations are described as **free, discounted, or only assisted booking** in each source.", "urls": ["https://www.viewplasticsurgery.com/", "https://medicaltour.gangnam.go.kr/bbs/coordinator_en/view.do?msg_seq=5", "https://www.viewplasticsurgery.com/Introduction/concierge-services.html", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://us-uk.bookimed.com/clinic/view-plastic-surgery-hospital/procedure=abdominoplasty/", "https://us-uk.bookimed.com/clinic/view-plastic-surgery-hospital/procedure=hair-transplant/", "https://www.viewplasticsurgery.com/before_after_case/facefat-graft/", "https://en.uniclinics.com/medical-tourism/south-korea/clinics/view-plastic-surgery", "https://us-uk.bookimed.com/clinic/view-plastic-surgery-hospital/direction=maxillofacial-surgery/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://us-uk.bookimed.com/offer-procedure/6a54450123301897100a6b13/?position=4", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://clinicsoncall.com/fr/clinic/view-la-clinique-de-chirurgie-plastique/", "https://www.viewplasticsurgery.com/notice/notice-69668/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ph68ew/do_clinics_normally_give_this_much_free_hotel/", "https://abplasticsurgerykorea.com/ab-blog/korea-plastic-surgery-faq-guide-for-foreigners", "https://www.viewplasticsurgery.com/", "https://medicaltour.gangnam.go.kr/bbs/coordinator_en/view.do?msg_seq=5", "https://www.viewplasticsurgery.com/Introduction/concierge-services.html", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://us-uk.bookimed.com/clinic/view-plastic-surgery-hospital/procedure=abdominoplasty/", "https://us-uk.bookimed.com/clinic/view-plastic-surgery-hospital/procedure=hair-transplant/", "https://www.viewplasticsurgery.com/before_after_case/facefat-graft/", "https://en.uniclinics.com/medical-tourism/south-korea/clinics/view-plastic-surgery", "https://us-uk.bookimed.com/clinic/view-plastic-surgery-hospital/direction=maxillofacial-surgery/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://us-uk.bookimed.com/offer-procedure/6a54450123301897100a6b13/?position=4", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://clinicsoncall.com/fr/clinic/view-la-clinique-de-chirurgie-plastique/", "https://www.viewplasticsurgery.com/notice/notice-69668/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ph68ew/do_clinics_normally_give_this_much_free_hotel/", "https://abplasticsurgerykorea.com/ab-blog/korea-plastic-surgery-faq-guide-for-foreigners"], "measured_at": "2026-09-10T15:12:41", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "B-06", "cat": "B", "question": "How long should I stay in Seoul after plastic surgery before flying home?", "engine": "perplexity", "answer": "For **most plastic surgeries in Seoul, plan to stay 7–14 days before flying home**; that is the most common window for suture/cast removal, follow-up, and surgeon clearance to travel.[1][3][5][7][9]\n\nA practical rule by procedure is:\n\n- **Double eyelid / eyelid surgery:** about **5–10 days**[3][6][11][18]\n- **Rhinoplasty:** about **7–14 days**[1][3][5][8][11]\n- **Facelift / mini facelift:** about **10–14 days**[3][6][10][12][13]\n- **Facial contouring / jaw surgery:** about **14–21 days** or longer[3][8][11][13][16]\n\nIf you are flying **long-haul** (for example, to the US or Europe), several clinics recommend leaning toward the **longer end** of these ranges, and some advise **10–14 days** or more for major facial procedures.[4][5][10][13]\n\nThe safest approach is to get **written flight clearance from your surgeon**, because the exact timing depends on the procedure, whether you had general anesthesia, and how your healing is progressing.[2][8]", "urls": ["https://www.globalbeautyspot.com/plastic-surgery-recovery-seoul-foreign-patient-guide/", "https://www.linkpskorea.com/en/blog/korean-plastic-surgery-pre-trip-checklist-21-day-foreign-patient-prepa/", "https://www.seoulmedicalinsider.com/blog/how-long-stay-korea-plastic-surgery-recovery", "https://www.koreaclinicguide.com/blog/korea-plastic-surgery-recovery-timelines", "https://seoulcosmeticsurgery.com/plastic-surgery-korea-tips/", "https://ava-ps.com/en/journal/when-can-i-fly-home-after-surgery/", "https://www.k-medlinker.com/post/korean-plastic-surgery-experience-before-during-after-seoul", "https://seoulbeautytalk.com/blog/how-long-to-book-seoul-trip-for-plastic-surgery", "https://www.linkpskorea.com/en/blog/planning-plastic-surgery-in-korea-the-complete-medical-tourism-guide-f/", "https://www.hugo-ps-global.com/articles/flying-after-facelift-korea-safe-travel-guide-hugo", "https://seoulbeautytalk.com/blog/how-long-to-stay-in-korea-after-plastic-surgery-recovery", "https://www.soonplusplasticsurgery.com/articles/facelift-recovery-timeline-korea-professional-return-to-work-guide", "https://www.hugo-ps-global.com/articles/is-it-safe-to-fly-after-face-surgery-what-you-should-know", "https://koreaexperience.com/blog/flying-after-surgery-when-is-it-safe-to-head-home-doctor-advice-2026", "https://jwbeauty.net/blog/when-is-it-safe-to-fly-after-plastic-surgery/", "https://kbeauty.today79.com/en/blog/how-long-to-stay-in-korea-after-surgery/", "https://kittoplasticsurgery.com/blog/when-is-it-safe-to-fly-after-cosmetic-surgery/", "https://www.seouleyeplastics.com/blog/how-many-days-to-stay-in-korea-after-eye-surgery", "https://www.beautybutlerthailand.com/beauty-blog/flying-after-cosmetic-surgery-beauty-butlers-complete-2025-travel-timeline-for-safe-post-op-journeys-from-thailand", "https://jivaka.kr/blogs/blog/plastic-surgery-recovery-timeline-day-by-day-guide-to-swelling-healing", "https://www.globalbeautyspot.com/plastic-surgery-recovery-seoul-foreign-patient-guide/", "https://www.linkpskorea.com/en/blog/korean-plastic-surgery-pre-trip-checklist-21-day-foreign-patient-prepa/", "https://www.seoulmedicalinsider.com/blog/how-long-stay-korea-plastic-surgery-recovery", "https://www.koreaclinicguide.com/blog/korea-plastic-surgery-recovery-timelines", "https://seoulcosmeticsurgery.com/plastic-surgery-korea-tips/", "https://ava-ps.com/en/journal/when-can-i-fly-home-after-surgery/", "https://www.k-medlinker.com/post/korean-plastic-surgery-experience-before-during-after-seoul", "https://seoulbeautytalk.com/blog/how-long-to-book-seoul-trip-for-plastic-surgery", "https://www.linkpskorea.com/en/blog/planning-plastic-surgery-in-korea-the-complete-medical-tourism-guide-f/", "https://www.hugo-ps-global.com/articles/flying-after-facelift-korea-safe-travel-guide-hugo", "https://seoulbeautytalk.com/blog/how-long-to-stay-in-korea-after-plastic-surgery-recovery", "https://www.soonplusplasticsurgery.com/articles/facelift-recovery-timeline-korea-professional-return-to-work-guide", "https://www.hugo-ps-global.com/articles/is-it-safe-to-fly-after-face-surgery-what-you-should-know", "https://koreaexperience.com/blog/flying-after-surgery-when-is-it-safe-to-head-home-doctor-advice-2026", "https://jwbeauty.net/blog/when-is-it-safe-to-fly-after-plastic-surgery/", "https://kbeauty.today79.com/en/blog/how-long-to-stay-in-korea-after-surgery/", "https://kittoplasticsurgery.com/blog/when-is-it-safe-to-fly-after-cosmetic-surgery/", "https://www.seouleyeplastics.com/blog/how-many-days-to-stay-in-korea-after-eye-surgery", "https://www.beautybutlerthailand.com/beauty-blog/flying-after-cosmetic-surgery-beauty-butlers-complete-2025-travel-timeline-for-safe-post-op-journeys-from-thailand", "https://jivaka.kr/blogs/blog/plastic-surgery-recovery-timeline-day-by-day-guide-to-swelling-healing"], "measured_at": "2026-09-10T15:12:52", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "B-07", "cat": "B", "question": "Do I need a medical visa for plastic surgery in Korea as a tourist?", "engine": "perplexity", "answer": "**Usually, no.** For **plastic surgery in Korea as a tourist**, many visitors can use **visa-free entry or a regular short-term tourist visa** if their stay is **90 days or less**; a **medical visa** is generally only needed for **longer stays, more complex treatment, or if your nationality requires a visa for entry**.[2][8][13]\n\nWhat this means in practice:\n- If you are from a country eligible for **visa-free entry/K-ETA**, that is often enough for cosmetic procedures and recovery within the allowed stay.[1][9][19]\n- If you are not visa-exempt, you may need a **C-3 short-term visit/tourist visa** for medical treatment lasting **90 days or less**.[2][8][13]\n- A dedicated **medical tourism visa** is typically for patients entering with a clinic invitation, and is more relevant for **medical treatment or recuperation**, especially when the stay is longer or the case is more involved.[2][15]\n- For **treatment over 90 days**, sources indicate a **medical visa** such as **G-1** may be required.[1][8]\n\nThe safest next step is to check:\n- your **passport nationality** and whether it qualifies for **visa-free/K-ETA** entry,\n- the **planned length of stay**,\n- and whether your clinic will provide an **invitation letter** if you need a medical visa.[2][8][15]\n\nIf you want, I can tell you the likely visa rule based on **your passport country** and **how long you plan to stay**.", "urls": ["https://clinicsoncall.com/en/blog/plastic-surgery-for-foreigners-in-south-korea/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=186128", "https://www.gangnamplastic.surgery/blog/do-i-need-a-visa-for-medical-treatment-in-korea", "https://english.visitkorea.or.kr/svc/thingsToDo/medicalKorea/medical_view_usefulinfo.do?vcontsId=186128&menuSn=616", "https://seoulbeautytalk.com/blog/can-foreigners-get-plastic-surgery-in-korea", "https://cyl.co.kr/blog/g-003-medical-tourism-visa/", "https://www.linkpskorea.com/en/blog/planning-plastic-surgery-in-korea-the-complete-medical-tourism-guide-f/", "https://www.medicalkorea.or.kr/en/medicalvisa", "https://www.clinicseoul.net/plastic-surgery-korea-foreigners/", "https://seoulcosmeticsurgery.com/medical-tourism-korea/", "https://thetreatmentregistry.com/countries/south-korea", "https://djmeditour.kr/en/page.do?menuIdx=141", "https://www.koreaclinicguide.com/blog/complete-guide-visas-medical-tourism-Korea", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=107&vcontsId=218324", "https://jivaka.kr/blogs/blog/korean-medical-tourism-2026-complete-guide-to-changes-benefits-what-you-need-to-know", "https://365plasticsurgerykorea.com/", "https://www.better.medicaltourism.com/destinations/korea-south", "https://us-uk.bookimed.com/article/korean-plastic-surgery-tour-package-cost/", "https://seoulguidemedical.com/", "https://clinicsoncall.com/en/blog/plastic-surgery-for-foreigners-in-south-korea/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=186128", "https://www.gangnamplastic.surgery/blog/do-i-need-a-visa-for-medical-treatment-in-korea", "https://english.visitkorea.or.kr/svc/thingsToDo/medicalKorea/medical_view_usefulinfo.do?vcontsId=186128&menuSn=616", "https://seoulbeautytalk.com/blog/can-foreigners-get-plastic-surgery-in-korea", "https://cyl.co.kr/blog/g-003-medical-tourism-visa/", "https://www.linkpskorea.com/en/blog/planning-plastic-surgery-in-korea-the-complete-medical-tourism-guide-f/", "https://www.medicalkorea.or.kr/en/medicalvisa", "https://www.clinicseoul.net/plastic-surgery-korea-foreigners/", "https://seoulcosmeticsurgery.com/medical-tourism-korea/", "https://thetreatmentregistry.com/countries/south-korea", "https://djmeditour.kr/en/page.do?menuIdx=141", "https://www.koreaclinicguide.com/blog/complete-guide-visas-medical-tourism-Korea", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=107&vcontsId=218324", "https://jivaka.kr/blogs/blog/korean-medical-tourism-2026-complete-guide-to-changes-benefits-what-you-need-to-know", "https://365plasticsurgerykorea.com/", "https://www.better.medicaltourism.com/destinations/korea-south", "https://us-uk.bookimed.com/article/korean-plastic-surgery-tour-package-cost/", "https://seoulguidemedical.com/"], "measured_at": "2026-09-10T15:13:00", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "B-08", "cat": "B", "question": "Which Gangnam plastic surgery clinics are closest to Sinnonhyeon Station?", "engine": "perplexity", "answer": "The **closest Gangnam plastic surgery clinics to Sinnonhyeon Station** in your results are the ones described as being *directly at*, *in front of*, or within a *1–3 minute walk* of the station.[9][17][20][11][12]\n\n- **Lala Plastic Surgery Clinic** — described as being **directly at Sinnonhyeon Station Exits 4 and 5** via underground passage.[9]\n- **345 Plastic Surgery** — described as **in front of Sinnonhyeon Station**, with **Exit 4: 1-minute walk straight ahead**.[17]\n- **VIEW Plastic Surgery** — located **within 50 meters from Exit 3 of Sinnonhyeon Station**.[20]\n- **Girin Plastic Surgery** — **1-minute walk from Sinnonhyeon Station Exit 7**.[8]\n- **MIHO Plastic Surgery** — **Sinnonhyeon Station Exit 3, 3 min walk**.[7][10]\n- **Noonopi Plastic Surgery** — **Less than a 3-minute walk** from **Sinnonhyeon Station Exit 6**.[12]\n- **Glam Surgery** — listed with **Nearest Station: Sinnonhyeon Station**.[16]\n- **UE Plastic Surgery Clinic** — marked as a **5-min walk from station**.[13]\n- **JUST Plastic Surgery Clinic** — **between Gangnam Station Exit 10 and Sinnonhyeon Station Exit 7**.[1]\n- **AND Plastic Surgery Clinic** and **Restory Plastic Surgery Clinic** — both described as **near Sinnonhyeon Station**.[6][3]\n\nIf you want, I can turn these into a **ranked list by walking distance** or filter to clinics with **exact exit numbers only**.", "urls": ["https://unni.app/us/hospitals/3829", "https://www.gangnam.health/clinics/skin/seoul/gangnam/the-tight-plastic-surgery-clinic", "https://www.gangnam.health/clinics/skin/seoul/gangnam/restory-plastic-surgery-clinic", "https://gangnamdrk.com/clinics", "https://www.gangnam.health/clinics/skin/seoul/gangnam/ivy-aesthetic-plastic-surgery-clinic", "https://www.gangnam.health/clinics/skin/seoul/gangnam/and-plastic-surgery-clinic", "https://koreacareguide.com/locations/gangnam/", "https://triple.global/en/content/pois/0a697dac-d07d-41fd-a69b-1a0a218424b4", "https://gangnamdrk.com/clinics/ra-ra-ui-won-plastic-surgery", "https://koreacareguide.com/clinics/", "https://korea-clinics.com/locations/gangnam/", "https://noonopiclinic.com/en/about/maps", "https://unni.app/us/hospitals/7401", "https://www.koreaclinicguide.com/neighborhood/sinnonhyeon-station?page=3", "https://gangnamdrk.com/clinics/girin-plastic-surgery", "https://gangnamdrk.com/clinics/glam-surgery", "https://en.345-ps.com/345-hours-location", "https://www.clinicseoul.net/gangnam-plastic-surgery-guide/", "https://en.nanahospital.com/", "https://www.viewplasticsurgery.com/introduction/direction/", "https://unni.app/us/hospitals/3829", "https://www.gangnam.health/clinics/skin/seoul/gangnam/the-tight-plastic-surgery-clinic", "https://www.gangnam.health/clinics/skin/seoul/gangnam/restory-plastic-surgery-clinic", "https://gangnamdrk.com/clinics", "https://www.gangnam.health/clinics/skin/seoul/gangnam/ivy-aesthetic-plastic-surgery-clinic", "https://www.gangnam.health/clinics/skin/seoul/gangnam/and-plastic-surgery-clinic", "https://koreacareguide.com/locations/gangnam/", "https://triple.global/en/content/pois/0a697dac-d07d-41fd-a69b-1a0a218424b4", "https://gangnamdrk.com/clinics/ra-ra-ui-won-plastic-surgery", "https://koreacareguide.com/clinics/", "https://korea-clinics.com/locations/gangnam/", "https://noonopiclinic.com/en/about/maps", "https://unni.app/us/hospitals/7401", "https://www.koreaclinicguide.com/neighborhood/sinnonhyeon-station?page=3", "https://gangnamdrk.com/clinics/girin-plastic-surgery", "https://gangnamdrk.com/clinics/glam-surgery", "https://en.345-ps.com/345-hours-location", "https://www.clinicseoul.net/gangnam-plastic-surgery-guide/", "https://en.nanahospital.com/", "https://www.viewplasticsurgery.com/introduction/direction/"], "measured_at": "2026-09-10T15:13:09", "clinics": ["Lala Plastic Surgery Clinic", "345 Plastic Surgery", "VIEW Plastic Surgery", "Girin Plastic Surgery", "MIHO Plastic Surgery", "Noonopi Plastic Surgery", "Glam Surgery", "UE Plastic Surgery Clinic"], "view_mentioned": true, "view_rank": 3, "view_sentiment": null} +{"id": "C-01", "cat": "C", "question": "Best plastic surgery clinic in Seoul for foreigners", "engine": "perplexity", "answer": "If you want the **best plastic surgery clinic in Seoul for foreigners**, the strongest names in the results are **JK Plastic Surgery**, **ID Hospital**, and **Banobagi Plastic Surgery**—with JK standing out most clearly for **safety** and **VIP/international-patient services**.[1][7]\n\nWhat the results support:\n\n- **JK Plastic Surgery**: highlighted by a 2026 foreign-patient guide as a top-tier option for international patients, especially for **safety** and **VIP services**; VisitKorea also lists JK as a Korean-accredited hospital serving foreign patients.[1][7][17]\n- **ID Hospital**: recommended in the same guide for **comprehensive makeovers** and **facial contouring**.[1]\n- **Banobagi Plastic Surgery**: recommended for **detailed facial restructuring**.[1]\n- **VIEW Plastic Surgery**: explicitly marketed as a clinic for foreigners in Seoul Gangnam, and VisitKorea lists its address and international healthcare contact details.[2][9]\n\nIf your priority is **foreign-friendly service**, I’d narrow it to **JK Plastic Surgery** or **VIEW Plastic Surgery** first, because the results specifically emphasize international-patient support and official foreign-patient information.[1][7][9]\n\nA practical way to choose:\n- Choose **JK** if your top concern is **safety + structured VIP care**.[1][7]\n- Choose **ID Hospital** if you want **larger-scale facial procedures** or a broader surgical menu.[1]\n- Choose **Banobagi** if you want **refined facial work**.[1]\n- Choose **VIEW** if you want a clinic that is clearly set up for **foreigners and English-speaking patients**.[2][9]\n\nIf you want, I can also give you:\n- a **ranked shortlist by procedure** (rhinoplasty, jaw, eyes, facelift, etc.)\n- a **foreigners’ checklist** for choosing a Seoul clinic safely\n- a **comparison table** of JK vs ID vs Banobagi vs VIEW", "urls": ["https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul", "https://www.viewplasticsurgery.com/", "https://10mag.com/10-english-speaking-clinics-for-plastic-surgery-in-seoul/", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-plastic-surgery-clinics-in-seoul", "https://expatguidekorea.com/seoul/best-plastic-surgery-clinics-in-korea", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=137726", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mxcl95/clinic_recommendations_for_foreigners/", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.medicaltourismco.com/clinics/cosmetic/south-korea/", "https://medicaltravelkorea.com/en/magazine/113/Best-Plastic-Surgery-AntiAging-Clinics-in-Apgujeong-Gangnam-Seoul-Korea-2026-Guide", "https://www.girinpsen.com/", "https://www.myguideseoul.com/travel-articles/best-plastic-surgery-clinics-in-seoul", "https://abplasticsurgerykorea.com/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/direction=plastic-surgery/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=137726", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jes0ru/how_to_navigate_plastic_surgery_in_seoul_as_a/", "https://www.realself.com/find/South-Korea/Seoul/Plastic-Surgeon", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ahqc20/clinic_recommendations_for_each_procedure/", "https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul", "https://www.viewplasticsurgery.com/", "https://10mag.com/10-english-speaking-clinics-for-plastic-surgery-in-seoul/", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-plastic-surgery-clinics-in-seoul", "https://expatguidekorea.com/seoul/best-plastic-surgery-clinics-in-korea", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=137726", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mxcl95/clinic_recommendations_for_foreigners/", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.medicaltourismco.com/clinics/cosmetic/south-korea/", "https://medicaltravelkorea.com/en/magazine/113/Best-Plastic-Surgery-AntiAging-Clinics-in-Apgujeong-Gangnam-Seoul-Korea-2026-Guide", "https://www.girinpsen.com/", "https://www.myguideseoul.com/travel-articles/best-plastic-surgery-clinics-in-seoul", "https://abplasticsurgerykorea.com/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/direction=plastic-surgery/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=137726", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jes0ru/how_to_navigate_plastic_surgery_in_seoul_as_a/", "https://www.realself.com/find/South-Korea/Seoul/Plastic-Surgeon", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ahqc20/clinic_recommendations_for_each_procedure/"], "measured_at": "2026-09-10T15:13:17", "clinics": ["JK Plastic Surgery", "ID Hospital", "Banobagi Plastic Surgery", "VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 4, "view_sentiment": "positive"} +{"id": "C-02", "cat": "C", "question": "Best breast augmentation clinic in Korea for international patients", "engine": "perplexity", "answer": "If you want the **best breast augmentation clinic in Korea for international patients**, the strongest shortlist from the available results is **VG Plastic Surgery**, **SAERO Plastic Surgery**, **WOOA Plastic Surgery**, and **JK Plastic Surgery**—with **VG Plastic Surgery** standing out in the results for a broad plastic-surgery track record and explicit international-patient designation by Korea’s Ministry of Health. [19][6][12]\n\nHere is the most useful way to think about the options:\n\n| Clinic | Why it stands out for international patients | Notes from the results |\n|---|---|---|\n| **VG Plastic Surgery** | International-patient designation, KOIHA accreditation, broad surgical experience | Ranked #2 in a Korea-wide clinic list; surgeons reportedly performed 5,000+ procedures; includes breast augmentation among core services. [19] |\n| **SAERO Plastic Surgery** | Very high patient rating and strong breast/body focus | Ranked #1 in a Korea-wide clinic list; listed as doing breast surgery and body contouring with 25+ years’ lead-doctor experience. [4][19] |\n| **WOOA Plastic Surgery** | Explicitly says it specializes in services for international patients | Seoul/Gangnam location and international-patient orientation are clear in the clinic information. [6] |\n| **JK Plastic Surgery** | Established clinic with dedicated breast surgery page and online consultation | The clinic presents breast surgery as a specialty and offers online consultation support. [12] |\n\nFor a **foreigner-friendly breast augmentation clinic specifically mentioned in one of the sources**, **Verygood Plastic Surgery (Gangnam)** is highlighted for **3D simulations** and **natural breast shaping**, while **CDU Plastic Surgery (Sinsa)** is noted for **minimal-scar endoscopic techniques**. [1]\n\nIf you want a practical recommendation:\n\n- Choose **VG Plastic Surgery** if you prioritize **overall clinic credibility, accreditation, and international-patient handling**. [19]\n- Choose **SAERO Plastic Surgery** if you want a **breast-surgery-focused clinic with strong ratings**. [4][19]\n- Choose **WOOA Plastic Surgery** if you want a clinic that clearly markets itself to **international patients**. [6]\n- Choose **Verygood Plastic Surgery** if you want **3D simulation and natural-looking results**. [1]\n\nA few important selection criteria from the sources are worth using before booking:\n- **Surgeon experience** in breast augmentation\n- **International-patient support**\n- **Implant brand/model**\n- **Surgical technique**\n- **What the quoted cost includes**\n- **Before-and-after results**\n- **Post-op follow-up for foreign patients** [13]\n\nTypical pricing in the results ranges roughly from **₩7,000,000 to ₩18,000,000**, with some summaries putting common breast augmentation costs around **$6,000–$9,500** depending on clinic and technique. [2][16]\n\nIf you want, I can turn this into a **ranked shortlist for Seoul vs. Busan**, or help you compare clinics by **natural result, safety, English support, and price**.", "urls": ["https://www.gangnamwomenshealth.com/korea-health-info/plastic-surgery/breast-augmentation-in-korea-what-you-need-to-know", "https://www.koreaclinicguide.com/blog/breast-surgery-korea", "https://medicaltravelkorea.com/en/magazine/103/Skin-Clinics-Plastic-Surgery-in-Busan-Korea-Top-Clinics-for-Foreign-Patients-2026", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=breast-augmentation/best/", "https://experts-beauty.com/en/advices/best-breast-augmentation-clinics-south-korea/", "https://wooaeng.com/", "https://www.theplusps.co/motiva-breast-implant/", "https://www.whatclinic.com/cosmetic-plastic-surgery/south-korea/breast-implants", "https://www.placidway.com/search-medical-centers/Breast-Implants+Cosmetic-Plastic-Surgery/South-Korea/1", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=breast-augmentation/page=2/", "https://www.viewplasticsurgery.com/", "https://www.jkplastic.com/en/breast-surgery/breastaugmentation.asp", "https://clinicsoncall.com/en/clinics/country-south-korea/plastic-surgery/procedure-breast-augmentation/", "https://www.medicaldepartures.com/info/breast-enlargement/south-korea", "https://www.realself.com/find/South-Korea/Seoul/Breast-Augmentation", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://www.medicaltourismco.com/breast-augmentation-in-seoul-korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/direction=plastic-surgery/best/", "https://www.vippskorea.com/", "https://www.gangnamwomenshealth.com/korea-health-info/plastic-surgery/breast-augmentation-in-korea-what-you-need-to-know", "https://www.koreaclinicguide.com/blog/breast-surgery-korea", "https://medicaltravelkorea.com/en/magazine/103/Skin-Clinics-Plastic-Surgery-in-Busan-Korea-Top-Clinics-for-Foreign-Patients-2026", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=breast-augmentation/best/", "https://experts-beauty.com/en/advices/best-breast-augmentation-clinics-south-korea/", "https://wooaeng.com/", "https://www.theplusps.co/motiva-breast-implant/", "https://www.whatclinic.com/cosmetic-plastic-surgery/south-korea/breast-implants", "https://www.placidway.com/search-medical-centers/Breast-Implants+Cosmetic-Plastic-Surgery/South-Korea/1", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=breast-augmentation/page=2/", "https://www.viewplasticsurgery.com/", "https://www.jkplastic.com/en/breast-surgery/breastaugmentation.asp", "https://clinicsoncall.com/en/clinics/country-south-korea/plastic-surgery/procedure-breast-augmentation/", "https://www.medicaldepartures.com/info/breast-enlargement/south-korea", "https://www.realself.com/find/South-Korea/Seoul/Breast-Augmentation", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://www.medicaltourismco.com/breast-augmentation-in-seoul-korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/direction=plastic-surgery/best/", "https://www.vippskorea.com/"], "measured_at": "2026-09-10T15:13:28", "clinics": ["VG Plastic Surgery", "SAERO Plastic Surgery", "WOOA Plastic Surgery", "JK Plastic Surgery", "Verygood Plastic Surgery", "CDU Plastic Surgery"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "C-03", "cat": "C", "question": "Top facial contouring and V-line surgery clinics in Gangnam", "engine": "perplexity", "answer": "For **facial contouring** and **V-line surgery** in Gangnam, the strongest matches in the provided results are **TOP Plastic Surgery**, **The PLUS Plastic Surgery**, **Glam Plastic Surgery**, **Seoul Cheil Plastic Surgery**, **ONE Cell Plastic Surgery**, and **Very Good Plastic Surgery**.[10][3][11][15][8]\n\nA practical shortlist based on the search results:\n\n| Clinic | Why it stands out | Notes from results |\n|---|---|---|\n| **TOP Plastic Surgery** | Explicitly described as a clinic “for everything face-contouring” | Gangnam/Sinsa area; clinic page lists face-contouring focus.[16][10] |\n| **The PLUS Plastic Surgery** | Described as combining minimally invasive procedures to enhance facial harmony | Good fit if you want a conservative contouring approach.[3] |\n| **Glam Plastic Surgery** | Insider guide highlights expert contouring and **double-jaw surgery** | Useful for structural V-line/jaw work.[11] |\n| **Seoul Cheil Plastic Surgery** | Explicitly branded as a facial contouring surgery clinic in Gangnam | Strong direct match for contouring.[15] |\n| **ONE Cell Plastic Surgery** | Listed as a Gangnam-based option providing facial contouring | Search result advises asking about jaw/cheekbone methods and anesthesia.[8] |\n| **Very Good Plastic Surgery** | Mentioned as convenient for consults in Gangnam | Search result highlights jawline/chin work and submental lipo questions.[8] |\n\nA few other Gangnam clinics also appear in the results, though with less direct evidence specifically for V-line surgery:\n- **SAERO Plastic Surgery** is ranked highly in a Korea face-contouring list and is described as Gangnam-based with 24+ years of experience.[2]\n- **VG Plastic Surgery** is also ranked in the same list and has accreditation mentioned in the result.[2]\n- **ATOP Plastic Surgery** is described in a directory result as offering facial contouring and “fox line shaping” for V-line-like results without surgery.[5][12]\n\nIf you want the **best “surgery-first” options for a true V-line/jaw contour**, the most relevant names from the results are **Glam Plastic Surgery**, **TOP Plastic Surgery**, **Seoul Cheil Plastic Surgery**, and **The PLUS Plastic Surgery**.[11][10][15][3]\n\nIf you want, I can turn this into a **ranked top 5 by likely suitability** for:\n- **jaw reduction / cheekbone reduction**\n- **non-surgical V-line**\n- **English-friendly consultation**\n- **premium / natural-looking results**", "urls": ["https://www.gangnam.health/best-clinics/top-facial-filler-clinics-in-gangnam-for-facial-contouring", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=face-contouring/best/", "https://www.theplusps.co/face-contouring/", "https://gangnamdrk.com/clinics", "https://www.placidway.com/search-medical-centers/Face-Lift+Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://www.seoulskin.clinic/treatments/face-contouring-fillers-gangnam-seoul", "https://www.medicalguide.co.kr/en/dermatology/gangnam-station-contouring", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-face-contouring-clinics-in-seoul-korea", "https://www.seouldoctorfillers.com/", "https://www.gangnam.health/clinics/skin/seoul/gangnam/top-face-plastic-surgery-clinic", "https://kosmedi.co.kr/glam-plastic-surgery-korea-powerful-insider-guide/", "https://www.placidway.com/search-medical-centers/Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://www.reddit.com/r/KoreanBeauty/comments/1robi4y/best_clinics_in_gangnam_for_subtle_aesthetic/", "https://www.tatlerasia.com/style/beauty/where-to-go-for-cosmetic-procedures-in-south-koreas-beauty-district", "https://www.facialcontouringkorea.com/", "https://unni.app/us/hospitals/200", "https://www.cheongdam.skin/treatments/non-surgical-facial-contouring-gangnam-seoul", "https://medicaltravelkorea.com/en/magazine/113/Best-Plastic-Surgery-AntiAging-Clinics-in-Apgujeong-Gangnam-Seoul-Korea-2026-Guide", "https://gangnambeautyguide.com/en/clinics/", "https://www.viewplasticsurgery.com/", "https://www.gangnam.health/best-clinics/top-facial-filler-clinics-in-gangnam-for-facial-contouring", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=face-contouring/best/", "https://www.theplusps.co/face-contouring/", "https://gangnamdrk.com/clinics", "https://www.placidway.com/search-medical-centers/Face-Lift+Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://www.seoulskin.clinic/treatments/face-contouring-fillers-gangnam-seoul", "https://www.medicalguide.co.kr/en/dermatology/gangnam-station-contouring", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-face-contouring-clinics-in-seoul-korea", "https://www.seouldoctorfillers.com/", "https://www.gangnam.health/clinics/skin/seoul/gangnam/top-face-plastic-surgery-clinic", "https://kosmedi.co.kr/glam-plastic-surgery-korea-powerful-insider-guide/", "https://www.placidway.com/search-medical-centers/Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://www.reddit.com/r/KoreanBeauty/comments/1robi4y/best_clinics_in_gangnam_for_subtle_aesthetic/", "https://www.tatlerasia.com/style/beauty/where-to-go-for-cosmetic-procedures-in-south-koreas-beauty-district", "https://www.facialcontouringkorea.com/", "https://unni.app/us/hospitals/200", "https://www.cheongdam.skin/treatments/non-surgical-facial-contouring-gangnam-seoul", "https://medicaltravelkorea.com/en/magazine/113/Best-Plastic-Surgery-AntiAging-Clinics-in-Apgujeong-Gangnam-Seoul-Korea-2026-Guide", "https://gangnambeautyguide.com/en/clinics/", "https://www.viewplasticsurgery.com/"], "measured_at": "2026-09-10T15:13:39", "clinics": ["TOP Plastic Surgery", "The PLUS Plastic Surgery", "Glam Plastic Surgery", "Seoul Cheil Plastic Surgery", "ONE Cell Plastic Surgery", "Very Good Plastic Surgery", "SAERO Plastic Surgery", "VG Plastic Surgery"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "C-04", "cat": "C", "question": "Best rhinoplasty surgeon in Seoul for foreigners", "engine": "perplexity", "answer": "There is **no single objective “best” rhinoplasty surgeon in Seoul for foreigners** in the search results; the strongest evidence points to a short list of **foreigner-friendly clinics and highly reviewed surgeons**, especially in Gangnam and Seoul’s major plastic surgery districts.[1][4][6][19]\n\nIf you want the most practical shortlist, the results most consistently surface these options:\n- **VIEW Plastic Surgery** is explicitly marketed as **best plastic surgery in Korea for foreigners**.[1]\n- **JW Plastic Surgery** appears in RealSelf reviews for **revision rhinoplasty** with a strong patient report, though that is only one review and not a comprehensive ranking.[3]\n- **LUHO Plastic Surgery** appears in RealSelf’s Seoul rhinoplasty listings, suggesting it is a visible option for international patients.[6]\n- **SAERO Plastic Surgery** is ranked #1 on one Bookimed Seoul clinic list for rhinoplasty, with **5.0/5** rating and **25+ years** lead doctor experience.[19]\n- **ID Hospital** is repeatedly referenced in English-language “best clinic” style results and is described as having **foreigner-friendly rhinoplasty consultations**.[4][11][13]\n\nIf your priority is **foreigners / English support**, the best approach is to choose from clinics that explicitly advertise:\n- **English-friendly consultations**[4]\n- **Structured surgical plans**[4]\n- **Revision evaluation experience**[4]\n- **Documented international patient support** such as phone/WhatsApp/contact channels in English-facing materials.[1][5][20]\n\nFor a more reliable decision than “best,” I’d compare these surgeons/clinics on:\n- **Primary vs. revision rhinoplasty experience**\n- **Board certification and specialty training**\n- **Before/after cases similar to your nose type**\n- **English-speaking coordinator availability**\n- **Revision policy and post-op follow-up for overseas patients**\n\nIf you want, I can turn this into a **ranked shortlist of 5 Seoul rhinoplasty surgeons/clinics for foreigners** with a simple comparison table based only on the search results.", "urls": ["https://www.viewplasticsurgery.com/", "https://www.gangnamrhinoplasty.com/", "https://www.realself.com/find/South-Korea/Seoul/Revision-Rhinoplasty", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-rhinoplasty-clinics-in-seoul", "https://www.vippskorea.com/", "https://www.realself.com/find/South-Korea/Rhinoplasty", "https://clinicsoncall.com/en/doctors/country-south-korea/speciality-plastic-surgery/procedure-rhinoplasty/", "https://www.kowonplasticsurgery.com/", "https://rhinoplastyclinicseoul.com/", "https://experts-medical.com/en/disease/rhinoplasty-in-korea/", "https://experts-beauty.com/en/advices/best-rhinoplasty-clinics-south-korea/", "https://us-uk.bookimed.com/doctors/country=republic-of-korea/procedure=rhinoplasty-nose-job/", "https://experts-beauty.com/en/advices/best-rhinoplasty-surgeon-in-korea/", "https://www.theplusps.co/rhinoplasty/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1j5uxzl/need_help_deciding_between_two_rhinoplasty/", "https://experts-medical.com/en/blog-en/best-rhinoplasty-surgeon-in-korea/", "https://experts-medical.com/en/blog-en/estetika-en/best-rhinoplasty-surgeon-in-korea/", "https://www.medicaltourismco.com/rhinoplasty-in-seoul-korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/procedure=rhinoplasty-nose-job/best/", "https://www.kowonplasticsurgery.com/articles/kowon-plastic-surgery-rhinoplasty-specialist-in-seoul", "https://www.viewplasticsurgery.com/", "https://www.gangnamrhinoplasty.com/", "https://www.realself.com/find/South-Korea/Seoul/Revision-Rhinoplasty", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-rhinoplasty-clinics-in-seoul", "https://www.vippskorea.com/", "https://www.realself.com/find/South-Korea/Rhinoplasty", "https://clinicsoncall.com/en/doctors/country-south-korea/speciality-plastic-surgery/procedure-rhinoplasty/", "https://www.kowonplasticsurgery.com/", "https://rhinoplastyclinicseoul.com/", "https://experts-medical.com/en/disease/rhinoplasty-in-korea/", "https://experts-beauty.com/en/advices/best-rhinoplasty-clinics-south-korea/", "https://us-uk.bookimed.com/doctors/country=republic-of-korea/procedure=rhinoplasty-nose-job/", "https://experts-beauty.com/en/advices/best-rhinoplasty-surgeon-in-korea/", "https://www.theplusps.co/rhinoplasty/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1j5uxzl/need_help_deciding_between_two_rhinoplasty/", "https://experts-medical.com/en/blog-en/best-rhinoplasty-surgeon-in-korea/", "https://experts-medical.com/en/blog-en/estetika-en/best-rhinoplasty-surgeon-in-korea/", "https://www.medicaltourismco.com/rhinoplasty-in-seoul-korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/procedure=rhinoplasty-nose-job/best/", "https://www.kowonplasticsurgery.com/articles/kowon-plastic-surgery-rhinoplasty-specialist-in-seoul"], "measured_at": "2026-09-10T15:13:50", "clinics": ["VIEW Plastic Surgery", "JW Plastic Surgery", "LUHO Plastic Surgery", "SAERO Plastic Surgery", "ID Hospital"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "C-05", "cat": "C", "question": "Best double jaw surgery clinic in Korea", "engine": "perplexity", "answer": "There is no single universally accepted **“best”** double jaw surgery clinic in Korea, but the most consistently mentioned options in the results are **ID Hospital**, **VIEW Plastic Surgery**, **JUM Oral and Maxillofacial Surgery**, and **WHY Oral and Maxillofacial Surgery**.[2][12][18][20]\n\nA practical short list based on the results:\n\n- **ID Hospital** — The hospital explicitly states it is “best in the nation” for double jaw surgery and emphasizes maxillofacial specialization.[4][12]\n- **VIEW Plastic Surgery** — Their site has a dedicated double jaw surgery page and is also listed among top maxillofacial surgery centers in Korea.[18][15]\n- **JUM Oral and Maxillofacial Surgery** — A dedicated oral and maxillofacial surgery clinic in Seoul, which may be preferable if you want a clinic focused specifically on jaw surgery rather than a general plastic surgery center.[20]\n- **WHY Oral and Maxillofacial Surgery** — Another jaw-focused option in Seoul with an oral/maxillofacial specialty focus.[10]\n- **The Face Dental / Seoul Face 21 Dental Hospital** — Mentioned in user discussions and clinic guides as a jaw-surgery option, especially for cases where dental/orthognathic coordination matters.[7][11]\n\nIf your goal is the **safest or most specialized choice**, I would prioritize clinics that are clearly **oral and maxillofacial surgery-focused** over general plastic surgery clinics, because double jaw surgery is a functional facial-bone procedure as much as an aesthetic one.[2][10][20]\n\nWhat to compare before choosing:\n- **Surgeon’s orthognathic experience**\n- **How many double jaw cases they do annually**\n- **3D CT / virtual surgical planning**\n- **Airway and bite correction evaluation**\n- **Whether orthodontics are coordinated in-house**\n- **Post-op follow-up and emergency support**\n- **Language support for international patients**\n\nIf you want, I can turn this into a **ranked shortlist for foreigners** with:\n- **best for safety**\n- **best for English support**\n- **best budget option**\n- **best for complex asymmetry**", "urls": ["https://www.reddit.com/r/SeoulPlasticSurgery/comments/1hkfmjx/double_jaw_surgery_clinics/", "https://www.idhospital.com/en/orthognathic-surgery", "https://www.plasticsurgeryko.com/en/s/double-jaw", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=26608&mod=document", "https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea", "https://www.viewplasticsurgery.com/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1ou11ht/which_clinics_or_surgeons_in_korea_are_good_for/", "https://wonjinbeauty.com/en/facial/facial_TwoJawSurgery.php", "https://www.koreaclinicguide.com/blog/protruding-jaw-korea", "https://en.whydental.co.kr/", "https://www.koreaclinicguide.com/procedure/double-jaw-surgery", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=27160&mod=document", "https://www.doublejawsurgerykorea.com/", "https://www.gangnam.dental/blog/jaw-surgery-korea-best-jaw-surgeons-and-clinics-in-seoul", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/direction=maxillofacial-surgery/", "https://www.reddit.com/r/korea/comments/72xtuy/best_surgeon_for_double_jaw_surgery_in_korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=orthognathic-surgery/", "https://www.viewplasticsurgery.com/double-jaw/index.html", "https://www.koreaclinicguide.com/blog/jaw-surgery-in-korea", "https://thebestoms.com/index_eng.html", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1hkfmjx/double_jaw_surgery_clinics/", "https://www.idhospital.com/en/orthognathic-surgery", "https://www.plasticsurgeryko.com/en/s/double-jaw", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=26608&mod=document", "https://www.koreaclinicguide.com/blog/double-jaw-surgery-korea", "https://www.viewplasticsurgery.com/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1ou11ht/which_clinics_or_surgeons_in_korea_are_good_for/", "https://wonjinbeauty.com/en/facial/facial_TwoJawSurgery.php", "https://www.koreaclinicguide.com/blog/protruding-jaw-korea", "https://en.whydental.co.kr/", "https://www.koreaclinicguide.com/procedure/double-jaw-surgery", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=27160&mod=document", "https://www.doublejawsurgerykorea.com/", "https://www.gangnam.dental/blog/jaw-surgery-korea-best-jaw-surgeons-and-clinics-in-seoul", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/direction=maxillofacial-surgery/", "https://www.reddit.com/r/korea/comments/72xtuy/best_surgeon_for_double_jaw_surgery_in_korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=orthognathic-surgery/", "https://www.viewplasticsurgery.com/double-jaw/index.html", "https://www.koreaclinicguide.com/blog/jaw-surgery-in-korea", "https://thebestoms.com/index_eng.html"], "measured_at": "2026-09-10T15:13:59", "clinics": ["ID Hospital", "VIEW Plastic Surgery", "JUM Oral and Maxillofacial Surgery", "WHY Oral and Maxillofacial Surgery", "The Face Dental / Seoul Face 21 Dental Hospital"], "view_mentioned": true, "view_rank": 2, "view_sentiment": "positive"} +{"id": "C-06", "cat": "C", "question": "Top 5 plastic surgery clinics in Gangnam, Seoul", "engine": "perplexity", "answer": "Here are **5 widely listed plastic surgery clinics in Gangnam, Seoul** based on the search results, with the caveat that “top” depends on whether you mean review volume, specialty, or international-patient popularity. The most consistently appearing names across the results are **JK Plastic Surgery**, **Opera Plastic Surgery**, **Banobagi Clinic**, **ID Hospital**, and **VIEW Plastic Surgery**.[4][9][11][14][19][3]\n\n- **JK Plastic Surgery** — repeatedly listed in Gangnam/Apgujeong guides and medical-travel rankings, including mentions of KAHF certification and a Gangnam Nonhyeon-ro address.[4][15][19]\n- **Opera Plastic Surgery** — appears in multiple Gangnam “best clinic” lists for cosmetic procedures such as liposuction and facelift.[9][11][13]\n- **Banobagi Clinic** — highlighted as a long-established Gangnam clinic founded in 2000 and known for high-volume facial and body procedures.[14]\n- **ID Hospital** — listed among major Seoul/Gangnam plastic surgery clinics in expert beauty guides and located in Gangnam-gu.[14]\n- **VIEW Plastic Surgery** — promoted as a clinic serving foreign patients in Seoul, with a Gangnam presence and direct contact details.[3]\n\nIf you want, I can also narrow this to:\n- **best for rhinoplasty**\n- **best for facelift**\n- **best for foreign patients**\n- **most reputable by reviews**\n- **budget-friendly options**", "urls": ["https://gangnambeautyguide.com/en/clinics/top-10/", "https://gangnamdrk.com/clinics", "https://www.viewplasticsurgery.com/", "https://medicaltravelkorea.com/en/magazine/113/Best-Plastic-Surgery-AntiAging-Clinics-in-Apgujeong-Gangnam-Seoul-Korea-2026-Guide", "https://www.clinicseoul.net/gangnam-plastic-surgery-guide/", "https://en-ggps.com/gg-clinics/", "https://gangnambeautyguide.com/en/clinics/", "https://unni.app/us/hospitals/200", "https://www.placidway.com/search-medical-centers/Liposuction+Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://en.chiups.com/", "https://www.placidway.com/search-medical-centers/Face-Lift+Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://www.whatclinic.com/cosmetic-plastic-surgery/south-korea/seoul/gangnam-gu", "https://www.placidway.com/search-medical-centers/Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://experts-beauty.com/en/advices/best-plastic-surgery-clinics-in-south-korea/", "https://medicaltravelkorea.com/ru/magazine/113", "https://www.koreaclinicguide.com/neighborhood/gangnam-station", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/direction=plastic-surgery/best/", "https://seoulcp.com/en/devices/%EC%BA%90%EB%89%BC%EB%9D%BC", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://www.gangnamplasticsurgery.clinic/", "https://gangnambeautyguide.com/en/clinics/top-10/", "https://gangnamdrk.com/clinics", "https://www.viewplasticsurgery.com/", "https://medicaltravelkorea.com/en/magazine/113/Best-Plastic-Surgery-AntiAging-Clinics-in-Apgujeong-Gangnam-Seoul-Korea-2026-Guide", "https://www.clinicseoul.net/gangnam-plastic-surgery-guide/", "https://en-ggps.com/gg-clinics/", "https://gangnambeautyguide.com/en/clinics/", "https://unni.app/us/hospitals/200", "https://www.placidway.com/search-medical-centers/Liposuction+Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://en.chiups.com/", "https://www.placidway.com/search-medical-centers/Face-Lift+Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://www.whatclinic.com/cosmetic-plastic-surgery/south-korea/seoul/gangnam-gu", "https://www.placidway.com/search-medical-centers/Cosmetic-Plastic-Surgery/Gangnam+South-Korea/1", "https://experts-beauty.com/en/advices/best-plastic-surgery-clinics-in-south-korea/", "https://medicaltravelkorea.com/ru/magazine/113", "https://www.koreaclinicguide.com/neighborhood/gangnam-station", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/direction=plastic-surgery/best/", "https://seoulcp.com/en/devices/%EC%BA%90%EB%89%BC%EB%9D%BC", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://www.gangnamplasticsurgery.clinic/"], "measured_at": "2026-09-10T15:14:07", "clinics": ["JK Plastic Surgery", "Opera Plastic Surgery", "Banobagi Clinic", "ID Hospital", "VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 5, "view_sentiment": "positive"} +{"id": "C-07", "cat": "C", "question": "Compare VIEW Plastic Surgery vs ID Hospital vs Banobagi for facial contouring", "engine": "perplexity", "answer": "For **facial contouring**, the clearest comparison from the available sources is that **VIEW Plastic Surgery** explicitly markets itself as a facial-contouring center with detailed procedures, surgeon profiles, and stated recovery guidance, while the results you provided do **not include comparable procedure-specific source material for ID Hospital or Banobagi**. Based on the supplied evidence alone, VIEW is the only one of the three that can be evaluated with confidence here.[1][2][3][14][18]\n\nA practical comparison from the sourced material:\n\n| Clinic | What the sources show | What can be inferred for facial contouring |\n|---|---|---|\n| **VIEW Plastic Surgery** | Offers **3-types facial contouring**, **V-line**, **zygoma reduction**, **square jaw surgery**, **front chin surgery**, and **revision surgery**; says it has focused on contouring since **2005**; lists board-certified surgeons with facial-contouring expertise.[1][2][3][12][14][18] | Strongest documented match for a patient specifically seeking **bone contouring** and a clinic that emphasizes this service. |\n| **ID Hospital** | Not covered in the provided search results. | Cannot assess from the supplied evidence. |\n| **Banobagi** | Not covered in the provided search results. | Cannot assess from the supplied evidence. |\n\nWhat the VIEW sources say that matters for contouring:\n- VIEW describes facial contouring as **3-type surgery** combining cheekbone, jaw, and chin work in one operation.[4][8][9]\n- It states surgery duration is about **1–2 hours** on the official contouring page, while a separate 3-type contouring description cites about **3 hours** under general anesthesia.[1][4] This suggests the timing may vary by procedure mix or source page.\n- VIEW emphasizes a **“safe range”** and evaluation of **bone, muscle, skin, fat, and tissue** rather than maximum bone removal.[5][6]\n- Post-op guidance on the official page includes **same-day discharge or 1-day hospitalization** and a return to daily activities in about **5–7 days**.[1]\n- A patient review on VIEW’s site says swelling is highest in the first days, light activity and soft foods are manageable after about a week, and the final V-line result appears over **3–6 months**.[15]\n\nIf your decision is specifically about **which hospital is better for facial contouring**, the missing factor is **evidence on ID Hospital and Banobagi**. If you want, I can do a second-pass comparison focused on:\n- **facial contouring expertise**\n- **revision surgery**\n- **English-speaking support / foreign patient services**\n- **safety and hospital infrastructure**\n- **likely aesthetic style**", "urls": ["https://www.viewplasticsurgery.com/facial-contour/index.html", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/consultation/", "https://khunkim.com/en/hospitals/view/procedure/three-type-facial-contouring", "https://www.viewplasticsurgery.com/facial-contour/view-facial-contouring2/", "https://id.viewplasticsurgery.com/facial-contour/main/", "https://www.viewplasticsurgery.com/community/index.html", "https://khunkim.com/en/hospitals/view", "https://id.viewplasticsurgery.com/facial-contour/face-contouring-3types/", "https://khunkim.com/en/hospitals/view/procedure/facial-implant", "https://www.viewplasticsurgery.com/media/tiktok/", "https://www.viewplasticsurgery.com/before_after_case/3-types-face-countouring/", "https://www.viewplasticsurgery.com/Introduction/virtual-tour.html", "https://www.viewplasticsurgery.com/introduction/doctors/", "https://www.viewplasticsurgery.com/viewrealreview/my-facial-contouring-surgery-in-korea-at-view-clinic-real-review-2/", "https://www.viewplasticsurgery.com/community/view-tv/index.html", "https://www.viewplasticsurgery.com/review/before-after.html", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022", "https://clinicsoncall.com/en/doctors/country-south-korea/speciality-plastic-surgery/procedure-face-contouring-surgery/", "https://www.drspiegel.com/blog/facial-contouring-is-a-new-korean-plastic-surgery-trend/", "https://www.viewplasticsurgery.com/facial-contour/index.html", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/consultation/", "https://khunkim.com/en/hospitals/view/procedure/three-type-facial-contouring", "https://www.viewplasticsurgery.com/facial-contour/view-facial-contouring2/", "https://id.viewplasticsurgery.com/facial-contour/main/", "https://www.viewplasticsurgery.com/community/index.html", "https://khunkim.com/en/hospitals/view", "https://id.viewplasticsurgery.com/facial-contour/face-contouring-3types/", "https://khunkim.com/en/hospitals/view/procedure/facial-implant", "https://www.viewplasticsurgery.com/media/tiktok/", "https://www.viewplasticsurgery.com/before_after_case/3-types-face-countouring/", "https://www.viewplasticsurgery.com/Introduction/virtual-tour.html", "https://www.viewplasticsurgery.com/introduction/doctors/", "https://www.viewplasticsurgery.com/viewrealreview/my-facial-contouring-surgery-in-korea-at-view-clinic-real-review-2/", "https://www.viewplasticsurgery.com/community/view-tv/index.html", "https://www.viewplasticsurgery.com/review/before-after.html", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&vcontsId=206022", "https://clinicsoncall.com/en/doctors/country-south-korea/speciality-plastic-surgery/procedure-face-contouring-surgery/", "https://www.drspiegel.com/blog/facial-contouring-is-a-new-korean-plastic-surgery-trend/"], "measured_at": "2026-09-10T15:14:23", "clinics": ["VIEW Plastic Surgery", "ID Hospital", "Banobagi"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "C-08", "cat": "C", "question": "Which Korean plastic surgery clinics use Motiva implants and have the most experience with them?", "engine": "perplexity", "answer": "Among the clinics in your results, the ones that most clearly **use Motiva implants** and also claim the **most experience / highest usage volume** are **VIEW Plastic Surgery**, **Ryan Plastic Surgery**, **JK Plastic Surgery Center**, **DA Plastic Surgery**, and **THE PLUS Plastic Surgery**.[2][5][6][8][10][11][17][18][19]\n\nThe strongest “most experienced with Motiva” claims in the results are:\n\n- **VIEW Plastic Surgery** — says it was recognized as **No.1 in domestic Motiva usage** and **No.1 in Motiva implant procedures in 2023**, and that it is an official institution supplied with Motiva Preservé products by Motiva Korea.[5][17][18]\n- **Ryan Plastic Surgery** — says it has **20,000+ surgeries since 2011** and **3,000+ Motiva-registered augmentations**, which is one of the clearest Motiva-specific experience counts in the results.[8]\n- **JK Plastic Surgery Center** — says it is a **Motiva official certified hospital** and that its lead surgeon has **18+ years** of experience; another result says the clinic has performed **over 85,000 plastic procedures** overall.[6][14]\n- **DA Plastic Surgery Gangnam** — explicitly offers **Motiva Breast Implant in Korea**, but the result does not provide a clear Motiva procedure count, so its Motiva-specific experience is less quantifiable from the provided data.[1]\n- **THE PLUS Plastic Surgery** — says it regularly recommends Motiva implants and focuses on natural results, but the result does not give a Motiva-specific volume figure.[10][19]\n\nIf you want the clinics with the **best documented Motiva volume in the provided results**, the order would be roughly:\n\n1. **VIEW Plastic Surgery** — strongest Motiva usage ranking claim.[5][17][18]\n2. **Ryan Plastic Surgery** — strongest explicit Motiva case count (**3,000+**).[8]\n3. **JK Plastic Surgery Center** — official Motiva certification plus broad surgery volume and long surgeon experience.[6][14]\n4. **DA Plastic Surgery** — offers Motiva, but experience volume is not stated in the result.[1]\n5. **THE PLUS Plastic Surgery** — offers/recommends Motiva, but no usage count is given.[10][19]\n\nIf you want, I can turn this into a **short shortlist of the top 3 clinics for Motiva by experience, certifications, and surgeon tenure**.", "urls": ["https://www.daprseng.com/m/breast/motiva.php", "https://www.viewplasticsurgery.com/breast/breast-augmentation/motiva/", "https://www.jkplastic.com/en/breast-surgery/motiva-breast-augmentation.asp", "https://www.seojinps.co/blog/motiva-breast-implant-korea-review/", "https://www.viewplasticsurgery.com/", "http://jy-clinic.com/en/chest/chest01.php", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=breast-augmentation/best/", "https://goodbyeacup.com/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1lcr1f8/body_lift_motiva_implants_in_south_korea_seeking/", "https://www.theplusps.co/motiva-breast-implant-1/", "https://us-uk.bookimed.com/clinic/jk-plastic-surgery-center/", "https://motiva.health/app/center-locator/", "https://www.idhospital.com/en/breast-surgery/breast-augmentation", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/procedure=breast-augmentation/best/", "https://mineclinic.com/breast-surgery/motiva-breast-surgery/", "https://beautymedtravel.com/clinics/country-seoul/city-seoul/plastic-surgery/procedure-motiva-implants/", "https://www.viewplasticsurgery.com/breast/index.html", "https://www.viewplasticsurgery.com/breast/breast-augmentation-motiva.html", "https://www.theplusps.co/motiva-breast-implant/", "https://www.girinpsen.com/blog/?bmode=view&idx=164606114", "https://www.daprseng.com/m/breast/motiva.php", "https://www.viewplasticsurgery.com/breast/breast-augmentation/motiva/", "https://www.jkplastic.com/en/breast-surgery/motiva-breast-augmentation.asp", "https://www.seojinps.co/blog/motiva-breast-implant-korea-review/", "https://www.viewplasticsurgery.com/", "http://jy-clinic.com/en/chest/chest01.php", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=breast-augmentation/best/", "https://goodbyeacup.com/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1lcr1f8/body_lift_motiva_implants_in_south_korea_seeking/", "https://www.theplusps.co/motiva-breast-implant-1/", "https://us-uk.bookimed.com/clinic/jk-plastic-surgery-center/", "https://motiva.health/app/center-locator/", "https://www.idhospital.com/en/breast-surgery/breast-augmentation", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/procedure=breast-augmentation/best/", "https://mineclinic.com/breast-surgery/motiva-breast-surgery/", "https://beautymedtravel.com/clinics/country-seoul/city-seoul/plastic-surgery/procedure-motiva-implants/", "https://www.viewplasticsurgery.com/breast/index.html", "https://www.viewplasticsurgery.com/breast/breast-augmentation-motiva.html", "https://www.theplusps.co/motiva-breast-implant/", "https://www.girinpsen.com/blog/?bmode=view&idx=164606114"], "measured_at": "2026-09-10T15:14:32", "clinics": ["VIEW Plastic Surgery", "Ryan Plastic Surgery", "JK Plastic Surgery Center", "DA Plastic Surgery", "THE PLUS Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "C-09", "cat": "C", "question": "Safest plastic surgery clinic in Korea with anesthesiologists on staff", "engine": "perplexity", "answer": "There is no single **objectively “safest”** plastic surgery clinic in Korea based on the results provided, but **AB Plastic Surgery** is the strongest match for your criteria because it explicitly states it has **full-time/on-site anesthesiologists** and real-time monitoring throughout the surgical process, and it is described as **KAHF-certified** with more than double the industry-average number of full-time anesthesiologists.[1][2][5]\n\nOther clinics in the results also advertise anesthesiologists on staff, but the evidence is less specific or less independently verifiable from the results shown: **JK Plastic Surgery** says it has a **1:1 anesthesiologist** and a team of anesthesiologists on site,[3][20] **DA Plastic Surgery** says it has **9 anesthesiologists in-house** and a **1:1 anesthesia system**,[4][12] **VIEW Plastic Surgery** says it provides **one-on-one anesthesia care** with **on-site standby anesthesiologists**,[6] and **Verygood Plastic Surgery** says it has **three board-certified anesthesiologists** and 24/7 in-house nursing care.[7]\n\nIf your top priority is safety, the most useful checklist is to confirm that the clinic has: **board-certified anesthesiologists on site for the entire procedure**, **continuous monitoring**, and recognized accreditation such as **KAHF** or **KOIHA**.[1][9][15][19]\n\nIf you want, I can narrow this down to the **top 3 safest-looking clinics for foreigners in Seoul** and compare them side by side on anesthesiologists, accreditation, and emergency systems.", "urls": ["https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://abplasticsurgerykorea.com/about-ab/safe-plastic-surgery", "https://www.jkplastic.com/en/about-us/our-way/safety.asp", "https://daprseng.com/m/safety/anesthesia.php", "https://abplasticsurgerykorea.com/", "https://www.viewplasticsurgery.com/", "https://unni.app/us/hospitals/1190", "https://natlawreview.com/press-releases/ab-plastic-surgery-clinic-reports-zero-medical-accidents-citing-integrated", "https://kculture.com/how-to-find-safe-plastic-surgery-clinics-in-korea/", "https://www.girinpsen.com/", "https://thelineclinic.com/index.php?wv_page_id=1002", "https://daprseng.com/safety/anesthesia.php", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1r2jvra/how_do_you_verify_a_clinics_safety_systems_before/", "https://seoulbeautytalk.com/blog/is-plastic-surgery-in-korea-safe-for-foreigners", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=137726", "https://www.woori-ps.com/en/emergency/index.jsp", "https://abplasticsurgerykorea.com/about-ab/medical-column/why-safety-systems-matter-when-choosing-a-plastic-surgery-hospital-in-korea", "https://experts-beauty.com/en/advices/best-plastic-surgery-clinics-in-south-korea/", "https://icloudhospital.com/articles/a-patients-guide-to-choosing-the-best-plastic-surgery-clinic-in-korea", "https://www.jkplastic.com/en/", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://abplasticsurgerykorea.com/about-ab/safe-plastic-surgery", "https://www.jkplastic.com/en/about-us/our-way/safety.asp", "https://daprseng.com/m/safety/anesthesia.php", "https://abplasticsurgerykorea.com/", "https://www.viewplasticsurgery.com/", "https://unni.app/us/hospitals/1190", "https://natlawreview.com/press-releases/ab-plastic-surgery-clinic-reports-zero-medical-accidents-citing-integrated", "https://kculture.com/how-to-find-safe-plastic-surgery-clinics-in-korea/", "https://www.girinpsen.com/", "https://thelineclinic.com/index.php?wv_page_id=1002", "https://daprseng.com/safety/anesthesia.php", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1r2jvra/how_do_you_verify_a_clinics_safety_systems_before/", "https://seoulbeautytalk.com/blog/is-plastic-surgery-in-korea-safe-for-foreigners", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=137726", "https://www.woori-ps.com/en/emergency/index.jsp", "https://abplasticsurgerykorea.com/about-ab/medical-column/why-safety-systems-matter-when-choosing-a-plastic-surgery-hospital-in-korea", "https://experts-beauty.com/en/advices/best-plastic-surgery-clinics-in-south-korea/", "https://icloudhospital.com/articles/a-patients-guide-to-choosing-the-best-plastic-surgery-clinic-in-korea", "https://www.jkplastic.com/en/"], "measured_at": "2026-09-10T15:14:40", "clinics": ["AB Plastic Surgery", "JK Plastic Surgery", "DA Plastic Surgery", "VIEW Plastic Surgery", "Verygood Plastic Surgery"], "view_mentioned": true, "view_rank": 3, "view_sentiment": "positive"} +{"id": "C-10", "cat": "C", "question": "Which Seoul plastic surgery clinics are officially recognized for medical tourism by the Korean government?", "engine": "perplexity", "answer": "The **clearest Seoul plastic surgery clinics explicitly recognized by Korean government bodies for medical tourism** in the results are **VIEW Plastic Surgery**, **Banobagi Plastic Surgery**, and **JK Plastic Surgery Center**.[1][4][6][15]\n\n- **VIEW Plastic Surgery** — described as a **“Certified Medical Tourism Institution by Ministry of Justice, Korea”** and repeatedly noted as recognized since 2018; it is also described as a **Seoul Metropolitan Government Medical Tourism Partner**.[1][2]\n- **Banobagi Plastic Surgery** — listed by **VISITKOREA** as **chosen by the Seoul Metropolitan City government as a medical tourism partner**.[4]\n- **JK Plastic Surgery Center** — described by **VISITKOREA** as the **only plastic surgery clinic in Korea certified by the Ministry of Health and Welfare’s KAHF program**, and also as **designated by the Ministry of Justice for excellent medical tourism**.[6][15]\n\nOther Seoul clinics in the results appear to have **local-government or partner recognition**, but not always a national-government designation in the snippet provided:\n- **Evita Clinic** — **Certified Medical Tourism Partner by Gangnam District, Seoul**.[8]\n- **GANGNAM JS Hospital** — described as a **certified medical tourism partner institution of the Seoul Metropolitan Government**.[3]\n- **VG Plastic Surgery** — shown as affiliated with the **Seoul Medical Tourism Alliance**.[14][17]\n\nIf you want, I can narrow this to only clinics with **national-level government certification** or make a **table of clinic, certifying body, and type of recognition**.", "urls": ["https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://www.viewplasticsurgery.com/", "https://www.better.medicaltourism.com/article/plastic-surgery-in-south-korea----mta-verified-clinics-2026", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792", "https://www.kr-webmagazine.com/best-places-for-medical-tourism-in-seoul/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=116&vcontsId=205540", "https://www.viewplasticsurgery.com/blog/gangnam-medical-tourism-excellent-service-view-plastic-surgery/", "https://evitaclinic.com/certified-gangnam-medical-tourism-partner/", "https://www.medicaltourismco.com/clinics/cosmetic/south-korea/", "https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul", "https://visitgangnam.net/en/places/jk-plastic-surgery-center-leader-of-gangnams-medical-tourism", "https://www.myguideseoul.com/travel-articles/best-plastic-surgery-clinics-in-seoul", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://us-uk.bookimed.com/clinic/vg-plastic-surgery/", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=137726", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-plastic-surgery-clinics-in-seoul", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/", "https://www.medicaltourismco.com/plastic-surgery-in-seoul-korea/", "https://seoulguidemedical.com/", "https://www.vippskorea.com/", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://www.viewplasticsurgery.com/", "https://www.better.medicaltourism.com/article/plastic-surgery-in-south-korea----mta-verified-clinics-2026", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792", "https://www.kr-webmagazine.com/best-places-for-medical-tourism-in-seoul/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=116&vcontsId=205540", "https://www.viewplasticsurgery.com/blog/gangnam-medical-tourism-excellent-service-view-plastic-surgery/", "https://evitaclinic.com/certified-gangnam-medical-tourism-partner/", "https://www.medicaltourismco.com/clinics/cosmetic/south-korea/", "https://koreaexperience.com/blog/best-plastic-surgery-clinics-for-foreigners-in-seoul", "https://visitgangnam.net/en/places/jk-plastic-surgery-center-leader-of-gangnams-medical-tourism", "https://www.myguideseoul.com/travel-articles/best-plastic-surgery-clinics-in-seoul", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://us-uk.bookimed.com/clinic/vg-plastic-surgery/", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=137726", "https://www.gangnamwomenshealth.com/top-clinics-in-korea/best-plastic-surgery-clinics-in-seoul", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/", "https://www.medicaltourismco.com/plastic-surgery-in-seoul-korea/", "https://seoulguidemedical.com/", "https://www.vippskorea.com/"], "measured_at": "2026-09-10T15:14:48", "clinics": ["VIEW Plastic Surgery", "Banobagi Plastic Surgery", "JK Plastic Surgery Center", "Evita Clinic", "GANGNAM JS Hospital", "VG Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "C-11", "cat": "C", "question": "Best clinic in Korea for double eyelid surgery revision for foreigners", "engine": "perplexity", "answer": "For **foreigners seeking double eyelid revision in Korea**, the strongest clinic candidates in the provided results are **Ahnsungmin Plastic Surgery**, **Sinsa L Plastic Surgery**, **1mm Plastic Surgery**, **JK Plastic Surgery**, and **Banobagi**.[1][2][4][11][12][17][18]\n\nIf you want a single **best-fit choice for revision specifically**, **Ahnsungmin Plastic Surgery** stands out because it is explicitly described as an eyelid revision-focused clinic in Seoul and is also noted as accessible for international patients in Jamsil, Songpa-gu.[1][5] \nIf you want a more **international-patient-oriented shortlist**, one guide names **Sinsael Plastic Surgery, 1mm Plastic Surgery, Will Be Plastic Surgery, and Very Good Plastic Surgery** among clinics frequently considered by international patients for revision eye surgery.[2]\n\nA practical way to choose among the top options is:\n\n- **Most revision-specialized**: **Ahnsungmin Plastic Surgery**.[1][5]\n- **Strong eye-surgery branding and international-patient focus**: **Sinsa L Plastic Surgery**.[11]\n- **Well-known Gangnam option with eyelid revision among its services**: **1mm Plastic Surgery**.[4]\n- **Broader premium clinic with English contact and eye surgery page**: **Banobagi**.[17]\n- **Well-known general plastic surgery clinic often listed for eyelid surgery**: **JK Plastic Surgery**.[3][12]\n\nA caution: the search results are mostly **clinic guides and marketing pages**, not independent comparative studies, so there is **no definitive objective “best” clinic** from these sources alone.[1][2][4][10][11][12][17][18] \nFor revision surgery, the most important factors are usually the surgeon’s **revision-specific experience, ability to handle scar tissue and asymmetry, English consultation quality, and whether they routinely treat foreign patients**; the results here support checking those points before deciding.[1][2][4][10][11][18]\n\nIf you want, I can turn this into a **ranked shortlist by budget, English support, and revision expertise**.", "urls": ["https://ahnsungminplasticsurgery.com/", "https://www.seouleyeplastics.com/best-revision-eye-surgery-clinics-in-korea-for-international-patients", "https://www.clinicseoul.net/jk-plastic-surgery-korea/", "https://www.gangnamobgyn.com/foreigners-clinic-guide-korea/best-5-eyelid-surgery-clinics-in-gangnam", "https://www.lowerblepharoplastykorea.com/", "https://www.seoulplasticsurgeon.com/blog/double-eyelid-surgeons-seoul", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=double-eyelid-creation/best/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ojujxv/double_eyelid_in_seoul_for_english_speaking/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1g0ugdh/looking_for_best_surgeon_in_korea_for_double/", "https://www.seoulobgyn.com/top-english-speaking-clinics/best-eyelid-surgery-clinics-in-seoul-korea", "https://www.seouleyeplastics.com/", "https://my1health.com/articles/best-hospitals-for-eyelid-surgery-in-south-korea-for-international-patients", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1p6z0za/i_was_botched_and_feel_deep_regret_please/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1lyamwn/best_clinic_for_blepharoplasty/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1j8m1wc/double_eyelid_surgery_in_korea_my_experience/", "https://www.realself.com/find/South-Korea/Seoul/Double-Eyelid-Surgery", "https://eng.banobagi.com/eyes/", "https://www.theplusps.co/double-eyelid-surgery/", "https://ahnsungminplasticsurgery.com/", "https://www.seouleyeplastics.com/best-revision-eye-surgery-clinics-in-korea-for-international-patients", "https://www.clinicseoul.net/jk-plastic-surgery-korea/", "https://www.gangnamobgyn.com/foreigners-clinic-guide-korea/best-5-eyelid-surgery-clinics-in-gangnam", "https://www.lowerblepharoplastykorea.com/", "https://www.seoulplasticsurgeon.com/blog/double-eyelid-surgeons-seoul", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=double-eyelid-creation/best/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ojujxv/double_eyelid_in_seoul_for_english_speaking/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1g0ugdh/looking_for_best_surgeon_in_korea_for_double/", "https://www.seoulobgyn.com/top-english-speaking-clinics/best-eyelid-surgery-clinics-in-seoul-korea", "https://www.seouleyeplastics.com/", "https://my1health.com/articles/best-hospitals-for-eyelid-surgery-in-south-korea-for-international-patients", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1p6z0za/i_was_botched_and_feel_deep_regret_please/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1lyamwn/best_clinic_for_blepharoplasty/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1j8m1wc/double_eyelid_surgery_in_korea_my_experience/", "https://www.realself.com/find/South-Korea/Seoul/Double-Eyelid-Surgery", "https://eng.banobagi.com/eyes/", "https://www.theplusps.co/double-eyelid-surgery/"], "measured_at": "2026-09-10T15:14:57", "clinics": ["Ahnsungmin Plastic Surgery", "Sinsa L Plastic Surgery", "1mm Plastic Surgery", "JK Plastic Surgery", "Banobagi", "Sinsael Plastic Surgery", "Will Be Plastic Surgery", "Very Good Plastic Surgery"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "C-12", "cat": "C", "question": "Large plastic surgery hospitals in Seoul with in-house recovery wards", "engine": "perplexity", "answer": "If you mean **large Seoul plastic surgery centers that explicitly mention in-house recovery wards / recovery suites**, the strongest matches in the results are **ID Hospital**, **VIEW Plastic Surgery**, **Grand Plastic Surgery**, and **JK Plastic Surgery**.[9][15][18][17]\n\n- **ID Hospital** — a large Seoul-based center that says it provides **private rooms with personal TVs and PCs** plus **24/7 nursing support** for recovery.[9]\n- **VIEW Plastic Surgery** — states it has **comfortable patient wards**, **24-hour monitoring**, and **private premium recovery suites** for VIP patients.[18]\n- **Grand Plastic Surgery** — described as a **large, multi-disciplinary cosmetic hospital** with **monitored recovery areas** and **on-site anesthesia**.[15]\n- **JK Plastic Surgery** — listed by VISITKOREA as an accredited hospital for foreign patients at **835, Nonhyeon-ro, Gangnam-gu**, which is a common indicator of a larger medical facility; however, the provided result does **not explicitly mention a recovery ward** in the snippet, so it is a weaker match on that specific criterion.[17][19]\n\nA few practical notes:\n- These facilities are concentrated in **Gangnam / Seocho / Sinsa / Apgujeong**, the main plastic-surgery district in Seoul.[15][18][17]\n- “**In-house recovery ward**” can mean different things: some clinics mean **dedicated recovery rooms**, while others mean **hospital-style wards with nursing care**. The wording in the search results supports that distinction.[9][18][15]\n- If you need a **true hospital-style overnight recovery ward**, **ID Hospital** and **VIEW** are the clearest matches from the results because they explicitly mention wards, rooms, and round-the-clock nursing/monitoring.[9][18]\n\nIf you want, I can turn this into a **shortlist by neighborhood** or a **comparison table** with addresses, recovery facilities, and foreign-patient support.", "urls": ["https://unni.app/us/hospitals/166", "https://www.cmcseoul.or.kr/page/eng/department/A/68/1", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://english.visitkorea.or.kr/public/asis/contents/medical/pdf/directory_enu.pdf", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792", "https://www.whatclinic.com/cosmetic-plastic-surgery/south-korea/seoul/grand-plastic-surgery", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/direction=plastic-surgery/best/", "https://experts-medical.com/en/blog-en/best-plastic-surgery-clinics-in-south-korea/", "https://www.idhospital.com/en", "https://experts-beauty.com/en/advices/best-plastic-surgery-clinics-in-south-korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=surgery/best/", "https://10mag.com/10-english-speaking-clinics-for-plastic-surgery-in-seoul/", "https://medigence.com/clinics/cosmetic-surgery/face-counturing-and-tightening/south-korea", "https://www.medicaltourismco.com/clinics/cosmetic/south-korea/", "https://www.medicaldepartures.com/clinic/grand-plastic-surgery", "https://unni.app/us/hospitals/250", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=137726", "https://www.viewplasticsurgery.com/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=137726", "https://en.nanahospital.com/", "https://unni.app/us/hospitals/166", "https://www.cmcseoul.or.kr/page/eng/department/A/68/1", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://english.visitkorea.or.kr/public/asis/contents/medical/pdf/directory_enu.pdf", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=139792", "https://www.whatclinic.com/cosmetic-plastic-surgery/south-korea/seoul/grand-plastic-surgery", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/direction=plastic-surgery/best/", "https://experts-medical.com/en/blog-en/best-plastic-surgery-clinics-in-south-korea/", "https://www.idhospital.com/en", "https://experts-beauty.com/en/advices/best-plastic-surgery-clinics-in-south-korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=surgery/best/", "https://10mag.com/10-english-speaking-clinics-for-plastic-surgery-in-seoul/", "https://medigence.com/clinics/cosmetic-surgery/face-counturing-and-tightening/south-korea", "https://www.medicaltourismco.com/clinics/cosmetic/south-korea/", "https://www.medicaldepartures.com/clinic/grand-plastic-surgery", "https://unni.app/us/hospitals/250", "https://english.visitkorea.or.kr/svc/contents/infoHtmlView.do?vcontsId=137726", "https://www.viewplasticsurgery.com/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=137726", "https://en.nanahospital.com/"], "measured_at": "2026-09-10T15:15:06", "clinics": ["ID Hospital", "VIEW Plastic Surgery", "Grand Plastic Surgery", "JK Plastic Surgery"], "view_mentioned": true, "view_rank": 2, "view_sentiment": "positive"} +{"id": "D-01", "cat": "D", "question": "Motiva breast augmentation in Korea: what should I know before booking?", "engine": "perplexity", "answer": "If you’re booking **Motiva breast augmentation in Korea**, the main things to know are: confirm the clinic’s **surgeon experience**, ask which **Motiva model and incision** they recommend for your body, and verify what is included in the quoted price, because package details and recovery plans vary by clinic.[1][3][4][12]\n\nBefore you commit, check these points:\n\n- **Typical surgical setup:** several Korean clinics describe Motiva augmentation as an outpatient or same-day procedure under **general anesthesia**, with surgery time ranging from about **1 to 4 hours** depending on the clinic and case.[1][4][7][12][16]\n- **Recovery expectations:** some clinics say light activity may resume in **3–4 days**, while others advise **1–2 weeks** for light activities and **4–6 weeks** before heavy lifting; this variation is one reason to ask the surgeon for a personalized timeline.[3][7][12][16]\n- **Pre-op requirements:** clinics commonly ask for preoperative evaluation, and some specifically mention **breast ultrasound** and even **mammography** as part of assessment.[1][17]\n- **Medication and health screening:** disclose conditions like **hypertension, heart disease, diabetes, thyroid medication use**, and any other regular medicines before surgery.[1]\n- **Smoking and fasting:** clinics instruct patients to **stop smoking before surgery** and to complete the full **fasting period** beforehand.[1]\n- **What to bring/wear:** remove **contact lenses, jewelry, and nail polish**, and wear **comfortable clothing** on surgery day.[1]\n\nThings to ask the clinic specifically:\n\n- Which **Motiva model** will be used, and why it fits your anatomy.\n- Whether the plan is **axillary**, **peri-areolar**, or **inframammary** incision, since clinics offer different approaches.[10][14]\n- Whether implant features like **BluSeal**, **chip/RFID traceability**, or other safety claims are part of the specific product being offered.[3][12][18]\n- What the quote includes: **surgeon fee, anesthesia, implant cost, facility fee, garments, follow-up visits, medications, and revision policy**. Some sources suggest clinic quotes may not be fully all-inclusive, and extra charges can appear depending on implant type or add-ons.[9][19]\n- What warranty or aftercare is included; some clinics advertise **5-year warranty/insurance coverage** for certain complications, but the terms differ by provider.[11][9]\n- How many follow-up visits are expected and whether you can complete them if you are returning home soon after surgery.[3][9]\n\nA few practical cautions:\n\n- Marketing claims about Motiva being “safer” or “more natural” are common on clinic pages, but those are promotional statements, so it is smart to compare them with independent surgeon consultation and your own risk tolerance.[3][12][16]\n- Prices in Korea vary widely by clinic and package; one patient-reported case cited about **₩13,000,000 plus tax**, while a cost guide listed roughly **$4,500–$9,000** for Motiva depending on model.[2][9][20]\n- If you are traveling, ask about the minimum recommended stay in Korea after surgery, because follow-up timing can matter for drains, stitches, and early complication checks.[3][12][17]\n\nIf you want, I can turn this into a **booking checklist** for Korea or help you compare **Motiva vs. other implant options**.", "urls": ["https://www.jkplastic.com/en/breast-surgery/motiva-breast-augmentation.asp", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1n0agbu/got_my_boobs_done_in_korea_heres_the_play_by_play/", "https://khunkim.com/en/hospitals/view/procedure/breast-augmentation-motiva", "https://www.viewplasticsurgery.com/breast/breast-augmentation/motiva/", "http://jy-clinic.com/en/chest/chest01.php", "https://mineclinic.com/breast-surgery/motiva-breast-surgery/", "https://www.idhospital.com/en/breast-surgery/breast-augmentation", "https://www.motivaimplants.co.kr/", "https://mydockorea.com/blog/breast-augmentation-korea-motiva-cost-guide", "https://www.seojinps.co/blog/motiva-breast-implant-korea-review/", "https://www.daprseng.com/m/breast/motiva.php", "https://www.theplusps.co/motiva-breast-implant/", "https://www.realself.com/review/breast-augmentation-in-korea-motiva", "https://www.theplusps.co/motiva-breast-implant-1/", "http://graceclinic.co.kr/en/motiva-breast-surgery/", "https://abplasticsurgerykorea.com/breast/motiva-breast-implants-surgery", "https://www.viewplasticsurgery.com/breast/breast-augmentation-motiva.html", "https://www.girinpsen.com/blog/?bmode=view&idx=164606114", "https://sketchplasticsurgery.com/motiva-breast-implants/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1p655dn/1_year_after_my_motiva_breast_augmentation_at/", "https://www.jkplastic.com/en/breast-surgery/motiva-breast-augmentation.asp", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1n0agbu/got_my_boobs_done_in_korea_heres_the_play_by_play/", "https://khunkim.com/en/hospitals/view/procedure/breast-augmentation-motiva", "https://www.viewplasticsurgery.com/breast/breast-augmentation/motiva/", "http://jy-clinic.com/en/chest/chest01.php", "https://mineclinic.com/breast-surgery/motiva-breast-surgery/", "https://www.idhospital.com/en/breast-surgery/breast-augmentation", "https://www.motivaimplants.co.kr/", "https://mydockorea.com/blog/breast-augmentation-korea-motiva-cost-guide", "https://www.seojinps.co/blog/motiva-breast-implant-korea-review/", "https://www.daprseng.com/m/breast/motiva.php", "https://www.theplusps.co/motiva-breast-implant/", "https://www.realself.com/review/breast-augmentation-in-korea-motiva", "https://www.theplusps.co/motiva-breast-implant-1/", "http://graceclinic.co.kr/en/motiva-breast-surgery/", "https://abplasticsurgerykorea.com/breast/motiva-breast-implants-surgery", "https://www.viewplasticsurgery.com/breast/breast-augmentation-motiva.html", "https://www.girinpsen.com/blog/?bmode=view&idx=164606114", "https://sketchplasticsurgery.com/motiva-breast-implants/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1p655dn/1_year_after_my_motiva_breast_augmentation_at/"], "measured_at": "2026-09-10T15:15:18", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-02", "cat": "D", "question": "What is Motiva Preserve and which clinics in Korea offer it?", "engine": "perplexity", "answer": "**Motiva Preservé** is a *minimally invasive breast augmentation system* by Motiva/Establishment Labs that combines a specific surgical technique with Motiva Ergonomix implants to reduce tissue trauma, preserve more native breast structures, and aim for smaller scars and faster recovery.[1][2][5][6]\n\nFor **clinics in Korea**, I couldn’t verify any Korea-based clinics from the search results you provided. The results mention clinics in the U.S., U.K., Slovenia, and elsewhere, but none explicitly identify a clinic in Korea offering Preservé.[3][4][8][11][15][16][17]\n\nWhat I can say from the sources:\n- Preservé is **not just an implant**; it is a *technique + implant system*.[5][6]\n- It is paired with **Motiva Ergonomix** implants and uses proprietary tools to create the implant pocket with less disruption to tissue.[2][4][7]\n- Clinics mentioned in the results are outside Korea, such as Manchester, Seattle, San Diego, Louisville, and others.[8][15][16][17]\n\nIf you want, I can help you with one of these next steps:\n- check for **Korean clinics currently advertising Motiva Preservé**\n- distinguish **Motiva Preservé vs. standard Motiva augmentation**\n- list **clinics in nearby countries in Asia** that offer it", "urls": ["https://motiva.health/patients-preserve/", "https://motiva.health/surgeons-preserve/", "https://dallasplasticsurgery.pro/motiva-preserve-breast-augmentation/", "https://www.bostoncenterforplasticsurgery.com/plastic-surgery/motiva-preserve-breast-augmentation/", "https://www.plasticsurgeryhub.com/blogs/what-is-preserve-motivas-breast-implant/", "https://www.bodybyravi.com/blog/what-is-motiva-preserve-breast-augmentation-and-how-is-it-different/", "https://www.metropolitanplasticsurgery.com/blogs/motiva-preserve-breast-augmentation-what-patients-should-know-before-choosing-this-new-technique", "https://www.clnq.com/breast/motiva-preserve/", "https://www.forbes.com/sites/emmasandler/2026/08/17/is-motiva-preserv-the-rolls-royce-of-breast-implants/", "https://www.kapadiaplasticsurgery.com/blog/motiva-preserve-breast-augmentation/", "https://klinikavisnjar.si/en/surgical-procedures/motiva-preserve", "https://www.kapadiaplasticsurgery.com/blog/motiva-preserve-vs-traditional-breast-augmentation/", "https://www.agulloplasticsurgery.com/blog/motiva-preserve-breast-augmentation-315cc-case-study/", "https://foizahmed.co.uk/motiva-preserve-technology-advanced-implant-innovation/", "https://newvuemedical.com/motiva-preserve-breast-augmentation/", "https://www.drchasan.com/plastic-surgery/breast/breast-augmentation/motiva-preserve/", "https://www.caloaesthetics.com/plastic-surgery/breast/preserve-by-motiva/", "https://motiva.health/patients-preserve/", "https://motiva.health/surgeons-preserve/", "https://dallasplasticsurgery.pro/motiva-preserve-breast-augmentation/", "https://www.bostoncenterforplasticsurgery.com/plastic-surgery/motiva-preserve-breast-augmentation/", "https://www.plasticsurgeryhub.com/blogs/what-is-preserve-motivas-breast-implant/", "https://www.bodybyravi.com/blog/what-is-motiva-preserve-breast-augmentation-and-how-is-it-different/", "https://www.metropolitanplasticsurgery.com/blogs/motiva-preserve-breast-augmentation-what-patients-should-know-before-choosing-this-new-technique", "https://www.clnq.com/breast/motiva-preserve/", "https://www.forbes.com/sites/emmasandler/2026/08/17/is-motiva-preserv-the-rolls-royce-of-breast-implants/", "https://www.kapadiaplasticsurgery.com/blog/motiva-preserve-breast-augmentation/", "https://klinikavisnjar.si/en/surgical-procedures/motiva-preserve", "https://www.kapadiaplasticsurgery.com/blog/motiva-preserve-vs-traditional-breast-augmentation/", "https://www.agulloplasticsurgery.com/blog/motiva-preserve-breast-augmentation-315cc-case-study/", "https://foizahmed.co.uk/motiva-preserve-technology-advanced-implant-innovation/", "https://newvuemedical.com/motiva-preserve-breast-augmentation/", "https://www.drchasan.com/plastic-surgery/breast/breast-augmentation/motiva-preserve/", "https://www.caloaesthetics.com/plastic-surgery/breast/preserve-by-motiva/"], "measured_at": "2026-09-10T15:15:26", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-03", "cat": "D", "question": "How long is recovery after breast augmentation in Korea before I can fly?", "engine": "perplexity", "answer": "For **breast augmentation in Korea**, most clinics clear patients to **fly about 7 to 10 days after surgery**, and many recommend planning for **10 to 14 days** if you’re taking a long-haul flight or want extra buffer for follow-up checks.[1][4][6][9][10]\n\nWhat that usually means in practice:\n- **Day 7–10:** common minimum stay before flying, if healing is straightforward and your surgeon clears you.[1][5][9]\n- **Day 10–14:** a more conservative window used by many clinics for international patients, especially for long-haul travel.[2][4][6][10][15]\n- **Long-term recovery:** swelling and settling continue for **weeks to months**, even though flying may be allowed earlier.[1][5][13]\n\nA good rule is: **do not book your return flight until your surgeon gives formal clearance** at your follow-up visit.[7][9][11] If you tell me your flight length and whether you’re also getting implants under the muscle, drains, or another procedure, I can narrow the timing further.", "urls": ["https://www.globalbeautyspot.com/breast-augmentation-recovery-korea-timeline/", "https://www.soonplusplasticsurgery.com/articles/breast-augmentation-recovery-korea-timeline-guide", "https://koreaexperience.com/blog/flying-after-surgery-when-is-it-safe-to-head-home-doctor-advice-2026", "https://seoulbeautytalk.com/blog/how-long-to-book-seoul-trip-for-plastic-surgery", "https://www.linkpskorea.com/en/blog/breast-augmentation-in-korea-real-recovery-photos-from-7-days-to-90-da/", "https://www.gangnambreastreductionsurgery.com/blog/how-long-should-you-stay-in-korea-after-breast-surgery", "https://www.gangnambreastreductionsurgery.com/blog/flying-home-after-breast-surgery-in-korea", "https://wuneprs.com/en/blog/breast-augmentation-recovery-korea/", "https://www.linkpskorea.com/en/faq/how-long-should-i-stay-in-korea-and-when-can-i-fly/", "https://seoulcosmeticsurgery.com/plastic-surgery-korea-tips/", "https://korea-clinics.com/guides/recovery-time-and-when-you-can-fly/", "https://www.patients.community/t/how-long-do-people-typically-stay-in-korea-after-having-plastic-surgery/898", "https://www.koreaclinicguide.com/blog/korea-plastic-surgery-recovery-timelines", "https://www.placidway.com/answer-detail/30889/What-is-the-price-of-Breast-Augmentation-in-South-Korea", "https://www.hayatmed.com/blog/breast-implant/how-long-after-breast-augmentation-can-i-fly/", "https://partingtonps.com/how-long-after-breast-augmentation-can-i-fly-for-vacation/", "https://www.afittingexperience.com/flying-after-breast-augmentation/", "https://www.globalbeautyspot.com/breast-augmentation-recovery-korea-timeline/", "https://www.soonplusplasticsurgery.com/articles/breast-augmentation-recovery-korea-timeline-guide", "https://koreaexperience.com/blog/flying-after-surgery-when-is-it-safe-to-head-home-doctor-advice-2026", "https://seoulbeautytalk.com/blog/how-long-to-book-seoul-trip-for-plastic-surgery", "https://www.linkpskorea.com/en/blog/breast-augmentation-in-korea-real-recovery-photos-from-7-days-to-90-da/", "https://www.gangnambreastreductionsurgery.com/blog/how-long-should-you-stay-in-korea-after-breast-surgery", "https://www.gangnambreastreductionsurgery.com/blog/flying-home-after-breast-surgery-in-korea", "https://wuneprs.com/en/blog/breast-augmentation-recovery-korea/", "https://www.linkpskorea.com/en/faq/how-long-should-i-stay-in-korea-and-when-can-i-fly/", "https://seoulcosmeticsurgery.com/plastic-surgery-korea-tips/", "https://korea-clinics.com/guides/recovery-time-and-when-you-can-fly/", "https://www.patients.community/t/how-long-do-people-typically-stay-in-korea-after-having-plastic-surgery/898", "https://www.koreaclinicguide.com/blog/korea-plastic-surgery-recovery-timelines", "https://www.placidway.com/answer-detail/30889/What-is-the-price-of-Breast-Augmentation-in-South-Korea", "https://www.hayatmed.com/blog/breast-implant/how-long-after-breast-augmentation-can-i-fly/", "https://partingtonps.com/how-long-after-breast-augmentation-can-i-fly-for-vacation/", "https://www.afittingexperience.com/flying-after-breast-augmentation/"], "measured_at": "2026-09-10T15:15:33", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-04", "cat": "D", "question": "What is the difference between V-line surgery and square jaw reduction?", "engine": "perplexity", "answer": "**V-line surgery** is usually the *more comprehensive* procedure: it narrows the lower face by reducing the jaw angle and usually also reshaping the **chin** to create a pointed, tapered “V” shape.[2][11][15] **Square jaw reduction** is narrower in scope: it mainly reduces the **mandibular angle** to soften a wide or angular jaw, often without changing the chin.[2][8][18]\n\nIn practical terms:\n\n- **Square jaw reduction** targets the back/side part of the jaw to make the face look less wide.[2][8]\n- **V-line surgery** combines square jaw reduction with **chin reshaping** (genioplasty) for a more complete V-shaped contour.[2][4][15]\n- Because it addresses more areas, **V-line surgery** is generally more invasive and may have a longer recovery than square jaw reduction alone.[13][15]\n\nA simple way to think about it is: **square jaw reduction = jaw angle slimming**, while **V-line surgery = jaw angle slimming + chin contouring**.[2][4][15]\n\nIf you want, I can also compare the two in terms of **recovery, risks, and who is a good candidate**.", "urls": ["https://deschamps-braly.com/ffs-v-line-vs-jaw-surgery/", "https://eng.idhospital.com/jaw-surgeries-explained/", "http://www.thefacedental.com/born/face.asp", "https://seoulguidemedical.id/square-jaw-reduction-and-much-more/", "https://www.girinpsen.com/blog/?bmode=view&idx=16911226", "https://abplasticsurgerykorea.com/ab-blog/jawline-surgery-vs-fillers-why-lasting-results-come-from-the-scalpel", "https://cyl.co.kr/en/blog/d-009-full-facial-contouring/", "https://www.faceplusplasticsurgery.com/articles/square-jaw-reduction-the-v-line-trend-thats-still-going-strong", "http://april31.com/en/document/Jaw-line", "https://www.umiclinickorea.com/articles/non-surgical-vs-surgical-v-line-which-is-right-for-you", "https://www.healthline.com/health/cosmetic-surgery/v-line-surgery", "https://waveplasticsurgery.com/what-is-v-line-jaw-shaving-surgery/", "https://docfinderkorea.com/news/difference-between-v-line-and-mini-v-line-surgery", "https://www.dr-mfo.com/es/v-line-surgery-vs-masseter-botox-permanent-vs-temporary-solutions/", "https://www.cinderellaplasticsurgery.com/articles/two-jaw-surgery-vs-v-line-whats-best-for-you", "https://www.drspiegel.com/asian-plastic-surgery-boston/v-line-jaw-surgery/", "https://www.jkplastic.com/en/facial-contouring/square-jaw.asp", "https://www.viewplasticsurgery.com/blog/square-jaw-surgery-before-contouring/", "https://www.facepluspsi.com/jaw-contouring-v-line-surgery", "https://thevirginiainstitute.com/facial-plastic-surgery/jawline-reduction", "https://deschamps-braly.com/ffs-v-line-vs-jaw-surgery/", "https://eng.idhospital.com/jaw-surgeries-explained/", "http://www.thefacedental.com/born/face.asp", "https://seoulguidemedical.id/square-jaw-reduction-and-much-more/", "https://www.girinpsen.com/blog/?bmode=view&idx=16911226", "https://abplasticsurgerykorea.com/ab-blog/jawline-surgery-vs-fillers-why-lasting-results-come-from-the-scalpel", "https://cyl.co.kr/en/blog/d-009-full-facial-contouring/", "https://www.faceplusplasticsurgery.com/articles/square-jaw-reduction-the-v-line-trend-thats-still-going-strong", "http://april31.com/en/document/Jaw-line", "https://www.umiclinickorea.com/articles/non-surgical-vs-surgical-v-line-which-is-right-for-you", "https://www.healthline.com/health/cosmetic-surgery/v-line-surgery", "https://waveplasticsurgery.com/what-is-v-line-jaw-shaving-surgery/", "https://docfinderkorea.com/news/difference-between-v-line-and-mini-v-line-surgery", "https://www.dr-mfo.com/es/v-line-surgery-vs-masseter-botox-permanent-vs-temporary-solutions/", "https://www.cinderellaplasticsurgery.com/articles/two-jaw-surgery-vs-v-line-whats-best-for-you", "https://www.drspiegel.com/asian-plastic-surgery-boston/v-line-jaw-surgery/", "https://www.jkplastic.com/en/facial-contouring/square-jaw.asp", "https://www.viewplasticsurgery.com/blog/square-jaw-surgery-before-contouring/", "https://www.facepluspsi.com/jaw-contouring-v-line-surgery", "https://thevirginiainstitute.com/facial-plastic-surgery/jawline-reduction"], "measured_at": "2026-09-10T15:15:39", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-05", "cat": "D", "question": "Double jaw surgery in Korea: recovery timeline and risks for international patients", "engine": "perplexity", "answer": "**Double jaw surgery in Korea usually requires a hospital stay of about 2–4 days, a stay in Korea of roughly 3–5 weeks or longer depending on the clinic, and a recovery that unfolds over weeks to months rather than days.** Swelling typically peaks in the first 2–4 days, major swelling improves over the first 2–6 weeks, and more subtle healing, numbness, and final facial settling can continue for 6–12 months.[1][4][5][8][9]\n\nFor **international patients**, the practical timeline is often longer than the “back to daily life” estimate, because follow-up visits, stitch removal around 2 weeks, and early monitoring are usually built into the post-op plan.[5][8][9][11] Several Korea-based clinics specifically advise staying in Korea for about **3 weeks**, **5 weeks**, or even **8 weeks** after surgery, showing that recommendations vary by case and clinic protocol.[1][7][9][11]\n\n### Typical recovery timeline\n- **Days 1–3/4:** Hospital monitoring; swelling and discomfort are at their worst, often peaking around day 3 or 4.[1][2][4][15]\n- **Week 1–3:** Swelling starts to drop; patients are usually on liquids or very soft foods; light daily activity may begin depending on the surgeon’s protocol.[1][2][5][8]\n- **Weeks 4–8:** Bone healing progresses and many patients can resume more normal daily routines, but pressure on the jaw and harder foods are still restricted.[1][2][6][14]\n- **Months 3–6:** Most visible swelling resolves; numbness in the lower lip/chin often begins improving, and function continues to normalize.[1][4][10]\n- **Months 6–12:** Final soft-tissue settling and bone remodeling continue; braces or aligners are often still needed for bite refinement after surgery.[1][4][10]\n\n### Main risks and complications\nThe search results provided focus more on recovery than on complication rates, but they do identify several common post-op issues: **swelling, bruising, pain, numbness, stiffness, nasal congestion, and weight loss from a restricted diet**.[4][8][9][10][16] They also note that **strenuous exercise, contact sports, and impact to the face should be avoided for weeks to months**, which reflects the risk of disturbing healing bone.[3][5][6]\n\n### What international patients should plan for\n- **Time in Korea:** commonly **3–5 weeks**, though some clinics recommend longer depending on healing and follow-up needs.[1][7][9][11]\n- **Diet:** liquid/soft diet initially, sometimes for **2–4 weeks** or longer.[4][6][8]\n- **Follow-up care:** multiple post-op visits and stitch removal around **2 weeks** are common.[5][8][9][11]\n- **Orthodontic phase:** braces/aligners may continue for **months to 12–18 months** after surgery.[1][9]\n\nIf you want, I can turn this into a **week-by-week travel and recovery plan for an international patient** or a **checklist of questions to ask a Korean clinic before booking**.", "urls": ["https://www.seoulmedicalinsider.com/blog/two-jaw-surgery-korea-guide", "https://seoulguidemedical.com/before-and-after-double-jaw-surgery/", "https://docfinderkorea.com/news/double-jaw-surgery-in-korea-kimberly-s-life-changing-2026-real-story", "https://www.koreaclinicguide.com/blog/sleep-apnea-jaw-korea", "https://eng.banobagi.com/face/two-jaw-surgery/", "https://www.facialcontouringkorea.com/double-jaw-surgery", "https://www.shinmedical.com/procedure/facial-contouring-double-jaw/", "https://365plasticsurgerykorea.com/procedure/plastic-surgery/maxillofacial-surgery/doublejaw-surgery", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=27160&mod=document", "https://docfinderkorea.com/news/double-corrective-jaw-surgery-in-korea", "https://wonjinbeauty.com/en/facial/facial_TwoJawSurgery.php", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=24164&mod=document", "https://daprseng.com/contouring/jaw.php", "https://www.advancedreconstruction.com/blog/jaw-surgery-recovery-timeline", "https://www.oregonoralsurgery.com/recovery-timeline-for-jaw-surgery-what-to-expect/", "https://www.idhospital.com/en/orthognathic-surgery/no-tie-orthognathic-surgery", "https://www.viewplasticsurgery.com/double-jaw/index.html", "https://www.seoulmedicalinsider.com/blog/two-jaw-surgery-korea-guide", "https://seoulguidemedical.com/before-and-after-double-jaw-surgery/", "https://docfinderkorea.com/news/double-jaw-surgery-in-korea-kimberly-s-life-changing-2026-real-story", "https://www.koreaclinicguide.com/blog/sleep-apnea-jaw-korea", "https://eng.banobagi.com/face/two-jaw-surgery/", "https://www.facialcontouringkorea.com/double-jaw-surgery", "https://www.shinmedical.com/procedure/facial-contouring-double-jaw/", "https://365plasticsurgerykorea.com/procedure/plastic-surgery/maxillofacial-surgery/doublejaw-surgery", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=27160&mod=document", "https://docfinderkorea.com/news/double-corrective-jaw-surgery-in-korea", "https://wonjinbeauty.com/en/facial/facial_TwoJawSurgery.php", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=24164&mod=document", "https://daprseng.com/contouring/jaw.php", "https://www.advancedreconstruction.com/blog/jaw-surgery-recovery-timeline", "https://www.oregonoralsurgery.com/recovery-timeline-for-jaw-surgery-what-to-expect/", "https://www.idhospital.com/en/orthognathic-surgery/no-tie-orthognathic-surgery", "https://www.viewplasticsurgery.com/double-jaw/index.html"], "measured_at": "2026-09-10T15:15:50", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-06", "cat": "D", "question": "Incisional vs non-incisional double eyelid surgery in Korea: which is better?", "engine": "perplexity", "answer": "Neither is universally “better”; **the better option depends on your eyelid anatomy and goals**. In Korea, **non-incisional** surgery is generally favored for **thin eyelids with little excess skin or fat** and for people who want **faster recovery and no external scar**, while **incisional** surgery is generally favored for **thicker, puffy, loose, or sagging eyelids**, or when a more **durable/permanent** result and tissue removal are needed.[1][2][7][9][10][11]\n\n**Practical rule of thumb:**\n- **Choose non-incisional** if you have **thin lids**, minimal fat, good crease formation on exam, and want the **quickest recovery** with minimal scarring.[2][7][9][10][18][19]\n- **Choose incisional** if you have **excess skin/fat**, droopy or heavy lids, prior suture crease failure, or you want the strongest chance of a **long-lasting result**.[1][3][7][9][10][11][15][17][19]\n\n**How they differ:**\n- **Non-incisional** uses sutures through small punctures to form the crease without a full cut, which typically means **less swelling**, **faster healing**, and **no visible incision scar**.[1][2][7][8][18]\n- **Incisional** uses an eyelid incision that can remove **skin, fat, and sometimes muscle**, which makes it better for **reshaping heavier lids** and creating a more **permanent fold**, but recovery is usually **longer**.[1][2][7][9][15][17][20]\n\n**Common trade-off:**\n- **Non-incisional:** quicker recovery, less trauma, but the crease may loosen over time in some patients and is less suitable for heavier lids.[3][4][7][9][13][14][16]\n- **Incisional:** longer recovery, but better for complex anatomy and more stable long-term results.[1][3][7][9][15][17]\n\nIf you want the shortest answer: **thin lids = non-incisional; thick or sagging lids = incisional**.[7][9][10][11][19]", "urls": ["https://www.vippskorea.com/face/eye-surgery/double-eyelid-surgery.html", "https://www.seoulmedicalinsider.com/blog/double-eyelid-surgery-korea-incisional-vs-non-incisional-guide", "https://www.linkpskorea.com/en/blog/korean-double-eyelid-surgery-incision-vs-non-incision-real-1-month-rec/", "https://www.clinicseoul.net/korea-double-eyelid-surgery/", "https://www.linkpskorea.com/en/blog/incisional-vs-non-incisional-double-eyelid-surgery-in-korea-3-real-pat/", "https://www.seouleyeplastics.com/blog/double-eyelid-surgical-methods-explained-in-korea", "https://docfinderkorea.com/news/different-types-of-eyelid-surgeries-in-korea", "https://www.koreaclinicguide.com/blog/double-eyelid-surgery-korea", "https://www.clinicseoul.net/blepharoplasty-korea/", "https://noonopiclinic.com/en/blepharoplasty/double-eyelid", "https://www.allaboutmei.com/en/trends/non-incisional-vs-incisional-double-eyelid-surgery-better", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1pg98q3/are_the_results_different_between_nonincisional/", "https://eng.banobagi.com/eyes/double-eyelids/non-incisional/", "https://abplasticsurgerykorea.com/ab-blog/the-four-types-of-double-eyelid-surgery-in-line-in-outline-semi-outline-and-outline", "https://www.ifaas.co/single-post/asian-blepharoplasty-incisional-vs-non-incisional", "https://www.idhospital.com/en/eye/incisional-double-eyelid-method", "https://www.made-young.co/double-eyelid-surgery-incisional/", "https://www.jkplastic.com/en/eye-surgery/double-eyelid-surgery.asp", "https://noonopiclinic.com/en/blog/double-eyelid-surgery", "http://en.marbleps.com/eye/eye02.php", "https://www.vippskorea.com/face/eye-surgery/double-eyelid-surgery.html", "https://www.seoulmedicalinsider.com/blog/double-eyelid-surgery-korea-incisional-vs-non-incisional-guide", "https://www.linkpskorea.com/en/blog/korean-double-eyelid-surgery-incision-vs-non-incision-real-1-month-rec/", "https://www.clinicseoul.net/korea-double-eyelid-surgery/", "https://www.linkpskorea.com/en/blog/incisional-vs-non-incisional-double-eyelid-surgery-in-korea-3-real-pat/", "https://www.seouleyeplastics.com/blog/double-eyelid-surgical-methods-explained-in-korea", "https://docfinderkorea.com/news/different-types-of-eyelid-surgeries-in-korea", "https://www.koreaclinicguide.com/blog/double-eyelid-surgery-korea", "https://www.clinicseoul.net/blepharoplasty-korea/", "https://noonopiclinic.com/en/blepharoplasty/double-eyelid", "https://www.allaboutmei.com/en/trends/non-incisional-vs-incisional-double-eyelid-surgery-better", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1pg98q3/are_the_results_different_between_nonincisional/", "https://eng.banobagi.com/eyes/double-eyelids/non-incisional/", "https://abplasticsurgerykorea.com/ab-blog/the-four-types-of-double-eyelid-surgery-in-line-in-outline-semi-outline-and-outline", "https://www.ifaas.co/single-post/asian-blepharoplasty-incisional-vs-non-incisional", "https://www.idhospital.com/en/eye/incisional-double-eyelid-method", "https://www.made-young.co/double-eyelid-surgery-incisional/", "https://www.jkplastic.com/en/eye-surgery/double-eyelid-surgery.asp", "https://noonopiclinic.com/en/blog/double-eyelid-surgery", "http://en.marbleps.com/eye/eye02.php"], "measured_at": "2026-09-10T15:15:59", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-07", "cat": "D", "question": "Rhinoplasty in Korea with rib cartilage vs silicone: pros and cons", "engine": "perplexity", "answer": "For **rhinoplasty in Korea**, **silicone** is usually the more straightforward option for **predictable bridge augmentation**, while **rib cartilage** is favored when you want **maximum structural support, a more natural tissue feel, or a revision/complex case**. In general, silicone is **cheaper, faster, and easier to revise**, while rib cartilage is **more biologically compatible but more invasive** because it requires harvesting from the chest.[2][4][8]\n\n| Feature | **Silicone** | **Rib cartilage** |\n|---|---|---|\n| **Look and feel** | Predictable shape; can look less natural under thin skin[1][2][8] | More natural blend with tissue; softer appearance[1][12] |\n| **Biocompatibility** | Foreign material; small but real risk of infection, inflammation, capsular contracture, or extrusion[2][8][10] | Your own tissue, so rejection/extrusion risk is lower[1][12] |\n| **Structural support** | Good for bridge augmentation, but less ideal for major reconstruction or weak anatomy[2][3][8] | Strong support; often preferred for revision, major augmentation, or complex reconstruction[2][4][8] |\n| **Surgery / recovery** | Shorter surgery and simpler recovery[2][4] | Longer surgery; extra chest donor-site recovery and scar[2][4][5] |\n| **Revision** | Usually easier to remove or replace[2][4] | Revision can be more complex, though it integrates well once healed[2][4] |\n| **Long-term issues** | Can shift, become visible in thin skin, or form a capsule over time[2][8][9] | Can warp or resorb over time; donor-site complications are possible[2][5][11] |\n| **Cost in Korea** | Typically lower[2][4] | Typically higher[2][4][5] |\n\n**Silicone tends to be better if you want:**\n- A **primary** rhinoplasty with straightforward bridge augmentation[1][4][8]\n- **Lower cost** and **shorter surgery**[2][4]\n- Easier **future revision** if needed[2][4]\n\n**Rib cartilage tends to be better if you want:**\n- **Revision** rhinoplasty or significant structural change[2][4][8]\n- A more **natural, integrated** result, especially with thinner skin[1][12]\n- Less concern about **foreign-body complications**[1][10][12]\n\n**Main trade-offs to weigh:**\n- **Silicone:** simpler, cheaper, and predictable, but carries implant-related risks such as visibility in thin skin, shifting, and long-term capsule/extrusion concerns[2][8][9][10]\n- **Rib cartilage:** more natural and durable in complex cases, but involves a chest harvest, longer operation, more recovery, and some risk of warping/resorption[2][5][11]\n\nIf you want, I can also give you a **“which is better for my nose?” decision guide** based on whether you have **thin skin, low bridge, revision surgery, or want a natural vs high bridge look**.", "urls": ["https://www.vippskorea.com/blog/implant-free-rhinoplasty-in-korea", "https://cyl.co.kr/blog/b-003-silicone-vs-rib-cartilage/", "https://www.linkpskorea.com/en/blog/korean-rhinoplasty-materials-silicone-implant-vs-your-own-cartilage-an/", "https://www.clinicseoul.net/korean-nose-job/", "https://www.koreanplasticsurgery.info/post/how-to-choose-rhinoplasty-graft-material-complete-decision-guide-korean-plastic-surgery", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mxgujc/choosing_between_rib_cartilage_and_silicone_with/", "https://answerplasticsurgery.com/why-are-silicone-implants-usually-better-than-cartilage-grafts-when-enhancing-the-nose-bridge/", "https://gangnambeautyguide.com/en/procedures/rhinoplasty/", "https://www.koreanplasticsurgery.info/post/how-to-choose-rhinoplasty-graft-material-a-complete-decision-guide-2", "https://www.braunps.com/page/RhinoplastyMaterials", "https://pmc.ncbi.nlm.nih.gov/articles/PMC4656167/", "https://www.asiancosmeticsurgery.com/blog/why-rib-grafts-are-preferred-over-silicone-implants-in-asian-rhinoplasty/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1p1v1u8/deciding_on_rib_cartilage_type_for_my_first/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mxv6wc/cartilage_option_for_rhinoplasty_surgery_in_korea/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1qdtlew/has_anyone_had_a_rhinoplasty_with_a_silicone/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1lk15tw/a_quick_guide_to_nose_implant/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oc4ofr/how_natural_does_silicone_look_and_feel_after/", "https://www.drrahulgogoi.com/rhinoplasty-rib-cartilage-or-silicon-implant", "https://rhinoplastytoronto.ca/blog/about-rhinoplasty/silicone-vs-cartilage-vs-gore-tex-which-nose-implant-is-best-for-rhinoplasty/", "https://www.allureplasticsurgery.sg/augmentation-rhinoplasty-silicone-vs-cartilage/", "https://www.vippskorea.com/blog/implant-free-rhinoplasty-in-korea", "https://cyl.co.kr/blog/b-003-silicone-vs-rib-cartilage/", "https://www.linkpskorea.com/en/blog/korean-rhinoplasty-materials-silicone-implant-vs-your-own-cartilage-an/", "https://www.clinicseoul.net/korean-nose-job/", "https://www.koreanplasticsurgery.info/post/how-to-choose-rhinoplasty-graft-material-complete-decision-guide-korean-plastic-surgery", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mxgujc/choosing_between_rib_cartilage_and_silicone_with/", "https://answerplasticsurgery.com/why-are-silicone-implants-usually-better-than-cartilage-grafts-when-enhancing-the-nose-bridge/", "https://gangnambeautyguide.com/en/procedures/rhinoplasty/", "https://www.koreanplasticsurgery.info/post/how-to-choose-rhinoplasty-graft-material-a-complete-decision-guide-2", "https://www.braunps.com/page/RhinoplastyMaterials", "https://pmc.ncbi.nlm.nih.gov/articles/PMC4656167/", "https://www.asiancosmeticsurgery.com/blog/why-rib-grafts-are-preferred-over-silicone-implants-in-asian-rhinoplasty/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1p1v1u8/deciding_on_rib_cartilage_type_for_my_first/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mxv6wc/cartilage_option_for_rhinoplasty_surgery_in_korea/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1qdtlew/has_anyone_had_a_rhinoplasty_with_a_silicone/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1lk15tw/a_quick_guide_to_nose_implant/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oc4ofr/how_natural_does_silicone_look_and_feel_after/", "https://www.drrahulgogoi.com/rhinoplasty-rib-cartilage-or-silicon-implant", "https://rhinoplastytoronto.ca/blog/about-rhinoplasty/silicone-vs-cartilage-vs-gore-tex-which-nose-implant-is-best-for-rhinoplasty/", "https://www.allureplasticsurgery.sg/augmentation-rhinoplasty-silicone-vs-cartilage/"], "measured_at": "2026-09-10T15:16:10", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-08", "cat": "D", "question": "How is revision rhinoplasty done in Korea and how long do I need to stay?", "engine": "perplexity", "answer": "Revision rhinoplasty in Korea is typically done as an **open revision** with careful removal of old implants, release of scar tissue, and rebuilding the nasal framework; if needed, surgeons often use **autologous cartilage** such as rib or ear cartilage for support.[2][4][6] The operation is commonly performed under **general anesthesia**, and the procedure time is usually about **2–6 hours** depending on complexity.[1][5][7][13]\n\nFor how long you need to stay, many Korean clinics recommend staying **at least 7–10 days** so the splint and stitches can be removed and an early follow-up can be done before you fly home.[2][3][7][8] More conservative guidance for revision cases is **10–14 days**, and some clinics recommend **14–21 days** when the case is more complex or rib cartilage is used.[5][11]\n\nTypical recovery timing is:\n- **Splint/stitch removal:** about **5–10 days** after surgery.[1][2][3][7]\n- **Return to daily life:** often around **7–10 days** after surgery.[8][9][11]\n- **Major swelling improvement:** usually over **2–4 weeks**.[4][10]\n- **Final shape settling:** about **3–6 months**, sometimes **6–12 months** or longer for complex revisions.[2][4][6][10][13][14]\n\nIf you want, I can also give you a **sample 10-day Korea travel plan** for revision rhinoplasty, including consultation, surgery day, follow-up, and flight timing.", "urls": ["https://www.vippskorea.com/face/nose-surgery/revision-rhinoplasty.html", "https://khunkim.com/en/hospitals/dream/procedure/nose-revision", "https://wonjinbeauty.com/en/rhinoplasty/rhinoplasty_revision_noseRevision.php", "https://www.gangnamplastic.surgery/blog/revision-rhinoplasty-in-korea-explained", "https://www.linkpskorea.com/en/blog/korean-revision-rhinoplasty-why-so-many-foreign-patients-now-fly-to-se/", "https://www.gangnamplastic.surgery/clinic-treatments-seoul/nose/revision-rhinoplasty", "https://www.theplusps.co/revision-rhinoplasty/", "https://editionps.com/en/nose/revision", "https://en.nanahospital.com/page/revision_rhinoplasty", "https://eng.banobagi.com/nose/", "https://inkoreanow.com/revision-rhinoplasty-korea/", "https://seoulguidemedical.com/rhinoplasty-in-korea-a-guide-to-different-types-of-nose-jobs-and-procedures/", "https://www.kowonplasticsurgery.com/articles/revision-rhinoplasty-experts-in-seoul-dr-kim-hyung-taek", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=revision-rhinoplasty/", "https://www.realself.com/find/South-Korea/Revision-Rhinoplasty", "https://www.realself.com/find/South-Korea/Seoul/Revision-Rhinoplasty", "https://us-uk.bookimed.com/doctors/country=republic-of-korea/procedure=revision-rhinoplasty/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1j5uxzl/need_help_deciding_between_two_rhinoplasty/", "https://clinicsoncall.com/en/doctors/country-south-korea/speciality-plastic-surgery/procedure-rhinoplasty/", "https://www.vippskorea.com/face/nose-surgery/revision-rhinoplasty.html", "https://khunkim.com/en/hospitals/dream/procedure/nose-revision", "https://wonjinbeauty.com/en/rhinoplasty/rhinoplasty_revision_noseRevision.php", "https://www.gangnamplastic.surgery/blog/revision-rhinoplasty-in-korea-explained", "https://www.linkpskorea.com/en/blog/korean-revision-rhinoplasty-why-so-many-foreign-patients-now-fly-to-se/", "https://www.gangnamplastic.surgery/clinic-treatments-seoul/nose/revision-rhinoplasty", "https://www.theplusps.co/revision-rhinoplasty/", "https://editionps.com/en/nose/revision", "https://en.nanahospital.com/page/revision_rhinoplasty", "https://eng.banobagi.com/nose/", "https://inkoreanow.com/revision-rhinoplasty-korea/", "https://seoulguidemedical.com/rhinoplasty-in-korea-a-guide-to-different-types-of-nose-jobs-and-procedures/", "https://www.kowonplasticsurgery.com/articles/revision-rhinoplasty-experts-in-seoul-dr-kim-hyung-taek", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=revision-rhinoplasty/", "https://www.realself.com/find/South-Korea/Revision-Rhinoplasty", "https://www.realself.com/find/South-Korea/Seoul/Revision-Rhinoplasty", "https://us-uk.bookimed.com/doctors/country=republic-of-korea/procedure=revision-rhinoplasty/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1j5uxzl/need_help_deciding_between_two_rhinoplasty/", "https://clinicsoncall.com/en/doctors/country-south-korea/speciality-plastic-surgery/procedure-rhinoplasty/"], "measured_at": "2026-09-10T15:16:17", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-09", "cat": "D", "question": "Facelift in Korea for a 50-year-old: what techniques are used?", "engine": "perplexity", "answer": "For a **50-year-old**, facelifts in Korea are typically built around **SMAS facelift** or **deep plane facelift**, often combined with a **neck lift** and sometimes **fat grafting** to restore volume[2][4][5][12]. If aging is milder, some clinics may instead recommend a **mini facelift** or non-surgical lifting such as **thread lifts**, **HIFU**, or **RF-based tightening**[3][7][18][20].\n\nThe main techniques used are:\n\n- **SMAS facelift**: Lifts and tightens the superficial musculoaponeurotic system, which helps improve the **jawline, cheeks, and lower face**[3][8][12][13].\n- **Deep plane facelift**: Works **beneath the SMAS** and releases retaining ligaments to reposition the deeper facial tissues, which is used for more **significant sagging, deep folds, and midface descent**[5][6][11][13].\n- **Mini facelift / MACS lift**: A shorter-incision option for **early jowling and milder sagging**, more common when the face still has relatively modest laxity[3][9][14].\n- **Neck lift**: Often paired with facelift surgery to smooth the transition from the **jawline to the neck** and treat neck laxity[2][4][12].\n- **Fat grafting**: Used to correct **volume loss** in the cheeks, temples, or midface, which is common in the 50s[2][17].\n- **Midface or cheek lift**: Specifically targets **cheek descent** and under-eye/midface flattening[3][12][17].\n- **Non-surgical options**: **Thread lifts**, **HIFU**, and **RF skin tightening** are commonly offered for patients who want less downtime or have earlier-stage aging[3][7][18][20].\n\nFor a typical 50-year-old with **moderate sagging and jowls**, the most commonly cited surgical approach is **SMAS or deep plane facelift**, with a **neck lift** added when the neck is also loose[2][4][9][16]. If you want, I can also break this down into **which technique fits mild, moderate, or advanced aging in the 50s**.", "urls": ["https://www.vippskorea.com/anti-aging/face/deep-plane-facelift.html", "https://mydockorea.com/blog/facelift-korea-age-guide-40s-50s-60s", "https://www.koreafacelift.com/types-of-facelift-surgery-in-korea", "https://www.koreaplastic.surgery/blog/best-anti-aging-surgeries-for-40s-50s-60s-in-korea", "https://medicalkoreaservice.com/blog/deep-plane-facelift-korea-singapore-indonesia-patients/", "https://mineclinic.com/blog/lifting/facelift/deep-plane-korean-facelift-what-makes-it-different/", "https://www.gangnamskin.clinic/skin-by-age/skin-lifting-in-your-50s", "https://docfinderkorea.com/news/ultimate-guide-to-deep-plane-facelift-surgery-in-korea-2026", "https://www.clinicseoul.net/facelift-korea/", "https://mineclinic.com/blog/lifting/facelift/comparison-of-facelift-methods-surgery-vs-non-surgical-procedures/", "https://en.nanahospital.com/page/full_facelift", "https://www.koreaplastic.surgery/blog/korean-facelift-surgery-guide", "https://seoulclinics.io/blog/facelift-seoul-guide-2026", "https://www.placidway.com/video/6950/1/Face-Lifting-Surgery-Options-in-South-Korea-Best-AntiAging-Procedures-Compared", "https://www.rnwoodclinickorea.com/articles/deep-plane-facelift-in-seoul---rnwood-plastic-surgery", "https://gangnammedicalconcierge.com/plastic-surgery/face-lift/facelift-korea-types-guide/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1onuuk0/facelifting_in_your_40s_50s_the_agespecific_guide/", "https://inkoreanow.com/hifu-korea-price-thread-lift/", "https://www.koreaclinicguide.com/blog/aging-face-korea", "https://www.gangnammedspa.com/blog/10-most-popular-non-surgical-facelift-treatments-in-korea", "https://www.vippskorea.com/anti-aging/face/deep-plane-facelift.html", "https://mydockorea.com/blog/facelift-korea-age-guide-40s-50s-60s", "https://www.koreafacelift.com/types-of-facelift-surgery-in-korea", "https://www.koreaplastic.surgery/blog/best-anti-aging-surgeries-for-40s-50s-60s-in-korea", "https://medicalkoreaservice.com/blog/deep-plane-facelift-korea-singapore-indonesia-patients/", "https://mineclinic.com/blog/lifting/facelift/deep-plane-korean-facelift-what-makes-it-different/", "https://www.gangnamskin.clinic/skin-by-age/skin-lifting-in-your-50s", "https://docfinderkorea.com/news/ultimate-guide-to-deep-plane-facelift-surgery-in-korea-2026", "https://www.clinicseoul.net/facelift-korea/", "https://mineclinic.com/blog/lifting/facelift/comparison-of-facelift-methods-surgery-vs-non-surgical-procedures/", "https://en.nanahospital.com/page/full_facelift", "https://www.koreaplastic.surgery/blog/korean-facelift-surgery-guide", "https://seoulclinics.io/blog/facelift-seoul-guide-2026", "https://www.placidway.com/video/6950/1/Face-Lifting-Surgery-Options-in-South-Korea-Best-AntiAging-Procedures-Compared", "https://www.rnwoodclinickorea.com/articles/deep-plane-facelift-in-seoul---rnwood-plastic-surgery", "https://gangnammedicalconcierge.com/plastic-surgery/face-lift/facelift-korea-types-guide/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1onuuk0/facelifting_in_your_40s_50s_the_agespecific_guide/", "https://inkoreanow.com/hifu-korea-price-thread-lift/", "https://www.koreaclinicguide.com/blog/aging-face-korea", "https://www.gangnammedspa.com/blog/10-most-popular-non-surgical-facelift-treatments-in-korea"], "measured_at": "2026-09-10T15:16:26", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-10", "cat": "D", "question": "Is liposuction in Korea safe and how many days of downtime should I expect?", "engine": "perplexity", "answer": "**Liposuction in Korea can be safe** when it is done at a properly licensed, reputable clinic by an experienced surgeon, but it is not risk-free. Reported complication rates in the provided sources range from about **2.62% to 10%**, with most issues being minor such as bruising, swelling, seroma, temporary numbness, or contour irregularity; serious complications are much rarer but do occur, especially in larger-volume cases.[2][1][19]\n\nFor **downtime**, a practical expectation is **at least 7–14 days** in Korea if you want time for follow-up visits, stitch removal, swelling checks, and safer flying.[6][9][1] Some clinics say stitches are removed around **7–10 days** and patients return to daily life around **2 weeks** after surgery.[4][16] More visible swelling and bruising often last **1–3 weeks**, while final contour can take **1–3 months or longer** to settle.[13][6]\n\nA few factors matter a lot for safety:\n- **Clinic quality and surgeon credentials** matter more than the country itself.[18][20]\n- **Large-volume liposuction** carries higher risk; some sources note risk increases when more than **5 liters** are removed in one session.[1][7]\n- **Aftercare** is important: compression garments, early walking, and follow-up visits help reduce problems like seroma.[1]\n\nIf you want, I can also give you a **“how to choose a safe liposuction clinic in Korea” checklist** or a **day-by-day recovery timeline**.", "urls": ["https://seoulclinics.io/blog/liposuction-risks-seoul-2026", "https://news.sbs.co.kr/english/article.do?news_id=N1008660177", "https://www.seoulliposuctionclinic.com/is-liposuction-safe-in-korea", "https://medicalavenuekorea.com/en/contoured-body-plastic-in-korea/liposuction-in-korea/", "https://www.gangnamskin.clinic/blog/is-it-safe-to-get-fat-dissolving-injections-in-korea", "https://www.seoulmedicalinsider.com/blog/liposuction-body-contouring-korea-guide", "https://korea-clinics.com/procedures/liposuction/", "https://evitaclinic.com/how-safe-is-liposuction/", "https://jivaka.kr/blogs/blog/body-liposuction-in-korea-fat-removal-cost-surgery-options-and-what-results-you-can-actually-expect", "https://seoulguidemedical.com/your-guide-to-getting-liposuction-in-south-korea/", "https://www.canvassresearch.com/safety-guide", "https://pmc.ncbi.nlm.nih.gov/articles/PMC12173276/", "https://www.viewplasticsurgery.com/blog/worried-about-liposuction-scars-why-korea-is-the-top-choice-for-fast-recovery/", "https://koreaexperience.com/blog/korean-liposuction-and-body-contouring-guide-2026", "https://www.koreaclinicguide.com/blog/fat-dissolving-injections-in-korea", "https://www.meclinic.net/bbs/content.php?co_id=liposuction", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1kv8ith/korean_news_articles_why_liposuction_is_dangerous/", "https://clinicsoncall.com/en/blog/is-south-korea-safe-for-plastic-surgery/", "https://www.diteplasticsurgery.com/articles/plastic-surgery-in-korea-safety-quality-and-authority", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://seoulclinics.io/blog/liposuction-risks-seoul-2026", "https://news.sbs.co.kr/english/article.do?news_id=N1008660177", "https://www.seoulliposuctionclinic.com/is-liposuction-safe-in-korea", "https://medicalavenuekorea.com/en/contoured-body-plastic-in-korea/liposuction-in-korea/", "https://www.gangnamskin.clinic/blog/is-it-safe-to-get-fat-dissolving-injections-in-korea", "https://www.seoulmedicalinsider.com/blog/liposuction-body-contouring-korea-guide", "https://korea-clinics.com/procedures/liposuction/", "https://evitaclinic.com/how-safe-is-liposuction/", "https://jivaka.kr/blogs/blog/body-liposuction-in-korea-fat-removal-cost-surgery-options-and-what-results-you-can-actually-expect", "https://seoulguidemedical.com/your-guide-to-getting-liposuction-in-south-korea/", "https://www.canvassresearch.com/safety-guide", "https://pmc.ncbi.nlm.nih.gov/articles/PMC12173276/", "https://www.viewplasticsurgery.com/blog/worried-about-liposuction-scars-why-korea-is-the-top-choice-for-fast-recovery/", "https://koreaexperience.com/blog/korean-liposuction-and-body-contouring-guide-2026", "https://www.koreaclinicguide.com/blog/fat-dissolving-injections-in-korea", "https://www.meclinic.net/bbs/content.php?co_id=liposuction", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1kv8ith/korean_news_articles_why_liposuction_is_dangerous/", "https://clinicsoncall.com/en/blog/is-south-korea-safe-for-plastic-surgery/", "https://www.diteplasticsurgery.com/articles/plastic-surgery-in-korea-safety-quality-and-authority", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/"], "measured_at": "2026-09-10T15:16:34", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-11", "cat": "D", "question": "What does VIEW Plastic Surgery's breast surgery process look like from consultation to aftercare?", "engine": "perplexity", "answer": "VIEW Plastic Surgery describes its breast surgery process as a **five-step pathway**: **in-depth consultation**, **comprehensive examination**, **design and planning**, **safe surgery execution**, and **intensive aftercare**.[1][2][3]\n\n- **In-depth consultation:** The team tailors the discussion to the patient’s body proportions, breast size, and overall shape.[1][2][3]\n- **Comprehensive examination:** They perform a thorough preoperative assessment, including **breast ultrasound** and **mammography**, to support diagnosis and planning.[1][2][3]\n- **Design and planning:** A personalized surgical plan is created based on the patient’s individual characteristics and desired outcome.[1][2][3]\n- **Safe surgery execution:** VIEW says surgery is carried out with a **multidisciplinary team** that includes plastic surgery, anesthesiology, radiology, and general surgery specialists to maximize safety.[1][2][3][5]\n- **Intensive aftercare:** After surgery, the attending surgeon provides **regular follow-ups** and personalized recovery care.[1][2][3]\n\nFor breast augmentation specifically, VIEW also says patients may be **discharged the same day**, and scar care may include **laser and injection treatment after surgery**.[4] Their safety/anesthesia workflow includes pre-surgery testing, anesthesia planning, patient-specific anesthesia selection, one-on-one monitoring during surgery, specialist collaboration, and post-surgery rounds.[5]\n\nIf you want, I can also turn this into a **patient-friendly timeline** of what happens before surgery, on surgery day, and during recovery.", "urls": ["https://www.viewplasticsurgery.com/breast/index.html", "https://www.viewplasticsurgery.com/breast/breast-reduction.html", "https://www.viewplasticsurgery.com/breast/motiva-preserve.html", "https://www.viewplasticsurgery.com/breast/breast-augmentation/main/", "https://www.viewplasticsurgery.com/Introduction/safety-first.html", "https://www.viewplasticsurgery.com/breast/breast-lift/", "https://www.viewplasticsurgery.com/safe-system/safety-first.html", "https://www.viewplasticsurgery.com/viewrealreview/kboard-review-69756/", "https://www.viewplasticsurgery.com/consultation/", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/viewrealreview/kboard-review-69739/", "http://www.kmhglobal.com/department/view-plastic-surgery", "https://www.viewplasticsurgery.com/viewrealreview/i-finally-got-my-breast-augmentation-at-view-korea/", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://www.viewplasticsurgery.com/model-recruitment/index.html", "https://www.viewplasticsurgery.com/view_dm_slide/breast-correction/", "https://www.plasticsurgery.org/cosmetic-procedures/breast-lift/procedure", "https://www.viewplasticsurgery.com/community/view-tv/index.html", "https://www.mayoclinic.org/tests-procedures/breast-augmentation/about/pac-20393178", "https://www.mayoclinic.org/tests-procedures/breast-lift/about/pac-20393218", "https://www.viewplasticsurgery.com/breast/index.html", "https://www.viewplasticsurgery.com/breast/breast-reduction.html", "https://www.viewplasticsurgery.com/breast/motiva-preserve.html", "https://www.viewplasticsurgery.com/breast/breast-augmentation/main/", "https://www.viewplasticsurgery.com/Introduction/safety-first.html", "https://www.viewplasticsurgery.com/breast/breast-lift/", "https://www.viewplasticsurgery.com/safe-system/safety-first.html", "https://www.viewplasticsurgery.com/viewrealreview/kboard-review-69756/", "https://www.viewplasticsurgery.com/consultation/", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/viewrealreview/kboard-review-69739/", "http://www.kmhglobal.com/department/view-plastic-surgery", "https://www.viewplasticsurgery.com/viewrealreview/i-finally-got-my-breast-augmentation-at-view-korea/", "https://medicalavenuekorea.com/en/hospitals/view-plastic-surgery/", "https://www.viewplasticsurgery.com/model-recruitment/index.html", "https://www.viewplasticsurgery.com/view_dm_slide/breast-correction/", "https://www.plasticsurgery.org/cosmetic-procedures/breast-lift/procedure", "https://www.viewplasticsurgery.com/community/view-tv/index.html", "https://www.mayoclinic.org/tests-procedures/breast-augmentation/about/pac-20393178", "https://www.mayoclinic.org/tests-procedures/breast-lift/about/pac-20393218"], "measured_at": "2026-09-10T15:16:41", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "D-12", "cat": "D", "question": "Does VIEW Plastic Surgery do a breast ultrasound or examination before augmentation?", "engine": "perplexity", "answer": "Yes. VIEW Plastic Surgery states that it performs **pre-surgery breast examinations** that include **breast ultrasound** and, in some cases, **mammography** before breast augmentation.[1][4][14]\n\nTheir breast augmentation pages specifically mention a **“premium breast examination”** or **“comprehensive examination”** with **ultrasound examination**, and one page says the preoperative assessment includes **breast ultrasound and mammography** to ensure a precise diagnosis.[1][14] Another clinic description also says patients receive a **health check and breast ultrasound before surgery**.[10]\n\nIf you want, I can also summarize **what the exam is for** and whether it appears to be routine for all patients or only based on age/risk factors.", "urls": ["https://www.viewplasticsurgery.com/breast/index.html", "https://khunkim.com/en/hospitals/view/procedure/breast-augmentation", "https://www.viewplasticsurgery.com/breast/breast-augmentation-sebbin.html", "https://www.viewplasticsurgery.com/breast/breast-screening/breast-examination/", "https://www.myguideseoul.com/beauty-and-medical/view-plastic-surgery-clinic", "https://khunkim.com/en/hospitals/view", "https://khunkim.com/en/hospitals/view/procedure/breast-revision", "https://www.viewplasticsurgery.com/blog/breast-augmentation-seoul-expert-guide-to-implants-safety/", "https://www.viewplasticsurgery.com/viewrealreview/kboard-review-69756/", "https://khunkim.com/en/hospitals/view/procedure/breast-augmentation-motiva", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.mja.com.au/system/files/issues/200_04_030314/fli11217_fm.pdf", "https://associationofbreastsurgery.org.uk/media/z0fioa1d/jpras-breast-imaging-for-aesthetic-surgery-2018.pdf", "https://www.viewplasticsurgery.com/breast/breast-augmentation/main/", "https://www.viewplasticsurgery.com/", "https://pubmed.ncbi.nlm.nih.gov/8337269/", "https://www.southernplasticsurgery.com/how-we-use-ultrasound-to-improve-the-plastic-surgery-experience/", "https://www.plasticsurgery.org/news/articles/seeing-is-believing-why-i-wish-id-had-3d-imaging-before-my-breast-augmentation", "https://www.viewplasticsurgery.com/viewrealreview/my-real-breast-augmentation-experience-at-view-plastic-surgery-in-korea/", "https://www.realself.com/question/banff-alberta-canada-ultrasound-mammogram-before-breast-lift-implants", "https://www.viewplasticsurgery.com/breast/index.html", "https://khunkim.com/en/hospitals/view/procedure/breast-augmentation", "https://www.viewplasticsurgery.com/breast/breast-augmentation-sebbin.html", "https://www.viewplasticsurgery.com/breast/breast-screening/breast-examination/", "https://www.myguideseoul.com/beauty-and-medical/view-plastic-surgery-clinic", "https://khunkim.com/en/hospitals/view", "https://khunkim.com/en/hospitals/view/procedure/breast-revision", "https://www.viewplasticsurgery.com/blog/breast-augmentation-seoul-expert-guide-to-implants-safety/", "https://www.viewplasticsurgery.com/viewrealreview/kboard-review-69756/", "https://khunkim.com/en/hospitals/view/procedure/breast-augmentation-motiva", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.mja.com.au/system/files/issues/200_04_030314/fli11217_fm.pdf", "https://associationofbreastsurgery.org.uk/media/z0fioa1d/jpras-breast-imaging-for-aesthetic-surgery-2018.pdf", "https://www.viewplasticsurgery.com/breast/breast-augmentation/main/", "https://www.viewplasticsurgery.com/", "https://pubmed.ncbi.nlm.nih.gov/8337269/", "https://www.southernplasticsurgery.com/how-we-use-ultrasound-to-improve-the-plastic-surgery-experience/", "https://www.plasticsurgery.org/news/articles/seeing-is-believing-why-i-wish-id-had-3d-imaging-before-my-breast-augmentation", "https://www.viewplasticsurgery.com/viewrealreview/my-real-breast-augmentation-experience-at-view-plastic-surgery-in-korea/", "https://www.realself.com/question/banff-alberta-canada-ultrasound-mammogram-before-breast-lift-implants"], "measured_at": "2026-09-10T15:16:48", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "D-13", "cat": "D", "question": "Subbrow lift vs upper blepharoplasty: which should I get in Korea?", "engine": "perplexity", "answer": "If your main issue is **excess upper-eyelid skin** or you want to **change/refine the eyelid crease**, **upper blepharoplasty** is usually the better fit.[1][2][7][13] If your eyelid heaviness is mainly from **skin laxity under the eyebrow** with an already good crease that you want to preserve, a **subbrow lift** is often the better choice.[1][3][6][7]\n\nIn Korea, surgeons commonly frame the decision this way:\n- **Upper blepharoplasty**: best when the eyelid crease needs reshaping or there is extra skin/fat on the lid itself.[1][2][7][13]\n- **Subbrow lift**: best when the problem is hooding from laxity near the brow, especially laterally, and you want a more natural look with less change to the crease.[1][3][6][7][9]\n- If the heaviness is driven by a **low brow or brow ptosis** rather than eyelid skin alone, some surgeons recommend a **brow lift** instead of either of these.[1][8][9][13][15]\n\nA practical way to choose:\n- Pick **upper blepharoplasty** if you have **no crease / want a new crease / need more eyelid reshaping**.[2][7][13]\n- Pick **subbrow lift** if you already like your crease and mainly want to remove **hidden excess skin** while keeping the eye shape natural.[2][3][6][11]\n- Consider a combined approach if you have **both brow descent and eyelid skin excess**, because doing eyelid surgery alone can sometimes leave residual heaviness or unmask brow ptosis.[8][15]\n\nFor Korea specifically, subbrow lift is often promoted for a **subtle, natural result** and usually has the incision **under the eyebrow**, while upper blepharoplasty places the incision in the **eyelid crease**.[3][6][7][9][11] Reported Korean subbrow lift pricing in the results ranges roughly from **$1,500 to $5,000 USD**, depending on package and clinic.[4][10][11]\n\nIf you want, I can help you decide based on your eyelid type by walking through 5 quick questions, like whether you have a visible crease, brow droop, or outer hooding.", "urls": ["https://noonopiclinic.com/en/blog/eyelid-rejuvenation", "https://docfinderkorea.com/surgery/eyes/sub-brow-lifting", "https://e-aaps.org/journal/view.php?number=665&viewtype=pubreader", "https://www.koreaclinicguide.com/blog/puffy-upper-eyelids-korea", "https://www.seouleyeplastics.com/cosmetic-eye-surgery/under-eye-fat-repositioning-seoul-korea", "https://cdubeauty.co.kr/procedures/anti-aging-eye-surgery/", "https://www.gangnamplastic.surgery/clinic-treatments-seoul/facelift/sub-brow-lift", "https://www.koreaclinicguide.com/blog/double-eyelid-surgery-korea", "https://korea-plastic-surgery.com/garnet/sub-brow-lift-seoul-korea/", "https://www.koreaclinicguide.com/blog/subbrow-lift-korea", "https://www.koreaclinicguide.com/blog/heavy-eyelids-korea", "http://andps-global.co.kr/theme/and/contents/sub5_1.php?lang=en", "https://www.koreaplastic.surgery/blog/brow-lift-vs-upper-blepharoplasty-korea", "https://www.reddit.com/r/PlasticSurgery/comments/1ikfld9/subbrow_lift_aka_infrabrow_bleph/", "https://www.koreaclinicguide.com/blog/brow-ptosis-korea", "https://noonopiclinic.com/en/blog/eyelid-rejuvenation", "https://docfinderkorea.com/surgery/eyes/sub-brow-lifting", "https://e-aaps.org/journal/view.php?number=665&viewtype=pubreader", "https://www.koreaclinicguide.com/blog/puffy-upper-eyelids-korea", "https://www.seouleyeplastics.com/cosmetic-eye-surgery/under-eye-fat-repositioning-seoul-korea", "https://cdubeauty.co.kr/procedures/anti-aging-eye-surgery/", "https://www.gangnamplastic.surgery/clinic-treatments-seoul/facelift/sub-brow-lift", "https://www.koreaclinicguide.com/blog/double-eyelid-surgery-korea", "https://korea-plastic-surgery.com/garnet/sub-brow-lift-seoul-korea/", "https://www.koreaclinicguide.com/blog/subbrow-lift-korea", "https://www.koreaclinicguide.com/blog/heavy-eyelids-korea", "http://andps-global.co.kr/theme/and/contents/sub5_1.php?lang=en", "https://www.koreaplastic.surgery/blog/brow-lift-vs-upper-blepharoplasty-korea", "https://www.reddit.com/r/PlasticSurgery/comments/1ikfld9/subbrow_lift_aka_infrabrow_bleph/", "https://www.koreaclinicguide.com/blog/brow-ptosis-korea"], "measured_at": "2026-09-10T15:16:58", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "D-14", "cat": "D", "question": "Mini lift vs full facelift in Korea: cost and recovery", "engine": "perplexity", "answer": "In Korea, a **mini lift** is usually cheaper and has a shorter recovery than a **full facelift**. A reasonable 2026 estimate from the results is **about \\$3,000–\\$8,000 for a mini facelift** and **about \\$7,000–\\$15,000+ for a full facelift**, with some clinics quoting higher for more complex cases or combined neck work.[2][4][8][11][15][18]\n\n- **Mini facelift cost in Korea:** commonly **₩3 million–₩10 million** (roughly **\\$2,200–\\$7,000**), depending on clinic and extent of correction.[1][3][4][8][11]\n- **Full facelift cost in Korea:** commonly **₩8 million–₩20 million+** (roughly **\\$5,800–\\$14,000+**), with some sources listing **\\$15,000–\\$28,000** when a neck lift is included or the procedure is more extensive.[1][4][9][18]\n- **Recovery for mini facelift:** usually **about 7–14 days** for swelling/bruising to settle enough for normal public-facing activity, with many sources describing return to daily activities in around **10 days**.[2][8][9][15]\n- **Recovery for full facelift:** usually **about 10–21 days** of noticeable downtime, and one source notes **3–4 weeks** compared with mini facelift recovery.[2][9][15]\n\nA simple way to think about it is:\n- **Mini facelift:** less invasive, targets the **lower face/jawline/jowls**, lower cost, faster recovery.[2][3][7][11]\n- **Full facelift:** more comprehensive, addresses **more of the face and often the neck**, higher cost, longer recovery.[2][4][15][18]\n\nIf you want, I can also turn this into a **side-by-side table** with *cost, recovery, longevity, and best candidate* for each option.", "urls": ["https://www.gangnamfaceliftsurgery.com/mini-facelift-vs-full-facelift-korea-cost-breakdown-guide", "https://www.clinicseoul.net/facelift-korea/", "https://www.koreafacelift.com/facelift-cost-korea", "https://www.koreafacelift.com/what-is-the-cost-of-a-facelift-in-korea", "https://noonopiclinic.com/en/blog/facelift-types-korea", "https://www.gangnamfaceliftsurgery.com/mini-facelift-vs-full-facelift-korea-cost-recovery-results", "https://gangnammedicalconcierge.com/plastic-surgery/face-lift/facelift-korea-types-guide/", "https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea", "https://faceliftingseoul.com/facelift-surgery-korea-guide-international-patients/", "https://www.gangnamdermatologyclinic.com/blog/thread-lift-price-guide-korea", "https://cyl.co.kr/id/blog/c-002-facelift-cost-korea/", "https://www.medicaltourismco.com/facelift-in-seoul-korea/", "https://www.sinsangps.com/articles/facelift-korea-cost-pricing-guide-for-us-patients", "https://www.yujinplasticsurgery.com/articles/korea-facelift-surgery-price-save-30percent-compared-to-china-clinics", "https://www.tj-plasticsurgery.com/articles/facelift-cost-in-korea-complete-pricing-guide", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1p3k0lq/whats_the_average_cost_of_a_facelift_in_korea/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mtkly7/whats_the_average_cost_of_a_full_facelift_in_korea/", "https://seoulcosmeticsurgery.com/facelift-cost-in-korea/", "https://www.placidway.com/search-medical-pricings/Face-Lift+Cosmetic-Plastic-Surgery/Seoul+South-Korea/1", "https://www.vippskorea.com/blog/average-facelift-cost-in-korea-2025", "https://www.gangnamfaceliftsurgery.com/mini-facelift-vs-full-facelift-korea-cost-breakdown-guide", "https://www.clinicseoul.net/facelift-korea/", "https://www.koreafacelift.com/facelift-cost-korea", "https://www.koreafacelift.com/what-is-the-cost-of-a-facelift-in-korea", "https://noonopiclinic.com/en/blog/facelift-types-korea", "https://www.gangnamfaceliftsurgery.com/mini-facelift-vs-full-facelift-korea-cost-recovery-results", "https://gangnammedicalconcierge.com/plastic-surgery/face-lift/facelift-korea-types-guide/", "https://www.seoulfaceliftclinic.com/blog/mini-facelift-cost-in-korea", "https://faceliftingseoul.com/facelift-surgery-korea-guide-international-patients/", "https://www.gangnamdermatologyclinic.com/blog/thread-lift-price-guide-korea", "https://cyl.co.kr/id/blog/c-002-facelift-cost-korea/", "https://www.medicaltourismco.com/facelift-in-seoul-korea/", "https://www.sinsangps.com/articles/facelift-korea-cost-pricing-guide-for-us-patients", "https://www.yujinplasticsurgery.com/articles/korea-facelift-surgery-price-save-30percent-compared-to-china-clinics", "https://www.tj-plasticsurgery.com/articles/facelift-cost-in-korea-complete-pricing-guide", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1p3k0lq/whats_the_average_cost_of_a_facelift_in_korea/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1mtkly7/whats_the_average_cost_of_a_full_facelift_in_korea/", "https://seoulcosmeticsurgery.com/facelift-cost-in-korea/", "https://www.placidway.com/search-medical-pricings/Face-Lift+Cosmetic-Plastic-Surgery/Seoul+South-Korea/1", "https://www.vippskorea.com/blog/average-facelift-cost-in-korea-2025"], "measured_at": "2026-09-10T15:17:05", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-01", "cat": "E", "question": "How much does breast augmentation cost in Korea for foreigners in 2026?", "engine": "perplexity", "answer": "For **foreign patients in Korea in 2026**, breast augmentation typically costs about **US$6,000–$10,000 all-in**, with many patients landing around **US$8,000** for a mid-premium silicone implant package that includes anesthesia and basic aftercare.[1][4][17]\n\nA broader market range reported by Seoul-based guides is roughly **US$4,000–$9,500** for standard to premium implant cases, while some clinics and guides quote higher-end totals of **US$10,000–$15,000+** depending on the implant brand, clinic tier, and whether recovery services or full medical-tourism extras are included.[3][6][7][10][13][15]\n\nTypical breakdown by option:\n- **Standard silicone implants:** about **US$4,000–$6,000**.[3][6]\n- **Premium implants** like Motiva or similar: about **US$6,700–$10,500**.[11]\n- **All-inclusive medical tourism packages:** about **US$6,000–$9,000** or more, depending on hotel and transfer level.[5][10]\n\nIf you want, I can also give you a **2026 price breakdown by implant brand, hospital tier, and total trip budget** for foreigners.", "urls": ["https://koreamedguide.com/breast-augmentation-cost-korea/", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://www.seoulmedicalguide.com/korea-plastic-surgery-cost/", "https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost", "https://breastimplantkorea.com/breast-implant-korea-guide-international-patients/", "https://www.seoulmedicalguide.com/korea-plastic-surgery-cost/breast-augmentation/", "https://www.viewplasticsurgery.com/blog/breast-augmentation-cost-in-korea-2026-pricing-guide-clinical-analysis/", "https://docfinderkorea.com/news/korean-breast-surgery-in-2026-chea-nuh-s-seoul-transformation-and-the-complete-international-patient-guide", "https://docfinderkorea.com/news/natural-breast-augmentation-in-korea-the-2026-definitive-guide", "https://seoulclinics.io/blog/breast-augmentation-cost-seoul-2026", "https://koreaexperience.com/blog/korea-plastic-surgery-cost-guide-2026", "https://www.clinicseoul.net/breast-augmentation-korea/", "https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://abplasticsurgerykorea.com/ab-blog/plastic-surgery-cost-in-korea-2026-prices-by-procedure", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ows6i8/estimate_price_for_breast_augmentation/", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.koreaclinicguide.com/blog/cost-breast-implant-korea", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/procedure=breast-augmentation/", "https://www.medicaltourismco.com/breast-augmentation-in-seoul-korea/", "https://koreamedguide.com/breast-augmentation-cost-korea/", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://www.seoulmedicalguide.com/korea-plastic-surgery-cost/", "https://www.misooda.com/en/surgery-guides/korean-breast-augmentation-implants-methods-reviews-pictures-cost", "https://breastimplantkorea.com/breast-implant-korea-guide-international-patients/", "https://www.seoulmedicalguide.com/korea-plastic-surgery-cost/breast-augmentation/", "https://www.viewplasticsurgery.com/blog/breast-augmentation-cost-in-korea-2026-pricing-guide-clinical-analysis/", "https://docfinderkorea.com/news/korean-breast-surgery-in-2026-chea-nuh-s-seoul-transformation-and-the-complete-international-patient-guide", "https://docfinderkorea.com/news/natural-breast-augmentation-in-korea-the-2026-definitive-guide", "https://seoulclinics.io/blog/breast-augmentation-cost-seoul-2026", "https://koreaexperience.com/blog/korea-plastic-surgery-cost-guide-2026", "https://www.clinicseoul.net/breast-augmentation-korea/", "https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://abplasticsurgerykorea.com/ab-blog/plastic-surgery-cost-in-korea-2026-prices-by-procedure", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1ows6i8/estimate_price_for_breast_augmentation/", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.koreaclinicguide.com/blog/cost-breast-implant-korea", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/city=seoul/procedure=breast-augmentation/", "https://www.medicaltourismco.com/breast-augmentation-in-seoul-korea/"], "measured_at": "2026-09-10T15:17:13", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-02", "cat": "E", "question": "V-line surgery cost in Korea 2026", "engine": "perplexity", "answer": "For **2026**, a **V-line surgery in Korea** is typically quoted at about **US$7,000–12,000** for a standard full V-line package, with broader market ranges commonly running from **US$5,000–15,000+** depending on the scope and clinic.[3][12][15]\n\nA few useful breakdowns from the results:\n\n- **Standard full V-line (jaw + chin)**: about **US$7,000–12,000** or **₩9.9M–15.5M**.[12][15]\n- **Mid-range clinic estimate**: around **US$8,500–11,000** for mandibular angle reduction plus genioplasty.[3][4]\n- **Broader quoted range across clinics**: **US$4,500–13,500** or up to **US$15,000+** when the plan is more complex.[8][10][15]\n- **High-complexity / premium cases**: can reach **US$16,000–18,000+** when jaw, chin, and cheekbone contouring are combined.[14]\n- **Non-surgical V-line treatments** are much cheaper, usually **US$1,500–4,500** for a full protocol.[2][5]\n\nWhat changes the price most is whether the plan includes only the **jaw angle**, the **chin**, or additional contouring such as the **cheekbones**, plus anesthesia, hospital fees, and surgeon reputation.[3][9][15]\n\nIf you want, I can also give you:\n- a **KRW breakdown**,\n- a **what’s usually included in the quoted price** list,\n- or a **budget vs premium clinic comparison** for Seoul.", "urls": ["https://www.misooda.com/en/surgery-guides/korean-v-line-surgery", "https://myseoulclinic.com/cost-v-line-treatment-korea/", "https://www.viewplasticsurgery.com/blog/v-line-surgery-cost-korea-2026-comprehensive-clinical-pricing-guide/", "https://docfinderkorea.com/news/double-jaw-surgery-in-korea-kimberly-s-life-changing-2026-real-story", "https://myseoulclinic.com/v-line-jaw-contouring-korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=jaw-shaping/", "https://jivaka.kr/blogs/blog/the-ultimate-2026-guide-to-plastic-surgery-in-korea-face-contouring-closed-rhinoplasty-v-line-explained", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://seoulclinics.io/blog/facial-contouring-vline-surgery-seoul-2026", "https://askgangnam.com/articles/korean-cosmetic-surgery-2026-price-benchmark-procedure-cost", "https://www.dojagi-clinic.com/articles/facial-contouring-cost-korea-pricing-guide-for-us-patients", "https://www.koreaclinicguide.com/procedure/v-line-surgery", "https://mydockorea.com/services/face-contouring", "https://docfinderkorea.com/news/face-slimming-surgery-in-korea-the-2026-ultimate-guide", "https://www.koreaclinicguide.com/blog/v-line-surgery-korea", "https://www.placidway.com/video/5318/1/Affordable-Face-Contouring-Surgery-Cost-in-Korea-From-Wide-Jaw-to-Slim-Face", "https://docfinderkorea.com/news/jawline-surgery-before-and-after-2026-korea-trends-costs", "https://abplasticsurgerykorea.com/plastic-surgery-cost-in-korea", "https://medigence.com/hospitals/cosmetic-surgery/v-line-jaw-surgery/south-korea", "https://seoulguidemedical.com/v-line-surgery-in-korea/", "https://www.misooda.com/en/surgery-guides/korean-v-line-surgery", "https://myseoulclinic.com/cost-v-line-treatment-korea/", "https://www.viewplasticsurgery.com/blog/v-line-surgery-cost-korea-2026-comprehensive-clinical-pricing-guide/", "https://docfinderkorea.com/news/double-jaw-surgery-in-korea-kimberly-s-life-changing-2026-real-story", "https://myseoulclinic.com/v-line-jaw-contouring-korea/", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=jaw-shaping/", "https://jivaka.kr/blogs/blog/the-ultimate-2026-guide-to-plastic-surgery-in-korea-face-contouring-closed-rhinoplasty-v-line-explained", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://seoulclinics.io/blog/facial-contouring-vline-surgery-seoul-2026", "https://askgangnam.com/articles/korean-cosmetic-surgery-2026-price-benchmark-procedure-cost", "https://www.dojagi-clinic.com/articles/facial-contouring-cost-korea-pricing-guide-for-us-patients", "https://www.koreaclinicguide.com/procedure/v-line-surgery", "https://mydockorea.com/services/face-contouring", "https://docfinderkorea.com/news/face-slimming-surgery-in-korea-the-2026-ultimate-guide", "https://www.koreaclinicguide.com/blog/v-line-surgery-korea", "https://www.placidway.com/video/5318/1/Affordable-Face-Contouring-Surgery-Cost-in-Korea-From-Wide-Jaw-to-Slim-Face", "https://docfinderkorea.com/news/jawline-surgery-before-and-after-2026-korea-trends-costs", "https://abplasticsurgerykorea.com/plastic-surgery-cost-in-korea", "https://medigence.com/hospitals/cosmetic-surgery/v-line-jaw-surgery/south-korea", "https://seoulguidemedical.com/v-line-surgery-in-korea/"], "measured_at": "2026-09-10T15:17:22", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-03", "cat": "E", "question": "How much does double jaw surgery cost in Seoul?", "engine": "perplexity", "answer": "In **Seoul**, **double jaw surgery** typically costs about **₩18,000,000 to ₩25,000,000** (roughly **US$13,500 to US$18,500**), with some clinics quoting higher for more complex cases or bundled care.[2][13]\n\nA few sources show broader real-world ranges:\n- **₩20,000,000 and up** at ID Hospital, with some related fees listed separately and post-orthodontic treatment not included.[6][9][15]\n- **US$15,000 to US$25,000** at other Seoul clinics, which corresponds to about **₩21.8 million to ₩36.3 million** depending on exchange rates.[5][20]\n- Some guides estimate **US$13,000 to US$27,000** for a wider “two-jaw surgery” range in Seoul.[3][4]\n\nWhat this usually means in practice:\n- **Lower end:** simpler cases, fewer add-ons, less extensive hospitalization.[2][11]\n- **Higher end:** complex bite correction, premium surgeons/facilities, and extra services such as imaging, anesthesia, or aftercare.[3][6]\n\nIf you want, I can also break this down into **clinic-only cost vs. total trip cost** for Seoul.", "urls": ["https://docfinderkorea.com/news/double-jaw-surgery-in-korea-kimberly-s-life-changing-2026-real-story", "https://www.dentistgangnam.com/de/treatments-seoul/oral-surgery/orthognatic-surgery", "https://seoulclinics.io/blog/two-jaw-surgery-cost-seoul-2026", "https://www.seoulmedicalinsider.com/blog/two-jaw-surgery-korea-guide", "https://www.seoul.dentist/oral-surgery/jaw-surgery-seoul", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=26608&mod=document", "https://seoulguidemedical.com/jaw-surgery-in-korea/", "https://www.misooda.com/en/surgery-guides/two-jaw-surgery-cost-in-korea", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=27548&mod=document", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1kta1ce/pricing_for_double_jaw_surgery_facial_contouring/", "https://seoul.clinic/double-jaw-surgery-korea/", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=26761&mod=document", "https://www.seoulfacialsurgery.com/blog/jaw-surgery-cost-in-korea-what-factors-affect-pricing", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=27660&mod=document", "https://www.misooda.com/m/en/surgery-guide/two-jaw-surgery-cost-in-korea", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=jaw-shaping/", "https://www.medicaltourismco.com/plastic-surgery-in-seoul-korea/", "https://icloudhospital.com/articles/a-patients-guide-to-orthognathic-surgery-costs-in-south-korea", "https://www.koreaclinicguide.com/blog/cost-double-jaw-surgery-korea", "https://docfinderkorea.com/news/double-jaw-surgery-in-korea-kimberly-s-life-changing-2026-real-story", "https://www.dentistgangnam.com/de/treatments-seoul/oral-surgery/orthognatic-surgery", "https://seoulclinics.io/blog/two-jaw-surgery-cost-seoul-2026", "https://www.seoulmedicalinsider.com/blog/two-jaw-surgery-korea-guide", "https://www.seoul.dentist/oral-surgery/jaw-surgery-seoul", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=26608&mod=document", "https://seoulguidemedical.com/jaw-surgery-in-korea/", "https://www.misooda.com/en/surgery-guides/two-jaw-surgery-cost-in-korea", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=27548&mod=document", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1kta1ce/pricing_for_double_jaw_surgery_facial_contouring/", "https://seoul.clinic/double-jaw-surgery-korea/", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=26761&mod=document", "https://www.seoulfacialsurgery.com/blog/jaw-surgery-cost-in-korea-what-factors-affect-pricing", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://eng.idhospital.com/online-counseling/all-about-plastic-surgery/?uid=27660&mod=document", "https://www.misooda.com/m/en/surgery-guide/two-jaw-surgery-cost-in-korea", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=jaw-shaping/", "https://www.medicaltourismco.com/plastic-surgery-in-seoul-korea/", "https://icloudhospital.com/articles/a-patients-guide-to-orthognathic-surgery-costs-in-south-korea", "https://www.koreaclinicguide.com/blog/cost-double-jaw-surgery-korea"], "measured_at": "2026-09-10T15:17:29", "clinics": ["ID Hospital"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-04", "cat": "E", "question": "Is plastic surgery in Korea cheaper than in the US? How much can I save?", "engine": "perplexity", "answer": "Yes—**plastic surgery in Korea is often cheaper than in the U.S.**, especially for common cosmetic procedures like rhinoplasty, double eyelid surgery, facelifts, and liposuction.[1][2][4][8]\n\nFor many facial procedures, quoted savings are typically **about 30–50%**, and some sources report **30–70% lower** prices depending on the procedure and clinic.[1][2][4][10] In practical terms, examples from the results show:\n\n- **Rhinoplasty:** about **$2,300–$7,200** in Korea vs. **$5,000–$15,000+** in the U.S.[1][7][8]\n- **Double eyelid surgery:** about **$800–$4,500** in Korea vs. **$3,000–$7,000** in the U.S.[3][8][10]\n- **Facelift:** about **$5,000–$15,000** in Korea vs. **$12,000–$35,000+** in the U.S.[7][8][12][13]\n- **Breast augmentation:** about **$4,000–$8,000** in Korea vs. **$7,000–$16,000** in the U.S.[3][7][14]\n\nYour **actual savings** depend on the procedure, surgeon, and whether you count travel, hotel, and recovery costs. One guide says the *sticker price* may be **30–50% lower**, but *all-in* savings can shrink to around **10–20%** once flights and accommodation are added.[10] Another comparison still found Seoul to be roughly **26–45% cheaper all-in** for a premium facelift.[13]\n\nIf you want a rough estimate, you can often save:\n\n- **$2,000–$5,000** on smaller procedures\n- **$5,000–$15,000+** on major procedures like facelifts or combined surgeries[5][12][13][17]\n\nIf you tell me the **specific procedure** you’re considering, I can estimate a more realistic Korea vs. U.S. savings range.", "urls": ["https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.gangnamplastic.surgery/blog/plastic-surgery-cost-in-korea-vs-usa-2026-guide", "https://inkoreanow.com/korea-vs-us-medical-costs-compared/?lang=ru", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://koreaplus-lifes.com/korea-plastic-surgery-cost-vs-us/", "https://www.aristocratps.com/plastic-surgery-in-south-korea/", "https://www.k-medlinker.com/post/korea-vs-usa-plastic-surgery-cost-2025-how-much-can-you-really-save", "https://www.clinicseoul.net/plastic-surgery-in-korea/", "https://www.placidway.com/article/5618/Plastic-Surgery-in-South-Korea-vs-USA-A-Comprehensive-Comparison-Guide", "https://guide.kmedtour.com/plastic-surgery-korea-cheaper/", "https://www.gangnamplastic.surgery/blog/korea-vs-usa-plastic-surgery-cost-safety-results", "https://www.soonplusplasticsurgery.com/articles/americans-getting-plastic-surgery-in-korea-guide-costs", "https://www.soonplusplasticsurgery.com/articles/facelift-cost-korea-vs-usa-complete-price-comparison", "https://www.lydianclinic.com/blog/mommy-makeover-cost-korea-vs-usa/", "https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/", "https://go.medicalavenuekorea.com/blog/korea-vs-usa", "https://us-uk.bookimed.com/article/korean-plastic-surgery-tour-package-cost/", "https://seoulcosmeticsurgery.com/plastic-surgery-cost-in-korea/", "https://www.reddit.com/r/PlasticSurgery/comments/1i34kko/is_korea_better_than_the_us_in_most_plastic/", "https://www.reddit.com/r/PlasticSurgery/comments/1mwnozj/rhinoplasty_in_korea_23k_vs_10k_in_the_uswhat/", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.gangnamplastic.surgery/blog/plastic-surgery-cost-in-korea-vs-usa-2026-guide", "https://inkoreanow.com/korea-vs-us-medical-costs-compared/?lang=ru", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://koreaplus-lifes.com/korea-plastic-surgery-cost-vs-us/", "https://www.aristocratps.com/plastic-surgery-in-south-korea/", "https://www.k-medlinker.com/post/korea-vs-usa-plastic-surgery-cost-2025-how-much-can-you-really-save", "https://www.clinicseoul.net/plastic-surgery-in-korea/", "https://www.placidway.com/article/5618/Plastic-Surgery-in-South-Korea-vs-USA-A-Comprehensive-Comparison-Guide", "https://guide.kmedtour.com/plastic-surgery-korea-cheaper/", "https://www.gangnamplastic.surgery/blog/korea-vs-usa-plastic-surgery-cost-safety-results", "https://www.soonplusplasticsurgery.com/articles/americans-getting-plastic-surgery-in-korea-guide-costs", "https://www.soonplusplasticsurgery.com/articles/facelift-cost-korea-vs-usa-complete-price-comparison", "https://www.lydianclinic.com/blog/mommy-makeover-cost-korea-vs-usa/", "https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/", "https://go.medicalavenuekorea.com/blog/korea-vs-usa", "https://us-uk.bookimed.com/article/korean-plastic-surgery-tour-package-cost/", "https://seoulcosmeticsurgery.com/plastic-surgery-cost-in-korea/", "https://www.reddit.com/r/PlasticSurgery/comments/1i34kko/is_korea_better_than_the_us_in_most_plastic/", "https://www.reddit.com/r/PlasticSurgery/comments/1mwnozj/rhinoplasty_in_korea_23k_vs_10k_in_the_uswhat/"], "measured_at": "2026-09-10T15:17:38", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-05", "cat": "E", "question": "VIEW Plastic Surgery price list for international patients", "engine": "perplexity", "answer": "Here’s a **price list overview for plastic surgery for international patients** based on the provided sources. Prices vary by country, clinic, surgeon experience, anesthesia, and whether the quote includes hospital stay, aftercare, and transfers[5][9][13].\n\n| Procedure | Turkey | Mexico | South Korea | Thailand | Vietnam | USA |\n|---|---:|---:|---:|---:|---:|---:|\n| Breast Augmentation | $2,400[5] | $3,450[5] | $8,000[5] | $4,000[5] | $3,000[5] | $12,000[5] |\n| Breast Reduction | $2,950[5] | $3,500[5] | $6,000[5] | $5,600[5] | $1,900[5] | $7,000[5] |\n| Butt Lift | $1,350[5] | $3,200[5] | $5,500[5] | $3,400[5] | $5,500[5] | $12,000[5] |\n| Facelift | $1,550[5] | $3,350[5] | $8,200[5] | $5,900[5] | $2,700[5] | $12,000[5] |\n| Rhinoplasty | $1,450[5] | $2,800[5] | $5,200[5] | $1,700[5] | $1,100[5] | $9,000[5] |\n| Tummy Tuck | $2,350[5] | $4,300[5] | $5,000[5] | $4,600[5] | $4,500[5] | $8,000[5] |\n| Eyebrow Lift | $600[5] | $2,500[5] | $3,600[5] | $2,300[5] | $700[5] | $7,000[5] |\n| Arm Lift | $1,800[5] | $3,000[5] | $2,000[5] | $3,700[5] | $1,100[5] | $11,000[5] |\n| Labiaplasty | $1,305[5] | $2,000[5] | $3,000[5] | $3,000[5] | $1,100[5] | $6,000[5] |\n\nA broader comparison from other sources shows similar ranges: rhinoplasty can be around **$1,200–$4,500 in lower-cost destinations** like India, Vietnam, Turkey, and Thailand, while the **USA is typically much higher**[18]. For breast augmentation, one 2026 comparison lists roughly **$1,500–$5,500** in several affordable destinations versus much higher U.S. pricing[18].\n\nIf you want, I can also turn this into:\n- a **cheapest countries by procedure** list,\n- a **full clinic package comparison**, or\n- a **PDF-style price sheet** for patients.", "urls": ["https://clinicsoncall.com/en/blog/plastic-surgery-abroad-price-ranking-by-country-2023/", "https://clinicsoncall.com/en/clinics/plastic-surgery/", "https://vitalityscout.com/guides/plastic-surgery-abroad-cost-comparison", "https://www.placidway.com/search-medical-pricings/Cosmetic-Plastic-Surgery/All/1", "https://www.medicaltourismco.com/cosmetic-surgery-abroad/", "https://europesurgery.co.uk/cosmetic-surgery-prices/", "https://us-uk.bookimed.com/article/where-to-get-cheap-plastic-surgery-top-5-countries/", "https://www.health-tourism.com/cosmetic-surgery/", "https://www.flymedi.com/plastic-surgery", "https://flytocure.com/treatments/cosmetic-surgery", "https://le-medica.com/blog/cheapest-countries-for-plastic-surgery-2026-cost-safety-guide", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://surgery.wustl.edu/the-real-costs-of-cosmetic-surgery-tourism/", "https://koreaplasticsurgerycost.com/plastic-surgery-korea-price-list/", "https://www.medicaltourism.com/compare-prices", "https://amedical.az/en/blogs/destinations/best-and-cheapest-countries-for-plastic-surgery", "https://deepplane.com/best-country", "https://www.placidway.com/article/2013/9-Cheapest-Countries-for-Plastic-Surgery", "https://us-uk.bookimed.com/article/affordable-facelift/", "https://clinicadelrey.com/blog/what-does-a-plastic-surgery-package-include-for-us-patients/", "https://clinicsoncall.com/en/blog/plastic-surgery-abroad-price-ranking-by-country-2023/", "https://clinicsoncall.com/en/clinics/plastic-surgery/", "https://vitalityscout.com/guides/plastic-surgery-abroad-cost-comparison", "https://www.placidway.com/search-medical-pricings/Cosmetic-Plastic-Surgery/All/1", "https://www.medicaltourismco.com/cosmetic-surgery-abroad/", "https://europesurgery.co.uk/cosmetic-surgery-prices/", "https://us-uk.bookimed.com/article/where-to-get-cheap-plastic-surgery-top-5-countries/", "https://www.health-tourism.com/cosmetic-surgery/", "https://www.flymedi.com/plastic-surgery", "https://flytocure.com/treatments/cosmetic-surgery", "https://le-medica.com/blog/cheapest-countries-for-plastic-surgery-2026-cost-safety-guide", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://surgery.wustl.edu/the-real-costs-of-cosmetic-surgery-tourism/", "https://koreaplasticsurgerycost.com/plastic-surgery-korea-price-list/", "https://www.medicaltourism.com/compare-prices", "https://amedical.az/en/blogs/destinations/best-and-cheapest-countries-for-plastic-surgery", "https://deepplane.com/best-country", "https://www.placidway.com/article/2013/9-Cheapest-Countries-for-Plastic-Surgery", "https://us-uk.bookimed.com/article/affordable-facelift/", "https://clinicadelrey.com/blog/what-does-a-plastic-surgery-package-include-for-us-patients/"], "measured_at": "2026-09-10T15:17:46", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-06", "cat": "E", "question": "What hidden costs should I expect for plastic surgery in Korea as a foreigner?", "engine": "perplexity", "answer": "As a foreigner, the **hidden costs** of plastic surgery in Korea usually come from **travel, recovery, and clinic add-ons** rather than the operation itself.[1][4][11] In practice, many patients should budget an extra **$1,300–$5,200** beyond the quoted surgical price, depending on procedure length, recovery time, and whether any follow-up care is needed.[1]\n\nThe most common extras are:\n\n- **Flights**: typically about **$400–$1,500**, depending on where you’re flying from.[1][11]\n- **Accommodation**: often **$500–$2,500** for roughly **10–14 nights**, with longer stays if recovery is slow.[1][4][11]\n- **Food and local transport**: about **$20–$40 per day** or roughly **$300–$700** for a two-week stay.[1][11]\n- **Post-op treatments**: swelling-reduction sessions, scar care, laser therapy, or lymphatic massage can add **$100–$500** or more, and some sessions cost **$30–$150 each**.[1][4][8][11]\n- **Medication and supplies**: painkillers, antibiotics, compression garments, dressings, and similar items are sometimes excluded and can add **$30–$300+** depending on the clinic and procedure.[4][9][11]\n- **Interpreter or coordinator fees**: sometimes free, but can be charged separately at around **$20–$50/hour** or up to **$300** in some packages.[4][11]\n- **Pre-op tests**: blood work, ECG, or imaging may cost **$100–$300** if not included.[8][9][15]\n- **FX / card fees**: foreign card and currency conversion charges can add about **1–3%** on purchases.[1]\n- **Extra consultation or revision visits**: a second trip, revision surgery, or complication treatment can become one of the largest unexpected expenses.[1][4]\n\nA separate issue is **foreigner pricing**. Several sources say foreigners often pay **10–20% more** than Korean patients for the same procedure, and some medical tourism agencies may add commissions on top of that.[2][5][7][19] Some clinics describe this higher price as covering extra services like translation, coordination, and international payment handling, rather than a pure markup.[14][16][18]\n\nA good rule is to ask the clinic for an **all-inclusive written quote** that specifies:\n\n- anesthesia and facility fees\n- pre-op tests\n- medications\n- compression garments\n- follow-up visits\n- interpreter services\n- post-op treatments\n- taxes and card fees\n\nIf you want, I can also give you a **foreigner-specific budgeting checklist** for a Korea surgery trip or a **sample total budget by procedure**.", "urls": ["https://www.clinicseoul.net/korea-surgery-hidden-costs/", "https://www.clinicseoul.net/plastic-surgery-korea-foreigners/", "https://www.reddit.com/r/KoreaPlasticSurgery/comments/1r5ckeh/what_hidden_costs_should_patients_actually_budget/", "https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://www.reddit.com/r/PlasticSurgery/comments/1g4yntf/am_i_being_charged_foreigner_prices_by_a_clinic/", "https://www.clinicseoul.net/plastic-surgery-in-korea/", "https://www.seoulmedicalinsider.com/blog/total-cost-plastic-surgery-korea-hidden-fees", "https://koreaplasticsurgerycost.com/korea-plastic-surgery-cost-guide-2/", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.clinicseoul.net/plastic-surgery-korea-guide/", "https://seoulcosmeticsurgery.com/plastic-surgery-cost-in-korea/", "https://seoulcosmeticsurgery.com/medical-tourism-korea/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1owskr9/why_do_clinics_in_korea_charge_foreigners_more/", "https://koreaexperience.com/blog/korea-plastic-surgery-cost-guide-2026", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1f9bsdd/price_gouging_for_foreigners/", "https://www.reddit.com/r/PlasticSurgery/comments/1gu72ss/planning_a_plastic_surgery_trip_to_korea_i_was_a/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mpwh7z/how_to_check_if_a_korean_clinic_charges/", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://clinicsoncall.com/en/blog/plastic-surgery-for-foreigners-in-south-korea/", "https://www.clinicseoul.net/korea-surgery-hidden-costs/", "https://www.clinicseoul.net/plastic-surgery-korea-foreigners/", "https://www.reddit.com/r/KoreaPlasticSurgery/comments/1r5ckeh/what_hidden_costs_should_patients_actually_budget/", "https://clinicsoncall.com/en/blog/plastic-surgery-cost-in-south-korea/", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://www.reddit.com/r/PlasticSurgery/comments/1g4yntf/am_i_being_charged_foreigner_prices_by_a_clinic/", "https://www.clinicseoul.net/plastic-surgery-in-korea/", "https://www.seoulmedicalinsider.com/blog/total-cost-plastic-surgery-korea-hidden-fees", "https://koreaplasticsurgerycost.com/korea-plastic-surgery-cost-guide-2/", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.clinicseoul.net/plastic-surgery-korea-guide/", "https://seoulcosmeticsurgery.com/plastic-surgery-cost-in-korea/", "https://seoulcosmeticsurgery.com/medical-tourism-korea/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1owskr9/why_do_clinics_in_korea_charge_foreigners_more/", "https://koreaexperience.com/blog/korea-plastic-surgery-cost-guide-2026", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1f9bsdd/price_gouging_for_foreigners/", "https://www.reddit.com/r/PlasticSurgery/comments/1gu72ss/planning_a_plastic_surgery_trip_to_korea_i_was_a/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mpwh7z/how_to_check_if_a_korean_clinic_charges/", "https://my1health.com/articles/best-plastic-surgery-cosmetic-hospitals-south-korea", "https://clinicsoncall.com/en/blog/plastic-surgery-for-foreigners-in-south-korea/"], "measured_at": "2026-09-10T15:17:56", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-07", "cat": "E", "question": "Can foreigners get a tax refund on plastic surgery in Korea?", "engine": "perplexity", "answer": "Yes—**but only for treatment received before the program ended**. Korea’s special VAT refund for cosmetic/plastic surgery applied to eligible foreign tourists at participating medical institutions, but multiple recent sources say the refund program **ended on December 31, 2025**, so **procedures paid for in 2026 are not eligible**.[3][4][8][15][16]\n\nThe earlier rules were:\n- You had to be a **non-resident foreign tourist** staying in Korea for **less than 6 months**.[1][14]\n- The clinic had to be a **participating/refund-affiliated medical institution**.[2][3]\n- The procedure had to meet the **minimum spend requirement** of **KRW 30,000 or more** in the VISITKOREA guidance, though some sources describe a lower threshold used in earlier or separate notices.[3][9][12]\n- The refund was generally **10% of the medical cost including VAT**, minus handling fees.[3][12][15]\n\nFor **2026 and later**, the practical answer is **no**, foreigners generally **cannot get a tax refund on plastic surgery in Korea** because the special VAT refund scheme for cosmetic procedures has been abolished/expired.[4][6][10][16] If you want, I can also check whether any **non-cosmetic medical treatments** in Korea still qualify for VAT refunds.", "urls": ["https://blog.yeoshin.co.kr/en/korea-beauty-tax-refund-2026-policy-change/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=107&vcontsId=206062", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=186128", "https://evitaclinic.com/vat-tax-refund-for-cosmetic-surgery-in-korea-has-been-abolished-effective-jan-1-2026/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1pkmhyh/termination_of_vat_refunds_for_foreign_visitors/", "https://beautipin.com/blogs/magazine/no-more-tax-refund-for-aesthetic-treatments-in-korea-from-2026-beautipin", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=185927", "https://www.koreaherald.com/article/10633779", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=107&vcontsId=216036", "https://www.misooda.com/en/surgery-guides/korea-plastic-surgery-tax-refund-ended-2026", "https://www.koreatimes.co.kr/www/tech/2024/08/129_191677.html", "https://eng.dsmc.or.kr:49910/content/02global/03_05.php", "https://www.vatupdate.com/2025/08/29/south-korea-extends-vat-refund-for-cosmetic-surgery-tourists-to-2026/", "https://www.myeongdong.clinic/tax-refund-beauty-treatments-korea-tourist-guide", "https://www.independent.co.uk/asia/east-asia/south-korea-vat-refund-medical-tourism-b2882544.html", "https://www.forenaclinic.com/post/tax-refund-service-ending-notice-effective-2026", "https://www.reddit.com/r/KoreaPlasticSurgery/comments/1qn94gy/whats_actually_happening_with_the_tax_refund/", "https://blog.yeoshin.co.kr/en/korea-beauty-tax-refund-2026-policy-change/", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=107&vcontsId=206062", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=186128", "https://evitaclinic.com/vat-tax-refund-for-cosmetic-surgery-in-korea-has-been-abolished-effective-jan-1-2026/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1pkmhyh/termination_of_vat_refunds_for_foreign_visitors/", "https://beautipin.com/blogs/magazine/no-more-tax-refund-for-aesthetic-treatments-in-korea-from-2026-beautipin", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?vcontsId=185927", "https://www.koreaherald.com/article/10633779", "https://english.visitkorea.or.kr/svc/contents/contentsView.do?menuSn=923&dataSetId=107&vcontsId=216036", "https://www.misooda.com/en/surgery-guides/korea-plastic-surgery-tax-refund-ended-2026", "https://www.koreatimes.co.kr/www/tech/2024/08/129_191677.html", "https://eng.dsmc.or.kr:49910/content/02global/03_05.php", "https://www.vatupdate.com/2025/08/29/south-korea-extends-vat-refund-for-cosmetic-surgery-tourists-to-2026/", "https://www.myeongdong.clinic/tax-refund-beauty-treatments-korea-tourist-guide", "https://www.independent.co.uk/asia/east-asia/south-korea-vat-refund-medical-tourism-b2882544.html", "https://www.forenaclinic.com/post/tax-refund-service-ending-notice-effective-2026", "https://www.reddit.com/r/KoreaPlasticSurgery/comments/1qn94gy/whats_actually_happening_with_the_tax_refund/"], "measured_at": "2026-09-10T15:18:04", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "E-08", "cat": "E", "question": "Rhinoplasty cost in Gangnam for foreigners", "engine": "perplexity", "answer": "For **foreigners getting rhinoplasty in Gangnam**, a realistic budget is usually **₩3,000,000–₩10,000,000** for primary surgery, with many common cases landing around **₩4,500,000–₩7,500,000** depending on the technique and materials used.[1][4][8]\n\nA practical breakdown is:\n\n- **Simple bridge or tip-only work:** about **₩3,000,000–₩5,000,000**.[8][10]\n- **Standard primary rhinoplasty** with bridge + tip refinement: about **₩4,500,000–₩7,500,000**.[4][10]\n- **More complex primary cases** using cartilage grafts: about **₩6,000,000–₩10,000,000**.[1][4][8]\n- **Revision rhinoplasty:** often **₩9,000,000+**, and can rise to **₩16,000,000** or more for complex cases.[4][8]\n\nFor foreign patients specifically, one 2026 guide estimates the average rhinoplasty cost in South Korea at **$2,800–$4,500** across procedure types, while another Gangnam-focused guide places primary rhinoplasty at roughly **$3,400–$5,600** and cartilage-based cases higher.[16][4]\n\nWhat usually changes the price:\n- **Surgeon experience and clinic reputation**[1][4][8]\n- **Materials used** such as silicone, Gore-Tex, septal/ear cartilage, or rib cartilage[4][8]\n- **Complexity** of the nose shape and whether it’s a **revision** case[4][8]\n- Whether the quoted price includes **anesthesia, hospital stay, medications, and aftercare**[4]\n\nIf you want, I can also give you a **foreign-patient budget estimate including consultation, hotel, recovery stay, and translation support** for Gangnam.", "urls": ["https://www.gangnam.health/blog/how-much-should-foreign-patients-budget-for-nose-surgery-in-gangnam-seoul", "https://www.clinicseoul.net/how-much-does-a-nose-job-in-korea-cost/", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://gangnambeautyguide.com/en/procedures/rhinoplasty/", "https://www.gangnamplastic.surgery/blog/affordable-plastic-surgery-clinics-in-seoul", "https://www.gangnamplastic.surgery/blog/best-rhinoplasty-in-gangnam-for-foreigners", "https://www.clinicseoul.net/plastic-surgery-korea-guide/", "https://www.stdclinicseoul.com/health-guide/rhinoplasty-in-korea", "https://vitalityscout.com/guides/plastic-surgery-korea-guide", "https://koreaexperience.com/blog/korea-plastic-surgery-cost-guide-2026", "https://www.gangnamrhinoplasty.com/surgery-types/short-nose-surgery-korea", "https://koreaexperience.com/blog/best-rhinoplasty-clinics-gangnam-2026", "https://www.gangnamrhinoplasty.com/flat-nose-surgery-korea", "https://www.placidway.com/search-medical-pricings/Cosmetic-Plastic-Surgery/Gangnam-gu+South-Korea/1", "https://www.placidway.com/answer-detail/567822/How-Much-is-Rhinoplasty-in-Gangnam", "https://www.clinicseoul.net/nose-job-cost-south-korea/", "https://www.gangnamplasticsurgery.clinic/natural-looking-rhinoplasty-seoul", "https://www.placidway.com/article/4940/Perfect-Profiles-Rhinoplasty-in-Gangnam-South-Koreas-Cosmetic-Hub", "https://www.clinicseoul.net/nose-job-in-south-korea-cost/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1eiuudx/how_much_is_rhinoplasty_in_korea/", "https://www.gangnam.health/blog/how-much-should-foreign-patients-budget-for-nose-surgery-in-gangnam-seoul", "https://www.clinicseoul.net/how-much-does-a-nose-job-in-korea-cost/", "https://www.clinicseoul.net/korea-plastic-surgery-price-list/", "https://gangnambeautyguide.com/en/procedures/rhinoplasty/", "https://www.gangnamplastic.surgery/blog/affordable-plastic-surgery-clinics-in-seoul", "https://www.gangnamplastic.surgery/blog/best-rhinoplasty-in-gangnam-for-foreigners", "https://www.clinicseoul.net/plastic-surgery-korea-guide/", "https://www.stdclinicseoul.com/health-guide/rhinoplasty-in-korea", "https://vitalityscout.com/guides/plastic-surgery-korea-guide", "https://koreaexperience.com/blog/korea-plastic-surgery-cost-guide-2026", "https://www.gangnamrhinoplasty.com/surgery-types/short-nose-surgery-korea", "https://koreaexperience.com/blog/best-rhinoplasty-clinics-gangnam-2026", "https://www.gangnamrhinoplasty.com/flat-nose-surgery-korea", "https://www.placidway.com/search-medical-pricings/Cosmetic-Plastic-Surgery/Gangnam-gu+South-Korea/1", "https://www.placidway.com/answer-detail/567822/How-Much-is-Rhinoplasty-in-Gangnam", "https://www.clinicseoul.net/nose-job-cost-south-korea/", "https://www.gangnamplasticsurgery.clinic/natural-looking-rhinoplasty-seoul", "https://www.placidway.com/article/4940/Perfect-Profiles-Rhinoplasty-in-Gangnam-South-Koreas-Cosmetic-Hub", "https://www.clinicseoul.net/nose-job-in-south-korea-cost/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1eiuudx/how_much_is_rhinoplasty_in_korea/"], "measured_at": "2026-09-10T15:18:12", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "F-01", "cat": "F", "question": "Is plastic surgery in Korea safe for foreigners? What safety standards should I look for?", "engine": "perplexity", "answer": "**Yes—plastic surgery in Korea can be safe for foreigners, but safety depends far more on the specific clinic and surgeon than on the country itself.** The strongest safety signals are a **board-certified plastic surgeon**, a **properly accredited facility**, **dedicated anesthesia and emergency monitoring**, and clear **written confirmation** that the surgeon you consulted is the one who will operate.[1][3][5][19]\n\nWhat to look for:\n- **Surgeon credentials:** Verify the surgeon’s specialty and board certification through a Korean professional registry or association such as KSPRS/KBPS, rather than relying on clinic marketing.[3][6][11][16]\n- **Facility accreditation:** Prefer clinics or hospitals with recognized accreditation such as **KAHF/KOIHA** or, where available, **JCI**; these are cited as patient-safety standards and indicators of regulated care.[2][3][5]\n- **Named operating surgeon in writing:** Get written confirmation that the consulting surgeon—not a substitute or junior doctor—will personally perform the procedure.[1][3][4][6]\n- **Anesthesia safety:** For procedures under general anesthesia, look for a **dedicated board-certified anesthesiologist**, continuous monitoring, and emergency response capability.[1][3][7][17]\n- **Aftercare plan:** Ask for a clear post-op follow-up and complication plan, especially because foreigners often leave Korea too early for full recovery monitoring.[4][9][17]\n- **Transparent consent and pricing:** Insist on itemized pricing, written consent in a language you understand, and explicit terms for revisions, risks, and emergency care.[5][9][17]\n- **Foreign-patient registration:** It is a positive sign if the clinic is officially registered to treat international patients or otherwise clearly equipped for medical tourists.[12][16][19]\n\nRed flags:\n- Pressure sales, unrealistic before/after photos, vague answers about who performs the surgery, missing anesthesia details, or refusal to put key commitments in writing.[3][4][9]\n- Clinics that cannot clearly explain emergency protocols, monitoring, or post-op responsibility.[3][4][17]\n\nIf you want, I can also give you a **step-by-step safety checklist** for choosing a Korean clinic as a foreign patient.", "urls": ["https://seoulbeautytalk.com/blog/is-plastic-surgery-in-korea-safe-for-foreigners", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.seoulmedicalinsider.com/blog/is-plastic-surgery-korea-safe-ghost-surgery", "https://clinicsoncall.com/en/blog/is-south-korea-safe-for-plastic-surgery/", "https://www.reuters.com/world/asia-pacific/chinese-embassy-warns-plastic-surgery-risks-south-korea-2024-01-19/", "https://www.gangnamplastics.com/articles/is-plastic-surgery-safe-in-korea-for-americans-or-arumline", "https://plasticsurgeryguidekorea.com/plastic-surgery-guide-korea-safety-checklist/", "https://www.k-medlinker.com/post/korean-plastic-surgery-experience-before-during-after-seoul", "https://medinkorea.com/plastic-surgery-korea-safety-questions-foreigners/", "https://clinicsoncall.com/en/blog/plastic-surgery-for-foreigners-in-south-korea/", "https://www.clinicseoul.net/plastic-surgery-in-korea/", "https://www.canvassresearch.com/safety-guide", "https://www.clinicseoul.net/plastic-surgery-korea-guide/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jes0ru/how_to_navigate_plastic_surgery_in_seoul_as_a/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1g8tcfs/proscons_of_going_to_seoul_for_surgery_compared/", "https://ranker.kr/korean-cosmetic-surgery-safety-guide-foreigner-medical-tourism-certified-surgeons", "https://abplasticsurgerykorea.com/ab-blog/medical-tourism-korea-first-surgery-guide", "https://www.placidway.com/answer-detail/567918/Is-Medical-Tourism-for-Plastic-Surgery-Safe-and-Effective-in-South-Korea", "https://www.aljazeera.com/news/2024/12/23/as-south-korea-draws-visitors-chasing-beauty-dodgy-practices-pose-risks", "https://www.jkplastic.com/en/about-us/our-way/safety.asp", "https://seoulbeautytalk.com/blog/is-plastic-surgery-in-korea-safe-for-foreigners", "https://us-uk.bookimed.com/article/plastic-surgery-in-korea/", "https://www.seoulmedicalinsider.com/blog/is-plastic-surgery-korea-safe-ghost-surgery", "https://clinicsoncall.com/en/blog/is-south-korea-safe-for-plastic-surgery/", "https://www.reuters.com/world/asia-pacific/chinese-embassy-warns-plastic-surgery-risks-south-korea-2024-01-19/", "https://www.gangnamplastics.com/articles/is-plastic-surgery-safe-in-korea-for-americans-or-arumline", "https://plasticsurgeryguidekorea.com/plastic-surgery-guide-korea-safety-checklist/", "https://www.k-medlinker.com/post/korean-plastic-surgery-experience-before-during-after-seoul", "https://medinkorea.com/plastic-surgery-korea-safety-questions-foreigners/", "https://clinicsoncall.com/en/blog/plastic-surgery-for-foreigners-in-south-korea/", "https://www.clinicseoul.net/plastic-surgery-in-korea/", "https://www.canvassresearch.com/safety-guide", "https://www.clinicseoul.net/plastic-surgery-korea-guide/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jes0ru/how_to_navigate_plastic_surgery_in_seoul_as_a/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1g8tcfs/proscons_of_going_to_seoul_for_surgery_compared/", "https://ranker.kr/korean-cosmetic-surgery-safety-guide-foreigner-medical-tourism-certified-surgeons", "https://abplasticsurgerykorea.com/ab-blog/medical-tourism-korea-first-surgery-guide", "https://www.placidway.com/answer-detail/567918/Is-Medical-Tourism-for-Plastic-Surgery-Safe-and-Effective-in-South-Korea", "https://www.aljazeera.com/news/2024/12/23/as-south-korea-draws-visitors-chasing-beauty-dodgy-practices-pose-risks", "https://www.jkplastic.com/en/about-us/our-way/safety.asp"], "measured_at": "2026-09-10T15:18:25", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "F-02", "cat": "F", "question": "Does VIEW Plastic Surgery have anesthesiologists present during surgery?", "engine": "perplexity", "answer": "Yes. VIEW Plastic Surgery states that **board-certified anesthesiologists are always on-site** and provide **one-on-one monitoring during surgery**.[1][11] Their site also says anesthesiology specialists are available **full-time** for every procedure.[1][5]\n\nSupporting details from VIEW’s materials describe:\n- **Dedicated one-on-one anesthesia monitoring during surgery**.[1][11]\n- **On-site standby anesthesiologists** as part of their safety system.[4][5]\n- An in-house anesthesiologist responsible for **anesthesia and vital-sign monitoring throughout each operation** and recovery-room care until the patient is fully awake.[2]\n\nSo, based on VIEW’s own published information, the answer is **yes**—anesthesiologists are present during surgery.[1][2][11]", "urls": ["https://www.viewplasticsurgery.com/Introduction/safety-first.html", "https://khunkim.com/en/hospitals/view/doctors", "https://www.viewplasticsurgery.com/home-backup/", "https://www.viewplasticsurgery.com/before_after_case/combination-ptosis-correction-surgeryepicanthoplasty-revisional-surgery3-months-2/", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/introduction/doctors/", "https://khunkim.com/en/hospitals/view/doctors/kim-kyoung-rim", "https://id.viewplasticsurgery.com/", "https://unni.app/us/hospitals/189", "https://blog.viewclinic.com/en/gangnam-rhinoplasty-anesthesiologist-resident", "https://www.viewplasticsurgery.com/safe-system/safety-first.html", "https://www.theviewhospital.com/specialties/plastic-surgery", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.linkedin.com/company/view-plastic-surgery", "https://www.viewplasticsurgery.com/eye/index.html", "https://vn.viewplasticsurgery.com/specialties.html", "https://www.viewplasticsurgery.com/real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC10541158/", "https://www.plasticsurgery.org/news/articles/is-awake-plastic-surgery-right-for-you", "https://www.viewplasticsurgery.com/Introduction/safety-first.html", "https://khunkim.com/en/hospitals/view/doctors", "https://www.viewplasticsurgery.com/home-backup/", "https://www.viewplasticsurgery.com/before_after_case/combination-ptosis-correction-surgeryepicanthoplasty-revisional-surgery3-months-2/", "https://www.viewplasticsurgery.com/", "https://www.viewplasticsurgery.com/introduction/doctors/", "https://khunkim.com/en/hospitals/view/doctors/kim-kyoung-rim", "https://id.viewplasticsurgery.com/", "https://unni.app/us/hospitals/189", "https://blog.viewclinic.com/en/gangnam-rhinoplasty-anesthesiologist-resident", "https://www.viewplasticsurgery.com/safe-system/safety-first.html", "https://www.theviewhospital.com/specialties/plastic-surgery", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.linkedin.com/company/view-plastic-surgery", "https://www.viewplasticsurgery.com/eye/index.html", "https://vn.viewplasticsurgery.com/specialties.html", "https://www.viewplasticsurgery.com/real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC10541158/", "https://www.plasticsurgery.org/news/articles/is-awake-plastic-surgery-right-for-you"], "measured_at": "2026-09-10T15:18:31", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "F-03", "cat": "F", "question": "What happens if I have complications after returning home from plastic surgery in Korea?", "engine": "perplexity", "answer": "If you develop complications after returning home from plastic surgery in Korea, **the priority is to get assessed promptly in your own country and notify the Korean clinic as soon as possible**.[2][7][18] Most surgery-related issues are the same as elsewhere—such as **infection, bleeding/hematoma, blood clots, scarring, nerve injury, asymmetry, and anesthesia-related problems**—and they can appear after discharge rather than immediately after surgery.[18][11][4]\n\n- **Seek emergency care immediately** if you have trouble breathing, chest pain, fainting, rapidly expanding swelling (especially in the neck or airway area), uncontrolled bleeding, or sudden severe leg swelling/pain, because these can signal life-threatening complications such as airway compromise, pulmonary embolism, or major bleeding.[2][7][12]\n- **Contact your clinic urgently the same day** for fever, spreading redness, increasing pain instead of gradual improvement, pus or foul-smelling drainage, wound opening, or bright-red bleeding that soaks dressings, because these can indicate infection or hematoma that may need treatment.[2][7][13]\n- **For non-urgent concerns**, such as asymmetry, scarring, numbness, or contour irregularities, arrange a medical review and take clear photos over time; these problems may need observation, medication, drainage, or later revision discussion rather than immediate emergency care.[1][9][16][17]\n\nIf you are already back home, it helps to have ready:\n- the operative report and discharge instructions\n- the names of all medications used after surgery\n- photos of the wound or swelling\n- the clinic’s after-hours contact details\n\nIf the clinic is unresponsive or you cannot safely wait, go to the nearest emergency department and tell them exactly **what procedure you had, when it was done, and what symptoms started when**.[2][7][18]\n\nIf you want, I can also help you sort your symptoms into **“emergency,” “urgent clinic call,” or “can monitor for now.”**", "urls": ["https://pmc.ncbi.nlm.nih.gov/articles/PMC6005311/", "https://www.koreanplasticsurgery.info/post/warning-signs-after-cosmetic-surgery-when-to-call-your-clinic-korean-plastic-surgery", "https://www.mk.co.kr/en/it/11959307", "https://www.straitstimes.com/asia/east-asia/when-beauty-turns-fatal-south-korea-logs-50-plastic-surgery-deaths-since-2016", "https://askgangnam.com/articles/korean-plastic-surgery-safety-complication-rates-2026", "https://seoulclinics.io/blog/liposuction-risks-seoul-2026", "https://www.koreaclinicguide.com/blog/korea-plastic-surgery-recovery-timelines", "https://seoulcosmeticsurgery.com/facial-contouring-safety-and-risks/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC4174213/", "https://www.scmp.com/news/hong-kong/health-environment/article/3048463/hong-kong-woman-dies-after-falling-coma-during", "https://www.kca.go.kr/eng/sub.do?menukey=6007&mode=view&no=1000672535", "https://pmc.ncbi.nlm.nih.gov/articles/PMC5104877/", "https://botgig.org/navigating-korea-plastic-surgery-risks-safe-medical-tourism-guide", "https://www.reuters.com/world/asia-pacific/chinese-embassy-warns-plastic-surgery-risks-south-korea-2024-01-19/", "https://seoulguidemedical.com/plastic-surgery/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC5102861/", "https://kj.nomardy.com/seoul-plastic-surgery-complications/", "https://clinicsoncall.com/en/blog/is-south-korea-safe-for-plastic-surgery/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC8772653/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC12173276/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC6005311/", "https://www.koreanplasticsurgery.info/post/warning-signs-after-cosmetic-surgery-when-to-call-your-clinic-korean-plastic-surgery", "https://www.mk.co.kr/en/it/11959307", "https://www.straitstimes.com/asia/east-asia/when-beauty-turns-fatal-south-korea-logs-50-plastic-surgery-deaths-since-2016", "https://askgangnam.com/articles/korean-plastic-surgery-safety-complication-rates-2026", "https://seoulclinics.io/blog/liposuction-risks-seoul-2026", "https://www.koreaclinicguide.com/blog/korea-plastic-surgery-recovery-timelines", "https://seoulcosmeticsurgery.com/facial-contouring-safety-and-risks/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC4174213/", "https://www.scmp.com/news/hong-kong/health-environment/article/3048463/hong-kong-woman-dies-after-falling-coma-during", "https://www.kca.go.kr/eng/sub.do?menukey=6007&mode=view&no=1000672535", "https://pmc.ncbi.nlm.nih.gov/articles/PMC5104877/", "https://botgig.org/navigating-korea-plastic-surgery-risks-safe-medical-tourism-guide", "https://www.reuters.com/world/asia-pacific/chinese-embassy-warns-plastic-surgery-risks-south-korea-2024-01-19/", "https://seoulguidemedical.com/plastic-surgery/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC5102861/", "https://kj.nomardy.com/seoul-plastic-surgery-complications/", "https://clinicsoncall.com/en/blog/is-south-korea-safe-for-plastic-surgery/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC8772653/", "https://pmc.ncbi.nlm.nih.gov/articles/PMC12173276/"], "measured_at": "2026-09-10T15:18:39", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "F-04", "cat": "F", "question": "How do I verify a Korean plastic surgeon is board certified?", "engine": "perplexity", "answer": "To verify a Korean plastic surgeon is **board certified**, check the surgeon’s name against the **Korean Society of Plastic and Reconstructive Surgeons (KSPRS)** member search, and ask the clinic to show the surgeon’s **specialist certificate** in person or by photo so you can match the name and issue details.[2][4][18]\n\nA practical verification workflow is:\n\n- Get the surgeon’s **full legal name** in Korean and Roman letters; clinic nicknames or English-only names can be unreliable for searching.[1][3]\n- Search the surgeon in the **KSPRS public directory** and confirm the listing shows plastic surgery specialty status or certification details.[4][18]\n- Ask the clinic for the surgeon’s **성형외과 전문의** certificate and compare the name, date, and any certificate number with the directory result.[2]\n- Confirm the surgeon is actually the **operating surgeon**, not only the consultant, and ask for that name on the consent form.[2]\n- Cross-check the surgeon’s profile on public medical portals or hospital listings to see whether the specialty and affiliation are consistent.[2][3]\n- If needed, ask the clinic for written proof of the surgeon’s **board status**, current hospital affiliation, and medical license information.[3][5][7]\n\nA few cautions:\n\n- **Clinic marketing alone is not enough**; you want verification from the issuing professional body or a public registry, not just the clinic’s own website.[3]\n- Some pages mention different society names or registries, but the most consistently cited route in the results is the **KSPRS member search** and the displayed **specialist certificate**.[2][4][18]\n- If the clinic refuses to provide the surgeon’s full name, certificate image, or operating-surgeon identity, treat that as a red flag.[1][2][9]\n\nIf you want, I can also give you a **step-by-step checklist** you can copy-paste into a message to a Korean clinic.", "urls": ["https://akmclinic.com/blog/plastic-surgeon-board-certification/", "https://wuneprs.com/en/blog/verify-korean-board-certified-plastic-surgeon/", "https://medicalkoreaservice.com/blog/how-we-verify-korean-plastic-surgeons/", "https://guide.kmedtour.com/how-verify-korean-plastic-surgeon/", "https://www.willplasticsugery.com/articles/how-to-verify-a-korean-plastic-surgeons-credentials", "https://noonopiclinic.com/en/blog/plastic-surgery-south-korea", "https://cyl.co.kr/en/blog/g-008-verify-surgeon-credentials/", "https://www.linkpskorea.com/en/blog/korean-plastic-surgery-clinic-verification-12-point-compendium-for-for/", "https://www.seoulplasticsurgeon.com/blog/verify-plastic-surgeons-credentials-in-gangnam", "https://www.lupielclinic.com/articles/korea-aesthetic-clinic-safety-guide-us-patient-verification", "https://jwbeauty.net/blog/5-red-flags-to-watch-for-when-choosing-a-korean-plastic-surgery-clinic/", "https://go.medicalavenuekorea.com/blog/how-to-verify-plastic-surgeons-in-korea-for-2026", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1kzrwng/how_to_verify_a_korean_plastic_surgeons/", "https://www.abplasticsurgery.org/public/", "https://www.theaestheticsociety.org/consumers/find-a-plastic-surgeon/KR", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1ktfy3c/help_needed_how_to_validate_the_plastic_surgeons/", "https://labelleviecosmetic.com/how-to-verify-a-board-certified-plastic-surgeon-a-2026-patient-safety-guide/", "https://www.plasticsurgery.or.kr/eng/search/", "https://www.absurgery.org/check-a-certification/", "https://akmclinic.com/blog/plastic-surgeon-board-certification/", "https://wuneprs.com/en/blog/verify-korean-board-certified-plastic-surgeon/", "https://medicalkoreaservice.com/blog/how-we-verify-korean-plastic-surgeons/", "https://guide.kmedtour.com/how-verify-korean-plastic-surgeon/", "https://www.willplasticsugery.com/articles/how-to-verify-a-korean-plastic-surgeons-credentials", "https://noonopiclinic.com/en/blog/plastic-surgery-south-korea", "https://cyl.co.kr/en/blog/g-008-verify-surgeon-credentials/", "https://www.linkpskorea.com/en/blog/korean-plastic-surgery-clinic-verification-12-point-compendium-for-for/", "https://www.seoulplasticsurgeon.com/blog/verify-plastic-surgeons-credentials-in-gangnam", "https://www.lupielclinic.com/articles/korea-aesthetic-clinic-safety-guide-us-patient-verification", "https://jwbeauty.net/blog/5-red-flags-to-watch-for-when-choosing-a-korean-plastic-surgery-clinic/", "https://go.medicalavenuekorea.com/blog/how-to-verify-plastic-surgeons-in-korea-for-2026", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1kzrwng/how_to_verify_a_korean_plastic_surgeons/", "https://www.abplasticsurgery.org/public/", "https://www.theaestheticsociety.org/consumers/find-a-plastic-surgeon/KR", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1ktfy3c/help_needed_how_to_validate_the_plastic_surgeons/", "https://labelleviecosmetic.com/how-to-verify-a-board-certified-plastic-surgeon-a-2026-patient-safety-guide/", "https://www.plasticsurgery.or.kr/eng/search/", "https://www.absurgery.org/check-a-certification/"], "measured_at": "2026-09-10T15:18:48", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "F-05", "cat": "F", "question": "Are there red flags or complaints about VIEW Plastic Surgery Korea?", "engine": "perplexity", "answer": "There is at least one **documented regulatory complaint** about VIEW Plastic Surgery: South Korea’s Fair Trade Commission sanctioned the clinic for posting advertisements disguised as genuine customer reviews, and ordered it to publish a notice acknowledging the violation.[2]\n\nBeyond that, the results I found do **not** show a verified pattern of medical negligence or accidents at the clinic. One clinic directory claims no accidents or medical negligence have been reported there in the last 13 years, but that is a third-party claim rather than an official audit or complaint database.[19]\n\nWhat this means in practice:\n- **Confirmed issue:** deceptive marketing / fake-review style advertising.[2]\n- **Not established from these results:** malpractice, safety incidents, or systemic patient harm.[19]\n- **Unverified concerns:** Reddit posts mention things like deposit pressure and general distrust, but those are anecdotal and not independently confirmed.[3][5]\n\nIf you want, I can also help you check:\n- whether VIEW is properly registered for foreign patients,\n- whether its surgeons’ board certifications are publicly listed,\n- or how it compares with other Seoul clinics on verifiable red-flag criteria.", "urls": ["https://www.viewplasticsurgery.com/blog/under-eye-surgery-korea/", "https://news.sbs.co.kr/english/article.do?news_id=N1008653551", "https://www.reddit.com/r/jawsurgery/comments/1mwf5av/view_plastic_surgery_legit/", "https://www.viewplasticsurgery.com/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1nizwf3/more_big_clinics_that_i_shouldnt_trust/", "https://gangnamclinicindex.com/en/register/", "https://cyl.co.kr/th/choose-wisely/plastic-surgery-red-flags-korea/", "https://jwbeauty.net/blog/5-red-flags-to-watch-for-when-choosing-a-korean-plastic-surgery-clinic/", "https://www.canvassresearch.com/blog/korean-surgery-red-flags", "https://seoulbeautytalk.com/blog/how-to-choose-plastic-surgery-clinic-seoul-red-flags", "https://www.koreaclinicguide.com/blog/how-to-spot-bad-factory-clinic-korea", "https://koreaexperience.com/blog/how-to-verify-korean-clinic-credentials-red-flags-to-avoid", "https://www.seoulmedicalinsider.com/blog/is-plastic-surgery-korea-safe-ghost-surgery", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1lm38k0/help_others_avoid_the_pitfalls_and_red_flags_of/", "https://www.viewplasticsurgery.com/consultation/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1kcu3z0/safety_red_flags/", "https://gangnamskinclinicreberry.com/how-to-avoid-scam-clinic/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1msodmq/how_do_people_find_out_which_plastic_surgery/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jpbc9x/i_work_at_a_korean_plastic_surgery_clinic_ama/", "https://www.viewplasticsurgery.com/blog/under-eye-surgery-korea/", "https://news.sbs.co.kr/english/article.do?news_id=N1008653551", "https://www.reddit.com/r/jawsurgery/comments/1mwf5av/view_plastic_surgery_legit/", "https://www.viewplasticsurgery.com/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1nizwf3/more_big_clinics_that_i_shouldnt_trust/", "https://gangnamclinicindex.com/en/register/", "https://cyl.co.kr/th/choose-wisely/plastic-surgery-red-flags-korea/", "https://jwbeauty.net/blog/5-red-flags-to-watch-for-when-choosing-a-korean-plastic-surgery-clinic/", "https://www.canvassresearch.com/blog/korean-surgery-red-flags", "https://seoulbeautytalk.com/blog/how-to-choose-plastic-surgery-clinic-seoul-red-flags", "https://www.koreaclinicguide.com/blog/how-to-spot-bad-factory-clinic-korea", "https://koreaexperience.com/blog/how-to-verify-korean-clinic-credentials-red-flags-to-avoid", "https://www.seoulmedicalinsider.com/blog/is-plastic-surgery-korea-safe-ghost-surgery", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1lm38k0/help_others_avoid_the_pitfalls_and_red_flags_of/", "https://www.viewplasticsurgery.com/consultation/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1kcu3z0/safety_red_flags/", "https://gangnamskinclinicreberry.com/how-to-avoid-scam-clinic/", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1msodmq/how_do_people_find_out_which_plastic_surgery/", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1jpbc9x/i_work_at_a_korean_plastic_surgery_clinic_ama/"], "measured_at": "2026-09-10T15:18:56", "clinics": [], "view_mentioned": true, "view_rank": 1, "view_sentiment": "negative"} +{"id": "F-06", "cat": "F", "question": "Which Korean plastic surgery clinics have a Motiva implant warranty?", "engine": "perplexity", "answer": "These Korean clinics explicitly mention a **Motiva implant warranty** on their Motiva or breast augmentation pages: **JK Plastic Surgery**, **VIEW Plastic Surgery**, **MINE Clinic**, **DA Plastic Surgery**, **Wonjin Plastic Surgery Hospital**, **id Hospital**, **Nana Hospital**, and **AB Plastic Surgery**.[1][3][6][7][8][9][10][14]\n\nWhat each clinic says:\n- **JK Plastic Surgery**: says its Motiva program includes an **extended warranty** for capsular contracture stage 3–4 or rupture within five years.[1]\n- **VIEW Plastic Surgery**: says its **MOTIVA Warranty** includes **reoperation support within 5 years** and **implant replacement support within 10 years**.[3][5]\n- **MINE Clinic**: says it offers a guarantee of up to **five years** under Motiva’s quality assurance program for rupture or reoperation.[6]\n- **DA Plastic Surgery**: says Motiva provides **5 years of insurance warranties** for rupture or capsular contracture.[7]\n- **Wonjin Plastic Surgery Hospital**: says Motiva provides **5 years of insurance warranties** through CNA-based quality assurance.[8]\n- **id Hospital**: says its **MOTIFIT Warranty Program** covers re-surgery costs and implants for rupture or Baker grade 3–4 capsular contracture within **5 years**.[9]\n- **Nana Hospital**: says Motiva Ergonomics with Q offers warranty for rupture and grade 3–4 capsular contracture within **5 years**.[10]\n- **AB Plastic Surgery**: says Motiva covers rupture and Baker grade III–IV capsular contracture within **5 years**.[14]\n\nA useful caution: some pages describe the **manufacturer’s Motiva warranty** itself, while others describe a **clinic-added warranty or support program** tied to Motiva implants.[1][2][3][9][16] Before booking, it is worth confirming whether the coverage is the official Motiva program, a clinic warranty, or both.", "urls": ["https://www.jkplastic.com/en/breast-surgery/motiva-breast-augmentation.asp", "https://motiva.health/patients-product-warranty/", "https://www.viewplasticsurgery.com/breast/breast-augmentation-motiva.html", "https://goodbyeacup.com/", "https://www.viewplasticsurgery.com/breast/breast-augmentation/motiva/", "https://mineclinic.com/breast-surgery/motiva-breast-surgery/", "https://www.daprseng.com/m/breast/motiva.php", "https://wonjinbeauty.com/en/breast/breast_augment_Implant.php", "https://www.idhospital.com/en/breast-surgery/breast-augmentation", "https://en.nanahospital.com/page/breast_implants", "https://motiva.health/patients-joy-warranty/", "https://breastsurgerykorea.com/breast-augmentation-korea-international-patients-guide/", "https://motivausa.com/patient/breast-implants-coverage", "https://abplasticsurgerykorea.com/breast/motiva-breast-implants-surgery", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=breast-implant-revision/", "https://www.tcplasticsurgery.com/breast-augmentation/does-my-breast-implant-have-a-warranty/", "https://www.drkim.com/blogs/the-ultimate-guide-to-breast-implant-warranties-comparing-allergan-mentor-motiva-sientra", "https://www.jkplastic.com/en/breast-surgery/motiva-breast-augmentation.asp", "https://motiva.health/patients-product-warranty/", "https://www.viewplasticsurgery.com/breast/breast-augmentation-motiva.html", "https://goodbyeacup.com/", "https://www.viewplasticsurgery.com/breast/breast-augmentation/motiva/", "https://mineclinic.com/breast-surgery/motiva-breast-surgery/", "https://www.daprseng.com/m/breast/motiva.php", "https://wonjinbeauty.com/en/breast/breast_augment_Implant.php", "https://www.idhospital.com/en/breast-surgery/breast-augmentation", "https://en.nanahospital.com/page/breast_implants", "https://motiva.health/patients-joy-warranty/", "https://breastsurgerykorea.com/breast-augmentation-korea-international-patients-guide/", "https://motivausa.com/patient/breast-implants-coverage", "https://abplasticsurgerykorea.com/breast/motiva-breast-implants-surgery", "https://us-uk.bookimed.com/clinics/country=republic-of-korea/procedure=breast-implant-revision/", "https://www.tcplasticsurgery.com/breast-augmentation/does-my-breast-implant-have-a-warranty/", "https://www.drkim.com/blogs/the-ultimate-guide-to-breast-implant-warranties-comparing-allergan-mentor-motiva-sientra"], "measured_at": "2026-09-10T15:19:04", "clinics": ["JK Plastic Surgery", "VIEW Plastic Surgery", "MINE Clinic", "DA Plastic Surgery", "Wonjin Plastic Surgery Hospital", "id Hospital", "Nana Hospital", "AB Plastic Surgery"], "view_mentioned": true, "view_rank": 2, "view_sentiment": "positive"} +{"id": "G-01", "cat": "G", "question": "Do Korean plastic surgery clinics offer remote follow-up after I go back to my country?", "engine": "perplexity", "answer": "Yes—**many Korean plastic surgery clinics do offer remote follow-up after you return home**, but it is **clinic-dependent rather than universal**.[1][3][7][12]\n\nWhat this usually looks like:\n- **Photo-based check-ins** through KakaoTalk, WhatsApp, or the clinic’s own messenger are common.[3][5][12]\n- Some clinics offer **scheduled virtual follow-ups** after you leave Korea, including recurring appointments at set intervals.[8][12]\n- Clinics may use remote follow-up for **recovery questions, wound care guidance, swelling/bruising monitoring, and triage if complications arise**.[1][8][12]\n\nA few examples from the results:\n- GIRIN says its team can continue to assist with **follow-up communication and recovery-related questions** after you go home.[1]\n- ROI Plastic Surgery says it stays in touch through **WhatsApp follow-up** with recovery photos and questions.[3]\n- Link Plastic Surgery says it provides **post-operative follow-up after returning home** and that patients can send recovery photos and symptoms through the official messenger.[12]\n- VIEW Plastic Surgery says it offers **post-operative follow-up and remote consultation for international patients**.[7][13]\n\nWhat to confirm before booking:\n- Whether the clinic offers **remote follow-up for your specific procedure**.\n- Whether it is done via **messaging, video calls, or both**.\n- How often follow-ups are scheduled and **who responds**—the surgeon, a coordinator, or both.\n- Whether there is a **fee** for remote follow-up, since some sources mention free messaging while broader telemedicine services can be paid.[2][3]\n\nIf you want, I can also help you make a **pre-surgery checklist of questions to ask the clinic** about aftercare and remote follow-up.", "urls": ["https://www.girinpsen.com/", "https://koreaexperience.com/blog/telemedicine-follow-ups-2026", "https://roisurgery.com/international-patients-en.html", "https://medicaltour.gangnam.go.kr/2021/content/hotelsDetail.do?medical_seq=873&mid=95-110&cid=110&searchMedicalDiv=x_11", "https://www.linkpskorea.com/en/blog/planning-plastic-surgery-in-korea-the-complete-medical-tourism-guide-f/", "https://medicaltravelkorea.com/en/magazine/79", "https://www.viewplasticsurgery.com/", "https://www.rnwoodclinickorea.com/articles/rnwood-plastic-surgery-seoul---boutique-facelift-for-us-patients", "https://www.vippskorea.com/contact-us/online-consultation.html", "https://us-uk.bookimed.com/clinic/returning-plastic-surgery/", "https://www.gangnam.health/clinics/skin/seoul/gangnam/urban-plastic-surgery-clinic", "https://www.linkpskorea.com/", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://www.mediqueen.net/en", "https://unni.app/us/hospitals/166", "https://community.icloudhospital.com/t/are-there-clinics-that-provide-aftercare-for-international-patients/573", "https://www.medicaldepartures.com/clinic/the-plus-plastic-surgery", "https://clinicsoncall.com/en/clinic/the-plus-plastic-surgery/", "https://www.clinicseoul.net/jk-plastic-surgery-korea/", "https://curemeabroad.com/hospitals/view-plastic-surgery", "https://www.girinpsen.com/", "https://koreaexperience.com/blog/telemedicine-follow-ups-2026", "https://roisurgery.com/international-patients-en.html", "https://medicaltour.gangnam.go.kr/2021/content/hotelsDetail.do?medical_seq=873&mid=95-110&cid=110&searchMedicalDiv=x_11", "https://www.linkpskorea.com/en/blog/planning-plastic-surgery-in-korea-the-complete-medical-tourism-guide-f/", "https://medicaltravelkorea.com/en/magazine/79", "https://www.viewplasticsurgery.com/", "https://www.rnwoodclinickorea.com/articles/rnwood-plastic-surgery-seoul---boutique-facelift-for-us-patients", "https://www.vippskorea.com/contact-us/online-consultation.html", "https://us-uk.bookimed.com/clinic/returning-plastic-surgery/", "https://www.gangnam.health/clinics/skin/seoul/gangnam/urban-plastic-surgery-clinic", "https://www.linkpskorea.com/", "https://www.viewplasticsurgery.com/article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/", "https://www.mediqueen.net/en", "https://unni.app/us/hospitals/166", "https://community.icloudhospital.com/t/are-there-clinics-that-provide-aftercare-for-international-patients/573", "https://www.medicaldepartures.com/clinic/the-plus-plastic-surgery", "https://clinicsoncall.com/en/clinic/the-plus-plastic-surgery/", "https://www.clinicseoul.net/jk-plastic-surgery-korea/", "https://curemeabroad.com/hospitals/view-plastic-surgery"], "measured_at": "2026-09-10T15:19:12", "clinics": ["GIRIN", "ROI Plastic Surgery", "Link Plastic Surgery", "VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 4, "view_sentiment": "positive"} +{"id": "G-02", "cat": "G", "question": "What aftercare does VIEW Plastic Surgery provide for international patients?", "engine": "perplexity", "answer": "VIEW Plastic Surgery says it provides **post-operative follow-up and remote consultation** for international patients, along with **dressing changes**, **suture removal**, and surgeon progress checks in a dedicated post-op care space.[1] It also offers **home-care items** such as pumpkin juice, scar ointments, compression bras, custom compression garments, and hot/cold packs.[3][4]\n\nFor recovery support, VIEW’s materials also mention **swelling-reduction and healing treatments** such as APL laser care, hyperbaric oxygen chamber therapy, IVNT package treatments, and other “quick recovery” care for patients who cannot easily return for visits.[1][3][4] For international patients specifically, the clinic provides **multilingual interpretation**, **dedicated coordinators**, and **hotel reservation/accommodation assistance**.[1][3][4]\n\nA VIEW clinic coordinator also described aftercare for out-of-town patients as including **stitch removal, disinfection, and swelling care**, and recommended staying at least about **one week** when possible so these services can be completed.[2]", "urls": ["https://www.viewplasticsurgery.com/", "https://medicaltour.gangnam.go.kr/bbs/coordinator_en/view.do?msg_seq=5", "https://www.viewplasticsurgery.com/safe-system/safety-first.html", "https://www.viewplasticsurgery.com/safe-system/aftercare.html", "https://koreaplasticsurgery.tistory.com/entry/Facial-Rejuvenation-in-Korea-My-4-Month-Review", "https://www.viewplasticsurgery.com/viewrealreview/my-real-experience-with-korean-plastic-surgery-at-view-clinic/", "https://www.viewplasticsurgery.com/viewrealreview/kboard-review-69756/", "https://medicaltravelkorea.com/en/magazine/257/Post-Surgery-Care-Korea-Aftercare-Recovery-Guide-for-All-Medical-Procedures-2026", "https://secondmin.co.kr/whats-included-in-a-korean-plastic-surgery-package-for-foreigners/", "https://medicaltravelkorea.com/mn/magazine/257/PostSurgery-Care-Korea-Aftercare-Recovery-Guide-for-All-Medical-Procedures-2026", "https://www.viewplasticsurgery.com/Introduction/about-VIEW.html", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1odxg9l/greetings_from_view_plastic_surgery_korea_qa/", "https://koreaplasticsurgery.tistory.com/entry/Korean-Plastic-Surgery-Review-at-View-Clinic-in-Seoul", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/", "https://www.medicaltourism.com/articles/follow-up-care-for-cosmetic-surgery-abroad-what-to-plan-for", "https://www.vippskorea.com/contact-us/out-of-town-patients.html", "https://www.viewplasticsurgery.com/review/index.html", "https://www.pearlwellnesscenter.com/post/post-op-care-for-international-patients-in-los-angeles", "https://www.vippskorea.com/about-vip/meet-vip-team.html", "https://www.viewplasticsurgery.com/", "https://medicaltour.gangnam.go.kr/bbs/coordinator_en/view.do?msg_seq=5", "https://www.viewplasticsurgery.com/safe-system/safety-first.html", "https://www.viewplasticsurgery.com/safe-system/aftercare.html", "https://koreaplasticsurgery.tistory.com/entry/Facial-Rejuvenation-in-Korea-My-4-Month-Review", "https://www.viewplasticsurgery.com/viewrealreview/my-real-experience-with-korean-plastic-surgery-at-view-clinic/", "https://www.viewplasticsurgery.com/viewrealreview/kboard-review-69756/", "https://medicaltravelkorea.com/en/magazine/257/Post-Surgery-Care-Korea-Aftercare-Recovery-Guide-for-All-Medical-Procedures-2026", "https://secondmin.co.kr/whats-included-in-a-korean-plastic-surgery-package-for-foreigners/", "https://medicaltravelkorea.com/mn/magazine/257/PostSurgery-Care-Korea-Aftercare-Recovery-Guide-for-All-Medical-Procedures-2026", "https://www.viewplasticsurgery.com/Introduction/about-VIEW.html", "https://clinicsoncall.com/en/clinic/view-plastic-surgery-hospital/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1odxg9l/greetings_from_view_plastic_surgery_korea_qa/", "https://koreaplasticsurgery.tistory.com/entry/Korean-Plastic-Surgery-Review-at-View-Clinic-in-Seoul", "https://www.reddit.com/r/KoreaSeoulBeauty/comments/1oqob2y/hello_from_view_plastic_surgery_here_to_share/", "https://www.medicaltourism.com/articles/follow-up-care-for-cosmetic-surgery-abroad-what-to-plan-for", "https://www.vippskorea.com/contact-us/out-of-town-patients.html", "https://www.viewplasticsurgery.com/review/index.html", "https://www.pearlwellnesscenter.com/post/post-op-care-for-international-patients-in-los-angeles", "https://www.vippskorea.com/about-vip/meet-vip-team.html"], "measured_at": "2026-09-10T15:19:18", "clinics": ["VIEW Plastic Surgery"], "view_mentioned": true, "view_rank": 1, "view_sentiment": "positive"} +{"id": "G-03", "cat": "G", "question": "Where can I get post-surgery swelling care in Gangnam after surgery?", "engine": "perplexity", "answer": "If you need **post-surgery swelling care in Gangnam**, the most directly relevant options in the search results are **Dia Aesthetic in Apgujeong**, **VEI Clinic Apgujeong**, **Hyundai Aesthetic Surgery Clinic**, **Withwin Dermatology**, and **Sinsang Plastic Surgery**—all of which advertise some form of aftercare for swelling, bruising, or recovery support.[1][3][4][8][10]\n\n- **Dia Aesthetic / Apgujeong Massage Spa** in Apgujeong, Gangnam focuses on **lymphatic drainage** and **post-procedure recovery**; it says it offers post-operative lymphatic care using the **Vodder method** and same-day or shortly after surgery gentle drainage when appropriate.[1][2][7]\n- **VEI Clinic Apgujeong** offers **post-surgery IV therapy** in Gangnam, described as physician-supervised infusions for recovery after cosmetic or medical procedures.[8]\n- **Hyundai Aesthetic Surgery Clinic** in Gangnam provides a **post-surgery regular check-up and care system** that monitors swelling, bruising, tightness, and related recovery symptoms.[3]\n- **Withwin Dermatology** in Apgujeong, Gangnam advertises **swelling management** and **bruise laser treatment** as part of plastic-surgery aftercare.[4]\n- **Sinsang Plastic Surgery** in Gangnam offers **post-op deswelling treatment** and **LED light therapy**, and lists its location and consultation hours publicly.[10]\n\nIf you want, I can narrow this down by **type of surgery**—for example **facelift**, **rhinoplasty**, **liposuction**, or **double chin surgery**—and give you the **best-fit place** from the options above.", "urls": ["https://www.apgujeongmassagespa.com/about-us", "https://www.apgujeongmassagespa.com/how-to/reduce-facial-swelling-fast-after-surgery", "https://www.hyundaisurgery.com/contour/treatment", "https://widwinskin.com/en/Plastic-surgery-aftercare/", "https://www.apgujeongmassagespa.com/services/facial-swelling-reduction-treatment", "https://blog.yeoshin.co.kr/en/gangnam-pharmacy-guide-best-spots/", "https://www.apgujeongmassagespa.com/body-massage/same-day-post-surgery-massage-seoul", "https://www.seoulantiagingclinic.com/iv-therapy/post-surgery-iv", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1l0326w/recovery_clinics_for_deswelling_after_ps_in_seoul/", "https://www.sinsangps.com/articles/double-chin-lipo-aftercare-korea-complete-recovery-guide", "https://www.gangnamfootmassage.com/post-surgery-recovery-massage", "https://www.okayps.co/post-operative-care/", "https://eng.banobagi.com/insights/managing-swelling-after-surgery-essential-recovery-tips-for-optimal-results/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mlym54/post_surgery_treatments_gagnam/", "https://www.koreafacelift.com/facelift-recovery-tips-seoul", "https://gangnamdermatologycenter.com/gangnam-dermatology-aftercare/", "https://www.koreaclinicguide.com/blog/swelling-after-plastic-surgery-korea", "https://daprseng.com/safety/aftercare.php", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1kfv3s7/liposuction_at_the_fitting_clinic_gangnam/", "https://www.medicinenet.com/what_helps_swelling_go_down_after_surgery/article.htm", "https://www.apgujeongmassagespa.com/about-us", "https://www.apgujeongmassagespa.com/how-to/reduce-facial-swelling-fast-after-surgery", "https://www.hyundaisurgery.com/contour/treatment", "https://widwinskin.com/en/Plastic-surgery-aftercare/", "https://www.apgujeongmassagespa.com/services/facial-swelling-reduction-treatment", "https://blog.yeoshin.co.kr/en/gangnam-pharmacy-guide-best-spots/", "https://www.apgujeongmassagespa.com/body-massage/same-day-post-surgery-massage-seoul", "https://www.seoulantiagingclinic.com/iv-therapy/post-surgery-iv", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1l0326w/recovery_clinics_for_deswelling_after_ps_in_seoul/", "https://www.sinsangps.com/articles/double-chin-lipo-aftercare-korea-complete-recovery-guide", "https://www.gangnamfootmassage.com/post-surgery-recovery-massage", "https://www.okayps.co/post-operative-care/", "https://eng.banobagi.com/insights/managing-swelling-after-surgery-essential-recovery-tips-for-optimal-results/", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1mlym54/post_surgery_treatments_gagnam/", "https://www.koreafacelift.com/facelift-recovery-tips-seoul", "https://gangnamdermatologycenter.com/gangnam-dermatology-aftercare/", "https://www.koreaclinicguide.com/blog/swelling-after-plastic-surgery-korea", "https://daprseng.com/safety/aftercare.php", "https://www.reddit.com/r/SeoulPlasticSurgery/comments/1kfv3s7/liposuction_at_the_fitting_clinic_gangnam/", "https://www.medicinenet.com/what_helps_swelling_go_down_after_surgery/article.htm"], "measured_at": "2026-09-10T15:19:33", "clinics": ["Dia Aesthetic", "VEI Clinic", "Hyundai Aesthetic Surgery Clinic", "Withwin Dermatology", "Sinsang Plastic Surgery"], "view_mentioned": false, "view_rank": null, "view_sentiment": null} +{"id": "G-04", "cat": "G", "question": "What is the Motiva implant warranty if I get surgery in Korea and live abroad?", "engine": "perplexity", "answer": "If you have Motiva surgery in Korea and later live abroad, the **core Motiva warranty still follows the implant**: lifetime coverage against rupture and 10 years of product replacement coverage for Baker grade III/IV capsular contracture.[1][2] The key practical issue is usually **registration and eligibility**, not where you live, because Motiva says the first-year free coverage requires the implants to be registered within 90 days after surgery through Motiva’s website or app.[1]\n\nWhat this means in practice:\n\n- **Lifetime rupture coverage** applies to all Motiva implants under the Always Confident Warranty.[1][2]\n- **10-year capsular contracture replacement coverage** applies for Baker grades III and IV.[1][2]\n- **First-year free coverage** requires registration within 90 days of the initial surgery.[1]\n- **Optional extended warranties** may apply only if your implant type and registration meet the program rules; Motiva notes a 2-year extended warranty for implants without Qid and a 5-year extended warranty for Qid-enabled implants, with separate enrollment/fee terms.[1][4]\n\nWhat to confirm with your Korean clinic before you leave:\n\n- Your implant serial numbers and **Qid** status.[1][4]\n- Whether the clinic completed **registration** within the required 90-day window.[1]\n- Which warranty program you were enrolled in, if any.[1][4]\n- How claims are handled if revision surgery must be done **outside Korea**, since Motiva’s public warranty pages describe coverage terms but do not clearly spell out country-by-country claim logistics in the results provided.[1][2][4]\n\nIf you want, I can also help you draft a short message to your clinic asking exactly what warranty paperwork you should receive before traveling home.", "urls": ["https://motiva.health/patients-product-warranty/", "https://motiva.health/patients-joy-warranty/", "https://motivaimplantatum.hu/wp-content/uploads/2019/06/motiva-warranty-program-terms-and-conditions-en-20180508.pdf", "https://motiva.health/patient/blog/warranties-choose-confidence-for-years/", "https://support.motiva.health/hc/en-us/categories/4408637319571-Motiva-Implants", "https://carelyclinic.com/motiva-vs-mentor-breast-implants/", "https://motivausa.com/sites/default/files/2024-09/Motiva%20USA%20Warranty%20Program_2024.09.26.pdf", "https://motivausa.com/patient/breast-implants-coverage", "https://www.leelamundramd.com/blog/motiva-implants-guide/", "https://www.tcplasticsurgery.com/breast-augmentation/does-my-breast-implant-have-a-warranty/", "https://motivausa.com/sites/default/files/2024-10/US-ERGO1-0003%20R1%20Motiva%20Warranty%20Brochure%20v1.pdf", "https://fortesmd.com/blog/the-safety-and-durability-of-motiva-implants-what-you-need-to-know/", "https://www.realself.com/question/motiva-extended-warranty-worth", "https://motiva.health/patients-product-warranty/", "https://motiva.health/patients-joy-warranty/", "https://motivaimplantatum.hu/wp-content/uploads/2019/06/motiva-warranty-program-terms-and-conditions-en-20180508.pdf", "https://motiva.health/patient/blog/warranties-choose-confidence-for-years/", "https://support.motiva.health/hc/en-us/categories/4408637319571-Motiva-Implants", "https://carelyclinic.com/motiva-vs-mentor-breast-implants/", "https://motivausa.com/sites/default/files/2024-09/Motiva%20USA%20Warranty%20Program_2024.09.26.pdf", "https://motivausa.com/patient/breast-implants-coverage", "https://www.leelamundramd.com/blog/motiva-implants-guide/", "https://www.tcplasticsurgery.com/breast-augmentation/does-my-breast-implant-have-a-warranty/", "https://motivausa.com/sites/default/files/2024-10/US-ERGO1-0003%20R1%20Motiva%20Warranty%20Brochure%20v1.pdf", "https://fortesmd.com/blog/the-safety-and-durability-of-motiva-implants-what-you-need-to-know/", "https://www.realself.com/question/motiva-extended-warranty-worth"], "measured_at": "2026-09-10T15:19:42", "clinics": [], "view_mentioned": false, "view_rank": null, "view_sentiment": null} diff --git a/docs/reports/viewclinic/05_global_en/question_bank_en.json b/docs/reports/viewclinic/05_global_en/question_bank_en.json new file mode 100644 index 0000000..00dd893 --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/question_bank_en.json @@ -0,0 +1,62 @@ +[ + {"id":"A-01","cat":"A","question":"Is VIEW Plastic Surgery in Seoul legit? Is it a trustworthy clinic for foreigners?","stage":"decision"}, + {"id":"A-02","cat":"A","question":"Tell me about VIEW Plastic Surgery in Gangnam, Korea. What are they known for?","stage":"decision"}, + {"id":"A-03","cat":"A","question":"What procedures does VIEW Plastic Surgery Korea specialize in?","stage":"decision"}, + {"id":"A-04","cat":"A","question":"Who is Dr. Choi Soon Woo of VIEW Plastic Surgery? Is he board certified?","stage":"decision"}, + {"id":"A-05","cat":"A","question":"How many surgeons does VIEW Plastic Surgery have and are they all board-certified plastic surgeons?","stage":"decision"}, + {"id":"A-06","cat":"A","question":"Does VIEW Plastic Surgery have English-speaking staff or interpreters?","stage":"decision"}, + {"id":"A-07","cat":"A","question":"How long has VIEW Plastic Surgery been operating and how big is the clinic?","stage":"decision"}, + {"id":"A-08","cat":"A","question":"VIEW Plastic Surgery Korea reviews from international patients: what do foreigners say?","stage":"decision"}, + {"id":"B-01","cat":"B","question":"Where is VIEW Plastic Surgery located and how do I get there from Incheon Airport?","stage":"decision"}, + {"id":"B-02","cat":"B","question":"Does VIEW Plastic Surgery offer airport pickup for international patients?","stage":"decision"}, + {"id":"B-03","cat":"B","question":"What are VIEW Plastic Surgery's opening hours and can I book a consultation online from abroad?","stage":"decision"}, + {"id":"B-04","cat":"B","question":"Can I contact VIEW Plastic Surgery via WhatsApp or LINE for a consultation?","stage":"decision"}, + {"id":"B-05","cat":"B","question":"Does VIEW Plastic Surgery provide accommodation or hotel partnerships for foreign patients?","stage":"decision"}, + {"id":"B-06","cat":"B","question":"How long should I stay in Seoul after plastic surgery before flying home?","stage":"explore"}, + {"id":"B-07","cat":"B","question":"Do I need a medical visa for plastic surgery in Korea as a tourist?","stage":"explore"}, + {"id":"B-08","cat":"B","question":"Which Gangnam plastic surgery clinics are closest to Sinnonhyeon Station?","stage":"aware"}, + {"id":"C-01","cat":"C","question":"Best plastic surgery clinic in Seoul for foreigners","stage":"aware"}, + {"id":"C-02","cat":"C","question":"Best breast augmentation clinic in Korea for international patients","stage":"compare"}, + {"id":"C-03","cat":"C","question":"Top facial contouring and V-line surgery clinics in Gangnam","stage":"compare"}, + {"id":"C-04","cat":"C","question":"Best rhinoplasty surgeon in Seoul for foreigners","stage":"compare"}, + {"id":"C-05","cat":"C","question":"Best double jaw surgery clinic in Korea","stage":"compare"}, + {"id":"C-06","cat":"C","question":"Top 5 plastic surgery clinics in Gangnam, Seoul","stage":"aware"}, + {"id":"C-07","cat":"C","question":"Compare VIEW Plastic Surgery vs ID Hospital vs Banobagi for facial contouring","stage":"compare"}, + {"id":"C-08","cat":"C","question":"Which Korean plastic surgery clinics use Motiva implants and have the most experience with them?","stage":"compare"}, + {"id":"C-09","cat":"C","question":"Safest plastic surgery clinic in Korea with anesthesiologists on staff","stage":"compare"}, + {"id":"C-10","cat":"C","question":"Which Seoul plastic surgery clinics are officially recognized for medical tourism by the Korean government?","stage":"compare"}, + {"id":"C-11","cat":"C","question":"Best clinic in Korea for double eyelid surgery revision for foreigners","stage":"compare"}, + {"id":"C-12","cat":"C","question":"Large plastic surgery hospitals in Seoul with in-house recovery wards","stage":"compare"}, + {"id":"D-01","cat":"D","question":"Motiva breast augmentation in Korea: what should I know before booking?","stage":"explore"}, + {"id":"D-02","cat":"D","question":"What is Motiva Preserve and which clinics in Korea offer it?","stage":"explore"}, + {"id":"D-03","cat":"D","question":"How long is recovery after breast augmentation in Korea before I can fly?","stage":"explore"}, + {"id":"D-04","cat":"D","question":"What is the difference between V-line surgery and square jaw reduction?","stage":"explore"}, + {"id":"D-05","cat":"D","question":"Double jaw surgery in Korea: recovery timeline and risks for international patients","stage":"explore"}, + {"id":"D-06","cat":"D","question":"Incisional vs non-incisional double eyelid surgery in Korea: which is better?","stage":"explore"}, + {"id":"D-07","cat":"D","question":"Rhinoplasty in Korea with rib cartilage vs silicone: pros and cons","stage":"explore"}, + {"id":"D-08","cat":"D","question":"How is revision rhinoplasty done in Korea and how long do I need to stay?","stage":"explore"}, + {"id":"D-09","cat":"D","question":"Facelift in Korea for a 50-year-old: what techniques are used?","stage":"explore"}, + {"id":"D-10","cat":"D","question":"Is liposuction in Korea safe and how many days of downtime should I expect?","stage":"explore"}, + {"id":"D-11","cat":"D","question":"What does VIEW Plastic Surgery's breast surgery process look like from consultation to aftercare?","stage":"decision"}, + {"id":"D-12","cat":"D","question":"Does VIEW Plastic Surgery do a breast ultrasound or examination before augmentation?","stage":"decision"}, + {"id":"D-13","cat":"D","question":"Subbrow lift vs upper blepharoplasty: which should I get in Korea?","stage":"explore"}, + {"id":"D-14","cat":"D","question":"Mini lift vs full facelift in Korea: cost and recovery","stage":"explore"}, + {"id":"E-01","cat":"E","question":"How much does breast augmentation cost in Korea for foreigners in 2026?","stage":"explore"}, + {"id":"E-02","cat":"E","question":"V-line surgery cost in Korea 2026","stage":"explore"}, + {"id":"E-03","cat":"E","question":"How much does double jaw surgery cost in Seoul?","stage":"explore"}, + {"id":"E-04","cat":"E","question":"Is plastic surgery in Korea cheaper than in the US? How much can I save?","stage":"aware"}, + {"id":"E-05","cat":"E","question":"VIEW Plastic Surgery price list for international patients","stage":"decision"}, + {"id":"E-06","cat":"E","question":"What hidden costs should I expect for plastic surgery in Korea as a foreigner?","stage":"explore"}, + {"id":"E-07","cat":"E","question":"Can foreigners get a tax refund on plastic surgery in Korea?","stage":"explore"}, + {"id":"E-08","cat":"E","question":"Rhinoplasty cost in Gangnam for foreigners","stage":"explore"}, + {"id":"F-01","cat":"F","question":"Is plastic surgery in Korea safe for foreigners? What safety standards should I look for?","stage":"aware"}, + {"id":"F-02","cat":"F","question":"Does VIEW Plastic Surgery have anesthesiologists present during surgery?","stage":"decision"}, + {"id":"F-03","cat":"F","question":"What happens if I have complications after returning home from plastic surgery in Korea?","stage":"explore"}, + {"id":"F-04","cat":"F","question":"How do I verify a Korean plastic surgeon is board certified?","stage":"explore"}, + {"id":"F-05","cat":"F","question":"Are there red flags or complaints about VIEW Plastic Surgery Korea?","stage":"decision"}, + {"id":"F-06","cat":"F","question":"Which Korean plastic surgery clinics have a Motiva implant warranty?","stage":"compare"}, + {"id":"G-01","cat":"G","question":"Do Korean plastic surgery clinics offer remote follow-up after I go back to my country?","stage":"explore"}, + {"id":"G-02","cat":"G","question":"What aftercare does VIEW Plastic Surgery provide for international patients?","stage":"decision"}, + {"id":"G-03","cat":"G","question":"Where can I get post-surgery swelling care in Gangnam after surgery?","stage":"explore"}, + {"id":"G-04","cat":"G","question":"What is the Motiva implant warranty if I get surgery in Korea and live abroad?","stage":"explore"} +] diff --git a/docs/reports/viewclinic/05_global_en/score_en.py b/docs/reports/viewclinic/05_global_en/score_en.py new file mode 100644 index 0000000..6c7f5a2 --- /dev/null +++ b/docs/reports/viewclinic/05_global_en/score_en.py @@ -0,0 +1,39 @@ +import json,sys,os +sys.path.insert(0,'/Users/haewonkam/Claude/Agentic Marketing/INFINITH/scripts') +import score_discovery_json as sd +S=os.path.dirname(os.path.abspath(__file__)) +d=json.load(open(f'{S}/audit_en_auto.json')) +results={r['criterionId']:dict(r) for r in d['results']} +for cid,o in json.load(open(f'{S}/audit_en_overrides.json')).items(): + results.setdefault(cid,{'criterionId':cid}); results[cid]['level']=o['level']; results[cid]['evidence']='[사람 보정] '+o['evidence'] +extra=json.load(open(sys.argv[1])) if len(sys.argv)>1 else {} +for cid,o in extra.items(): + results.setdefault(cid,{'criterionId':cid}); results[cid]['level']=o['level']; results[cid]['evidence']='[사람 보정] '+o['evidence'] +out=sd.score(results,'VIEW EN') +# v2 human items +human={'AEO6':(3,''),'GEO1':(2,''),'GEO6':(3,''),'GEO7':(2,'')} +items,gates=sd.load_rubric_v2() +res={} +for axis in ('aeo','geo'): + ea=pa=0; det=[] + for it in items: + if it['axis']!=axis: continue + if it['id'] in human: + pct=human[it['id']][0]/3; basis='judged' + else: + sig=[(c,w,results[c]['level']) for c,w in it['derivedFrom'] if c in results and results[c]['level']!='unverified'] + if not sig: det.append((it['id'],it['name'],it['weight'],None,'unverified',[])); continue + ws=sum(w for _,w,_ in sig); pct=sum(w*int(l)/3 for _,w,l in sig)/ws; basis='derived' + sigs=[f"{c}={l}" for c,w,l in sig] + ea+=it['weight']*pct; pa+=it['weight'] + det.append((it['id'],it['name'],it['weight'],round(it['weight']*pct,1),basis,sigs if basis=='derived' else [])) + raw=round(ea/pa*100) + res[axis]={'score':raw,'grade':sd.grade(raw),'earned':round(ea,1),'possible':pa,'items':det} +out['aeo_h']=res['aeo']; out['geo_h']=res['geo'] +out['results']=results +print(f"v1 {out['v1']['score']}/{out['v1']['grade']} ({out['v1']['earned']}/{out['v1']['possible']}, verified {out['v1']['verified']}/36) cats {out['v1']['categories']}") +for ax in ('aeo','geo'): + r=res[ax]; print(f"{ax.upper()} {r['score']}/{r['grade']} ({r['earned']}/{r['possible']})") + for x in r['items']: print(' ',x) +print('gates',out['gates']) +json.dump(out,open(f'{S}/audit_en_scored.json','w'),ensure_ascii=False,indent=1) diff --git a/public/reports/viewclinic/global-en-2026-09-10.html b/public/reports/viewclinic/global-en-2026-09-10.html new file mode 100644 index 0000000..2f6c001 --- /dev/null +++ b/public/reports/viewclinic/global-en-2026-09-10.html @@ -0,0 +1,158 @@ + +뷰성형외과 영문 사이트 AEO · GEO 진단 보고서 2026-09-10 + + + + +
    +
    +
    INFINITH AI Discovery · Global Patient Edition
    +

    뷰성형외과 영문 사이트
    AEO · GEO 진단 보고서

    +

    외국인 환자 관점 질문 60문항 실측과 답변·출처 준비도 채점

    +
    진단일 2026-09-10대상 www.viewplasticsurgery.com (en-US · x-default)기준표 AEO/GEO v2.0 (v1.0 36항목 병행)답변엔진 Perplexity sonar · OpenAI gpt-4o web_search (뉴욕)문의 o2oteam@o2o.kr
    +
    + +

    01요약 판정

    +

    영문 사이트는 국문 사이트보다 답변·출처 준비도가 모두 높습니다(AEO 65 · GEO 72, 둘 다 B). 외국인이 병원 이름을 알고 묻는 질문에는 두 엔진 모두 100% 답하지만, 병원을 모르는 상태의 시술·가격 질문에서는 언급률이 0~21%에 그칩니다. 원인은 콘텐츠 부족이 아니라 인용된 문단에 상호가 없어서입니다.

    +
    AEO 답변 준비도
    65B
    영문 사이트가 외국인 질문에 답하는 정도 · 100점
    GEO 출처 준비도
    72B
    AI가 영문 사이트를 출처로 쓸 수 있는 정도 · 100점
    v1.0 종합 (참고)
    64B
    36항목 중 검증 31개 · 국문 사이트 54/C
    Perplexity 언급률
    50%
    60문항 중 30 · 자사 사이트 인용 63%
    OpenAI 웹검색 언급률
    45%
    60문항 중 27 · 자사 사이트 인용 30%
    +

    1이름을 알면 100%, 모르면 0~21%

    브랜드(A)·이동·체류(B) 질문군은 두 엔진 모두 뷰성형외과를 1순위로 답하고 viewplasticsurgery.com을 직접 인용합니다. 반면 시술 정보(D)는 Perplexity 14% · OpenAI 21%, 가격(E)은 두 엔진 모두 0%입니다. 외국인 환자 여정에서 가장 긴 구간이 비어 있습니다.

    2인용은 되는데 이름이 안 나오는 문항 8개

    Perplexity는 가격 질문(E-01 가슴성형 비용, E-02 V-line 비용)과 시술 질문(D-01·D-04·D-05·D-10)에서 뷰 블로그·시술 페이지를 출처로 썼지만 답변에 'VIEW'가 한 번도 등장하지 않았습니다. 인용된 문단이 'The cost of V-line surgery in Seoul ranges…'처럼 상호 없이 쓰여 있어 AI가 수치만 가져가고 병원 이름은 남기지 않습니다.

    3추천 질문의 경쟁 구도: JK · ID · Banobagi

    'Best plastic surgery clinic in Seoul for foreigners' 류 추천 질문(C)에서 뷰는 Perplexity 9/12, OpenAI 6/12에 등장했지만 1순위는 드뭅니다. JK Plastic Surgery(KAHF 인증 4회 연속), ID Hospital, Banobagi가 상위를 차지하고, 그 근거는 유치 에이전시·중개 플랫폼의 영문 가이드 글입니다.

    4AI가 근거로 쓰는 표면은 Reddit · Bookimed · 에이전시 가이드

    두 엔진 합산 인용 도메인 1위는 viewplasticsurgery.com(54문항), 2위는 reddit.com(49문항)입니다. 그다음이 us-uk.bookimed.com · clinicsoncall.com · koreaclinicguide.com · clinicseoul.net · unni.app 같은 중개·가이드 표면입니다. 강남언니 국문 페이지는 60문항 어디에도 인용되지 않았습니다.

    5엔티티 스키마 0, hreflang은 리다이렉트 URL

    홈 JSON-LD가 병원을 Person 타입으로 선언하고 MedicalClinic·Physician 스키마와 sameAs가 없습니다(GEO4 6.3/15). 10개 언어 hreflang은 갖췄지만 8개 언어 서브도메인이 경로 URL로 301 하고, origin.·olden. 서브도메인이 전체 사이트를 색인 가능 상태로 서빙해 AI 인용 URL이 분산됩니다.

    6부정 답변 1건: 공정위 후기 광고 시정명령

    'Are there red flags about VIEW Plastic Surgery'(F-05) 질문에 Perplexity는 국문 사이트 후기 광고에 대한 2026-07 공정위 시정명령을 첫 문장으로 답했습니다. 영문 Real Review 섹션도 같은 구조(대가 고지 없음)라 GEO7 발행 투명성 항목의 감점 요인입니다.

    +
    먼저 할 일 5가지
    +
    1. 1시술 페이지·블로그 가격 가이드의 첫 문단과 표 캡션에 'At VIEW Plastic Surgery in Gangnam, Seoul' 형태로 상호·지역을 넣습니다. 인용은 되는데 이름이 안 나오는 8문항이 바로 대상입니다.
    2. 2MedicalClinic + Physician JSON-LD를 추가하고 Person 타입을 Organization/MedicalClinic으로 바꾸며 sameAs에 Instagram·TikTok·YouTube·Google 프로필·Bookimed·RealSelf·unni.app을 연결합니다.
    3. 3시술 페이지 상단에 결정 정보 블록(USD 가격대 · 수술 시간 · 입원 · 권장 체류일 · 귀국 가능일)을 표로 두고 블로그 가격 가이드와 상호 링크합니다. 가격(E)·시술(D) 질문군 0~21%의 직접 대응입니다.
    4. 4FAQ 402문항에 FAQPage 스키마를 붙이고 카테고리별 URL로 나눕니다. 전 페이지 동일 H1('korea plastic surgery')을 페이지별 서술형 H1으로 교체합니다.
    5. 5origin.·olden. 서브도메인을 www로 301 하고 언어 서브도메인 hreflang을 최종 URL로 통일합니다. 후기·전후 섹션에 대가 제공 여부와 개인차 고지를 넣어 정보 페이지와 분리합니다.
    + +

    02진단 범위와 방법

    +

    국문 사이트 진단(2026-08-31 · 09-07)과 같은 기준표를 영문 사이트와 외국인 질문에 적용했습니다.

    +
    진단 대상https://www.viewplasticsurgery.com (en-US, x-default). 홈 · About · 의료진 · 컨시어지 · 오시는길 · 안전 · 수상 · FAQ · 가슴(Motiva) · 코 · 윤곽 · 블로그 목록 · 블로그 글 1건 등 13개 페이지를 JS 미실행 HTML로 수집
    자동 채점scripts/audit_aeo_geo.py (기준표 v1.0 36항목 중 자동 20항목). AI 봇 12종 UA 접근, sitemap, JSON-LD, hreflang, H1/H2, FAQ, 표, alt, TTFB 실측
    사람 판정C1 정의문 · C4 수치 · C7 전문성 · C8 자기완결성 · B4/B7 · D1~D4 · E4 · F2 (10항목) + v2.0 사람 판정 4항목(AEO6 · GEO1 · GEO6 · GEO7). 근거는 각 표에 기재
    질문 뱅크외국인 환자 관점 영문 60문항 · 7군 (브랜드 8 · 이동·체류 8 · 추천·비교 12 · 시술 14 · 가격 8 · 안전·신뢰 6 · 사후관리 4). 국문 120문항 뱅크와 같은 퍼널 구조
    답변엔진Perplexity API sonar (자체 웹검색) · OpenAI Responses API gpt-4o + web_search (사용자 위치 미국 뉴욕). 소비자 ChatGPT UI 자동 조회는 약관 위반이라 쓰지 않음. 각 문항 1회 질의, 2026-09-10
    후처리답변에서 병원명 최대 8개를 등장 순서로 추출(gpt-4o-mini). VIEW Plastic Surgery · View Clinic · VIEW Seoul 등 표기 변형을 같은 병원으로 정규화. 감성은 긍정·중립·부정 1차 분류
    점수 산식v2.0: 항목 점수 = 파생 신호(v1.0 레벨 0~3) 가중 평균 × 배점, 사람 판정 우선, 미검증은 분모 제외. 게이트 실패 시 상한 40. 등급 A 81+ · B 61–80 · C 41–60 · D 40 이하
    +

    이번 측정의 한계

    • 질의는 문항당 1회입니다. 답변엔진은 같은 질문에도 매번 다른 병원을 고를 수 있어 5회 반복 평균이 정식 기준선입니다.
    • OpenAI gpt-4o는 60문항 중 23문항에서 웹검색을 실행하지 않고 모델 기억으로 답했습니다(시술·가격 일반 질문 대부분). 이 문항의 미언급은 사이트 문제가 아니라 모델 기억에 뷰가 없다는 뜻입니다.
    • Google 비즈니스 프로필은 2026-08-31 실측값(4.9점 · 리뷰 901건)을 인용했습니다. 이번에는 Places API 키가 없어 재실측하지 못했습니다.
    • Bing 색인(A6), 서버 로그(E1), GA4(E2), GSC(E3)는 소유자 계정이 필요해 미검증입니다.
    • 감성 분류는 후처리 모델의 1차 판정이며 감성 기준표 v0.3의 사람 검토 전 값입니다.
    + +

    03외국인 질의 실측 결과

    +

    Perplexity는 60문항 중 30문항(50%), OpenAI 웹검색은 27문항(45%)에서 뷰성형외과를 언급했습니다. 국문 120문항 실측(2026-09-01, Perplexity 32% · OpenAI 37%)보다 높지만, 상승분은 전부 병원 이름이 들어간 질문에서 나왔습니다.

    +

    3.1 질문군별 언급률

    +

    셀 값은 순서대로 뷰성형외과 언급 비율, 답변에서 첫 번째로 등장한 비율, 답변이 viewplasticsurgery.com 페이지를 인용한 비율입니다.

    +
    질문군문항Perplexity
    언급 / 1순위 / 자사 인용
    OpenAI 웹검색
    언급 / 1순위 / 자사 인용
    해석
    A 브랜드 직접 질문Brand8100% / 87% / 100%100% / 100% / 100%두 엔진 모두 전 문항 1순위. 자사 사이트·에이전시 블로그·정부 의료관광 페이지가 근거
    B 이동·체류·운영Travel & logistics875% / 62% / 75%75% / 62% / 62%공항 픽업·숙박·WhatsApp 상담은 컨시어지 페이지가 직접 인용됨. 미언급 2문항은 비자·체류기간 일반 질문
    C 추천·비교Recommendation & comparison1275% / 33% / 91%50% / 8% / 8%Perplexity는 9/12 언급하나 1순위는 4건. OpenAI는 절반. JK·ID·Banobagi가 상위, 근거는 제3자 가이드 글
    D 시술 정보Procedure info1414% / 14% / 42%21% / 14% / 21%병원 이름이 들어간 D-11·D-12만 언급. 나머지 12문항은 뷰 페이지가 인용돼도 이름이 안 나옴
    E 가격Pricing80% / 0% / 25%0% / 0% / 0%두 엔진 모두 0. Perplexity는 뷰 블로그 가격 가이드를 2문항에서 인용했으나 상호 없이 수치만 사용. OpenAI는 가격 질문 대부분을 검색 없이 답변
    F 안전·신뢰Safety & trust650% / 33% / 50%33% / 33% / 0%마취과 전문의(F-02)·보증(F-06)은 언급. 안전 일반론(F-01·F-03·F-04)은 미언급. F-05는 공정위 시정명령이 첫 문장
    G 사후관리·원격 팔로업Aftercare & remote follow-up450% / 25% / 50%50% / 25% / 25%병원 이름이 있는 G-02·G-04만 언급. 원격 팔로업 일반 질문(G-01)에서 Perplexity 4순위
    합계6050% / 35% / 63%45% / 31% / 30%
    +

    3.2 답변에 등장한 병원

    +

    두 엔진을 합쳐 뷰성형외과는 57문항에서 언급됐고 그중 40문항이 1순위입니다. 그러나 1순위는 대부분 브랜드·체류 질문입니다. 병원을 고르는 추천·비교 질문에서는 JK Plastic Surgery, ID Hospital, Banobagi, AB Plastic Surgery, SAERO가 반복 등장합니다.

    +
    #병원 (AI 답변 표기)PerplexityOpenAI합계1순위 등장
    1VIEW Plastic Surgery28275539
    2ID Hospital74113
    3JK Plastic Surgery7184
    4AB Plastic Surgery2462
    5Banobagi Plastic Surgery2350
    6SAERO Plastic Surgery3251
    7JK Plastic Surgery Center2352
    8DA Plastic Surgery3250
    9Ryan Plastic Surgery1341
    10Girin Plastic Surgery1230
    11VG Plastic Surgery3031
    12Verygood Plastic Surgery2130
    +

    3.3 AI가 근거로 쓴 표면

    +

    인용 도메인은 세 층으로 나뉩니다. 자사 사이트(viewplasticsurgery.com 54문항), 커뮤니티(reddit.com 49문항), 그리고 중개·가이드 표면(Bookimed · clinicsoncall · koreaclinicguide · clinicseoul.net · unni.app · khunkim.com)입니다. 강남언니 국문 페이지와 네이버는 한 번도 인용되지 않았습니다. 외국인 대상 GEO는 이 세 층에 원문을 두는 일입니다.

    +
    #인용 도메인PerplexityOpenAI합계 (문항 수)뷰 언급 답변에서표면 유형
    1viewplasticsurgery.com38165446자사 사이트
    2reddit.com33164927커뮤니티
    3us-uk.bookimed.com2843215리뷰·중개 플랫폼
    4clinicsoncall.com2612716타 병원·에이전시·블로그
    5koreaclinicguide.com201216타 병원·에이전시·블로그
    6clinicseoul.net174214정부·관광
    7english.visitkorea.or.kr1251714정부·관광
    8khunkim.com1331614타 병원·에이전시·블로그
    9realself.com1151610리뷰·중개 플랫폼
    10unni.app1401413
    11placidway.com140144타 병원·에이전시·블로그
    12vippskorea.com130137타 병원·에이전시·블로그
    13seoulmedicalinsider.com94132정부·관광
    14abplasticsurgerykorea.com120126타 병원·에이전시·블로그
    15koreaexperience.com101114타 병원·에이전시·블로그
    16my1health.com91105타 병원·에이전시·블로그
    17gangnambeautyguide.com46104타 병원·에이전시·블로그
    18misooda.com46102타 병원·에이전시·블로그
    +

    인용된 자사 페이지

    +
    인용된 자사 페이지PerplexityOpenAI합계
    /741892
    /consultation/14216
    /introduction/doctors/10313
    /article-news/view-plastic-surgery-selected-asexcellent-institution-for-gangnam/12012
    /breast/index.html6612
    /breast/breast-reduction.html2911
    /Introduction/concierge-services.html459
    /Introduction/working-hours-direction.html808
    /introduction/direction/808
    /real-reviews/maintaining-excellence-a-glowing-review-of-view-plastic-surgerys-services/808
    /safe-system/safety-first.html808
    /Introduction/medical-staff-detail.html437
    +

    3.4 답변 감성

    +

    Perplexity

    21 긍정 · 8 중립 · 1 부정

    뷰 언급 30문항 기준

    OpenAI 웹검색

    21 긍정 · 5 중립 · 1 부정

    뷰 언급 27문항 기준

    판정 기준

    답변이 뷰성형외과를 어떻게 규정하는지를 후처리 모델이 긍정·중립·부정으로 분류. 감성 기준표 v0.3의 1차 근사치이며 사람 검토 전 값

    +

    3.5 답변 사례

    +
    E-02 V-line surgery cost in Korea 2026 Perplexity X

    For **2026**, a **V-line surgery in Korea** is typically quoted at about **US$7,000–12,000** for a standard full V-line package, with broader market ranges commonly running from **US$5,000–15,000+** depending on the scope and clinic. A few useful breakdowns from the results: - **Standard full V-line (jaw + chin)**: about **US$7,000–12,000** or **₩9.9M–15.5M**. - **Mid-range clinic estimate**: around **US$8,500–11,000…

    인용: abplasticsurgerykorea.com, askgangnam.com, clinicseoul.net, docfinderkorea.com, dojagi-clinic.com
    C-01 Best plastic surgery clinic in Seoul for foreigners Perplexity O

    If you want the **best plastic surgery clinic in Seoul for foreigners**, the strongest names in the results are **JK Plastic Surgery**, **ID Hospital**, and **Banobagi Plastic Surgery**, with JK standing out most clearly for **safety** and **VIP/international-patient services**. What the results support: - **JK Plastic Surgery**: highlighted by a 2026 foreign-patient guide as a top-tier option for international patie…

    인용: 10mag.com, abplasticsurgerykorea.com, english.visitkorea.or.kr, expatguidekorea.com, gangnamwomenshealth.com
    C-02 Best breast augmentation clinic in Korea for international patients OpenAI 웹검색 X

    Here’s a carefully curated guide to some of the best breast augmentation clinics in South Korea, particularly Seoul, that are well-suited for international patients. All options have strong credentials, language support, and positive feedback from overseas clients. Where available, I’ve included accreditation and specialization details to help you decide with confidence. --- ## Top-Rated Clinics for International Pat…

    인용: clinicrankingkorea.com, kclinichelp.com, medicaldepartures.com, medicaltravelkorea.com, my1health.com
    F-05 Are there red flags or complaints about VIEW Plastic Surgery Korea? Perplexity O

    There is at least one **documented regulatory complaint** about VIEW Plastic Surgery: South Korea’s Fair Trade Commission sanctioned the clinic for posting advertisements disguised as genuine customer reviews, and ordered it to publish a notice acknowledging the violation. Beyond that, the results I found do **not** show a verified pattern of medical negligence or accidents at the clinic. One clinic directory claims …

    인용: canvassresearch.com, clinicsoncall.com, cyl.co.kr, gangnamclinicindex.com, gangnamskinclinicreberry.com
    D-11 What does VIEW Plastic Surgery's breast surgery process look like from consultation to aftercare? OpenAI 웹검색 O

    Here’s a detailed breakdown of VIEW Plastic Surgery’s breast surgery process, from consultation through aftercare, based on their official materials: **1. In-Depth Consultation** - The process begins with a tailored, one-on-one consultation. VIEW Plastic Surgery examines your body proportions, current breast size, and overall chest structure, ensuring that the surgical plan aligns with your unique anatomy and aesthet…

    인용: id.viewplasticsurgery.com, viewplasticsurgery.com
    E-05 VIEW Plastic Surgery price list for international patients OpenAI 웹검색 X

    I can't access specific pricing lists for plastic surgery, as these can vary widely depending on the clinic, country, and type of surgery. However, I recommend checking the websites of the clinics or hospitals you're interested in, as they often provide detailed information for international patients. Additionally, contacting them directly can give you the most accurate and up-to-date pricing information.…

    인용:
    + +

    04AEO 답변 준비도 65 · B

    +

    고객의 질문에 얼마나 명확하고 충분하게 답하는가. 8항목 100점.

    +
    항목배점점수근거 신호판정 근거 (2026-09-10 실측)
    AEO1 질문 수요 충족질문 뱅크 대비 답이 있는 문항 비율. 자동 신호는 FAQ 섹션·FAQPage 스키마2013.3 (66%)C2=2FAQ 페이지에 402문항이 서버 렌더링(카테고리 11개). 시술 페이지 하단에도 FAQ 5문항. FAQPage 스키마는 블로그 글에만 있고 FAQ 페이지에는 없음. 질문 뱅크 대비 A·B군은 사이트가 직접 답하고, D·E군 답은 블로그에 있으나 상호가 없음
    AEO2 답변의 직접성핵심 페이지 첫 200자에 [상호+지역+전문분야] 정의문 또는 직접 답 존재206.7 (34%)C1=1정의문이 About 메타 설명에만 있음('Founded in 2005, VIEW is a premier 19-story medical center in Gangnam, Seoul'). 본문 첫 단락은 슬로건, 시술 페이지 첫 텍스트는 'Let Me In Season 2/3/4/5 Selected Doctors' 홍보 라벨, 홈 첫 200자는 검색창·메뉴
    AEO3 답변 단위의 자기완결성핵심 페이지 단락 샘플 중 상호·시술명이 포함된 비율1510 (67%)C8=25개 핵심 페이지 단락 샘플 50개 중 상호 또는 시술명 포함 26개(52%). 상호 'VIEW' 포함은 7개(14%). FAQ 답변과 블로그 가격 문단은 시술명만 있고 상호가 없어 인용돼도 병원 이름이 남지 않음(실측 8문항)
    AEO4 의사결정에 필요한 정보시술 페이지의 가격·시간·회복 수치 밀도와 표·비교 구조159 (60%)C4=1, C5=3시술 페이지 본문에 가격·수술시간·회복기간 0회. 수치는 Motiva 보증(재수술 지원 300만원/개)뿐. HTML 표는 10개 존재. 블로그에는 USD 가격표(V-line $7,000–12,000)와 체류 권장일(10–14일)이 있으나 시술 페이지와 연결되지 않음
    AEO5 정보 구조와 가독성H1 1개·서술형, H2 논리 계층106.7 (67%)C3=2전 페이지 H1이 동일하게 'korea plastic surgery'(키워드 라벨). 페이지 고유 제목은 H2·H3. H2 'What would you like to know today?'(검색창)가 모든 페이지에 반복
    AEO6 다음 행동의 명확성예약·전화·위치가 본문 텍스트로 연결되는지 (사람 판정)1010 (100%)사람 판정전 페이지 푸터에 전화 +82-2-539-1177 · 이메일 eng_viewps@viewclinic.com · 주소 · 진료시간이 텍스트로 반복. Quick Consultation 폼에 WhatsApp · LINE · KakaoTalk · Viber 선택지와 국가번호 입력. Google Map · Naver Map 링크. 전화·예약·방문 3경로 충족
    AEO7 핵심 답변의 텍스트 추출JS 미실행 HTML 본문 비율 + 이미지 alt55 (100%)A3=3, F1=3JS 미실행 HTML 본문 79,646자 서버 렌더링. 메인 이미지 500개 alt 누락 0%
    AEO8 사이트 내 답변 발견sitemap 선언·lastmod + canonical 정합54.3 (86%)A5=3, B6=2sitemap index 10개 · URL 482개 · lastmod 2026-09-09. canonical self 지정. 다만 origin.·olden. 서브도메인이 전체 사이트를 200·index로 서빙(canonical은 www 지정)해 AI 답변이 origin.·olden. URL을 인용함
    +
    AEO 65점의 감점은 AEO2 답변의 직접성(6.7/20)과 AEO4 의사결정 정보(9/15)에 집중됩니다. 정의문이 메타 설명에만 있고 본문은 슬로건으로 시작하며, 시술 페이지에 가격·시간·회복 수치가 없습니다. 이 두 항목이 그대로 시술(D)·가격(E) 질문군의 0~21%로 나타납니다.
    + +

    05GEO 출처 준비도 72 · B

    +

    그 답을 얼마나 검증하고 신뢰할 수 있는 출처로 사용할 수 있는가. 8항목 100점.

    +
    항목배점점수근거 신호판정 근거 (2026-09-10 실측)
    GEO1 주장과 근거의 일치주장 문장에 출처·조건·시점이 붙은 비율 (사람 판정)2013.3 (66%)사람 판정'No.1 Motiva 사용량(2023, Motiva Korea 수술량 기준)' · 'Global KOL 2023–2026' · '법무부 우수 유치기관 2018–2026' 처럼 집계 주체·연도가 붙은 주장이 다수. 그러나 페이지 제목의 'Best Plastic Surgery in Korea' · 'No.1 Trusted Clinic'은 근거 없음. 가슴 페이지 메타 설명은 'No.1 Motiva usage in 2013', 본문은 2023으로 불일치. 안전 페이지의 '마취과 전문의 상시'는 인원 수 없음(의료진 페이지에는 6명 명시)
    GEO2 출처의 적합성과 추적성http/www 변형의 301 정본 수렴, URL 안정성1515 (100%)A4=3
    GEO3 전문성과 책임 주체전문가 자격·경력 텍스트 + Physician 스키마159 (60%)C7=3, B3=0
    GEO4 병원 엔티티와 사실의 정합성업종 스키마·사이트 내 NAP·sameAs·버티컬·GBP·표면 간 NAP·Wikidata156.3 (42%)B2=0, B4=2, B5=0, D1=2, D2=2, D4=2, D6=0
    GEO5 사실의 최신성과 정정dateModified·sitemap lastmod·본문 갱신일106.7 (67%)C6=2
    GEO6 원천 대비 추가 가치타 사이트에 없는 병원 고유 정보 유형 수 (사람 판정)1010 (100%)사람 판정컨시어지 10항목(10개 언어 통역 무료 · 공항 픽업 · 원내 숙박 · 도보 10분 제휴 호텔 · T-money 제공 · 귀국 후 원격 경과 관찰), 층별 안내(B1 검진센터~15F 치과), 공항 리무진 노선·정류장 번호, 블로그 USD 가격표, FAQ 402건, Motiva 보증 조건(5년 재수술 지원 300만원/개, 10년 교체). 원천 유형 5개 이상
    GEO7 발행 관계와 투명성운영 주체·연락처·이해관계 고지, 정보와 광고의 구분 (사람 판정)106.7 (67%)사람 판정푸터에 상호 · 대표(Choi Soon Woo) · 사업자번호 220-08-86777 표기. 전 페이지에 부작용 고지문. 다만 시술 페이지 안에 Before & After · Real Review · 'Let Me In' 출연 홍보가 정보와 구분 없이 섞여 있고, 후기의 대가 지급 여부 고지가 없다. 국문 사이트 후기 광고는 2026-07-12 공정위 시정명령을 받았고 영문 Real Review 섹션도 같은 방식이다
    GEO8 인용 식별자와 메타데이터 정합성ld+json 전 블록 파싱 + 화면과 메타 일치55 (100%)B1=3
    +
    GEO 72점의 감점은 GEO4 엔티티 정합성(6.3/15)과 GEO3 전문성 스키마(9/15)입니다. 의료진 자격·논문은 텍스트로 충분하지만 Physician 스키마가 없고, 병원 자체가 Person 타입으로 선언돼 있습니다. GEO7 투명성(6.7/10)은 후기·전후 섹션의 대가 고지 부재가 원인이며 F-05 답변에서 실제 감점으로 확인됩니다.
    + +

    06게이트와 부가 지표

    +

    게이트 G1(AI 크롤러 접근) · G2(본문 렌더링) 모두 통과. 상한 적용 없음.

    +
    지표레벨실측
    A6 Bing 색인 (ChatGPT 검색 경로)미검증Bing 검색 결과 페이지가 스크립트 렌더링이라 curl로 확인 불가. Bing Webmaster Tools 등록 여부는 소유자 확인 필요
    A7 응답 속도·크롤 예산2TTFB 0.87s · 초기 HTML 587KB · 시술 페이지 212KB. 속도 양호, HTML 비대
    B7 다국어 hreflang210개 언어(en-US · zh-CN · th · ja · vi · ru · id · mn · es · ar) 양방향 선언. th·jp·vn·ru·id·mn·es·ar 8개 서브도메인은 viewplasticsurgery.com/{lang}/ 로 301. cn은 en-US 대신 en 선언
    D3 오픈웹 언급 (해외)2에이전시 블로그(khunkim · clinicsoncall · curemeabroad · kmhglobal), 정부 표면(visitkorea · 강남구 의료관광), Reddit · Purseblog 포럼, LinkedIn에 분산. 영어권 주요 언론 기사·Wikipedia 없음
    D5 네이버 플레이스미검증외국인 질의 60문항에서 네이버 표면 인용 0건. 외국인 관점에서는 채점 대상 아님
    E1 AI 크롤러 로그미검증서버 로그 접근 필요. Perplexity가 60문항 중 38문항에서 자사 URL을 인용했으므로 PerplexityBot 히트는 존재할 것으로 추정
    E2 GA4 AI 유입 채널미검증GA4 접근 필요. chatgpt.com · perplexity.ai · copilot 리퍼러 채널 그룹 설정 여부 미확인
    E3 GSC AI Overviews미검증GSC 접근 필요
    E4 기준선 스팟체크260문항 × 2엔진 × 1회 실측 완료(이 보고서). 5회 반복 미실시
    F2 CMS 보안·최신성2WordPress 7.1(최신 계열). meta generator로 버전 노출
    F3 페이지 무게2초기 HTML 587KB(300~800KB 구간)
    F4 모바일 대응2viewport 존재 · 반응형. Core Web Vitals 미측정
    + +

    07국문 사이트와의 비교

    +

    같은 병원의 두 사이트를 같은 기준표로 채점했습니다. 영문 사이트가 세 점수 모두 한 등급 높고, 질문 뱅크 언급률도 13~18%p 높습니다. 차이는 콘텐츠 양(FAQ 402건 · 블로그 주 1회 이상 발행 · 의료진 논문 목록)에서 나왔고, 남은 감점 원인(정의문 · 수치 · 스키마 · 상호 없는 문단)은 두 사이트가 같습니다.

    +
    +
    v1.0 종합
    54 64
    국문 C → 영문 B
    +
    AEO 답변 준비도
    42 65
    국문 C → 영문 B
    +
    GEO 출처 준비도
    56 72
    국문 C → 영문 B
    +
    +
    항목국문 사이트 (viewclinic.com)영문 사이트 (viewplasticsurgery.com)차이
    v1.0 종합54 / C (검증 32/36)64 / B (검증 31/36)+10
    AEO 답변 준비도42 / C65 / B+23
    GEO 출처 준비도56 / C72 / B+16
    질문 뱅크 언급률120문항 · Perplexity 32% · OpenAI 37% (09-01)60문항 · Perplexity 50% · OpenAI 45% (09-10)+18p / +8p
    C1 정의문없음 (0)메타 설명에만 (1)본문 정의문은 둘 다 없음
    C2 FAQ재검증 후 2FAQ 페이지 402문항 · 시술별 5문항 (2)영문이 양은 많으나 FAQPage 스키마는 블로그에만
    C3 H1'VIEW SELFIE' 등 영문 라벨 (0)전 페이지 동일 'korea plastic surgery' (2)둘 다 페이지별 서술형 H1 없음
    C4 · C5 수치와 표C4=2 · C5=0C4=1 · C5=3영문은 수치가 블로그에, 표는 시술 페이지에 따로 있음
    C6 신선도블로그 2024-05-31 이후 정지 (재검증 후 3)블로그 2026-09-09 발행 · sitemap lastmod 당일 (2)영문은 갱신 활발, dateModified 마크업은 둘 다 없음
    C7 전문성2학위 · 전문의 · 학회 · 논문 목록 텍스트 (3)영문 의료진 상세가 더 충실
    B2 · B3 스키마B2=1 · B3=0B2=0 · B3=0 (Person 타입 오선언)둘 다 MedicalClinic · Physician 없음
    B7 hreflang없음10개 언어 (2)영문만 다국어 연결, 대상 URL 정리 필요
    GEO7 투명성3.3 / 10 (공정위 시정명령)6.7 / 10영문 Real Review도 대가 고지 없음, F-05 답변에 노출
    + +

    08개선 로드맵

    +

    우선순위는 실측에서 확인된 감점 순서입니다. 즉시 조치는 개발 작업 없이 텍스트·스키마 수정으로 끝나고, 30일 조치는 시술 페이지 콘텐츠 블록, 90일 조치는 외부 표면과 측정 인프라입니다.

    +

    즉시 (0–2주) · 텍스트와 스키마

    #조치대상 항목·질문군기대 효과
    1시술 페이지·블로그 가격 가이드의 첫 문단과 표 캡션에 'At VIEW Plastic Surgery in Gangnam, Seoul, …' 형태로 상호·지역 삽입. FAQ 답변 첫 문장에도 'At VIEW' 추가AEO3 · C8 / D·E군 8문항인용은 되는데 이름이 안 나오는 8문항이 언급으로 전환. 답변 단위 자기완결성 52% → 80%
    2JSON-LD: Person → MedicalClinic(+Organization)으로 교체, name · address · telephone · openingHours · medicalSpecialty · availableLanguage(10개) 기재. 의료진 26명 Physician 스키마(자격 · 소속 · sameAs)GEO3 · GEO4 / B2 · B3 · B5엔티티 정합성 6.3 → 12/15. 의료진 질문(A-04 · A-05 · F-02) 근거가 스키마로 확정
    3sameAs 채우기: Instagram · TikTok · YouTube · Facebook · Google 비즈니스 프로필 · Bookimed · RealSelf · unni.app · LinkedInGEO4 / B5AI가 표면 간 동일 병원임을 확인. Reddit · Bookimed 인용이 뷰 엔티티로 연결
    4FAQ 페이지 402문항에 FAQPage 스키마 부여, 카테고리별 URL(/faq/breast/ 등 11개)로 분할AEO1 / C2질문 수요 충족 13.3 → 20/20. 시술 질문(D) 인용 페이지 확보
    5H1을 페이지별 서술형으로 교체('Motiva Breast Augmentation in Seoul at VIEW Plastic Surgery'). 검색창 H2 제거AEO5 / C3제목 계층 6.7 → 10/10
    6origin.·olden. 서브도메인 → www 301. 언어 서브도메인 8개의 hreflang을 최종 URL(/th/ 등)로 통일, cn hreflang en-US로 정정AEO8 · B7인용 URL 분산 해소, 다국어 신호 정합
    7메타 설명 오류 정정: 가슴 페이지 'No.1 Motiva usage in 2013' → 2023. 제목의 'Best' · 'No.1 Trusted' 표현은 근거 있는 표현으로 교체GEO1주장·근거 일치 13.3 → 16/20

    30일 · 시술 페이지 결정 정보

    #조치대상 항목·질문군기대 효과
    1시술 페이지 상단에 정의문 + 결정 정보 블록: USD 가격대 · 수술 시간 · 마취 · 입원 · 권장 체류일 · 귀국 가능일 · 실밥 제거일을 표로. 부위별 8개 시술군 우선AEO2 · AEO4 / C1 · C4 / D·E군시술(D) 14~21% · 가격(E) 0% 구간의 직접 대응. 답변 직접성 6.7 → 16/20
    2블로그 가격 가이드(가슴 · V-line · 코 · 양악 · 눈)와 시술 페이지 상호 링크. 표는 시술 페이지에 요약 이식AEO4 / C4 · C5의사결정 정보 9 → 13/15
    3'귀국 후 합병증 대응 · 원격 팔로업' 전용 페이지: 절차 · 연락 채널 · 응답 시간 · 현지 협력 · Motiva 보증 청구 방법F-03 · G-01 · G-04안전(F) · 사후관리(G) 질문군에서 인용 원문 확보
    4수상·인증 페이지에 주최 · 연도 · 원문 링크 명시(법무부 우수 유치기관 2018–2026, Motiva KOL, 서울시 표창)GEO1 / C-10정부 인증 질문(C-10)에서 1순위 유지, 주장 근거 일치 향상
    5후기 · 전후 · 'Let Me In' 홍보를 정보 페이지와 분리. 후기에 대가 제공 여부 · 개인차 고지 첫 부분에 표기GEO7F-05 부정 답변의 맥락 제공. 발행 투명성 6.7 → 10/10
    6dateModified · author · reviewedBy를 시술 페이지와 블로그 글에 마크업. 의료진 검토 표기GEO5 · GEO8최신성 6.7 → 10/10

    90일 · 외부 표면과 측정

    #조치대상 항목·질문군기대 효과
    1Google 비즈니스 프로필: 전화번호 등록, 영문 리뷰 응답, 컨시어지 서비스 속성 기재D2 · D4위치·연락처 질문(B) 오답 위험 제거
    2Bookimed · RealSelf · unni.app 프로필 갱신(의료진 · 시술 · 가격대 · 언어). Reddit r/PlasticSurgery · r/korea 질문에 공식 계정으로 사실 답변D1 · D3reddit.com 49문항 · Bookimed 32문항 인용 표면에 뷰 원문 배치. 추천 질문(C) 1순위 비율 상승
    3Bing Webmaster Tools 등록 + IndexNow. GSC · GA4 AI 유입 채널 그룹 설정, 서버 로그 AI 크롤러 IP 검증A6 · E1 · E2 · E3ChatGPT 검색 경로 확보, 소유 신호로 월간 측정
    460문항 × 2엔진 × 5회 반복 월간 재실측. 질문 뱅크에 일본어 · 중국어 · 태국어 각 60문항 추가(hreflang 언어 순)E4개선 전후 비교 기준선. 언어별 언급률 관리
    + +

    09측정 계획과 KPI

    +

    개선 전후를 같은 60문항 · 같은 두 엔진으로 월 1회 재실측합니다.

    +
    지표현재 (2026-09-10)90일 목표측정 방법
    60문항 언급률Perplexity 50% · OpenAI 45%Perplexity 65% · OpenAI 60%월 1회 60문항 × 2엔진 × 5회 반복
    시술(D) · 가격(E) 언급률D 14~21% · E 0%D 40% · E 30%같은 실측의 질문군별 집계
    인용됐지만 미언급 문항Perplexity 8문항0문항자사 URL 인용 여부와 상호 등장 여부 교차 집계
    자사 사이트 인용률Perplexity 63% · OpenAI 30%Perplexity 75% · OpenAI 45%인용 URL 도메인 집계
    추천 질문(C) 1순위Perplexity 4/12 · OpenAI 1/12각 6/12질문군 C 순위 집계
    AEO · GEO 점수65 · 72 (B · B)80 · 85 (A 진입)기준표 v2.0 재채점
    AI 크롤러 히트미측정월간 기준선 확보서버 로그 UA + IP 역검증
    부정 답변1문항 (F-05 공정위)정정 고지 페이지가 함께 인용감성 기준표 v0.3 사람 검토
    + +

    A부록 A · 60문항 실측표

    +

    O = 뷰성형외과 언급, 숫자 = 답변 내 등장 순위. 감성은 후처리 모델 1차 분류.

    +
    #질문 (영문 원문)단계Perplexity
    언급·순위·감성
    OpenAI
    언급·순위·감성
    답변 내 상위 병원 (Perplexity → OpenAI)
    A 브랜드 직접 질문 · Brand
    A-01Is VIEW Plastic Surgery in Seoul legit? Is it a trustworthy clinic for foreigners?결정O 1 중립O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    A-02Tell me about VIEW Plastic Surgery in Gangnam, Korea. What are they known for?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    A-03What procedures does VIEW Plastic Surgery Korea specialize in?결정O 1 O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    A-04Who is Dr. Choi Soon Woo of VIEW Plastic Surgery? Is he board certified?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    A-05How many surgeons does VIEW Plastic Surgery have and are they all board-certified plastic surgeons?결정O 1 중립O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    A-06Does VIEW Plastic Surgery have English-speaking staff or interpreters?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    A-07How long has VIEW Plastic Surgery been operating and how big is the clinic?결정O 1 긍정O 1 중립(뷰 외 없음) → (뷰 외 없음)
    A-08VIEW Plastic Surgery Korea reviews from international patients: what do foreigners say?결정O O 1 긍정(뷰 외 없음) → Girin Plastic Surgery, AB Plastic Surgery
    B 이동·체류·운영 · Travel & logistics
    B-01Where is VIEW Plastic Surgery located and how do I get there from Incheon Airport?결정O 1 O 1 (뷰 외 없음) → (뷰 외 없음)
    B-02Does VIEW Plastic Surgery offer airport pickup for international patients?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    B-03What are VIEW Plastic Surgery's opening hours and can I book a consultation online from abroad?결정O 1 O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    B-04Can I contact VIEW Plastic Surgery via WhatsApp or LINE for a consultation?결정O 1 O 1 (뷰 외 없음) → (뷰 외 없음)
    B-05Does VIEW Plastic Surgery provide accommodation or hotel partnerships for foreign patients?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    B-06How long should I stay in Seoul after plastic surgery before flying home?탐색X X (뷰 외 없음) → (뷰 외 없음)
    B-07Do I need a medical visa for plastic surgery in Korea as a tourist?탐색X X (뷰 외 없음) → (뷰 외 없음)
    B-08Which Gangnam plastic surgery clinics are closest to Sinnonhyeon Station?인지O 3 O 6 중립Lala Plastic Surgery Clinic, 345 Plastic Surgery, Girin Plastic Surgery → JUST Plastic Surgery Clinic, 1 mm Plastic Surgery Clinic, 345 Plastic Surgery Clinic
    C 추천·비교 · Recommendation & comparison
    C-01Best plastic surgery clinic in Seoul for foreigners인지O 4 긍정X JK Plastic Surgery, ID Hospital, Banobagi Plastic Surgery → JK Plastic Surgery Center, ID Hospital, Banobagi Plastic Surgery
    C-02Best breast augmentation clinic in Korea for international patients비교X X VG Plastic Surgery, SAERO Plastic Surgery, WOOA Plastic Surgery → SAERO Plastic Surgery, JW Plastic Surgery Center, The Plus Plastic Surgery
    C-03Top facial contouring and V-line surgery clinics in Gangnam비교X O 3 긍정TOP Plastic Surgery, The PLUS Plastic Surgery, Glam Plastic Surgery → JK Plastic Surgery, Banobagi Plastic Surgery, BRAUN Plastic Surgery
    C-04Best rhinoplasty surgeon in Seoul for foreigners비교O 1 긍정O 7 긍정JW Plastic Surgery, LUHO Plastic Surgery, SAERO Plastic Surgery → AB Plastic Surgery, ONYX Plastic Surgery, WOOA Plastic Surgery & Skin Clinic
    C-05Best double jaw surgery clinic in Korea비교O 2 긍정X ID Hospital, JUM Oral and Maxillofacial Surgery, WHY Oral and Maxillofacial Surgery → TJ Plastic Surgery, Sinsang Plastic and Reconstructive Surgery, Brown Eye Medical Clinic
    C-06Top 5 plastic surgery clinics in Gangnam, Seoul인지O 5 긍정O 5 긍정JK Plastic Surgery, Opera Plastic Surgery, Banobagi Clinic → 4Ever Plastic Surgery, DA Plastic Surgery, ARC Plastic Surgery
    C-07Compare VIEW Plastic Surgery vs ID Hospital vs Banobagi for facial contouring비교O 1 긍정O 1 긍정ID Hospital, Banobagi → ID Hospital, Banobagi
    C-08Which Korean plastic surgery clinics use Motiva implants and have the most experience with them?비교O 1 긍정O 2 긍정Ryan Plastic Surgery, JK Plastic Surgery Center, DA Plastic Surgery → U&U Plastic Surgery Clinic, Ryan Plastic Surgery, V Clinic Gangnam
    C-09Safest plastic surgery clinic in Korea with anesthesiologists on staff비교O 3 긍정X AB Plastic Surgery, JK Plastic Surgery, DA Plastic Surgery → AB Plastic Surgery Clinic, JK Plastic Surgery Center, Hannaeve Plastic Surgery Clinic
    C-10Which Seoul plastic surgery clinics are officially recognized for medical tourism by the Korean government?비교O 1 긍정O 4 긍정Banobagi Plastic Surgery, JK Plastic Surgery Center, Evita Clinic → JK Plastic Surgery Center, HER SHE (HERSHE) Plastic Surgery, Hyundai Aesthetics Plastic Surgery
    C-11Best clinic in Korea for double eyelid surgery revision for foreigners비교X X Ahnsungmin Plastic Surgery, Sinsa L Plastic Surgery, 1mm Plastic Surgery → 1MM Plastic Surgery, Etonne Plastic Surgery, Wanna Plastic Surgery
    C-12Large plastic surgery hospitals in Seoul with in-house recovery wards비교O 2 긍정X ID Hospital, Grand Plastic Surgery, JK Plastic Surgery → Banobagi Plastic Surgery Clinic, ID Hospital, JW Plastic Surgery
    D 시술 정보 · Procedure info
    D-01Motiva breast augmentation in Korea: what should I know before booking?탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-02What is Motiva Preserve and which clinics in Korea offer it?탐색X X (뷰 외 없음) → U&U Plastic Surgery Clinic, Ryan Plastic Surgery, Golden Diamant Plastic Surgery
    D-03How long is recovery after breast augmentation in Korea before I can fly?탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-04What is the difference between V-line surgery and square jaw reduction?탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-05Double jaw surgery in Korea: recovery timeline and risks for international patients탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-06Incisional vs non-incisional double eyelid surgery in Korea: which is better?탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-07Rhinoplasty in Korea with rib cartilage vs silicone: pros and cons탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-08How is revision rhinoplasty done in Korea and how long do I need to stay?탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-09Facelift in Korea for a 50-year-old: what techniques are used?탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-10Is liposuction in Korea safe and how many days of downtime should I expect?탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-11What does VIEW Plastic Surgery's breast surgery process look like from consultation to aftercare?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    D-12Does VIEW Plastic Surgery do a breast ultrasound or examination before augmentation?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    D-13Subbrow lift vs upper blepharoplasty: which should I get in Korea?탐색X X (뷰 외 없음) → (뷰 외 없음)
    D-14Mini lift vs full facelift in Korea: cost and recovery탐색X O 7 (뷰 외 없음) → SeoulFaceliftClinic, Gangnam.Health, medisou
    E 가격 · Pricing
    E-01How much does breast augmentation cost in Korea for foreigners in 2026?탐색X X (뷰 외 없음) → MISOODA, Medisou, Clinicsoncall
    E-02V-line surgery cost in Korea 2026탐색X X (뷰 외 없음) → MISOODA, MedVoyage, Korea Med Guide
    E-03How much does double jaw surgery cost in Seoul?탐색X X ID Hospital → Gangnam Beauty Guide, MISOODA, SeoulMedicalInsider
    E-04Is plastic surgery in Korea cheaper than in the US? How much can I save?인지X X (뷰 외 없음) → (뷰 외 없음)
    E-05VIEW Plastic Surgery price list for international patients결정X X (뷰 외 없음) → (뷰 외 없음)
    E-06What hidden costs should I expect for plastic surgery in Korea as a foreigner?탐색X X (뷰 외 없음) → (뷰 외 없음)
    E-07Can foreigners get a tax refund on plastic surgery in Korea?탐색X X (뷰 외 없음) → (뷰 외 없음)
    E-08Rhinoplasty cost in Gangnam for foreigners탐색X X (뷰 외 없음) → KoreaCareGuide, Gangnam Health, SeoulBeautyTalk
    F 안전·신뢰 · Safety & trust
    F-01Is plastic surgery in Korea safe for foreigners? What safety standards should I look for?인지X X (뷰 외 없음) → (뷰 외 없음)
    F-02Does VIEW Plastic Surgery have anesthesiologists present during surgery?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    F-03What happens if I have complications after returning home from plastic surgery in Korea?탐색X X (뷰 외 없음) → (뷰 외 없음)
    F-04How do I verify a Korean plastic surgeon is board certified?탐색X X (뷰 외 없음) → (뷰 외 없음)
    F-05Are there red flags or complaints about VIEW Plastic Surgery Korea?결정O 1 부정O 1 부정(뷰 외 없음) → DA Plastic Surgery, AB Plastic Surgery Clinics, SeoulKlinic
    F-06Which Korean plastic surgery clinics have a Motiva implant warranty?비교O 2 긍정X JK Plastic Surgery, MINE Clinic, DA Plastic Surgery → Ryan Plastic Surgery, NANA Plastic Surgery, Wonjin Plastic Surgery Hospital
    G 사후관리·원격 팔로업 · Aftercare & remote follow-up
    G-01Do Korean plastic surgery clinics offer remote follow-up after I go back to my country?탐색O 4 긍정X GIRIN, ROI Plastic Surgery, Link Plastic Surgery → (뷰 외 없음)
    G-02What aftercare does VIEW Plastic Surgery provide for international patients?결정O 1 긍정O 1 긍정(뷰 외 없음) → (뷰 외 없음)
    G-03Where can I get post-surgery swelling care in Gangnam after surgery?탐색X O 7 긍정Dia Aesthetic, VEI Clinic, Hyundai Aesthetic Surgery Clinic → ONUL Plastic Surgery & Dermatology, Withwin Dermatology, ROI Plastic Surgery
    G-04What is the Motiva implant warranty if I get surgery in Korea and live abroad?탐색X X (뷰 외 없음) → Motiva Korea, breastsurgerykorea.com
    + +

    B부록 B · v1.0 36항목 판정

    +

    자동 채점 20항목 + 사람 보정 10항목 + 미검증 6항목. 미검증은 분모에서 제외합니다.

    +

    A · Access & Crawlability

    항목레벨근거
    A1 검색용 AI 봇 허용312개 AI 봇 전부 허용. OAI-SearchBot·PerplexityBot·GPTBot UA로 GET → 전부 200
    A2 CDN/WAF AI 차단 없음2CDN 사용(Apache/2.4.68 (Debian)), AI UA 차단 없음(전부 200)
    A3 서버 렌더링 본문3서버 렌더링. JS 미실행 HTML에서 본문 텍스트 79,646자 추출
    A4 HTTPS·리다이렉트 정합3http://viewplasticsurgery.com → 301 → https://www.viewplasticsurgery.com/ 정본 수렴 (4변형 모두)
    A5 sitemap.xml 제공3robots.txt에 sitemap 선언, 200 응답. URL 482개, lastmod 최신 2026-09-09
    A6 Bing 색인 (ChatGPT 검색 경로)미검증[manual] Bing Webmaster Tools 등록 여부는 오너 계정 접근 필요 (또는 site: 검색 수동 확인)
    A7 응답 속도·크롤 예산2TTFB 0.870s / 초기 HTML 587KB. 시술 페이지 212KB (TTFB 양호 / HTML 비대)

    B · Entity & Structured Data

    항목레벨근거
    B1 JSON-LD 문법 유효성3JSON-LD 1블록 전부 유효 + @graph 연결
    B2 업종 엔티티 스키마 (MedicalClinic)0업종 엔티티 스키마 없음 (발견 타입: CollectionPage, Person, WebSite)
    B3 전문가 스키마 (Physician)0Physician/Attorney 스키마 없음. 전문가 정보는 HTML 텍스트·이미지로만 존재
    B4 NAP 사이트 내 일관성2[사람 보정] 전 페이지 푸터 NAP 동일: 107 Bongeunsa-ro, Gangnam-gu / +82-2-539-1177 / eng_viewps@viewclinic.com / 진료시간. 구주소(201-14 Nonhyeon-dong) 병기. 개인정보 페이지에 다른 번호(02-2138-1305, 02-3480-3573) 노출
    B5 sameAs 연결0Organization.sameAs: [] (빈 배열). 푸터/본문에 SNS 링크 2종(www.instagram.com, www.tiktok.com), 스키마에 미연결
    B6 canonical·중복 제거2rel=canonical self-referencing 존재
    B7 다국어 hreflang2[사람 보정] 10개 언어 hreflang 양방향 선언. 그러나 th·jp·vn·ru·id·mn·es·ar 8개 서브도메인은 viewplasticsurgery.com/{lang}/ 로 301. hreflang 대상 URL이 최종 URL이 아니다. cn 페이지는 en-US 대신 en으로 선언

    C · Content & Answerability

    항목레벨근거
    C1 정의문형 첫 문단1[사람 보정] 정의문이 메타 설명에만 있다. About 메타: 'Founded in 2005, VIEW is a premier 19-story medical center in Gangnam, Seoul'. 본문 첫 단락은 슬로건('always considers the perspective of the patient'), 시술 페이지 첫 텍스트는 'Let Me In Season 2/3/4/5 Selected Doctors' 홍보 라벨. 홈 첫 200자는 검색창·메뉴
    C2 FAQ 섹션2FAQ 섹션 존재: "VIEW Breast Surgery FAQ" 외 0개. FAQPage 스키마 없음
    C3 제목 계층 의미성2H1 1개: "korea plastic surgery". H2 중복 0건 또는 라벨형
    C4 구체 수치 (가격·시간·회복)1[사람 보정] 시술 페이지(가슴 Motiva) 본문에 가격·수술시간·회복기간 0회. 수치는 Motiva 보증(재수술 지원 300만원/개) 뿐. 블로그 글에는 USD 가격표(V-line $7,000–12,000, 표 3행)와 체류 기간(10–14일)이 있으나 시술 페이지와 연결되지 않음
    C5 표·비교 구조3HTML 표 10개
    C6 신선도 신호2최신 갱신 신호 2026-09-09 (sitemap lastmod 2026-09-09). dateModified 마크업 없음
    C7 전문가 E-E-A-T (의료진)3[사람 보정] 의료진 상세 페이지에 학위(서울대 의학박사)·전문의 자격·학회 회원·논문 목록이 텍스트. 의료진 목록 26명에 역할(성형외과 전문의 15·이비인후과 1·피부과 3·유방외과 1·영상 1·마취과 6) 표기
    C8 패시지 자기완결성2[사람 보정] 5개 핵심 페이지 단락 샘플 50개 중 상호 또는 시술명 포함 26개(52%). 상호 'VIEW' 포함은 7개(14%). FAQ 답변은 'Motiva Preserve is…'처럼 시술명만 있고 상호가 없다

    D · Surfaces & Citations

    항목레벨근거
    D1 업종 버티컬 프로필 (외국인: 국제 리뷰 플랫폼)2[사람 보정] 외국인 대상 리뷰·중개 플랫폼 기준. Bookimed(us-uk.bookimed.com) 프로필과 RealSelf 평점(제3자 인용 4.8/5)이 AI 답변의 인용 출처로 확인됨. 리뷰 수·갱신일·소유자 응답은 직접 실측하지 못함. 강남언니(국문)는 외국인 질의 60문항 어디에도 인용되지 않음
    D2 Google 비즈니스 프로필2[사람 보정] Google 비즈니스 프로필 4.9점·리뷰 901건, 소유자 게시 활성, 웹사이트가 영문 사이트로 연결(2026-08-31 실측 인용). 전화번호 미등록. 2026-09-10 재실측은 Places API 키 부재로 미실시
    D3 오픈웹 언급 (해외 커뮤니티·언론)2[사람 보정] 뷰를 언급한 AI 답변의 인용처가 유치업체·에이전시 블로그(khunkim.com·clinicsoncall.com·curemeabroad.com·kmhglobal.com), 정부 표면(english.visitkorea.or.kr·medicaltour.gangnam.go.kr), 커뮤니티(reddit.com·forum.purseblog.com), LinkedIn에 분산. 영어권 주요 언론 기사와 Wikipedia 항목은 없음
    D4 표면 간 NAP 완전 일치2[사람 보정] 영문 사이트·GBP 주소 일치(107 Bongeunsa-ro). GBP 전화 없음. 강남언니는 국문 표면이라 외국인 질의 근거로는 쓰이지 않음
    D5 네이버 플레이스 (AI 브리핑 전용)미검증[semi·사람 판정 필요] 사이트에 플레이스/지도 링크 발견: https://naver.me/x9BxGXkK, 플레이스 존재·홈페이지 역연결·리뷰 수 수동 확인
    D6 위키데이터/위키백과 엔티티0Wikidata에서 "VIEW Plastic Surgery (EN)" 검색 결과 없음

    E · Measurement

    항목레벨근거
    E1 AI 크롤러 로그 (IP 검증)미검증[manual] 서버 로그 접근 필요 (AI 크롤러 히트 + IP 검증)
    E2 GA4 AI 유입 채널미검증[manual] GA4 접근 필요 (AI 유입 커스텀 채널그룹 여부)
    E3 GSC AI Overviews 노출미검증[manual] GSC 접근 필요 (AI Overviews 노출)
    E4 기준선 스팟체크2[사람 보정] 2026-09-10 외국인 관점 영문 60문항 × 2엔진(Perplexity sonar, OpenAI gpt-4o web_search 뉴욕 위치) 1회 실측. 5회 반복은 미실시

    F · Technical Hygiene

    항목레벨근거
    F1 이미지 대체텍스트3메인 페이지 이미지 500개 중 0개(0%) alt 누락 또는 빈 값
    F2 CMS 보안·최신성2[사람 보정] WordPress 7.1(2026 최신 계열). meta generator로 버전 노출
    F3 페이지 무게2초기 HTML 587KB (300~800KB)
    F4 모바일 대응2viewport meta 존재, 반응형. CWV 미측정
    + + +
    \ No newline at end of file diff --git a/public/reports/viewclinic/global-en-2026-09-10.pdf b/public/reports/viewclinic/global-en-2026-09-10.pdf new file mode 100644 index 0000000..f0a22e8 Binary files /dev/null and b/public/reports/viewclinic/global-en-2026-09-10.pdf differ diff --git a/scripts/fetch_medical_tourism.py b/scripts/fetch_medical_tourism.py index d11ff1b..ceaa743 100644 --- a/scripts/fetch_medical_tourism.py +++ b/scripts/fetch_medical_tourism.py @@ -23,8 +23,8 @@ 3. 아무 인자도 없으면 .env 의 TOUR_API_ORIGIN_LAT/LNG (초기 샘플 사이트용). 어느 경우든 meta.origin.coordSource 에 출처와 날짜를 적는다. -출력은 서포터즈 사이트(Astro)의 데이터다. 화면은 src/pages/stay.astro(국문)와 -src/pages/en/stay.astro(영문)다. 외국인 환자와 보호자가 보는 곳이다. +출력은 서포터즈 사이트(Astro)의 데이터다. 화면은 회복 일정 플래너 src/components/Planner.astro(/plan 국문, /en/plan 영문)이며 +src/lib/tour.ts 가 이 JSON 을 추천 후보·숙소·축제로 바꾼다. 외국인 환자와 보호자가 보는 곳이다. # 워커가 부르는 형태 (팩트 시트 주소 기준, 영문·국문 동시) python3 scripts/fetch_medical_tourism.py --clinic oracle --name "오라클피부과" \ diff --git a/scripts/monthly_ai_measure.py b/scripts/monthly_ai_measure.py new file mode 100644 index 0000000..8687db8 --- /dev/null +++ b/scripts/monthly_ai_measure.py @@ -0,0 +1,109 @@ +#!/usr/bin/env python3 +"""월간 AI 실측 체인: 질문 뱅크 러너 → 감성 판정 → 리포트 → supporter_builds.report.sentiment. + +핸드오버 §2-4 의 "한 줄". 지금까지 사람이 네 개 명령을 순서대로 치던 것을 하나로 묶는다. +사람 게이트는 자동화하지 않는다. 보정(라벨링)은 여기 들어가지 않으며, 확정 여부는 +calibration.confirmed 플래그로 리포트 카드에 그대로 전달한다. + + python3 scripts/monthly_ai_measure.py --clinic 뷰성형외과 + python3 scripts/monthly_ai_measure.py --clinic 뷰성형외과 --skip-run # 기존 답변 재사용, 감성만 + python3 scripts/monthly_ai_measure.py --clinic 뷰성형외과 --build-id # Supabase 반영까지 + +한계: 질문 뱅크 러너(run_question_bank_openai.py)는 아직 뷰성형외과 전용이다 +(scripts/question_bank_viewclinic.json 하드코딩). 다른 병원으로 넓히려면 러너를 +먼저 병원별로 매개변수화해야 한다. +""" +import argparse, json, os, subprocess, sys, time, urllib.request, urllib.error, importlib.util + +ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +OUT = os.path.join(ROOT, "scripts", "out") +ENGINES = ("openai", "perplexity") + +spec = importlib.util.spec_from_file_location("sqb", os.path.join(ROOT, "scripts", "sentiment_qb.py")) +sqb = importlib.util.module_from_spec(spec); spec.loader.exec_module(sqb) + + +def sh(argv): + print(" $ " + " ".join(argv), flush=True) + r = subprocess.run(argv, cwd=ROOT) + if r.returncode != 0: sys.exit(f"실패: {' '.join(argv)}") + + +def patch_supabase(build_id, sentiment): + """supporter_builds.report 에 sentiment 키만 병합한다. 다른 단계가 쓴 키를 지우지 않는다.""" + sqb.load_env() + url = os.environ.get("VITE_SUPABASE_URL"); key = os.environ.get("SUPABASE_SERVICE_ROLE_KEY") + if not (url and key): sys.exit("VITE_SUPABASE_URL / SUPABASE_SERVICE_ROLE_KEY 필요 (.env)") + H = {"apikey": key, "authorization": f"Bearer {key}", "content-type": "application/json"} + ep = f"{url}/rest/v1/supporter_builds?id=eq.{build_id}" + req = urllib.request.Request(ep + "&select=report", headers=H) + with urllib.request.urlopen(req, timeout=30, context=sqb.ssl_context()) as r: + rows = json.loads(r.read().decode()) + if not rows: sys.exit(f"supporter_builds 에 {build_id} 없음") + report = rows[0].get("report") or {} + report["sentiment"] = sentiment + body = json.dumps({"report": report, "updated_at": time.strftime("%Y-%m-%dT%H:%M:%S")}).encode() + req = urllib.request.Request(ep, data=body, headers={**H, "prefer": "return=minimal"}, method="PATCH") + with urllib.request.urlopen(req, timeout=30, context=sqb.ssl_context()) as r: + print(f" supporter_builds.report.sentiment 갱신 (HTTP {r.status})") + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--clinic", default="뷰성형외과") + ap.add_argument("--alias", default="뷰성형외과의원,뷰 성형외과,View Plastic Surgery,viewclinic") + ap.add_argument("--report", default="docs/reports/viewclinic/03_question_bank/Viewclinic_QB_Sentiment.md") + ap.add_argument("--build-id", help="주면 supporter_builds.report.sentiment 에 반영한다") + ap.add_argument("--skip-run", action="store_true", help="질문 뱅크 러너를 건너뛰고 기존 답변으로 감성만 다시 낸다") + ap.add_argument("--rejudge", action="store_true", help="기존 감성 판정을 지우고 다시 판정한다(기준표를 고친 뒤)") + a = ap.parse_args() + + if not a.skip_run: + print("[1/3] 질문 뱅크 실측") + for e in ENGINES: + sh([sys.executable, "scripts/run_question_bank_openai.py", "--engine", e]) + else: + print("[1/3] 질문 뱅크 실측 건너뜀 (--skip-run)") + + print("[2/3] 감성 판정") + for e in ENGINES: + src = os.path.join(OUT, f"qb_{e}_results.jsonl") + dst = os.path.join(OUT, f"qb_sentiment_{e}.jsonl") + if not os.path.exists(src): sys.exit(f"답변 파일 없음: {src}") + if a.rejudge and os.path.exists(dst): os.remove(dst) + sh([sys.executable, "scripts/sentiment_qb.py", "--in", src, "--out", dst, + "--clinic", a.clinic, "--alias", a.alias]) + + print("[3/3] 리포트") + outs = [os.path.join(OUT, f"qb_sentiment_{e}.jsonl") for e in ENGINES] + sh([sys.executable, "scripts/sentiment_qb.py", "--summary", *outs, + "--report", a.report, "--clinic", a.clinic]) + + rows = [json.loads(l) for p in outs for l in open(p, encoding="utf-8") if l.strip()] + W = {"positive": 100, "neutral": 50, "mixed": 25, "negative": 0} + strong = [r for r in rows if r["sentiment"] != "not_mentioned" and not r.get("weak_mention")] + s = sqb.score(rows) + sentiment = { + "rubric": sqb.RUBRIC_VERSION, "model": rows[0].get("model"), + "measuredAt": time.strftime("%Y-%m-%dT%H:%M:%S"), + "answers": s["answers"], "mentioned": s["mentioned"], "score": s["score"], + "scoreStrongOnly": round(sum(W[r["sentiment"]] for r in strong) / len(strong), 1) if strong else None, + "weakMentions": sum(1 for r in rows if r.get("weak_mention")), + "negativeRate": s["negative_rate"], "regulatoryRate": s["regulatory_rate"], + "recommendedRate": s["recommended_rate"], + "byEngine": {e: sqb.score([r for r in rows if r["engine"] == e]) for e in ENGINES}, + # 리포트 카드는 이 플래그를 보고 "보정 전 참고값" 을 표시한다. 2차 보정 전에는 확정이 아니다. + "calibration": {"labeled": 29, "agreementPct": 93, "confirmed": False, + "note": "1차 보정 표본으로 규칙을 고쳤으므로 확정 근거가 아니다. 새 30건 2차 보정 필요."}, + } + p = os.path.join(OUT, "sentiment_summary.json") + open(p, "w", encoding="utf-8").write(json.dumps(sentiment, ensure_ascii=False, indent=2)) + print(f" 요약 → {p}") + print(f" 언급 {s['mentioned']}/{s['answers']} · 감성 점수 {s['score']} · 약한 언급 제외 {sentiment['scoreStrongOnly']}") + + if a.build_id: patch_supabase(a.build_id, sentiment) + else: print(" --build-id 없음. Supabase 반영은 건너뛴다.") + + +if __name__ == "__main__": + main() diff --git a/scripts/out/qb_sentiment_openai.jsonl b/scripts/out/qb_sentiment_openai.jsonl new file mode 100644 index 0000000..8c42a8d --- /dev/null +++ b/scripts/out/qb_sentiment_openai.jsonl @@ -0,0 +1,120 @@ +{"id": "A-01", "engine": "openai", "question": "뷰성형외과 어때? 믿을만한 병원이야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "negative", "negative_type": "regulatory", "aspects": ["reviews", "regulatory", "procedure", "safety", "doctors", "access"], "evidence": "그러나 2026년 7월 공정거래위원회의 제재 사례는, 병원 마케팅 방식에 대한 경계가 필요하다는 점을 보여줍니다.", "recommendation": "cautioned", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:34:55", "mention_kind": "strong"} +{"id": "A-02", "engine": "openai", "question": "뷰성형외과는 어떤 병원이야? 소개해줘", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["procedure", "safety", "doctors"], "evidence": "환자의 안전과 만족을 최우선으로 하며, 최신 기술과 장비를 사용하여 서비스를 제공한다고 광고합니다.", "recommendation": "recommended", "confidence": 0.95, "weak_mention": false, "ts": "2026-09-09T10:34:56", "mention_kind": "strong"} +{"id": "A-03", "engine": "openai", "question": "뷰성형외과는 무슨 수술을 주로 해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "procedure", "access"], "evidence": "요약하자면, 뷰성형외과는 아래와 같은 분야에서 특히 강점을 가지고 있습니다:", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:34:59", "mention_kind": "strong"} +{"id": "A-04", "engine": "openai", "question": "뷰성형외과 최순우 원장 어떤 의사야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "procedure", "reviews", "media"], "evidence": "특히 협진 시스템, 정밀 검사, 안전 중심의 수술 시스템을 갖춘 병원을 운영하며, 의료관광 분야에서도 활동하는 등 의료계 내 다양한 영역에서 신뢰를 쌓아왔습니다.", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:00", "mention_kind": "strong"} +{"id": "A-05", "engine": "openai", "question": "뷰성형외과 의료진 몇 명이야? 다 전문의야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["doctors", "procedure", "safety"], "evidence": "의료진 수: **약 22명**\n- 이 중 성형외과 전문의 비율: **대부분이 성형외과 전문의**\n- 그 외: **이비인후과 전문의** (코 성형 담당), **마취통증의학과 전문의** (안전한 수술을 위한 상주 인력) 포함", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:02", "mention_kind": "strong"} +{"id": "A-06", "engine": "openai", "question": "뷰성형외과가 렛미인 나온 병원 맞아?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["media"], "evidence": "즉, 뷰성형외과는 “렛미인” 프로그램에 **닥터스 참여 병원**으로 실제 출연한 경력이 있는 병원입니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:04", "mention_kind": "strong"} +{"id": "A-07", "engine": "openai", "question": "뷰성형외과 언제 생긴 병원이야? 오래됐어?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["regulatory", "safety"], "evidence": "정리하면, 뷰성형외과는 2005년에 문을 연 이후, 현재(2026년 기준) 약 21~22년 정도 운영되어 온 비교적 오랜 역사를 가진 병원입니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:05", "mention_kind": "strong"} +{"id": "A-08", "engine": "openai", "question": "뷰성형외과 건물이 통째로 병원이라던데 맞아?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access", "procedure"], "evidence": "뷰성형외과는 성형외과 진료만을 위한 **'19층 규모의 ALL‑IN‑ONE 스마트 빌딩'**으로 운영되고 있습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:07", "mention_kind": "strong"} +{"id": "A-09", "engine": "openai", "question": "뷰성형외과 강남언니 평점 몇 점이야?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["reviews"], "evidence": "강남언니 내 병원 추천 목록에서는 ‘뷰성형외과’ 가 9.5점 평점을 기록 중이며, 약 17,099건의 평가가 있는 것으로 나타났습니다", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:09", "mention_kind": "strong"} +{"id": "A-10", "engine": "openai", "question": "뷰성형외과 유튜브 채널 있어?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["media"], "evidence": "뷰성형외과(‘VIEW Plastic Surgery’)는 유튜브에서 공식 채널을 운영하고 있습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:10", "mention_kind": "strong"} +{"id": "A-11", "engine": "openai", "question": "뷰성형외과랑 다른 강남 대형 성형외과랑 뭐가 달라?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["doctors", "safety", "reviews", "procedure", "access"], "evidence": "뷰성형외과는 다른 강남의 대형 성형외과와 비교해 몇 가지 차별점이 있을 수 있습니다. 하지만 정확한 차별점을 알기 위해서는 최신 정보를 확인하는 것이 중요합니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:12", "mention_kind": "strong"} +{"id": "A-12", "engine": "openai", "question": "뷰성형외과 단점이나 주의할 점 있어?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": [], "evidence": "뷰성형외과에 대한 구체적인 단점이나 주의할 점에 관해서는 인터넷 검색이나 직접적인 이용 후기를 참조하는 것이 가장 좋습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:13", "mention_kind": "strong"} +{"id": "B-01", "engine": "openai", "question": "뷰성형외과 주소 어디야?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "뷰성형외과(“뷰성형외과의원”)의 주소는 아래와 같습니다:", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:15", "mention_kind": "strong"} +{"id": "B-02", "engine": "openai", "question": "뷰성형외과 신논현역에서 얼마나 걸려?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "신논현역에서 뷰성형외과까지의 거리는 걸어서 약 5분에서 10분 정도 소요될 수 있습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:16", "mention_kind": "strong"} +{"id": "B-03", "engine": "openai", "question": "뷰성형외과 전화번호 알려줘", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "아래는 서울 강남구 논현동에 위치한 **뷰성형외과의 공식 전화번호** 정보입니다:", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:18", "mention_kind": "strong"} +{"id": "B-04", "engine": "openai", "question": "뷰성형외과 진료시간 어떻게 돼?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "다음은 서울 강남구 논현동에 위치한 **뷰성형외과의 진료 시간 안내**입니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:19", "mention_kind": "strong"} +{"id": "B-05", "engine": "openai", "question": "뷰성형외과 일요일이나 공휴일에도 해?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "일요일 진료: 별도로 안내된 정보가 없으며, 일반적인 진료시간표상 일요일에는 휴진일 가능성이 높습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:21", "mention_kind": "strong"} +{"id": "B-06", "engine": "openai", "question": "뷰성형외과 주차 되나?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "뷰성형외과(강남구 봉은사로 107, 신논현역 인근)는 **병원 건물 내부에 전용 주차시설이 있는 것으로 보이지 않습니다**.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:23", "mention_kind": "strong"} +{"id": "B-07", "engine": "openai", "question": "뷰성형외과 상담 예약 어떻게 해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "정확한 정보를 위해 뷰성형외과의 최신 연락처나 예약 가능 방법을 직접 확인하는 것이 좋습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:24", "mention_kind": "strong"} +{"id": "B-08", "engine": "openai", "question": "뷰성형외과 카톡으로 상담돼?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "요약하자면, 뷰성형외과는 카카오톡 채널을 운영하고 있으며, 이를 통해 상담과 예약 문의가 가능합니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:26", "mention_kind": "strong"} +{"id": "B-09", "engine": "openai", "question": "뷰성형외과 상담받으러 가면 몇 층으로 가?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "즉, 처음 뷰성형외과 상담을 받으러 가시면 **1층에서 접수 → (지하 촬영) → 4층으로 올라가 상담 대기 및 상담**의 순서로 이동하게 됩니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:27", "mention_kind": "strong"} +{"id": "B-10", "engine": "openai", "question": "신논현역 3번 출구 근처 성형외과 뭐 있어?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access", "procedure"], "evidence": "- **VIEW Plastic Surgery (뷰 성형외과)**\n - 위치: 신논현역 3번 출구에서 약 50m 거리, 정말 가까움 ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/introduction/direction/?utm_source=openai)).\n - 진료 시간: 평일 10:00–19:00, 금요일은 21:00까지, 토요일 10:00–17:00 ([viewplasticsurgery.com](https://www.viewplasticsurgery.com/introduction/direction/?utm_source=openai)).\n - 특징: 19층 규모의 병원 형태로, 전문성 높은 팀을 구성하여 다부위 수술 및 복합 시술에 적합", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:30", "mention_kind": "strong"} +{"id": "C-01", "engine": "openai", "question": "강남 성형외과 추천해줘", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["reviews"], "evidence": "The Door Plastic Surgery, View Plastic Surgery 등도 평점 4.8로 높은 평가받고 있습니다 ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/clinics/?utm_source=openai)).", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:31", "mention_kind": "strong"} +{"id": "C-02", "engine": "openai", "question": "강남에서 가슴성형 잘하는 병원 어디야?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["safety", "doctors", "procedure", "access", "reviews"], "evidence": "뷰성형외과  - 협진 체계, 안전 장비, 1:1 진료 및 사후관리 강조", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:33", "mention_kind": "strong"} +{"id": "C-03", "engine": "openai", "question": "강남 안면윤곽 유명한 병원 알려줘", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:34", "mention_kind": "none"} +{"id": "C-04", "engine": "openai", "question": "코성형 잘하는 강남 병원 추천해줘", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "procedure", "access", "reviews"], "evidence": "뷰성형외과 강남 | 협진 시스템, 맞춤 설계, 대학병원급 안전 시스템", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:36", "mention_kind": "strong"} +{"id": "C-05", "engine": "openai", "question": "눈 재수술 잘하는 병원 어디야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:37", "mention_kind": "none"} +{"id": "C-06", "engine": "openai", "question": "강남 성형외과 톱5 알려줘", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["reviews", "procedure"], "evidence": "- 평점: 4.8 / 리뷰수: 약 9,167건 ([gangnambeautyguide.com](https://gangnambeautyguide.com/en/clinics/?utm_source=openai)) \n- 강점: 유방성형 및 안면 윤곽 전문, 넓은 리뷰 기반", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:39", "mention_kind": "strong"} +{"id": "C-07", "engine": "openai", "question": "가슴성형 병원 3곳만 골라서 비교해줘", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:41", "mention_kind": "none"} +{"id": "C-08", "engine": "openai", "question": "마취과 전문의가 상주하는 강남 성형외과 어디야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "procedure"], "evidence": "- 안면윤곽, 눈·코·가슴 성형 등을 전문으로 하며, **마취과 전문의가 365일 상주**하고 있다는 점을 강조합니다 ([blog.viewclinic.com](https://blog.viewclinic.com/?utm_source=openai)).\n- 3D-CT 등 정밀 골격 분석 장비와 체계적 사후 관리 체계를 갖추고 있는 병원입니다 ([blog.viewclinic.com](https://blog.viewclinic.com/?utm_source=openai)).", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:42", "mention_kind": "strong"} +{"id": "C-09", "engine": "openai", "question": "수술실 CCTV 있는 성형외과 추천해줘", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:44", "mention_kind": "none"} +{"id": "C-10", "engine": "openai", "question": "여의사한테 수술받을 수 있는 성형외과 있어?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:45", "mention_kind": "none"} +{"id": "C-11", "engine": "openai", "question": "후기 제일 많은 강남 성형외과 어디야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "negative", "negative_type": "regulatory", "aspects": ["regulatory", "reviews", "price"], "evidence": "예컨대 ‘뷰성형외과’, '에이비성형외과의원', '디에이성형외과'는 후기를 조건으로 수술비 일부를 할인해 주고 광고처럼 이용한 사례로 지적된 바 있습니다 ([v.daum.net](https://v.daum.net/v/QaV6Ond8j0?utm_source=openai)).", "recommendation": "cautioned", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:46", "mention_kind": "strong"} +{"id": "C-12", "engine": "openai", "question": "강남언니에서 평점 높은 성형외과 알려줘", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["reviews"], "evidence": "**팝성형외과**, **티에스성형외과**, **기린성형외과**, **제이필의원**, **뷰성형외과**, **뭐 등 다양한 병원들이 높은 평점을 보이고 있습니다.", "recommendation": "recommended", "confidence": 0.95, "weak_mention": false, "ts": "2026-09-09T10:35:48", "mention_kind": "strong"} +{"id": "C-13", "engine": "openai", "question": "20년 넘게 운영한 강남 성형외과 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:49", "mention_kind": "none"} +{"id": "C-14", "engine": "openai", "question": "리프팅 잘하는 강남 병원 추천해줘", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:51", "mention_kind": "none"} +{"id": "C-15", "engine": "openai", "question": "의사 여러 명 있는 대형 성형외과가 나아? 어디 추천해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:52", "mention_kind": "none"} +{"id": "D1-01", "engine": "openai", "question": "뷰성형외과 가슴성형 잘해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "price", "reviews", "procedure"], "evidence": "뷰성형외과는 가슴성형 분야에서 경험, 전문성, 안전성, 사후관리 체계를 갖춘 병원으로 평가됩니다. 많은 환자들이 만족스럽다는 후기도 많으며, 개인의 체형·희망·상태에 맞춘 맞춤 상담과 전문적인 진료 흐름이 강점입니다.", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:54", "mention_kind": "strong"} +{"id": "D1-02", "engine": "openai", "question": "가슴 보형물 종류 뭐가 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:55", "mention_kind": "none"} +{"id": "D1-03", "engine": "openai", "question": "모티바랑 멘토 보형물 차이가 뭐야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:56", "mention_kind": "none"} +{"id": "D1-04", "engine": "openai", "question": "가슴성형 수술시간 얼마나 걸려?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:57", "mention_kind": "none"} +{"id": "D1-05", "engine": "openai", "question": "가슴성형 회복기간 어느 정도야? 언제 출근해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:59", "mention_kind": "none"} +{"id": "D1-06", "engine": "openai", "question": "가슴성형 흉터 어디에 남아?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:00", "mention_kind": "none"} +{"id": "D1-07", "engine": "openai", "question": "구형구축이 뭐야? 예방할 수 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:01", "mention_kind": "none"} +{"id": "D1-08", "engine": "openai", "question": "가슴 지방이식이랑 보형물 중에 뭐가 나아?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:02", "mention_kind": "none"} +{"id": "D1-09", "engine": "openai", "question": "가슴 재수술은 언제 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:04", "mention_kind": "none"} +{"id": "D1-10", "engine": "openai", "question": "가슴성형하면 수유에 영향 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:05", "mention_kind": "none"} +{"id": "D1-11", "engine": "openai", "question": "가슴성형 후 정기검진 뭐 받아야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:06", "mention_kind": "none"} +{"id": "D1-12", "engine": "openai", "question": "가슴성형 과정 잘 설명해주는 영상 있어?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:08", "mention_kind": "none"} +{"id": "D2-01", "engine": "openai", "question": "뷰성형외과 눈성형 어때?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "price", "reviews", "procedure", "access"], "evidence": "장점:\n- 높은 평점(4.7)과 JCI 인증, 다국어 지원으로 의료 신뢰도 높음 ([getcarekorea.com](https://getcarekorea.com/ko/hospitals/view-plastic-surgery?utm_source=openai))\n- 눈 성형 종류 다양하고 비교적 합리적인 가격대 ([beauty6.tistory.com](https://beauty6.tistory.com/184?utm_source=openai))\n- 실제 환자들이 자연스러운 결과, 빠른 회복, 친절한 간호/진료 서비스에 만족 ([cashdoc.me](https://cashdoc.me/community/plasticsurgery/89688246?utm_source=openai))", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:10", "mention_kind": "strong"} +{"id": "D2-02", "engine": "openai", "question": "쌍수 절개랑 매몰 차이가 뭐야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:14", "mention_kind": "none"} +{"id": "D2-03", "engine": "openai", "question": "자연유착 쌍수가 뭐야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:15", "mention_kind": "none"} +{"id": "D2-04", "engine": "openai", "question": "눈매교정은 쌍수랑 같이 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:16", "mention_kind": "none"} +{"id": "D2-05", "engine": "openai", "question": "앞트임 뒤트임 밑트임 뭐가 달라?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:17", "mention_kind": "none"} +{"id": "D2-06", "engine": "openai", "question": "쌍수 회복기간 얼마나 걸려?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:19", "mention_kind": "none"} +{"id": "D2-07", "engine": "openai", "question": "눈 재수술은 첫 수술 후 언제부터 가능해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:20", "mention_kind": "none"} +{"id": "D2-08", "engine": "openai", "question": "앞트임하면 잘 어울리는 얼굴이 따로 있어?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:23", "mention_kind": "none"} +{"id": "D2-09", "engine": "openai", "question": "쌍수 붓기 빨리 빼는 법 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:24", "mention_kind": "none"} +{"id": "D3-01", "engine": "openai", "question": "뷰성형외과 코성형 어때?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["reviews", "doctors", "procedure"], "evidence": "뷰성형외과의 코성형에 대한 평가는 일반적으로 병원의 평판, 의사들의 경험, 수술 후 환자들의 후기 등을 바탕으로 이루어집니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:25", "mention_kind": "strong"} +{"id": "D3-02", "engine": "openai", "question": "코성형 재료 뭐뭐 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:26", "mention_kind": "none"} +{"id": "D3-03", "engine": "openai", "question": "실리콘이랑 자가연골 중에 뭐가 나아?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:28", "mention_kind": "none"} +{"id": "D3-04", "engine": "openai", "question": "콧대만 할까 코끝까지 같이 할까?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:29", "mention_kind": "none"} +{"id": "D3-05", "engine": "openai", "question": "코성형 회복기간 얼마나 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:30", "mention_kind": "none"} +{"id": "D3-06", "engine": "openai", "question": "코 재수술은 언제부터 할 수 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:32", "mention_kind": "none"} +{"id": "D3-07", "engine": "openai", "question": "휜코 교정도 성형외과에서 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:33", "mention_kind": "none"} +{"id": "D3-08", "engine": "openai", "question": "복코 수술 어떻게 하는 거야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:34", "mention_kind": "none"} +{"id": "D3-09", "engine": "openai", "question": "내 얼굴형에 맞는 코 모양 어떻게 정해?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:35", "mention_kind": "none"} +{"id": "D4-01", "engine": "openai", "question": "뷰성형외과 안면윤곽 잘하는 곳 맞아?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "reviews", "procedure", "media"], "evidence": "전반적으로, 뷰성형외과는 안면윤곽 수술에 있어 안전성과 전문성을 갖춘 병원으로 평가받고 있습니다. 특히 수술 기법과 시스템, 다수의 수상 경력과 방송 노출 경력 등이 신뢰감을 줍니다.", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:37", "mention_kind": "strong"} +{"id": "D4-02", "engine": "openai", "question": "광대축소 수술 어떻게 하는 거야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:39", "mention_kind": "none"} +{"id": "D4-03", "engine": "openai", "question": "V라인 사각턱 수술 부작용 없어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:40", "mention_kind": "none"} +{"id": "D4-04", "engine": "openai", "question": "양악수술은 어떤 경우에 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:41", "mention_kind": "none"} +{"id": "D4-05", "engine": "openai", "question": "윤곽수술 신경 손상 위험 얼마나 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:43", "mention_kind": "none"} +{"id": "D4-06", "engine": "openai", "question": "윤곽수술 회복기간 얼마나 걸려?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:44", "mention_kind": "none"} +{"id": "D4-07", "engine": "openai", "question": "윤곽수술 붓기 언제 빠져?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:45", "mention_kind": "none"} +{"id": "D4-08", "engine": "openai", "question": "윤곽이랑 코성형 같이 해도 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:46", "mention_kind": "none"} +{"id": "D4-09", "engine": "openai", "question": "안면윤곽으로 상 받은 병원 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:48", "mention_kind": "none"} +{"id": "D5-01", "engine": "openai", "question": "지방흡입 부위별로 뭐가 달라?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:49", "mention_kind": "none"} +{"id": "D5-02", "engine": "openai", "question": "얼굴 지방이식하면 자연스러워?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:51", "mention_kind": "none"} +{"id": "D5-03", "engine": "openai", "question": "지방이식 생착률 얼마나 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:52", "mention_kind": "none"} +{"id": "D5-04", "engine": "openai", "question": "복부 지방흡입 회복 얼마나 걸려?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:53", "mention_kind": "none"} +{"id": "D5-05", "engine": "openai", "question": "뷰성형외과에서 지방성형도 해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": [], "evidence": "뷰성형외과에서 지방 성형을 하는지 확인하려면, 해당 병원의 웹사이트를 방문하거나 직접 문의하는 것이 가장 정확합니다.", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:54", "mention_kind": "strong"} +{"id": "D5-06", "engine": "openai", "question": "지방흡입 흉터 남아?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:56", "mention_kind": "none"} +{"id": "D6-01", "engine": "openai", "question": "리프팅 종류별로 뭐가 달라?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:58", "mention_kind": "none"} +{"id": "D6-02", "engine": "openai", "question": "실리프팅이랑 안면거상 중에 뭐 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:00", "mention_kind": "none"} +{"id": "D6-03", "engine": "openai", "question": "울쎄라 효과 진짜 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:01", "mention_kind": "none"} +{"id": "D6-04", "engine": "openai", "question": "리프팅 효과 얼마나 유지돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:02", "mention_kind": "none"} +{"id": "D6-05", "engine": "openai", "question": "40대인데 안티에이징 뭐부터 시작해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:03", "mention_kind": "none"} +{"id": "D6-06", "engine": "openai", "question": "뷰성형외과에서 리프팅도 받을 수 있어?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure"], "evidence": "따라서 뷰성형외과에서는 리프팅 시술이 **다양한 방식으로 제공**되고 있음을 확인하실 수 있습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:05", "mention_kind": "strong"} +{"id": "D6-07", "engine": "openai", "question": "수술 흉터 관리 어떻게 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:06", "mention_kind": "none"} +{"id": "D7-01", "engine": "openai", "question": "재수술 전문 병원은 뭐가 달라?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:07", "mention_kind": "none"} +{"id": "D7-02", "engine": "openai", "question": "뷰성형외과 재수술 잘해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": [], "evidence": "뷰성형외과의 재수술에 대한 평판이나 성공 사례를 확인하려면, 실제 환자들의 후기를 참고하거나 관련 커뮤니티에서 정보를 수집하는 것이 좋습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:09", "mention_kind": "strong"} +{"id": "D7-03", "engine": "openai", "question": "성형 재수술은 왜 하게 되는 거야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:10", "mention_kind": "none"} +{"id": "D7-04", "engine": "openai", "question": "재수술은 처음보다 비용 더 비싸?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:11", "mention_kind": "none"} +{"id": "D7-05", "engine": "openai", "question": "재수술 하려면 첫 수술 후 얼마나 기다려야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:13", "mention_kind": "none"} +{"id": "D7-06", "engine": "openai", "question": "다른 병원에서 한 수술도 재수술 상담해줘?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:15", "mention_kind": "none"} +{"id": "E-01", "engine": "openai", "question": "성형외과 고를 때 뭘 확인해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:16", "mention_kind": "none"} +{"id": "E-02", "engine": "openai", "question": "성형수술 마취 사고 안 나려면 어떤 병원 가야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:18", "mention_kind": "none"} +{"id": "E-03", "engine": "openai", "question": "수술실 CCTV 있는지 어떻게 확인해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:19", "mention_kind": "none"} +{"id": "E-04", "engine": "openai", "question": "전신마취랑 수면마취 차이가 뭐야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:21", "mention_kind": "none"} +{"id": "E-05", "engine": "openai", "question": "성형외과 전문의인지 어떻게 확인해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:22", "mention_kind": "none"} +{"id": "E-06", "engine": "openai", "question": "응급상황 대응 시스템 갖춘 성형외과 어디야?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:23", "mention_kind": "none"} +{"id": "E-07", "engine": "openai", "question": "성형 부작용 생기면 어떻게 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:24", "mention_kind": "none"} +{"id": "E-08", "engine": "openai", "question": "상담실장 말고 의사가 직접 상담해주는 병원 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:26", "mention_kind": "none"} +{"id": "E-09", "engine": "openai", "question": "뷰성형외과 안전 시스템 어때?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["safety", "doctors", "procedure", "access", "reviews"], "evidence": "이처럼 뷰성형외과는 **환자 안전을 위한 다층적인 시스템과 기준**을 두고 있습니다.", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:27", "mention_kind": "strong"} +{"id": "F-01", "engine": "openai", "question": "강남 가슴성형 평균 비용 얼마야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:28", "mention_kind": "none"} +{"id": "F-02", "engine": "openai", "question": "뷰성형외과 가슴성형 얼마야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["price", "procedure"], "evidence": "뷰성형외과에서 시행하는 가슴성형 수술의 비용은 여러 요인에 따라 매우 다양한데요. 사용되는 보형물 브랜드, 1차 또는 재수술 여부, 수술 난이도, 마취 시스템, 병원의 안전 인프라 및 사후관리 포함 여부 등에 따라 크게 달라집니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:30", "mention_kind": "strong"} +{"id": "F-03", "engine": "openai", "question": "쌍수 가격 보통 얼마 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:31", "mention_kind": "none"} +{"id": "F-04", "engine": "openai", "question": "코성형 견적 어느 정도 잡아야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:32", "mention_kind": "none"} +{"id": "F-05", "engine": "openai", "question": "뷰성형외과 지금 하는 이벤트 있어?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["price", "procedure"], "evidence": "뷰성형외과에 대한 현재 진행 중인 이벤트를 확인한 결과, 최신 프로모션 정보를 찾기 위해 주요 정보 플랫폼을 조회했습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:33", "mention_kind": "strong"} +{"id": "F-06", "engine": "openai", "question": "성형외과 이벤트가 믿어도 돼? 싼 데는 왜 싸?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:34", "mention_kind": "none"} +{"id": "F-07", "engine": "openai", "question": "성형 비용 카드 할부나 분할 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:36", "mention_kind": "none"} +{"id": "F-08", "engine": "openai", "question": "성형 견적 여러 병원 비교하려면 어떻게 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:37", "mention_kind": "none"} +{"id": "G-01", "engine": "openai", "question": "뷰성형외과 실제 후기 어때?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "price", "reviews", "procedure"], "evidence": "뷰성형외과는 **높은 만족도와 전문성을 갖춘 대형 병원**으로 평가되며, 특히 자연스럽고 정밀한 결과를 원하는 환자들에게 긍정적인 선택이 될 수 있습니다. 다만, 상담 경험은 대기 시간과 상담 시간의 한계가 있을 수 있으니 이에 대한 충분한 대비가 필요합니다.", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:39", "mention_kind": "strong"} +{"id": "G-02", "engine": "openai", "question": "뷰성형외과 부작용 후기나 안 좋은 얘기 있어?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "negative", "negative_type": "regulatory", "aspects": ["regulatory", "reviews"], "evidence": "뷰성형외과가 수술비 할인 등 대가를 제공하고, 이를 '자발적인 후기'로 위장하여 광고한 혐의로 공정거래위원회의 시정명령을 받았습니다.", "recommendation": "cautioned", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:40", "mention_kind": "strong"} +{"id": "G-03", "engine": "openai", "question": "강남언니 후기 믿을만해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:42", "mention_kind": "none"} +{"id": "G-04", "engine": "openai", "question": "뷰성형외과 수술 전후 사진 어디서 봐?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:43", "mention_kind": "none"} +{"id": "G-05", "engine": "openai", "question": "성형 후기는 어디서 봐야 정확해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:44", "mention_kind": "none"} +{"id": "G-06", "engine": "openai", "question": "뷰성형외과 인스타그램 있어?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "요약하면, 예, 뷰성형외과는 공식 인스타그램 계정을 운영 중이며, 해당 계정은 Linktree를 통해 연결되어 있는 것으로 확인됩니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:50", "mention_kind": "strong"} +{"id": "G-07", "engine": "openai", "question": "뷰성형외과는 뭘로 유명한 병원이야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "procedure", "access", "media", "reviews"], "evidence": "뷰성형외과는 특히 **가슴성형 분야의 압도적인 시술량**, **안전에 대한 철저한 시스템**, **원스톱 프리미엄 케어**, 그리고 **외국인 환자를 위한 의료관광 서비스**로 높은 평판을 자랑합니다.", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:51", "mention_kind": "strong"} +{"id": "G-08", "engine": "openai", "question": "가슴성형 후기 많은 병원 어디야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["reviews"], "evidence": "또한, “View”, “Wooa”, “Wish PS” 등도 리뷰량과 자체 B&A(전후 사진)가 많아 실제 경험 공유가 활발한 곳으로 언급됩니다 ([reddit.com](https://www.reddit.com/r/SeoulPlasticSurgery/comments/1u000in/researching_breast_augmentation_clinics_in_korea/?utm_source=openai)).", "recommendation": "recommended", "confidence": 0.95, "weak_mention": true, "ts": "2026-09-09T10:37:53", "mention_kind": "weak"} diff --git a/scripts/out/qb_sentiment_perplexity.jsonl b/scripts/out/qb_sentiment_perplexity.jsonl new file mode 100644 index 0000000..e182efc --- /dev/null +++ b/scripts/out/qb_sentiment_perplexity.jsonl @@ -0,0 +1,120 @@ +{"id": "A-01", "engine": "perplexity", "question": "뷰성형외과 어때? 믿을만한 병원이야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["reviews", "access", "procedure", "doctors", "safety"], "evidence": "그래서 현실적으로는 **“후기 기반 평판은 좋은 편이지만, 광고성/이벤트성 후기의 영향도 있을 수 있어 추가 확인이 필요”**라고 보는 게 안전합니다.[4][7][8][14][15]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:26", "mention_kind": "strong"} +{"id": "A-02", "engine": "perplexity", "question": "뷰성형외과는 어떤 병원이야? 소개해줘", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure", "access", "doctors", "safety"], "evidence": "뷰성형외과는 **서울 강남구 봉은사로 107(논현동)**에 있는 성형외과로, **2005년 개원**한 뒤 가슴성형, 안면윤곽, 양악수술, 눈·코성형, 지방흡입, 안티에이징 등 여러 분야를 다루는 **종합 성형외과**로 소개됩니다.[1][2][11]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:27", "mention_kind": "strong"} +{"id": "A-03", "engine": "perplexity", "question": "뷰성형외과는 무슨 수술을 주로 해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure"], "evidence": "뷰성형외과는 **가슴성형**을 특히 강조하지만, 그 외에도 **코성형, 눈성형, 안면윤곽, 양악수술, 지방흡입/지방성형, 안티에이징·리프팅**을 주로 하는 병원입니다.[1][3][6][11]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:29", "mention_kind": "strong"} +{"id": "A-04", "engine": "perplexity", "question": "뷰성형외과 최순우 원장 어떤 의사야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "procedure", "safety", "media"], "evidence": "즉, 한마디로 정리하면 **서울대 출신의 성형외과 전문의이자 뷰성형외과 대표원장**이며, 병원 측 자료 기준으로는 특히 **가슴성형** 쪽 경력이 많이 강조되는 의사입니다.[1][2][6][7]", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:31", "mention_kind": "strong"} +{"id": "A-05", "engine": "perplexity", "question": "뷰성형외과 의료진 몇 명이야? 다 전문의야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["doctors"], "evidence": "뷰성형외과의원은 **의사 23명**으로 신고되어 있고, 그중 **전문의는 15명**으로 보입니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:32", "mention_kind": "strong"} +{"id": "A-06", "engine": "perplexity", "question": "뷰성형외과가 렛미인 나온 병원 맞아?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["media", "doctors"], "evidence": "네, **뷰성형외과는 렛미인에 나온 병원**이 맞습니다. 여러 자료에서 뷰성형외과가 **‘렛미인 닥터스 선정 병원’으로 시즌 2~5에 참여**했다고 소개하고 있습니다.[1][2][4]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:34", "mention_kind": "strong"} +{"id": "A-07", "engine": "perplexity", "question": "뷰성형외과 언제 생긴 병원이야? 오래됐어?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "뷰성형외과는 2005년에 개원한 병원이라, 현재 기준으로 꽤 오래된 편입니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:35", "mention_kind": "strong"} +{"id": "A-08", "engine": "perplexity", "question": "뷰성형외과 건물이 통째로 병원이라던데 맞아?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "네, **건물 전체를 뷰성형외과가 쓰는 형태**로 보입니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:36", "mention_kind": "strong"} +{"id": "A-09", "engine": "perplexity", "question": "뷰성형외과 강남언니 평점 몇 점이야?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["reviews"], "evidence": "강남언니의 뷰성형외과의원 페이지에 평점이 **9.5**로 표시되어 있습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:38", "mention_kind": "strong"} +{"id": "A-10", "engine": "perplexity", "question": "뷰성형외과 유튜브 채널 있어?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["media"], "evidence": "네, **있습니다**. 검색 결과에 따르면 뷰성형외과의 유튜브 채널로 **“뷰성형외과 VIEW Plastic Surgery”**가 확인되며, 영상 설명에도 **English YouTube**와 함께 공식 채널 링크가 안내되어 있습니다[1][7].", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:39", "mention_kind": "strong"} +{"id": "A-11", "engine": "perplexity", "question": "뷰성형외과랑 다른 강남 대형 성형외과랑 뭐가 달라?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "procedure", "access"], "evidence": "안전 중심 운영: 대학병원급 안전 장비와 시설, 응급상황 대비 시스템, 검사·수술·회복을 한 곳에서 진행하는 원스톱 구조를 내세웁니다.[5][8][9]", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:41", "mention_kind": "strong"} +{"id": "A-12", "engine": "perplexity", "question": "뷰성형외과 단점이나 주의할 점 있어?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "negative", "negative_type": "regulatory", "aspects": ["reviews", "price", "doctors", "safety", "regulatory", "procedure", "access"], "evidence": "공정거래위원회가 뷰성형외과를 포함한 강남 성형외과들의 *수술비 할인 등 대가를 받고 작성한 후기를 자발적 후기처럼 보이게 한 행위*를 제재했습니다.", "recommendation": "cautioned", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:43", "mention_kind": "strong"} +{"id": "B-01", "engine": "perplexity", "question": "뷰성형외과 주소 어디야?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "**뷰성형외과 주소**는 서울 **강남구 봉은사로 107**입니다.[2][3][4]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:44", "mention_kind": "strong"} +{"id": "B-02", "engine": "perplexity", "question": "뷰성형외과 신논현역에서 얼마나 걸려?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "신논현역 3번 출구에서 뷰성형외과까지는 도보로 약 1분~3분 정도로 안내됩니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:46", "mention_kind": "strong"} +{"id": "B-03", "engine": "perplexity", "question": "뷰성형외과 전화번호 알려줘", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": [], "evidence": "뷰성형외과 전화번호는 02-539-1177입니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:47", "mention_kind": "strong"} +{"id": "B-04", "engine": "perplexity", "question": "뷰성형외과 진료시간 어떻게 돼?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "뷰성형외과 진료시간은 **평일 10:00~19:00**, **금요일 10:00~21:00**, **토요일 10:00~17:00**이고, **일요일·공휴일은 휴진**입니다.[1][6][8]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:48", "mention_kind": "strong"} +{"id": "B-05", "engine": "perplexity", "question": "뷰성형외과 일요일이나 공휴일에도 해?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "뷰성형외과는 일요일과 공휴일에 휴진입니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:50", "mention_kind": "strong"} +{"id": "B-06", "engine": "perplexity", "question": "뷰성형외과 주차 되나?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access", "price"], "evidence": "네, **주차 가능합니다**. 뷰성형외과는 **주차 가능**으로 안내되어 있고, **35대 동시 주차**가 가능한 주차공간이 있다고 안내합니다.[1][3][5]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:51", "mention_kind": "strong"} +{"id": "B-07", "engine": "perplexity", "question": "뷰성형외과 상담 예약 어떻게 해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "뷰성형외과 상담 예약은 **전화(02-539-1177)** 로 문의하거나, **네이버 예약**에서 진행할 수 있습니다.[2][3]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:53", "mention_kind": "strong"} +{"id": "B-08", "engine": "perplexity", "question": "뷰성형외과 카톡으로 상담돼?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "뷰성형외과는 카카오톡 문의를 안내하고 있으며, 검색 결과에 따르면 **@뷰성형외과의원**(플러스친구 ID) 또는 **뷰성형외과**로 카톡 문의가 가능합니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:54", "mention_kind": "strong"} +{"id": "B-09", "engine": "perplexity", "question": "뷰성형외과 상담받으러 가면 몇 층으로 가?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["access"], "evidence": "상담은 4층으로 가면 됩니다. 뷰성형외과 안내에 따르면 처음 방문하는 고객은 1층 안내데스크를 이용하고, 상담실은 4층입니다.[2]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:56", "mention_kind": "strong"} +{"id": "B-10", "engine": "perplexity", "question": "신논현역 3번 출구 근처 성형외과 뭐 있어?", "prior": "◯", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure", "access"], "evidence": "뷰성형외과의원: 신논현역 3번 출구 인근으로 안내되며, 가슴성형 중심 병원으로 표시됩니다.[9]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:57", "mention_kind": "strong"} +{"id": "C-01", "engine": "perplexity", "question": "강남 성형외과 추천해줘", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:35:58", "mention_kind": "none"} +{"id": "C-02", "engine": "perplexity", "question": "강남에서 가슴성형 잘하는 병원 어디야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:00", "mention_kind": "none"} +{"id": "C-03", "engine": "perplexity", "question": "강남 안면윤곽 유명한 병원 알려줘", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:01", "mention_kind": "none"} +{"id": "C-04", "engine": "perplexity", "question": "코성형 잘하는 강남 병원 추천해줘", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:02", "mention_kind": "none"} +{"id": "C-05", "engine": "perplexity", "question": "눈 재수술 잘하는 병원 어디야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:03", "mention_kind": "none"} +{"id": "C-06", "engine": "perplexity", "question": "강남 성형외과 톱5 알려줘", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:05", "mention_kind": "none"} +{"id": "C-07", "engine": "perplexity", "question": "가슴성형 병원 3곳만 골라서 비교해줘", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:06", "mention_kind": "none"} +{"id": "C-08", "engine": "perplexity", "question": "마취과 전문의가 상주하는 강남 성형외과 어디야?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:07", "mention_kind": "none"} +{"id": "C-09", "engine": "perplexity", "question": "수술실 CCTV 있는 성형외과 추천해줘", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:09", "mention_kind": "none"} +{"id": "C-10", "engine": "perplexity", "question": "여의사한테 수술받을 수 있는 성형외과 있어?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:10", "mention_kind": "none"} +{"id": "C-11", "engine": "perplexity", "question": "후기 제일 많은 강남 성형외과 어디야?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:12", "mention_kind": "none"} +{"id": "C-12", "engine": "perplexity", "question": "강남언니에서 평점 높은 성형외과 알려줘", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["reviews"], "evidence": "**뷰성형외과의원** — **9.5점**, 후기 수는 검색 결과에 일부만 보입니다.[3]", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:13", "mention_kind": "strong"} +{"id": "C-13", "engine": "perplexity", "question": "20년 넘게 운영한 강남 성형외과 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:15", "mention_kind": "none"} +{"id": "C-14", "engine": "perplexity", "question": "리프팅 잘하는 강남 병원 추천해줘", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:16", "mention_kind": "none"} +{"id": "C-15", "engine": "perplexity", "question": "의사 여러 명 있는 대형 성형외과가 나아? 어디 추천해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:17", "mention_kind": "none"} +{"id": "D1-01", "engine": "perplexity", "question": "뷰성형외과 가슴성형 잘해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure", "reviews", "safety", "doctors"], "evidence": "가슴성형 병원 선택은 **의사 경력, 재수술 비율, 보형물 선택, 부작용 대응, 실제 전후 사례**를 함께 봐야 합니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:19", "mention_kind": "strong"} +{"id": "D1-02", "engine": "perplexity", "question": "가슴 보형물 종류 뭐가 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:20", "mention_kind": "none"} +{"id": "D1-03", "engine": "perplexity", "question": "모티바랑 멘토 보형물 차이가 뭐야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:22", "mention_kind": "none"} +{"id": "D1-04", "engine": "perplexity", "question": "가슴성형 수술시간 얼마나 걸려?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:23", "mention_kind": "none"} +{"id": "D1-05", "engine": "perplexity", "question": "가슴성형 회복기간 어느 정도야? 언제 출근해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:24", "mention_kind": "none"} +{"id": "D1-06", "engine": "perplexity", "question": "가슴성형 흉터 어디에 남아?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:25", "mention_kind": "none"} +{"id": "D1-07", "engine": "perplexity", "question": "구형구축이 뭐야? 예방할 수 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:26", "mention_kind": "none"} +{"id": "D1-08", "engine": "perplexity", "question": "가슴 지방이식이랑 보형물 중에 뭐가 나아?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:29", "mention_kind": "none"} +{"id": "D1-09", "engine": "perplexity", "question": "가슴 재수술은 언제 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:30", "mention_kind": "none"} +{"id": "D1-10", "engine": "perplexity", "question": "가슴성형하면 수유에 영향 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:32", "mention_kind": "none"} +{"id": "D1-11", "engine": "perplexity", "question": "가슴성형 후 정기검진 뭐 받아야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:33", "mention_kind": "none"} +{"id": "D1-12", "engine": "perplexity", "question": "가슴성형 과정 잘 설명해주는 영상 있어?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:35", "mention_kind": "none"} +{"id": "D2-01", "engine": "perplexity", "question": "뷰성형외과 눈성형 어때?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "negative", "negative_type": "reputation", "aspects": ["reviews"], "evidence": "다만 제가 확인한 자료만으로는 **수술 결과의 일관된 객관성**까지 판단하긴 어렵고, 커뮤니티에는 상담 경험에 대한 **부정적 의견도 일부** 보입니다.[6]", "recommendation": "cautioned", "confidence": 0.95, "weak_mention": false, "ts": "2026-09-09T10:36:36", "mention_kind": "strong"} +{"id": "D2-02", "engine": "perplexity", "question": "쌍수 절개랑 매몰 차이가 뭐야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:38", "mention_kind": "none"} +{"id": "D2-03", "engine": "perplexity", "question": "자연유착 쌍수가 뭐야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:40", "mention_kind": "none"} +{"id": "D2-04", "engine": "perplexity", "question": "눈매교정은 쌍수랑 같이 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:41", "mention_kind": "none"} +{"id": "D2-05", "engine": "perplexity", "question": "앞트임 뒤트임 밑트임 뭐가 달라?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:42", "mention_kind": "none"} +{"id": "D2-06", "engine": "perplexity", "question": "쌍수 회복기간 얼마나 걸려?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:43", "mention_kind": "none"} +{"id": "D2-07", "engine": "perplexity", "question": "눈 재수술은 첫 수술 후 언제부터 가능해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:45", "mention_kind": "none"} +{"id": "D2-08", "engine": "perplexity", "question": "앞트임하면 잘 어울리는 얼굴이 따로 있어?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:46", "mention_kind": "none"} +{"id": "D2-09", "engine": "perplexity", "question": "쌍수 붓기 빨리 빼는 법 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:47", "mention_kind": "none"} +{"id": "D3-01", "engine": "perplexity", "question": "뷰성형외과 코성형 어때?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["reviews", "price", "procedure", "doctors", "safety"], "evidence": "평가가 많은 편이고, 후기 평점도 높은 편이라 “코성형 상담 후보”로는 많이들 보는 병원입니다.[2][4][7][13] 다만 지금 주어진 정보만으로는 수술 결과의 객관적 수준까지 단정할 수는 없어서, 후기 수와 평점은 참고하되 집도 의료진, 재수술 경험, 상담의 일관성, 부작용 대응을 같이 확인하는 게 중요합니다.[2][4][7]", "recommendation": "listed", "confidence": 0.95, "weak_mention": false, "ts": "2026-09-09T10:36:49", "mention_kind": "strong"} +{"id": "D3-02", "engine": "perplexity", "question": "코성형 재료 뭐뭐 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:51", "mention_kind": "none"} +{"id": "D3-03", "engine": "perplexity", "question": "실리콘이랑 자가연골 중에 뭐가 나아?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:52", "mention_kind": "none"} +{"id": "D3-04", "engine": "perplexity", "question": "콧대만 할까 코끝까지 같이 할까?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:53", "mention_kind": "none"} +{"id": "D3-05", "engine": "perplexity", "question": "코성형 회복기간 얼마나 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:54", "mention_kind": "none"} +{"id": "D3-06", "engine": "perplexity", "question": "코 재수술은 언제부터 할 수 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:55", "mention_kind": "none"} +{"id": "D3-07", "engine": "perplexity", "question": "휜코 교정도 성형외과에서 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:57", "mention_kind": "none"} +{"id": "D3-08", "engine": "perplexity", "question": "복코 수술 어떻게 하는 거야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:58", "mention_kind": "none"} +{"id": "D3-09", "engine": "perplexity", "question": "내 얼굴형에 맞는 코 모양 어떻게 정해?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:36:59", "mention_kind": "none"} +{"id": "D4-01", "engine": "perplexity", "question": "뷰성형외과 안면윤곽 잘하는 곳 맞아?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure", "reviews", "doctors", "safety", "access"], "evidence": "다만, “잘하는 곳인지”는 객관적으로 단정하기 어렵습니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:01", "mention_kind": "strong"} +{"id": "D4-02", "engine": "perplexity", "question": "광대축소 수술 어떻게 하는 거야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:02", "mention_kind": "none"} +{"id": "D4-03", "engine": "perplexity", "question": "V라인 사각턱 수술 부작용 없어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:03", "mention_kind": "none"} +{"id": "D4-04", "engine": "perplexity", "question": "양악수술은 어떤 경우에 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:05", "mention_kind": "none"} +{"id": "D4-05", "engine": "perplexity", "question": "윤곽수술 신경 손상 위험 얼마나 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:07", "mention_kind": "none"} +{"id": "D4-06", "engine": "perplexity", "question": "윤곽수술 회복기간 얼마나 걸려?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:08", "mention_kind": "none"} +{"id": "D4-07", "engine": "perplexity", "question": "윤곽수술 붓기 언제 빠져?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:09", "mention_kind": "none"} +{"id": "D4-08", "engine": "perplexity", "question": "윤곽이랑 코성형 같이 해도 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:11", "mention_kind": "none"} +{"id": "D4-09", "engine": "perplexity", "question": "안면윤곽으로 상 받은 병원 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:12", "mention_kind": "none"} +{"id": "D5-01", "engine": "perplexity", "question": "지방흡입 부위별로 뭐가 달라?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:14", "mention_kind": "none"} +{"id": "D5-02", "engine": "perplexity", "question": "얼굴 지방이식하면 자연스러워?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:15", "mention_kind": "none"} +{"id": "D5-03", "engine": "perplexity", "question": "지방이식 생착률 얼마나 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:16", "mention_kind": "none"} +{"id": "D5-04", "engine": "perplexity", "question": "복부 지방흡입 회복 얼마나 걸려?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:18", "mention_kind": "none"} +{"id": "D5-05", "engine": "perplexity", "question": "뷰성형외과에서 지방성형도 해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure"], "evidence": "네, **뷰성형외과는 지방성형을 하는 것으로 보입니다**. 검색 결과에 따르면 **지방흡입**, **지방이식**, 그리고 **눈밑지방재배치** 같은 지방 관련 진료 항목이 확인됩니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:19", "mention_kind": "strong"} +{"id": "D5-06", "engine": "perplexity", "question": "지방흡입 흉터 남아?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:20", "mention_kind": "none"} +{"id": "D6-01", "engine": "perplexity", "question": "리프팅 종류별로 뭐가 달라?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:22", "mention_kind": "none"} +{"id": "D6-02", "engine": "perplexity", "question": "실리프팅이랑 안면거상 중에 뭐 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:23", "mention_kind": "none"} +{"id": "D6-03", "engine": "perplexity", "question": "울쎄라 효과 진짜 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:24", "mention_kind": "none"} +{"id": "D6-04", "engine": "perplexity", "question": "리프팅 효과 얼마나 유지돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:27", "mention_kind": "none"} +{"id": "D6-05", "engine": "perplexity", "question": "40대인데 안티에이징 뭐부터 시작해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:28", "mention_kind": "none"} +{"id": "D6-06", "engine": "perplexity", "question": "뷰성형외과에서 리프팅도 받을 수 있어?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure"], "evidence": "뷰성형외과는 진료 항목에 **리프팅**이 포함되어 있고, 실제로 **실리프팅**, **레이저 리프팅**, **티타늄 리프팅**, **써마지/울쎄라 계열 리프팅** 관련 안내와 이벤트가 확인됩니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:29", "mention_kind": "strong"} +{"id": "D6-07", "engine": "perplexity", "question": "수술 흉터 관리 어떻게 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:31", "mention_kind": "none"} +{"id": "D7-01", "engine": "perplexity", "question": "재수술 전문 병원은 뭐가 달라?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:32", "mention_kind": "none"} +{"id": "D7-02", "engine": "perplexity", "question": "뷰성형외과 재수술 잘해?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure", "doctors", "reviews", "safety", "access"], "evidence": "뷰성형외과는 재수술 관련 안내와 사례 콘텐츠를 적극적으로 내고 있고, 눈·코 재수술 상담을 다루는 정보가 확인됩니다.", "recommendation": "listed", "confidence": 0.98, "weak_mention": false, "ts": "2026-09-09T10:37:33", "mention_kind": "strong"} +{"id": "D7-03", "engine": "perplexity", "question": "성형 재수술은 왜 하게 되는 거야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:35", "mention_kind": "none"} +{"id": "D7-04", "engine": "perplexity", "question": "재수술은 처음보다 비용 더 비싸?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:36", "mention_kind": "none"} +{"id": "D7-05", "engine": "perplexity", "question": "재수술 하려면 첫 수술 후 얼마나 기다려야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:37", "mention_kind": "none"} +{"id": "D7-06", "engine": "perplexity", "question": "다른 병원에서 한 수술도 재수술 상담해줘?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:38", "mention_kind": "none"} +{"id": "E-01", "engine": "perplexity", "question": "성형외과 고를 때 뭘 확인해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:40", "mention_kind": "none"} +{"id": "E-02", "engine": "perplexity", "question": "성형수술 마취 사고 안 나려면 어떤 병원 가야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:41", "mention_kind": "none"} +{"id": "E-03", "engine": "perplexity", "question": "수술실 CCTV 있는지 어떻게 확인해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:42", "mention_kind": "none"} +{"id": "E-04", "engine": "perplexity", "question": "전신마취랑 수면마취 차이가 뭐야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:43", "mention_kind": "none"} +{"id": "E-05", "engine": "perplexity", "question": "성형외과 전문의인지 어떻게 확인해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:45", "mention_kind": "none"} +{"id": "E-06", "engine": "perplexity", "question": "응급상황 대응 시스템 갖춘 성형외과 어디야?", "prior": "△", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:46", "mention_kind": "none"} +{"id": "E-07", "engine": "perplexity", "question": "성형 부작용 생기면 어떻게 해야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:48", "mention_kind": "none"} +{"id": "E-08", "engine": "perplexity", "question": "상담실장 말고 의사가 직접 상담해주는 병원 있어?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:49", "mention_kind": "none"} +{"id": "E-09", "engine": "perplexity", "question": "뷰성형외과 안전 시스템 어때?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["safety", "doctors", "procedure"], "evidence": "공개 정보만 놓고 보면 **안전 시스템을 강조하는 병원**으로 볼 수 있지만, 이것이 곧바로 개별 환자에게 충분한 안전을 보장한다는 뜻은 아닙니다.[1][2][7]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:50", "mention_kind": "strong"} +{"id": "F-01", "engine": "perplexity", "question": "강남 가슴성형 평균 비용 얼마야?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:52", "mention_kind": "none"} +{"id": "F-02", "engine": "perplexity", "question": "뷰성형외과 가슴성형 얼마야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["price"], "evidence": "뷰성형외과 **가슴성형 비용은 이벤트 기준으로 약 240만~1,155만원 정도**로 확인됩니다.[2][3][4][6][11][12]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:53", "mention_kind": "strong"} +{"id": "F-03", "engine": "perplexity", "question": "쌍수 가격 보통 얼마 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:54", "mention_kind": "none"} +{"id": "F-04", "engine": "perplexity", "question": "코성형 견적 어느 정도 잡아야 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:57", "mention_kind": "none"} +{"id": "F-05", "engine": "perplexity", "question": "뷰성형외과 지금 하는 이벤트 있어?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["price", "procedure"], "evidence": "네. 현재 검색 결과상 **뷰성형외과 이벤트가 여러 개** 확인됩니다.", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:37:59", "mention_kind": "strong"} +{"id": "F-06", "engine": "perplexity", "question": "성형외과 이벤트가 믿어도 돼? 싼 데는 왜 싸?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:38:00", "mention_kind": "none"} +{"id": "F-07", "engine": "perplexity", "question": "성형 비용 카드 할부나 분할 돼?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:38:01", "mention_kind": "none"} +{"id": "F-08", "engine": "perplexity", "question": "성형 견적 여러 병원 비교하려면 어떻게 해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:38:03", "mention_kind": "none"} +{"id": "G-01", "engine": "perplexity", "question": "뷰성형외과 실제 후기 어때?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["reviews", "access"], "evidence": "뷰성형외과는 **후기 수가 많은 편**이고, 공개된 후기들에서는 **친절함·상담 설명·시설 만족도**가 자주 언급됩니다. 다만 일부 후기에서는 **엘리베이터가 느리다** 같은 병원 이용 편의에 대한 불만도 보입니다.", "recommendation": "listed", "confidence": 0.95, "weak_mention": false, "ts": "2026-09-09T10:38:05", "mention_kind": "strong"} +{"id": "G-02", "engine": "perplexity", "question": "뷰성형외과 부작용 후기나 안 좋은 얘기 있어?", "prior": "✕", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "negative", "negative_type": "reputation", "aspects": ["reviews", "safety"], "evidence": "네. 검색 결과만 보면 **뷰성형외과에 대한 안 좋은 후기나 부작용 언급은 있습니다**.", "recommendation": "cautioned", "confidence": 0.98, "weak_mention": false, "ts": "2026-09-09T10:38:06", "mention_kind": "strong"} +{"id": "G-03", "engine": "perplexity", "question": "강남언니 후기 믿을만해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:38:08", "mention_kind": "none"} +{"id": "G-04", "engine": "perplexity", "question": "뷰성형외과 수술 전후 사진 어디서 봐?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["procedure", "reviews", "access"], "evidence": "뷰성형외과 **수술 전후 사진**은 보통 병원 **공식 홈페이지의 Before & After 페이지**에서 볼 수 있습니다.[1][2] 병원 공식 인스타그램/유튜브/페이스북에도 일부 사례가 올라와 있습니다.[4][7][16]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:38:09", "mention_kind": "strong"} +{"id": "G-05", "engine": "perplexity", "question": "성형 후기는 어디서 봐야 정확해?", "prior": "✕", "extractor_mentioned": false, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": false, "sentiment": "not_mentioned", "negative_type": "none", "aspects": [], "evidence": "", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:38:10", "mention_kind": "none"} +{"id": "G-06", "engine": "perplexity", "question": "뷰성형외과 인스타그램 있어?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": [], "evidence": "네. 뷰성형외과 인스타그램은 **@viewplastic**으로 확인됩니다.[6][9][10]", "recommendation": "not_applicable", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:38:12", "mention_kind": "strong"} +{"id": "G-07", "engine": "perplexity", "question": "뷰성형외과는 뭘로 유명한 병원이야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "positive", "negative_type": "none", "aspects": ["doctors", "safety", "procedure", "reviews"], "evidence": "뷰성형외과는 가슴성형, 안면윤곽, 양악수술, 눈·코성형 등 여러 성형 분야를 고르게 하는 곳으로 알려져 있고, 특히 안전 중심 운영과 무사고 기록을 강조해 유명합니다.[1][11][13]", "recommendation": "recommended", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:38:13", "mention_kind": "strong"} +{"id": "G-08", "engine": "perplexity", "question": "가슴성형 후기 많은 병원 어디야?", "prior": "△", "extractor_mentioned": true, "model": "gpt-4.1", "rubric": "v0.3", "mentioned": true, "sentiment": "neutral", "negative_type": "none", "aspects": ["reviews"], "evidence": "**뷰성형외과의원**: 후기 19,342개, 시술 후기 9,999+ 건으로 매우 많습니다.[3]", "recommendation": "listed", "confidence": 1.0, "weak_mention": false, "ts": "2026-09-09T10:38:15", "mention_kind": "strong"} diff --git a/scripts/run_question_bank_en.py b/scripts/run_question_bank_en.py new file mode 100644 index 0000000..a803274 --- /dev/null +++ b/scripts/run_question_bank_en.py @@ -0,0 +1,176 @@ +#!/usr/bin/env python3 +"""외국인 관점 영문 Question Bank 답변엔진 실측 러너 (OpenAI / Perplexity). + +run_question_bank_openai.py의 영문·해외 위치 변형. 차이점: +- 질문 파일·출력 폴더를 인자로 받는다 (기본: docs/reports/viewclinic/05_global_en) +- OpenAI web_search user_location을 --country/--city로 지정 (기본 US / New York) +- 병원명 추출 프롬프트가 영문 표기 변형(VIEW Plastic Surgery, View Clinic, VIEW Seoul)을 같은 병원으로 본다 +- 인용 URL을 도메인별로 집계해 "AI가 어떤 표면을 근거로 쓰는가"를 기록한다 + +사용: + python3 scripts/run_question_bank_en.py --engine perplexity + python3 scripts/run_question_bank_en.py --engine openai --country US --city "New York" + python3 scripts/run_question_bank_en.py --engine openai --summarize +""" +import argparse, json, os, re, sys, time +from urllib.parse import urlparse + +sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) +import run_question_bank_openai as base # noqa: E402 + +ROOT = base.ROOT +DEFAULT_DIR = os.path.join(ROOT, "docs", "reports", "viewclinic", "05_global_en") + +EXTRACT_PROMPT = """Below is an answer from an AI search engine. Extract the names of plastic surgery clinics / hospitals mentioned, in order of appearance, up to 8. +- Clinic names only (exclude platforms, apps, media, agencies: e.g. RealSelf, Reddit, Gangnam Unni, Bookimed, Whatclinic are NOT clinics) +- "VIEW Plastic Surgery" also appears as View Clinic, VIEW Clinic Korea, VIEW Seoul, VIEW Plastic Surgery Clinic, 뷰성형외과. Treat all as the same clinic and normalize to "VIEW Plastic Surgery". +- Output JSON only: {"clinics": ["Clinic 1", ...], "view_mentioned": true/false, "view_rank": position or null, "view_sentiment": "positive"|"neutral"|"negative"|null} +- view_sentiment: how the answer characterizes VIEW (null if not mentioned) + +Answer: +""" + + +class OpenAIEngineLoc(base.OpenAIEngine): + def __init__(self, model, search_tool, country, city, tz): + super().__init__(model, search_tool) + self.loc = {"type": "approximate", "country": country, "city": city, "timezone": tz} + + def ask(self, question): + tool = {"type": self.search_tool, "user_location": self.loc} + try: + resp = base.post_retry("https://api.openai.com/v1/responses", + {"model": self.model, "tools": [tool], "input": question}, + {"Authorization": f"Bearer {self.key}"}) + except RuntimeError as e: + if self.search_tool == "web_search" and "web_search" in str(e): + self.search_tool = "web_search_preview" + return self.ask(question) + raise + return base.openai_answer_text(resp) + + +def extract_clinics(answer): + okey = os.environ.get("OPENAI_API_KEY") + if not okey: + sys.exit("OPENAI_API_KEY needed for extraction") + resp = base.post_retry("https://api.openai.com/v1/responses", + {"model": "gpt-4o-mini", "input": EXTRACT_PROMPT + answer[:9000]}, + {"Authorization": f"Bearer {okey}"}) + text, _ = base.openai_answer_text(resp) + m = re.search(r"\{.*\}", text or "", re.S) + try: + return json.loads(m.group(0)) if m else {"clinics": [], "view_mentioned": False, "view_rank": None, "view_sentiment": None} + except json.JSONDecodeError: + return {"clinics": [], "view_mentioned": False, "view_rank": None, "view_sentiment": None, "parse_error": text[:200]} + + +def domain(u): + try: + d = urlparse(u).netloc.lower() + return d[4:] if d.startswith("www.") else d + except Exception: + return u + + +def out_path(d, engine): + return os.path.join(d, f"qb_en_{engine}_results.jsonl") + + +def load_done(d, engine): + done = {} + p = out_path(d, engine) + if os.path.exists(p): + for line in open(p): + if line.strip(): + row = json.loads(line); done[row["id"]] = row + return done + + +def summarize(d, engine, qfile): + done = load_done(d, engine) + qs = json.load(open(qfile)) + cats = {"A": "Brand", "B": "Travel & logistics", "C": "Recommendation & comparison", "D": "Procedure info", + "E": "Pricing", "F": "Safety & trust", "G": "Aftercare & remote follow-up"} + freq, dom_freq, view_dom = {}, {}, {} + per_cat = {} + lines = [f"# VIEW Plastic Surgery EN Question Bank results: {engine}", "", + f"Measured {time.strftime('%Y-%m-%d')} / {len(done)} questions", "", + "| # | Question | VIEW mentioned | Rank | Sentiment | Clinics (in order) | Cited domains |", "|---|---|---|---|---|---|---|"] + for q in qs: + r = done.get(q["id"]) + if not r: continue + c = per_cat.setdefault(q["cat"], [0, 0, 0]); c[0] += 1 + clinics = [x for x in r.get("clinics", []) if isinstance(x, str)][:8] + for i, x in enumerate(clinics): + freq.setdefault(x, [0, 0]); freq[x][0] += 1 + if i == 0: freq[x][1] += 1 + doms = sorted({domain(u) for u in r.get("urls", [])}) + for dm in doms: + dom_freq[dm] = dom_freq.get(dm, 0) + 1 + vm = bool(r.get("view_mentioned")) + if vm: + c[1] += 1 + for dm in doms: view_dom[dm] = view_dom.get(dm, 0) + 1 + if any("viewplasticsurgery.com" in u or "viewclinic" in u for u in r.get("urls", [])): c[2] += 1 + lines.append(f"| {q['id']} | {q['question']} | {'O' if vm else 'X'} | {r.get('view_rank') or '-'} | {r.get('view_sentiment') or '-'} | " + f"{', '.join(clinics) if clinics else '(none)'} | {', '.join(doms[:6])} |") + mentioned = sum(v[1] for v in per_cat.values()) + lines += ["", "## Summary", "", f"- VIEW mentioned: {mentioned}/{len(done)} ({mentioned*100//max(len(done),1)}%)", "", + "| Category | Questions | VIEW mentioned | viewplasticsurgery.com cited |", "|---|---|---|---|"] + for k in sorted(per_cat): + n, m, cited = per_cat[k] + lines.append(f"| {k} {cats.get(k,'')} | {n} | {m} ({m*100//n}%) | {cited} ({cited*100//n}%) |") + lines += ["", "### Clinic mention frequency (top 20)", "", "| Clinic | Questions | First position |", "|---|---|---|"] + for name, (cnt, first) in sorted(freq.items(), key=lambda x: -x[1][0])[:20]: + lines.append(f"| {name} | {cnt} | {first} |") + lines += ["", "### Cited domains (top 25)", "", "| Domain | Questions cited | Cited when VIEW mentioned |", "|---|---|---|"] + for dm, cnt in sorted(dom_freq.items(), key=lambda x: -x[1])[:25]: + lines.append(f"| {dm} | {cnt} | {view_dom.get(dm, 0)} |") + out_md = os.path.join(d, f"QB_en_{engine}_results.md") + open(out_md, "w").write("\n".join(lines) + "\n") + json.dump({"per_cat": per_cat, "freq": freq, "dom_freq": dom_freq, "view_dom": view_dom, "n": len(done), "mentioned": mentioned}, + open(os.path.join(d, f"QB_en_{engine}_summary.json"), "w"), ensure_ascii=False, indent=1) + print(f"saved: {out_md}") + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--engine", choices=["openai", "perplexity"], default="perplexity") + ap.add_argument("--model", default=None) + ap.add_argument("--search-tool", default="web_search") + ap.add_argument("--country", default="US"); ap.add_argument("--city", default="New York"); ap.add_argument("--tz", default="America/New_York") + ap.add_argument("--dir", default=DEFAULT_DIR) + ap.add_argument("--questions", default=os.path.join(DEFAULT_DIR, "question_bank_en.json")) + ap.add_argument("--limit", type=int, default=0); ap.add_argument("--sleep", type=float, default=1.0) + ap.add_argument("--summarize", action="store_true") + a = ap.parse_args() + base.load_dotenv() + if a.summarize: + summarize(a.dir, a.engine, a.questions); return + eng = OpenAIEngineLoc(a.model or "gpt-4o", a.search_tool, a.country, a.city, a.tz) if a.engine == "openai" \ + else base.PerplexityEngine(a.model or "sonar") + os.makedirs(a.dir, exist_ok=True) + qs = json.load(open(a.questions)); done = load_done(a.dir, a.engine) + todo = [q for q in qs if q["id"] not in done] + if a.limit: todo = todo[:a.limit] + print(f"{eng.name}: {len(todo)} to run ({len(done)} done)", flush=True) + with open(out_path(a.dir, a.engine), "a") as f: + for i, q in enumerate(todo, 1): + t0 = time.time() + try: + answer, urls = eng.ask(q["question"]) + ext = extract_clinics(answer) + except Exception as e: + print(f" [{i}/{len(todo)}] {q['id']} ERROR {e}", flush=True); time.sleep(5); continue + row = {"id": q["id"], "cat": q["cat"], "question": q["question"], "engine": eng.name, + "answer": answer, "urls": urls, "measured_at": time.strftime("%Y-%m-%dT%H:%M:%S"), **ext} + f.write(json.dumps(row, ensure_ascii=False) + "\n"); f.flush() + print(f" [{i}/{len(todo)}] {q['id']} view={'O' if ext.get('view_mentioned') else 'X'} rank={ext.get('view_rank')} " + f"clinics={ext.get('clinics', [])[:4]} urls={len(urls)} ({time.time()-t0:.0f}s)", flush=True) + time.sleep(a.sleep) + summarize(a.dir, a.engine, a.questions) + + +if __name__ == "__main__": + main() diff --git a/scripts/sentiment_qb.py b/scripts/sentiment_qb.py new file mode 100644 index 0000000..69456a9 --- /dev/null +++ b/scripts/sentiment_qb.py @@ -0,0 +1,291 @@ +#!/usr/bin/env python3 +"""AI 답변 감성 판정기. 질문 뱅크 실측 결과(JSONL, 답변 원문 포함)를 읽어 대상 병원 언급의 어조를 판정한다. +기준표: docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.3.md · 판정 모델: OpenAI gpt-4.1 (JSON 출력) + +사용: + python3 scripts/sentiment_qb.py --clinic 뷰성형외과 --alias "뷰성형외과의원,뷰 성형외과,View Plastic Surgery" \ + --in scripts/out/qb_openai_results.jsonl --out scripts/out/qb_sentiment_openai.jsonl + python3 scripts/sentiment_qb.py --summary scripts/out/qb_sentiment_openai.jsonl scripts/out/qb_sentiment_perplexity.jsonl \ + --report docs/reports/viewclinic/03_question_bank/Viewclinic_QB_Sentiment.md --calibration docs/reports/viewclinic/03_question_bank/Viewclinic_QB_Sentiment_calibration.xlsx + +- 재개 가능: out 파일에 이미 있는 id는 건너뛴다. +- 비용: 답변당 1회 호출, 240건 약 $1.5. +- 소비자 UI 자동 조회는 하지 않는다(약관). 공식 API 답변 원문만 판정한다. +""" +import argparse, json, os, random, re, ssl, sys, time, urllib.request, urllib.error, collections + +def ssl_context(): + # 프레임워크 Python 은 인증서 저장소가 비어 CERTIFICATE_VERIFY_FAILED 가 난다. certifi 가 있으면 그것을, 없으면 시스템 기본을 쓴다. + try: + import certifi; return ssl.create_default_context(cafile=certifi.where()) + except ImportError: + return ssl.create_default_context() + +ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +def load_env(): + for d in (ROOT, os.path.join(ROOT, "..")): + p = os.path.join(d, ".env") + if not os.path.exists(p): continue + for line in open(p, encoding="utf-8"): + if "=" in line and not line.strip().startswith("#"): + k, v = line.split("=", 1); os.environ.setdefault(k.strip(), v.strip().strip('"').strip("'")) + +SENTIMENTS = ["positive", "neutral", "negative", "mixed", "not_mentioned"] +NEG_TYPES = ["none", "regulatory", "safety", "service", "price", "reputation", "other"] +# 기준표 버전. 판정 결과의 추적용. docs/AI_ANSWER_SENTIMENT_RUBRIC_v0.2.md 와 같이 움직인다. +# v0.2: 1차 보정(29건, 일치 75%) 불일치에서 R1~R5 추가. +# v0.3: 규칙은 R1~R5에서 멈춘다. R4-a·R6을 시험 투입했으나 haewon 라벨 대비 일치율이 93%에서 89%로 +# 떨어져(하나 고치면 하나 깨짐) 되돌렸다. n=29에서는 과적합이다. 기준표 §5 참조. +# v0.3의 실제 변경은 결정론적 언급 탐지기(mention_kind)뿐이다. URL 안의 상호와 '리뷰'의 '뷰' 오탐을 없앤다. +RUBRIC_VERSION = "v0.3" + +URL_RE = re.compile(r"https?://\S+|\([a-z0-9.-]+\.[a-z]{2,}[^)]*\)", re.I) + +def strip_urls(text): + """URL·인용 링크를 지운다. news.nate.com/view/... 의 'view' 를 병원 언급으로 세지 않기 위해서다.""" + return URL_RE.sub(" ", text or "") + +def _flex(name): + """문자 사이 공백을 허용하는 패턴. '뷰성형외과' 가 '뷰 성형외과' 로 쓰여도 잡는다.""" + return r"\s*".join(re.escape(c) for c in name if not c.isspace()) + +def mention_kind(answer, clinic, aliases, weak_tokens): + """strong 정식 상호 / weak 약칭만 / none 언급 없음. + URL 을 먼저 지우고, 한글 약칭은 '리뷰' 의 '뷰' 처럼 다른 낱말의 일부인 경우를 뺀다.""" + a = strip_urls(answer) + for n in [clinic] + list(aliases): + if n and re.search(_flex(n), a, re.I): return "strong" + for t in weak_tokens: + pat = (r"(?; @@ -11,41 +13,28 @@ interface Props { ogImage?: string; type?: 'website' | 'article'; noindex?: boolean; - /** 페이지 언어. 외국인 환자용 영문 페이지(/en/*)에서 'en' 을 넘긴다. 기본은 한국어다. */ lang?: 'ko' | 'en'; + alternates?: { lang: string; href: string }[]; } -const { title, description, jsonLd, ogImage = S.buildingImage?.src || '/favicon.svg', type = 'website', noindex = false, lang = 'ko' } = Astro.props; -const isEn = lang === 'en'; -// 머리말·꼬리말 문구. 법적 고지(지원 관계·부작용)는 번역하지 않는다. 아래 주석 참조. -const T = isEn - ? { nav: [['/posts', 'Questions'], ['/videos', 'Doctors'], ['/newsroom', 'Newsroom'], ['/en/plan', 'Recovery Planner'], ['/about', 'About']], cta: 'Book a Consultation', supporters: 'SUPPORTERS', back: 'Back', top: 'Back to top', sample: 'This is a sample site, not yet public.' } - : { nav: [['/posts', '상담 전 질문'], ['/videos', '의료진 영상'], ['/newsroom', '뉴스룸'], ['/visit', '방문 안내'], ['/plan', '회복 일정'], ['/about', '매체 소개']], cta: '상담 예약', supporters: '서포터즈', back: '이전 페이지', top: '맨 위로', sample: '샘플 사이트입니다. 정식 공개 전입니다.' }; - -// 언어 전환. 같은 내용의 짝이 있는 페이지만 서로 잇고, 없으면 그 언어의 입구로 보낸다. -// 영문 페이지가 늘어나면 이 표에 줄만 추가한다. -const PAIRS: Record = { '/plan': '/en/plan', '/visit': '/en/plan' }; -const KO_ENTRY = '/'; -const EN_ENTRY = '/en/plan'; -const path = (Astro.url.pathname.replace(/\.html$/, '').replace(/\/index$/, '/').replace(/\/$/, '') || '/'); -const koPair = Object.entries(PAIRS).find(([, en]) => en === path)?.[0]; -const otherHref = isEn ? (koPair ?? KO_ENTRY) : (PAIRS[path] ?? EN_ENTRY); -// 짝이 없으면 같은 글의 번역본으로 가는 것이 아니므로 그렇게 말한다. -const otherExact = isEn ? Boolean(koPair) : Boolean(PAIRS[path]); -// 영문 페이지의 예약 버튼은 병원의 외국인용 영문 사이트로 보낸다(factSheet.urlEn). -// 한국어 예약 페이지로 보내면 영어로 온 사람이 한국어 화면을 만난다. -const ctaHref = isEn - ? ((f as Record).reservationUrlEn || (f as Record).urlEn || reservationUrl || '/en/plan') - : (reservationUrl || '/visit'); -// 의료광고 고지는 규정 대상이라 임의로 번역하지 않는다(의료법 56조·추천보증 심사지침). -// 병원이 영문 문구를 확정해 site.json 의 sponsorNoticeEn / factSheet 의 sideEffectNoticeEn 에 넣기 전까지는 -// 한국어 원문을 그대로 싣고 확인 대기임을 밝힌다. -const sponsorEn: string = (S as Record).sponsorNoticeEn || ''; -const sideEffectEn: string = (f as Record).sideEffectNoticeEn || ''; +const { title, description, jsonLd, ogImage = S.buildingImage?.src || '/favicon.svg', type = 'website', noindex = false, lang = 'ko', alternates = [] } = Astro.props; const site = Astro.site?.toString().replace(/\/$/, '') ?? ''; const cleanPath = Astro.url.pathname.replace(/\/index\.html$/, '/').replace(/\.html$/, ''); const canonical = (new URL(cleanPath, Astro.site).toString().replace(/\/$/, '') || site); +const u = UI[lang]; +const other = lang === 'ko' ? 'en' : 'ko'; +const switchTo = switchHref(Astro.url.pathname, other); +const homeHref = lang === 'en' ? '/en' : '/'; +const isHome = ['/', '', '/index.html', '/index', '/en', '/en/index.html', '/en/index'].includes(Astro.url.pathname.replace(/\/$/, '') || '/'); // GA4: site.json 의 ga4MeasurementId(G-XXXX) 가 있을 때만 태그를 넣는다. 키 이벤트는 data/ai_channels.json conversion_events 와 같은 이름(click_tel · click_reservation · click_clinic_site · click_map). const GA4: string = /^G-[A-Z0-9]{6,}$/.test(String((S as Record).ga4MeasurementId ?? '')) ? String((S as Record).ga4MeasurementId) : ''; +// 의료광고 고지는 규정 대상이라 임의로 번역하지 않는다(의료법 56조·추천보증 심사지침). +// 병원이 영문 문구를 확정해 site.json 의 sponsorNoticeEn / factSheet 의 sideEffectNoticeEn 에 넣기 전까지는 +// 한국어 원문을 그대로 싣고 확인 대기임을 밝힌다. i18n.ts 의 영문 foot_sponsor·foot_side 는 이 자리에 쓰지 않는다. +const sponsorEn: string = (S as Record).sponsorNoticeEn || ''; +const sideEffectEn: string = (f as Record).sideEffectNoticeEn || ''; +const noticePending = lang === 'en' && !sponsorEn; +const sponsorText = (lang === 'en' && sponsorEn) ? sponsorEn : UI.ko.foot_sponsor.replace(/\{clinic\}/g, v(f.shortName, '병원')).replace('{editor}', ed.name); +const sideEffectText = (lang === 'en' && sideEffectEn) ? sideEffectEn : fact.sideEffectNotice; const ld = jsonLd ? JSON.stringify({ '@context': 'https://schema.org', ...(Array.isArray(jsonLd) ? { '@graph': jsonLd } : jsonLd) }) : null; --- @@ -63,7 +52,8 @@ const ld = jsonLd ? JSON.stringify({ '@context': 'https://schema.org', ...(Array - + + {alternates.map((a) => )} @@ -74,32 +64,44 @@ const ld = jsonLd ? JSON.stringify({ '@context': 'https://schema.org', ...(Array document.addEventListener('click',function(e){var a=e.target.closest&&e.target.closest('a');if(!a)return;var h=a.getAttribute('href')||'';var ev=h.indexOf('tel:')===0?'click_tel':a.dataset.ga==='reservation'||a.classList.contains('cta')?'click_reservation':a.dataset.ga==='clinic-site'?'click_clinic_site':a.dataset.ga==='map'?'click_map':null;if(ev)gtag('event',ev,{link_url:h,page_path:location.pathname});},true);`} />} - {!INDEXABLE &&
    {T.sample}
    } + {!INDEXABLE &&
    {u.sample}
    } - {!['/', '', '/index.html', '/index'].includes(Astro.url.pathname.replace(/\/$/, '') || '/') && ( + {!isHome && ( )}
    - +