From 12f4f038c1cc5fc59bcaf21d84b05a12c6f45e78 Mon Sep 17 00:00:00 2001 From: MJY Date: Thu, 2 Apr 2026 10:20:43 +0900 Subject: [PATCH 01/30] feat: refresh public experience and import goodprice data --- PLAN.md | 8 + PROGRESS.md | 220 +- README.md | 15 +- apps/admin/package.json | 5 +- apps/admin/src/app/layout.tsx | 19 +- data/goodprice/import-meta.json | 18237 ++--- drizzle/0007_true_carmella_unuscione.sql | 32 + drizzle/meta/0007_snapshot.json | 1833 + drizzle/meta/_journal.json | 7 + package.json | 1 + scripts/import-goodprice.ts | 391 +- src/app/api/auth/[...nextauth]/route.ts | 10 +- src/app/api/places/map/route.ts | 13 +- src/app/bookmarks/page.tsx | 46 +- src/app/globals.css | 7 + src/app/layout.tsx | 8 +- src/app/login/page.tsx | 4 +- src/app/place/[id]/page.tsx | 17 +- src/app/report/page.tsx | 30 +- src/app/signup/page.tsx | 4 +- src/app/submit/page.tsx | 30 +- src/components/global-header.tsx | 80 + src/db/schema.ts | 7 + src/db/seed.ts | 3 + .../entrypoints/pages/dashboard-page.tsx | 26 +- .../entrypoints/pages/place-prices-page.tsx | 2 - .../admin/entrypoints/pages/places-page.tsx | 2 - .../admin/entrypoints/pages/prices-page.tsx | 2 - .../admin/entrypoints/pages/reports-page.tsx | 2 - src/features/admin/pages/dashboard-page.tsx | 26 +- .../admin/pages/place-prices-page.tsx | 2 - src/features/admin/pages/places-page.tsx | 2 - src/features/admin/pages/prices-page.tsx | 2 - src/features/admin/pages/reports-page.tsx | 2 - src/features/auth/login-form.tsx | 5 +- src/features/auth/session-action-group.tsx | 71 - src/features/auth/signup-form.tsx | 5 +- .../bookmarks/bookmark-toggle-button.tsx | 64 +- src/features/bookmarks/repository.ts | 87 + src/features/map/map-page.tsx | 93 +- src/features/map/naver-map-panel.tsx | 329 +- src/features/places/imported-goodprice.json | 66388 ++++++++-------- src/features/places/map-explorer.tsx | 264 +- .../places/place-comments-section.tsx | 13 +- src/features/places/place-detail-sheet.tsx | 26 +- .../places/place-price-report-form.tsx | 31 +- src/features/places/queries.ts | 4 +- src/features/places/repository.ts | 493 +- src/features/places/types.ts | 25 +- src/features/reports/report-submit-form.tsx | 6 +- src/features/submission/place-submit-form.tsx | 36 +- src/lib/auth-navigation.ts | 44 + src/lib/session.ts | 52 +- tests/e2e/bookmarks.spec.ts | 27 +- 54 files changed, 45903 insertions(+), 43255 deletions(-) create mode 100644 drizzle/0007_true_carmella_unuscione.sql create mode 100644 drizzle/meta/0007_snapshot.json create mode 100644 src/components/global-header.tsx delete mode 100644 src/features/auth/session-action-group.tsx create mode 100644 src/lib/auth-navigation.ts diff --git a/PLAN.md b/PLAN.md index 42f4d2e..090e075 100644 --- a/PLAN.md +++ b/PLAN.md @@ -89,6 +89,7 @@ |---|---|---|---|---|---| | 행정안전부 `착한가격업소` 사이트의 목록/엑셀/상세 구조를 분석해 1차 수집 경로와 필터 기준을 확정한다 | Codex | P1 | `done` | `/bssh/bsshList.do`, `/bssh/bsshPageExcel.do`, `/bssh/bsshInfo.json`의 역할, 좌표/상세/가격 데이터 차이, robots/rate limit 고려사항, `1만원 이하 1천건` 선별 기준과 적재 전략이 `PROGRESS.md`에 정리된다 | `PLAN.md`, `PROGRESS.md`, 외부 사이트 구조 | | `착한가격업소` 실제 데이터를 더미 데이터 대신 넣을 수 있도록 수집 스크립트, 정규화 매핑, 좌표 확보 전략, import seed 경로를 구현한다 | Codex | P1 | `done` | 공식 다운로드 또는 페이지 수집으로 원천 데이터가 로컬 파일/테이블에 저장되고, `1만원 이하` 기준과 업종/지역 매핑이 정규화되며, 좌표는 목록 페이지 좌표 또는 별도 geocoding으로 채워지고, 최소 1천건이 앱에서 조회 가능하며, 검증 로그가 `PROGRESS.md`에 남는다 | 수집 설계 확정, `src/db/**`, import script, geocoding 경로, 검증 | +| importer의 선별 quota를 `서울 500 + 비서울 500`, `음식점 70%` 기준으로 재조정한다 | Codex | P1 | `done` | 기본 `data:goodprice` 실행 결과가 `대표 가격 1만원 이하`, `서울 500`, `비서울 500`, `음식점 700`, `비음식 300`을 동시에 만족하고, bucket 집계와 검증 결과가 `PROGRESS.md`/`README.md`에 남는다 | `scripts/import-goodprice.ts`, `src/features/places/imported-goodprice.json`, `data/goodprice/import-meta.json`, 문서 | ### Cycle 10: 관리자 앱 분리 1차 | 작업명 | 담당 에이전트 | 우선순위 | 상태 | 완료기준(DoD) | 의존성 | @@ -124,9 +125,16 @@ | 작업명 | 담당 에이전트 | 우선순위 | 상태 | 완료기준(DoD) | 의존성 | |---|---|---|---|---|---| | 로그인 상태 액션과 운영자 대시보드를 운영 가능한 수준으로 확장한다 | Codex | P1 | `done` | 로그인 사용자는 주요 화면 상단에서 계정 라벨과 로그아웃 버튼을 볼 수 있고, 운영자 사용자는 관리자 진입 링크와 `/admin` overview에서 장소 등록/가격 제보/신고 큐, 사용자 수, 현재 세션 수 같은 즉시 계산 가능한 지표를 확인할 수 있으며, 방문 수/활성 사용자 수는 별도 방문 이벤트 적재 기준으로 정의된 2차 작업 계획이 같이 남는다 | `src/app/**`, `src/features/auth/**`, `src/features/**/repository.ts`, `src/db/schema.ts`, `PLAN.md`, `PROGRESS.md`, `prd.md`, `trd.md`, 테스트 | +| public/admin 공통 헤더에 브랜드 로고와 핵심 이동 액션을 올려 모든 페이지에서 홈 복귀와 주요 이동을 일관되게 제공한다 | Codex | P1 | `done` | public 앱과 별도 admin 앱의 공통 레이아웃에 `알뜰맵` 로고, `장소 등록하기`, `북마크`, `로그인/로그아웃`, `운영자 관리` 액션이 공통 헤더로 제공되고, 기존 페이지별 중복 액션 블록은 제거되며, 현재 경로 기준 로그인/로그아웃 callback과 admin 진입 링크가 유지되고 검증 결과가 `PROGRESS.md`에 남는다 | `src/app/layout.tsx`, `apps/admin/src/app/layout.tsx`, `src/components/**`, `src/features/map/map-page.tsx`, `src/app/**`, `src/features/admin/pages/**`, `PROGRESS.md` | | visit/activity 이벤트 적재를 추가해 관리자 대시보드에 방문 수와 DAU/WAU를 노출한다 | Codex | P1 | `pending` | 방문 이벤트가 visitor/session 기준으로 저장되고, `/admin` overview에서 오늘/7일 방문 수, 고유 방문자 수, DAU/WAU, 재방문율 같은 활동 지표를 확인할 수 있으며, dedupe/rate limit/보존 정책과 검증 로그가 문서에 남는다 | `src/db/schema.ts`, migration, `src/app/**` 또는 middleware, `src/features/admin/**`, `PLAN.md`, `PROGRESS.md`, `trd.md`, 테스트 | | 로컬 credentials 중심 인증을 실제 로그인/회원가입 경로로 확장하고, 핵심 사용자 흐름 테스트/SEO/배포 체크리스트를 정리한다 | Codex | P2 | `in_progress` | 로컬 credentials 로그인/회원가입과 소셜 가입 진입면, 지도 탐색/모바일 시트/익명 장소 등록/북마크/신고/관리자 승인/관리자 가격 검토 E2E가 반복 가능하게 정리되고, 이후 실제 OAuth 1개 이상이 end-to-end로 확인되며, sitemap/canonical/metadata와 Cloudflare 배포 체크리스트가 최신 상태가 된다 | `src/auth.ts`, `src/app/login/page.tsx`, `src/app/signup/page.tsx`, 테스트 코드, `README.md`, `trd.md` | | 모바일 공개 지도 UX와 인증 진입면을 모바일 우선 기준으로 다시 정리한다 | Codex | P1 | `done` | 모바일에서 검색 외 필터는 접기 가능하고, 목록/상세 시트가 더 위로 올라오며, 로그인/회원가입이 기능 집중형 단일 카드 구조로 정리되고 관련 검증 로그가 `PROGRESS.md`에 남는다 | `src/app/map/page.tsx`, `src/features/places/map-explorer.tsx`, `src/features/places/place-detail-sheet.tsx`, `src/app/login/page.tsx`, `src/app/signup/page.tsx` | +| 공개 지도의 초기 payload와 렌더 밀도를 줄여 실데이터 1000건에서도 첫 진입/이동이 버벅이지 않게 만든다 | Codex | P1 | `done` | 지도 첫 화면과 `/api/places/map`는 상세용 배열 없이 가벼운 preview payload만 사용하고, 클라이언트는 마커/목록 렌더 개수를 제한해도 전체 개수와 상세 진입 흐름은 유지하며, 관련 검증/측정 결과가 `PROGRESS.md`에 남는다 | `src/features/places/types.ts`, `src/features/places/repository.ts`, `src/features/map/map-page.tsx`, `src/app/api/places/map/route.ts`, `src/features/places/map-explorer.tsx`, `src/features/map/naver-map-panel.tsx`, `src/features/places/place-detail-sheet.tsx`, 테스트/문서 | +| 공개 지도 첫 진입에서 viewport 결과 1000건을 SSR하지 않고, 초기 bootstrap bounds만 렌더한 뒤 client fetch로 전환한다 | Codex | P1 | `done` | viewport 모드의 `/` 첫 렌더는 지도 bootstrap bounds와 빈 preview 목록만 내려주고, 실제 장소 목록은 map idle 이후 `/api/places/map`로 채워지며, 글로벌 검색 SSR과 상세 진입 흐름은 유지되고 검증 로그가 `PROGRESS.md`에 남는다 | `src/features/map/map-page.tsx`, `src/features/places/map-explorer.tsx`, `src/features/map/naver-map-panel.tsx`, `src/app/api/places/map/route.ts`, 문서/검증 | +| 공개 지도 map API와 글로벌 검색 preview 응답에 서버 cap과 total count를 도입해 네트워크 payload를 줄인다 | Codex | P1 | `done` | `listMapPlaces()`와 `/api/places/map`는 전체 매칭 수와 실제 반환 수를 분리해 전달하고, viewport/global 결과는 서버 상한 이내의 preview만 보내며, 지도/목록 UI는 전체 개수와 축약 안내를 유지하고 검증 로그가 `PROGRESS.md`에 남는다 | `src/features/places/repository.ts`, `src/app/api/places/map/route.ts`, `src/features/map/map-page.tsx`, `src/features/places/map-explorer.tsx`, 문서/검증 | +| 공개 지도 읽기에서 쓰는 카테고리/반응 요약을 `places`에 비정규화해 map query의 join과 집계를 줄인다 | Codex | P1 | `done` | `places`는 `primaryCategorySlug`, `likeCount`, `dislikeCount`를 유지하고, 지도/global preview 및 상세 읽기는 이 필드를 우선 사용하며, 카테고리/반응 쓰기 경로와 seed/migration/backfill이 함께 갱신되고 검증 로그가 `PROGRESS.md`에 남는다 | `src/db/schema.ts`, `drizzle/**`, `src/features/places/repository.ts`, `src/db/seed.ts`, 문서/검증 | +| 공개 지도의 마커 샘플링을 viewport/zoom 기반 클러스터 계층으로 바꿔 넓은 영역에서도 실제 마커 수를 낮춘다 | Codex | P1 | `done` | 지도는 서버 cap으로 받은 preview를 그대로 유지하되, 실제 렌더는 viewport/zoom 기준 cluster marker를 사용하고, 넓은 viewport에서도 초기/이동 마커 수가 크게 줄며, preview fallback과 실지도 모두 같은 클러스터 규칙을 쓰고 검증 로그가 `PROGRESS.md`에 남는다 | `src/features/places/map-explorer.tsx`, `src/features/map/naver-map-panel.tsx`, `src/features/map/naver-map-sdk.ts`, 문서/검증 | +| 공개 지도 map API를 목록용 `items`와 지도용 `mapMarkers`로 분리하고, 넓은 viewport는 서버 tile summary를 내려 네트워크 payload를 더 줄인다 | Codex | P1 | `in_progress` | `/api/places/map`와 `listMapPlaces()`는 목록 패널에 필요한 preview와 지도 marker용 요약을 분리해 반환하고, 넓은 viewport에서는 개별 place 대신 tile/cluster summary가 내려오며, 클라이언트는 전체 개수/목록 UX를 유지한 채 marker payload를 더 적게 받고, 검증 로그가 `PROGRESS.md`에 남는다 | `src/features/places/repository.ts`, `src/app/api/places/map/route.ts`, `src/features/places/map-explorer.tsx`, `src/features/map/naver-map-panel.tsx`, 타입/문서/검증 | | 공개 지도의 플레이스 정렬 기능을 제거하고 검색/필터만 남긴다 | Codex | P1 | `done` | 지도 화면에서 정렬 UI와 `sort` query/API 계약이 제거되고, 공개 플레이스 목록은 고정 순서로 노출되며, 관련 테스트/문서/검증 로그가 같이 갱신된다 | `src/app/map/page.tsx`, `src/features/places/map-explorer.tsx`, `src/app/api/places/map/route.ts`, `src/features/places/**`, `tests/e2e/map.spec.ts`, 문서 | | 공개 장소 등록을 텍스트 입력 중심으로 단순화하고, 운영자 승인 단계에서 위치를 확정한다 | Codex | P1 | `done` | 공개 등록 폼은 상호명/주소/가격 등 텍스트 입력만 받고, 공개 제출 API는 좌표 없이 접수되며, 위치/지도/링크 처리는 운영자 승인 단계에서 수행하도록 화면/API/문서/검증 로그가 같은 규칙으로 정리된다 | `src/features/submission/**`, `src/features/places/admin-place-review-form.tsx`, `src/app/api/places/route.ts`, `src/app/api/admin/places/[id]/route.ts`, `tests/e2e/submission-admin.spec.ts`, `prd.md`, `trd.md` | | 장소 등록 진입/제출을 로그인 없이도 허용하고, 공개 CTA 문구를 `장소 등록` 기준으로 맞춘다 | Codex | P1 | `done` | 비로그인 사용자가 `/submit`에 바로 진입해 장소 등록 요청을 제출할 수 있고, 등록 API가 익명 제출을 허용하며, 공개 화면 CTA와 검증 로그가 `장소 등록` 기준으로 정리된다 | `src/app/submit/page.tsx`, `src/app/api/places/route.ts`, `src/app/map/page.tsx`, 테스트 코드 | diff --git a/PROGRESS.md b/PROGRESS.md index d3c2eb4..84cbab9 100644 --- a/PROGRESS.md +++ b/PROGRESS.md @@ -9,17 +9,219 @@ - Cycle 2: `PLAN.md`/`PROGRESS.md` 운영 문서 형식 정비, 지역/전역 검색, 검색 URL 상태 반영 완료 - Cycle 3: 댓글 작성/삭제, 기존 장소 가격 제보, 관리자 가격 검토 큐 완료 - Cycle 4: 관리자 가격 수정/숨김 UI, 대표 가격 재계산 규칙, 최소 rate limit, DB migration 적용, 실DB 런타임 검증 완료 -- Cycle 5: sitemap/robots/canonical/기본 metadata, OAuth scaffolding, deploy check, Playwright E2E 3차, 공개 UI polish 진행 중. 공개 쓰기는 북마크를 제외하고 익명 허용으로 정리됐고, 실제 외부 로그인 E2E와 운영 도메인 기준 점검은 남아 있음 +- Cycle 5: sitemap/robots/canonical/기본 metadata, OAuth scaffolding, deploy check, Playwright E2E 3차, 공개 UI polish 진행 중. 공개 쓰기는 북마크를 제외하고 익명 허용으로 정리됐고, public/admin 공통 헤더로 주요 이동 액션을 상단에 통합했다. 실제 외부 로그인 E2E와 운영 도메인 기준 점검은 남아 있음 - Cycle 5 장소 등록 정책: 공개 폼은 텍스트 정보만 받고, 지도 위치와 네이버 지도 검색 확인은 운영자 승인 단계에서 처리하도록 다시 정리됨 - Cycle 5 후속: GitHub Actions CI를 `push용 smoke`와 `PR용 full`로 분리하고 Cloudflare Builds와 분리 운영하는 경로 정리 완료 - Cycle 6: 좋아요/싫어요 반응 도입 완료, 비로그인 visitor cookie 반응과 공개 메타 줄 분리까지 반영. 랭킹/목록 노출 확장은 남아 있음 - Cycle 7: repo-local AI workflow 설정 완료 (`.agents`, `.githooks`, `verify`, local commit rules) - Cycle 8: 로컬 dev/runtime 안정화 완료 (`.next-dev` 분리, `webpack` dev 고정, build/e2e와 출력 경로 분리) -- Cycle 9: 행정안전부 `착한가격업소` 실제 데이터 1000건 import 완료. 지역 라운드로빈 수집, 상세 메뉴 보강, DB seed/API 검증까지 반영됨 +- Cycle 9: 행정안전부 `착한가격업소` 실제 데이터 1000건 import 완료. 기본 selection은 `서울 500 + 비서울 500`, `음식점 70%`, `대표 가격 1만원 이하`로 고정했고, 메뉴 라벨 dedupe까지 반영해 DB seed/API 검증을 다시 통과함 +- Cycle 5 지도 성능 후속: 지도 전용 preview payload와 마커/목록 렌더 상한, viewport 첫 진입의 1000건 SSR 제거, map API/server preview 응답 `count + capped items` 구조, `places` 비정규화, viewport/zoom 기반 cluster marker 계층까지 반영함 - 다음 우선순위: 관리자 visit/activity telemetry 2차, 이후 실제 외부 로그인 E2E와 운영 도메인 점검 ## 실행 로그 +### 2026-04-02 10:11 KST: 북마크 목록 조회 구조 단순화와 토글 회귀 테스트 보강 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/features/bookmarks/repository.ts`에 `listBookmarkedPlaces()`를 추가해 북마크 페이지가 전체 장소 목록을 다시 읽어 매칭하지 않고, `bookmarks -> places` join으로 바로 카드 데이터를 가져오도록 바꿨다. + - `/Users/alex/project/altteulmap/src/app/bookmarks/page.tsx`는 새 helper를 쓰도록 정리했다. 이제 북마크 목록이 다른 place list 정렬/필터 구현에 흔들리지 않고 저장 시점 순서대로 바로 렌더된다. + - `/Users/alex/project/altteulmap/src/features/bookmarks/bookmark-toggle-button.tsx`는 fetch 실패를 잡아 사용자 메시지를 남기고, 성공 시 stale message를 지우도록 보강했다. + - server refresh 뒤 버튼 상태가 초기 북마크 값과 어긋나지 않도록 `/Users/alex/project/altteulmap/src/features/places/map-explorer.tsx`, `/Users/alex/project/altteulmap/src/features/places/place-detail-sheet.tsx`, `/Users/alex/project/altteulmap/src/app/place/[id]/page.tsx`, `/Users/alex/project/altteulmap/src/app/bookmarks/page.tsx`에서 북마크 버튼 `key`를 상태 기준으로 줘 remount되게 했다. + - `/Users/alex/project/altteulmap/tests/e2e/bookmarks.spec.ts`는 오래된 fixture slug를 하드코딩하지 않고, 현재 `/api/places/map` 응답에서 실제 place를 골라 북마크 저장/해제 흐름을 검증하도록 바꿨다. +- 검증 결과 + - `npm run verify:quick` 통과 + - `AUTH_SECRET=altteulmap-local-auth-secret-change-me NEXTAUTH_URL=http://127.0.0.1:3107 AUTH_DEMO_PASSWORD=demo1234 AUTH_ADMIN_PASSWORD=admin1234 DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/altteulmap USE_MOCK_DATA=false npx playwright test tests/e2e/bookmarks.spec.ts` 통과 + - `npm run verify` 통과 + - build 중 `sitemap.xml` 단계에서 production DB의 `places` 테이블이 없을 때 mock fallback 로그는 기존과 동일하게 남지만, 빌드 자체는 성공 +- 메모 + - 로컬에서 북마크 API 저장/해제 자체는 재현 시 정상 동작했고, 이번 보강은 북마크 목록 조합과 client button state가 데이터셋/refresh 타이밍에 흔들릴 수 있는 지점을 먼저 정리하는 목적이다. + +### 2026-04-02 10:10 KST: viewport/zoom 기반 cluster marker 계층으로 지도 marker 수 축소 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/features/map/naver-map-panel.tsx`에 `PlaceDisplayMarker`, `ClusterDisplayMarker`, `MapDisplayMarker`와 `buildDisplayMarkers()`를 추가해, 서버가 내려준 preview를 viewport bounds/zoom/container size 기준 grid bucket으로 다시 묶도록 바꿨다. + - 같은 파일의 preview fallback과 실지도 marker 렌더가 모두 같은 `buildDisplayMarkers()` 결과를 사용하도록 정리했다. preview는 cluster badge를 직접 그리고, 실지도는 cluster marker와 place marker를 각각 다른 custom icon으로 렌더한다. + - active place는 cluster 안에 있더라도 단일 marker로 유지해 선택한 장소가 다시 숨지 않게 했고, 넓은 viewport에서는 cluster marker 클릭 시 해당 bounds로 `fitBounds` 또는 zoom-in 하도록 연결했다. + - `/Users/alex/project/altteulmap/src/features/places/map-explorer.tsx`는 더 이상 별도 marker 샘플링을 하지 않고, 지도에는 서버 cap preview 그대로 넘긴 뒤 실제 마커 축약은 `NaverMapPanel`의 cluster layer가 맡도록 단순화했다. +- 검증 결과 + - `npm run verify:quick` 통과 + - `npm run verify` 통과 + - build 중 `sitemap.xml` 단계에서 production DB에 `places` 테이블이 없을 때 mock fallback 로그는 기존과 동일하게 남지만, 빌드 자체는 성공 + - `DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/altteulmap PORT=3113 USE_MOCK_DATA=false NEXTAUTH_URL=http://127.0.0.1:3113 npm run start` 후 수동 확인 + - `curl -s 'http://127.0.0.1:3113/api/places/map?minLat=33&maxLat=39&minLng=124&maxLng=132'` 결과 + - `count: 1000` + - `returnedCount: 360` + - `truncated: true` + - Playwright headless runtime script 결과 + - `/` 진입 후 preview overlay 기준 `previewMarkerCount: 17` + - 그중 `clusterMarkerCount: 12` + - cluster 라벨 예시 `52, 39, 73, 88, 6, 6, 25, 9` + - 같은 시점 목록 DOM은 `placeListItems: 120` + - badge는 `507곳`, cluster 안내문 `가까운 장소는 묶어 표시합니다` 노출 확인 +- 메모 + - 이번 단계로 넓은 viewport에서도 서버가 내려준 `360` preview를 그대로 전부 마커로 그리지 않고, 실제 초기 preview overlay 기준 `17`개 marker만 보이게 줄었다. 다음 체감 최적화 후보는 cluster/tile을 SQL 단계나 타일 캐시와 더 직접 연결하는 방향이다. + +### 2026-04-02 10:58 KST: `places` 비정규화로 지도 읽기 join/반응 집계 축소 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/db/schema.ts`의 `places`에 `primary_category_slug`, `like_count`, `dislike_count`를 추가했고, `status + primary_category_slug` 인덱스를 붙였다. + - `/Users/alex/project/altteulmap/drizzle/0007_true_carmella_unuscione.sql`은 컬럼 추가 뒤 `place_categories`, `place_reactions`에서 기존 데이터를 backfill하도록 보강했다. 로컬 `db:push`는 schema 기준으로 컬럼/인덱스만 적용하므로, local DB 값은 이어서 `db:seed`로 채워 검증했다. + - `/Users/alex/project/altteulmap/src/features/places/repository.ts`는 지도/global preview와 일반 place list에서 더 이상 `loadCategoryMap()`이나 반응 count 집계를 돌지 않고 `places.primaryCategorySlug`, `places.likeCount`, `places.dislikeCount`를 직접 읽는다. + - 같은 파일의 상세 읽기는 요약 카운트는 `places`에서 바로 읽고, viewer-specific `viewerReaction`만 `place_reactions`에서 별도 조회하도록 줄였다. + - 반응 쓰기 경로도 바꿨다. `setDatabasePlaceReaction()` 뒤에 `refreshPlaceReactionSummary()`를 호출해 `places.like_count/dislike_count`를 즉시 동기화한다. + - `/Users/alex/project/altteulmap/src/db/seed.ts`, `/Users/alex/project/altteulmap/src/features/places/repository.ts`의 신규 place insert도 `primaryCategorySlug`, `likeCount`, `dislikeCount`를 함께 적재하도록 맞췄다. +- 검증 결과 + - `npm run db:generate` 통과 + - `npm run verify:quick` 통과 + - `npm run db:push` 통과 + - `npm run db:seed` 통과 + - `npm run verify` 통과 + - build 중 `sitemap.xml` 단계에서 production DB에 `places` 테이블이 없을 때 mock fallback 로그는 기존과 동일하게 남지만, 빌드 자체는 성공 + - `DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/altteulmap PORT=3111 USE_MOCK_DATA=false NEXTAUTH_URL=http://127.0.0.1:3111 npm run start` 후 수동 확인 + - `psql ... -Atc "select count(*) from places where primary_category_slug is null;"` 결과 `0` + - `curl -s 'http://127.0.0.1:3111/api/places/map?category=korean&minLat=33&maxLat=39&minLng=124&maxLng=132'` 결과 + - `count: 524` + - `returnedCount: 360` + - 응답 preview의 `categorySlug`가 모두 `korean` + - 반응 동기화 확인 + - `PUT /api/places/goodprice-17626/reaction` with `{"reaction":"like"}` 결과 `likeCount: 1` + - 직후 DB 값 `goodprice-17626|1|0` + - 같은 visitor cookie로 `{"reaction":null}` 결과 `likeCount: 0` + - 직후 DB 값도 `goodprice-17626|0|0`으로 복귀 +- 메모 + - 이번 단계로 지도 읽기 경로는 `place_categories`/`place_reactions`에 대한 bulk lookup 없이 `places` 단일 테이블 중심으로 preview를 만들 수 있게 됐다. 다음 체감 최적화 후보는 viewport 규모별 cluster/tile 계층 도입이나, 넓은 viewport에서 SQL 단계 limit/cluster key를 더 직접 활용하는 방향이다. + +### 2026-04-02 10:00 KST: public/admin 공통 헤더 도입과 페이지별 중복 상단 액션 제거 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/components/global-header.tsx`를 추가해 `알뜰맵` 로고, `장소 등록하기`, `북마크`, `운영자 관리`, `로그인/로그아웃`을 공통 헤더로 묶었다. + - `/Users/alex/project/altteulmap/src/lib/auth-navigation.ts`를 추가하고 `/Users/alex/project/altteulmap/src/lib/session.ts`의 로그인/회원가입 callback helper를 분리해, client header에서도 현재 경로 기준 로그인 링크를 안전하게 만들 수 있게 했다. + - `/Users/alex/project/altteulmap/src/app/layout.tsx`, `/Users/alex/project/altteulmap/apps/admin/src/app/layout.tsx`에 공통 헤더를 연결해 public 앱과 별도 admin 앱 모두에서 같은 상단 이동 구조를 쓰도록 맞췄다. + - `/Users/alex/project/altteulmap/src/features/map/map-page.tsx`, `/Users/alex/project/altteulmap/src/app/submit/page.tsx`, `/Users/alex/project/altteulmap/src/app/report/page.tsx`, `/Users/alex/project/altteulmap/src/app/bookmarks/page.tsx`, `/Users/alex/project/altteulmap/src/app/login/page.tsx`, `/Users/alex/project/altteulmap/src/app/signup/page.tsx`, `/Users/alex/project/altteulmap/src/app/place/[id]/page.tsx`와 관리자 페이지들에서 페이지별 상단 액션 블록을 제거하고, 페이지 본문은 제목/로컬 서브 내비게이션만 남도록 정리했다. + - 더 이상 쓰지 않는 `/Users/alex/project/altteulmap/src/features/auth/session-action-group.tsx`는 삭제했다. +- 검증 결과 + - `npm run verify:quick` 통과 + - Playwright headless DOM 점검으로 `/`, `/submit`, `/bookmarks`, `/login`, `/admin`에서 공통 `
`와 `알뜰맵`, `장소 등록하기`, `북마크`, `운영자 관리`, `로그인` 링크 존재 확인 + - `rg -n "SessionActionGroup" src/app src/features apps/admin/src/app` 결과 정의 파일 외 사용처 0건 확인 후 파일 삭제 +- 메모 + - `/Users/alex/project/altteulmap/apps/admin` 전체 build는 현재 저장소의 기존 shared blocker인 `/Users/alex/project/altteulmap/src/features/places/repository.ts` 타입 오류가 남아 있어 별도 재검증을 생략했다. 공통 헤더 자체는 public 라우트 기준 런타임에서 먼저 확인했다. + +### 2026-04-02 10:46 KST: map API 서버 cap과 total count 분리로 네트워크 payload 축소 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/features/places/repository.ts`의 `PlacePreviewListResult`에 전체 매칭 수 `count`를 추가하고, 지도 preview 응답은 최대 `360`건만 반환하도록 바꿨다. + - 검색어가 있는 글로벌 검색은 기존 정렬 순서를 유지하도록 상위 preview만 자르고, viewport/기본 탐색은 grid bucket round-robin 방식으로 공간 분산 샘플링을 적용해 한 구역에 과도하게 쏠리지 않게 했다. + - `/Users/alex/project/altteulmap/src/app/api/places/map/route.ts`는 이제 `count`, `returnedCount`, `truncated`를 같이 내려준다. `count`는 전체 조건 일치 수, `returnedCount`는 실제 응답 preview 수다. + - `/Users/alex/project/altteulmap/src/features/map/map-page.tsx`, `/Users/alex/project/altteulmap/src/features/places/map-explorer.tsx`, `/Users/alex/project/altteulmap/src/features/map/naver-map-panel.tsx`를 함께 수정해 지도/목록 badge는 전체 개수 기준으로 보이게 하고, 서버 cap이 걸렸을 때는 `총 N곳 중 M곳만 먼저 불러옴` 안내를 표시하도록 바꿨다. + - 검증 중 드러난 기존 회귀도 같이 복구했다. `/Users/alex/project/altteulmap/src/lib/session.ts`에서 auth navigation helper를 외부 파일로 분리한 뒤 re-export가 빠져 있었고, 이 때문에 `/Users/alex/project/altteulmap/src/app/bookmarks/page.tsx` 등 `@/lib/session` import가 build에서 깨졌다. helper re-export를 복구해 기존 import 계약을 유지했다. +- 검증 결과 + - `npm run verify:quick` 통과 + - `npm run verify` 통과 + - build 중 `sitemap.xml` 단계에서 production DB에 `places` 테이블이 없을 때 mock fallback 로그는 기존과 동일하게 남지만, 빌드 자체는 성공 + - `DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/altteulmap PORT=3111 USE_MOCK_DATA=false NEXTAUTH_URL=http://127.0.0.1:3111 npm run start` 후 수동 확인 + - `curl -s 'http://127.0.0.1:3111/api/places/map?minLat=33&maxLat=39&minLng=124&maxLng=132'` 결과 + - `count: 1000` + - `returnedCount: 360` + - `truncated: true` + - Playwright headless runtime script 결과 + - `/` 진입 직후 `initialListCount: 0`, 지도 badge `불러오는 중` + - client fetch 후 `hydratedListCount: 120`, 지도 badge `507곳`, 서버 cap 안내문 1개 노출 + - `/?q=김밥&scope=global` 진입 직후 `globalListCount: 40`, 서버 cap 안내문 0개 +- 메모 + - 이번 단계로 map API는 더 이상 전체 preview 1000건을 매번 직렬화해 보내지 않는다. 다음 체감 최적화 후보는 카테고리/반응 요약을 `places`에 비정규화해 map read를 단일 테이블 중심으로 줄이거나, viewport가 넓을 때는 cluster tile 계층으로 넘어가는 것이다. + +### 2026-04-02 10:23 KST: viewport 첫 진입의 장소 SSR 제거와 bootstrap client fetch 전환 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/features/map/map-page.tsx`에서 viewport 모드의 `/` 첫 렌더가 더 이상 `listMapPlaces()`를 서버에서 호출하지 않도록 바꿨다. 기본 진입은 서울 bootstrap bounds만 내려주고, 글로벌 검색일 때만 서버가 preview 목록을 미리 채운다. + - 같은 흐름을 위해 `/Users/alex/project/altteulmap/src/features/places/map-explorer.tsx`에 `prefetchedOnServer` 기준 첫 fetch 스킵 로직을 넣었다. 이제 viewport 기본 진입은 mount 후 map idle 시점에 `/api/places/map`를 호출하고, 글로벌 검색은 기존처럼 SSR 결과를 그대로 보여주며 첫 중복 fetch를 생략한다. + - `/Users/alex/project/altteulmap/src/features/map/naver-map-panel.tsx`는 장소가 0건이어도 `initialBounds`가 있으면 바로 `fitBounds` 하도록 수정했다. 덕분에 빈 bootstrap 상태에서도 서울 범위를 먼저 보여주고, 로딩 중에는 지도/목록 배지에 `불러오는 중` 상태를 노출한다. +- 검증 결과 + - `npm run verify:quick` 통과 + - `npm run verify` 통과 + - build 중 `sitemap.xml` 단계에서 production DB에 `places` 테이블이 없을 때 mock fallback 로그는 계속 남지만, 기존과 동일하게 빌드 자체는 성공 + - `DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/altteulmap PORT=3111 USE_MOCK_DATA=false NEXTAUTH_URL=http://127.0.0.1:3111 npm run start` 후 수동 확인 + - `curl -s http://127.0.0.1:3111/ | rg -o 'data-testid="place-list-item-[^"]+"' -c` 결과 match 없음(exit 1)으로 viewport 기본 진입의 raw HTML에 목록 item SSR이 사라진 것 확인 + - `curl -s 'http://127.0.0.1:3111/?q=%EA%B9%80%EB%B0%A5&scope=global' | rg -o 'data-testid="place-list-item-[^"]+"' -c` 결과 `40`으로 글로벌 검색 SSR 유지 확인 + - Playwright headless runtime script 결과 + - `/` 진입 직후 `initialCount: 0`, 로딩 문구 2개 노출 + - client fetch 후 `hydratedCount: 120`, 지도 배지 `240곳` + - `/?q=김밥&scope=global` 진입 직후 `globalImmediateCount: 40` +- 메모 + - 이번 단계로 가장 큰 초기 payload 병목인 `viewport 1000건 SSR`은 제거됐다. 다음 체감 최적화 후보는 `/api/places/map` 응답 자체에 서버 cap을 두고 `items + totalCount`로 분리하는 것이다. + +### 2026-04-02 10:04 KST: 지도 페이지 외곽 셸 폭 확장 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/features/map/map-page.tsx`의 지도 페이지 바깥 셸만 조정했다. `max-w-7xl`를 `max-w-[96rem]`로 넓히고, `main` 좌우 padding은 줄였으며, 카드 내부 padding도 `p-4/sm:p-6/xl:p-7`로 얕게 바꿨다. + - 같은 `rounded-[2rem] border ...` 카드 클래스가 등록/신고/관리자 화면에도 반복되지만, 이번에는 지도 페이지에만 적용했다. 폼 화면까지 같이 넓히면 읽기성이 떨어질 수 있어서 분리 유지가 낫다고 판단했다. + - 이어서 `/Users/alex/project/altteulmap/src/features/places/map-explorer.tsx`의 desktop 그리드를 `xl:grid-cols-[minmax(0,2.2fr)_15rem] 2xl:grid-cols-[minmax(0,2.35fr)_15.5rem]`로 바꿨고, `/Users/alex/project/altteulmap/src/features/places/place-detail-sheet.tsx`의 desktop 상세 패널 최대 폭도 `25.5rem / 26.5rem`로 줄여 지도 작업면을 더 확보했다. +- 검증 결과 + - `npm run verify:quick` 통과 + - Playwright headless로 `1440px` viewport에서 `/` 진입 후 레이아웃 폭 측정 결과 `main padding-left: 24px`, `shellWidth: 1392`, `sectionWidth: 1392` 확인 + - 같은 `1440px` viewport에서 지도 grid 재측정 결과 `gridWidth: 1334`, `mapWidth: 1078`, `listWidth: 240`, 상세 패널 open 폭 `408` 확인 +- 메모 + - 지도 화면은 카드형 읽기 레이아웃보다 작업면 확보가 더 중요하다. 다음 후속으로는 필요 시 `MapExplorer`의 desktop list 폭과 map/list 비율도 따로 손볼 수 있다. + +### 2026-04-02 09:56 KST: 공개 입력 폼 비율 규칙 재정리와 모바일/detail sheet 가로 넘침 제거 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/features/places/place-price-report-form.tsx`에서 가격 제보 폼을 모바일 기본 1열로 되돌리고, 2열 전환 시점을 `md`로 늦췄다. `minmax(0, ...)` 기반 grid와 `altteulmap-input` 공용 폭 규칙을 적용해 detail sheet 안에서도 오른쪽 가격 입력이 카드 밖으로 튀어나오지 않게 정리했다. + - 같은 폼에서 `로그인 없이 새 가격 제보를 보낼 수 있습니다.` 보조 문구를 제거하고, 액션 버튼은 모바일에서 `w-full`, 넓은 화면에서는 `w-auto`로 동작하게 바꿨다. + - `/Users/alex/project/altteulmap/src/features/places/place-comments-section.tsx`의 코멘트 입력도 같은 규칙으로 바꿨다. textarea 높이/resize, 버튼 정렬, `min-w-0`를 보강했고 `로그인 없이 익명 코멘트를 남길 수 있습니다.` 문구를 제거했다. + - `/Users/alex/project/altteulmap/src/features/submission/place-submit-form.tsx`, `/Users/alex/project/altteulmap/src/features/reports/report-submit-form.tsx`도 같은 입력 규칙으로 통일했다. 공개 등록의 가격 항목 grid는 `lg` 이전에는 세로 스택으로 유지하고, 모든 input/select/textarea에 `w-full + min-w-0`가 보장되도록 정리했다. + - `/Users/alex/project/altteulmap/src/app/globals.css`의 `altteulmap-input`에 `width: 100%`, `min-width: 0`, placeholder 색상을 추가했고, `/Users/alex/project/altteulmap/src/app/place/[id]/page.tsx`, `/Users/alex/project/altteulmap/src/features/places/place-detail-sheet.tsx`의 가격 항목 row도 모바일에서 세로 배치로 바꿔 긴 텍스트/가격 조합이 좁은 폭에서 겹치지 않게 했다. +- 검증 결과 + - `npm run verify:quick` 통과 + - `rg -n "로그인 없이 .*제보|로그인 없이 .*코멘트|로그인 없이 .*등록" src/features src/app` 결과 0건 + - Playwright headless DOM audit로 `390px` viewport에서 `/submit`, `/report?placeId=test-place&placeName=테스트 장소`, `/place/goodprice-16045`, 홈 detail sheet의 `main`/해당 폼 `scrollWidth === clientWidth` 확인 + - 같은 DOM audit를 `700px` viewport에서 `/place/goodprice-16045`, 홈 detail sheet에 다시 실행했고 `overflowX: false` 확인 +- 메모 + - 이번 수정은 단일 스크린샷 대응이 아니라 `sm`에서 너무 이르게 다열 grid로 넘어가던 공개 폼 전반을 정리하는 목적이다. 앞으로 입력 폼은 `모바일 1열 -> md/lg 이후 다열`, `input/select/textarea는 공용 폭 규칙`, `하단 액션은 모바일 세로 정렬`을 기본값으로 삼는다. + +### 2026-04-02 09:38 KST: 지도 전용 preview payload와 렌더 상한으로 실데이터 1000건 지도 성능 완화 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/features/places/types.ts`에 `PlacePreviewRecord`를 추가하고, `/Users/alex/project/altteulmap/src/features/places/repository.ts`에 지도 전용 `listMapPlaces()`를 분리했다. 지도 첫 화면과 `/Users/alex/project/altteulmap/src/app/api/places/map/route.ts`는 더 이상 `priceItems/history/comments`를 실어 보내지 않는다. + - `/Users/alex/project/altteulmap/src/features/map/map-page.tsx`, `/Users/alex/project/altteulmap/src/features/places/map-explorer.tsx`, `/Users/alex/project/altteulmap/src/features/map/naver-map-panel.tsx`를 수정해 지도는 preview payload만 받고, 클라이언트 렌더는 `목록 최대 120개`, `마커 최대 240개` 기준으로 제한한다. 마커는 grid 샘플링으로 한 지역에 과도하게 몰리지 않게 했다. + - 같은 `/Users/alex/project/altteulmap/src/features/places/map-explorer.tsx`에서 viewport 재조회 요청을 4자리 반올림 bounds 기반 request key로 묶고, `180ms` debounce를 걸었다. 이전에는 idle 이벤트마다 새 bounds object가 들어와 같은 영역에서도 반복 fetch가 날 수 있었다. + - `/Users/alex/project/altteulmap/src/features/places/place-detail-sheet.tsx`는 preview payload에서도 바로 열리도록 조정했다. 기본 정보는 preview로 즉시 보여주고, 상세 가격/코멘트는 기존 `/api/places/[id]` fetch가 도착하면 채운다. +- 검증 결과 + - `npm run verify:quick` 통과 + - `npm run verify` 통과. build 중 `.env.production.local` DB에 `places` 테이블이 없어 sitemap build 로그에는 기존 mock fallback 메시지가 남지만 lint/build는 성공 + - `DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/altteulmap PORT=3111 USE_MOCK_DATA=false NEXTAUTH_URL=http://127.0.0.1:3111 npm run start` 후 Playwright 브라우저 스크립트로 `/` 진입 시 `place-list-item-*` DOM 수 `120`, `map-preview-marker-*` DOM 수 `21`, 렌더 상한 안내 문구 노출 확인 + - 같은 runtime에서 `curl 'http://127.0.0.1:3111/api/places/map?minLat=33&maxLat=39&minLng=124&maxLng=132'` 검사 결과 `count: 1000`, `source: "database"` 유지, 첫 item key에 `priceItems/history/comments`가 빠진 preview payload 확인 + - 기존 `tests/e2e/map.spec.ts`, `tests/e2e/map.mobile.spec.ts`는 현재 저장소가 실데이터 import를 기본 시드로 쓰면서 여전히 `"학교앞김밥"`, `"6곳"` 같은 mock fixture를 기대해 실패했다. 이번 지도 성능 변경의 직접 회귀라기보다 테스트 데이터 계약 미스매치다. +- 메모 + - 지도 상단 뱃지는 전체 결과 수를 계속 보여주고, 실제 DOM 렌더 개수만 줄인다. 따라서 “현재 지도에 몇 곳이 있는지” 정보와 “브라우저가 한 번에 그리는 양”을 분리할 수 있다. + - 다음 지도 품질 후속 후보는 `viewport zoom 수준별 marker cap 조정`, `가상 스크롤 목록`, `초기 서울/현재 위치 기준 bootstrap`이다. + +### 2026-04-02 09:34 KST: auth 성공 이동의 라우터 액션 충돌 제거와 NextAuth route handler 복구 +- 완료 내용 + - `/Users/alex/project/altteulmap/src/features/auth/login-form.tsx`, `/Users/alex/project/altteulmap/src/features/auth/signup-form.tsx`에서 인증 성공 후 `router.replace()`와 `router.refresh()`를 연달아 호출하던 흐름을 제거했다. 이제 `signIn` 결과의 `url` 또는 `callbackUrl`로 `window.location.assign()`을 사용해 이동하므로 App Router 초기화 타이밍에 의존하지 않는다. + - `/Users/alex/project/altteulmap/src/app/api/auth/[...nextauth]/route.ts`에서 lazy NextAuth wrapper가 `context`를 버리던 문제를 고쳤다. 이전에는 `NextAuth(getAuthOptions())(request)`만 호출해 App Route가 아니라 Pages API 경로로 오인되었고, 그 결과 `/api/auth/providers`에서 `Cannot destructure property 'nextauth' of 'req.query' as it is undefined` 500이 발생했다. +- 검증 결과 + - `npm run verify:quick` 통과 + - `curl -i -s http://localhost:3000/api/auth/providers` 결과 `200 OK`와 provider JSON 응답 확인 + - Playwright 브라우저 스모크로 `http://localhost:3000/signup?callbackUrl=%2Fbookmarks` 진입 후 신규 계정 가입 완료, 최종 URL `http://localhost:3000/bookmarks`, browser `errors: []` 확인 + - `npm run build`는 기존 타입 오류 `src/features/places/repository.ts:862` (`PlacePreviewRecord[]` -> `PlaceRecord[]`)로 실패. 이번 auth/router 수정 파일과는 무관한 현재 저장소 blocker로 분리 판단 +- 메모 + - 이번 runtime error는 auth 성공 직후 client router action을 중복 dispatch하던 흐름이 가장 유력한 원인이었다. NextAuth route handler 500도 동시에 존재해 인증 화면 자체를 불안정하게 만들고 있었으므로 함께 정리했다. + +### 2026-04-02 09:28 KST: `착한가격업소` importer quota를 `서울 500 + 비서울 500`, `음식점 70%`로 재조정하고 seed blocker 수정 +- 완료 내용 + - `/Users/alex/project/altteulmap/scripts/import-goodprice.ts`에 quota 기반 selection 로직을 추가했다. 기본 `data:goodprice` 실행은 `서울 500`, `비서울 500`, `음식점 700`, `비음식 300`을 동시에 채울 때까지 수집하고, 비서울은 시도별 round-robin을 유지한다. + - 같은 스크립트에 `--seoul-limit`, `--food-ratio` 옵션을 추가했다. 작은 샘플 실행에서는 `limit`에 맞춰 서울 quota가 자동 축소되고, 기본 `1000건` 실행에서는 `서울 500 + 비서울 500`이 유지된다. + - 상세 메뉴에서 같은 장소 안에 동일 메뉴 라벨이 여러 가격으로 내려오는 경우가 있어, importer에서 메뉴 라벨을 정규화해 한 항목으로 접도록 수정했다. 우선순위는 `대표 지정 메뉴`, `목록 대표 가격과 일치`, `같은 라벨이면 더 낮은 가격` 순서다. + - `/Users/alex/project/altteulmap/src/features/places/imported-goodprice.json`, `/Users/alex/project/altteulmap/data/goodprice/import-meta.json`, `/Users/alex/project/altteulmap/README.md`, `/Users/alex/project/altteulmap/PLAN.md`를 새 기본 quota와 seed 호환 결과에 맞게 갱신했다. + - 최종 생성 결과는 `1000` places, `2581` price items이며, `서울 500`, `비서울 500`, `음식점 700`, `비음식 300`, `대표 가격 최대 10000원`, `priceItems > 10000` `0건`, `장소별 중복 메뉴 라벨` `0건`이다. +- 검증 결과 + - `npm run data:goodprice -- --limit=20 --delay-ms=50 --timeout-ms=10000 --include-detail=false --output=/tmp/goodprice-20.json --manifest=/tmp/goodprice-20-manifest.json` 통과. 결과 `서울 10`, `비서울 10`, `음식점 14`, `비음식 6` 확인 + - `npm run data:goodprice -- --delay-ms=50 --timeout-ms=10000` 1차 실행 후 `npm run db:seed`에서 `price_items_place_label_unique` 위반 재현 + - importer dedupe 수정 후 `npm run data:goodprice -- --delay-ms=50 --timeout-ms=10000` 재실행 통과 + - `python3`로 `/Users/alex/project/altteulmap/src/features/places/imported-goodprice.json`, `/Users/alex/project/altteulmap/data/goodprice/import-meta.json` 검사 결과 `1000/500/500/700/300`, `priceItems > 10000 = 0`, `duplicateLabelPlaces = 0`, manifest quota target/actual 일치 확인 + - `npm run verify:quick` 통과 + - `npm run verify` 통과. build 중 `.env.production.local` DB에 `places` 테이블이 없어 mock fallback 로그는 남았지만 lint/build 자체는 성공 + - `npm run db:up` 통과 + - `npm run db:seed` 통과 + - `node - <<'NODE' ... select count(*) from places/price_items ... NODE` 결과 `placeCount 1000`, `priceItemCount 2581`, `seoulCount 500` 확인 + - `DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/altteulmap PORT=3111 USE_MOCK_DATA=false NEXTAUTH_URL=http://127.0.0.1:3111 npm run start` 후 `curl 'http://127.0.0.1:3111/api/places/map?minLat=33&maxLat=39&minLng=124&maxLng=132'` 결과 `source: "database"`, `count: 1000` 확인 +- 메모 + - plain `npm run start`는 `.env.production.local` 쪽 DB를 먼저 읽어 local seed와 다른 DB를 바라볼 수 있다. 로컬 DB 기반 runtime 확인이 필요하면 이번처럼 `DATABASE_URL`을 명시적으로 주입하는 편이 안전하다. + - 비서울 500은 시도별 round-robin으로 채우고 있어서 전국 분포는 과도하게 한 지역에 몰리지 않는다. 현재 실제 결과는 `data/goodprice/import-meta.json`의 `regions`, `categories`, `quotas`에서 바로 확인할 수 있다. + ### 2026-04-02 09:08 KST: `착한가격업소` 실제 데이터 importer 구현과 1000건 seed 반영 - 완료 내용 - `/Users/alex/project/altteulmap/scripts/import-goodprice.ts`를 추가했다. `bsshList.do`를 지역별 round-robin으로 순차 POST 요청해 `대표 가격 <= 10000원`인 업소만 모으고, 선택된 업소에 한해서 `bsshInfo.json`으로 상세 메뉴를 보강한 뒤 앱용 `PlaceRecord[]`로 변환한다. @@ -121,6 +323,20 @@ - 이번 이슈의 직접 원인은 `next dev`가 `.next/dev/cache/turbopack` 아래 SST/metadata를 쓰는 동안, build/start/e2e 경로가 같은 `.next`를 다시 만지면서 cache 참조가 깨진 것이다. 사용자에게 보인 `Unable to open static sorted file`, `Failed to lookup task ids`, `Another write batch or compaction is already active`는 이 충돌의 결과다. - 이후 로컬 dev가 다시 이상하면 production 산출물인 `.next`는 건드리지 말고 `rm -rf .next-dev && npm run dev`로 복구하는 것을 기본 경로로 삼는다. +### 2026-04-02 09:27 KST: `.next-dev` 자동 삭제 제거로 webpack pack cache ENOENT 재발 방지 +- 완료 내용 + - `/Users/alex/project/altteulmap/package.json`에서 `dev`, `build`, `cf:clean`이 더 이상 `.next-dev`를 자동 삭제하지 않도록 수정했다. 이제 `.next-dev`는 오직 dev 서버 전용 산출물로 유지되고, production build와 Cloudflare clean은 `.next`/`.open-next`만 정리한다. + - `/Users/alex/project/altteulmap/apps/admin/package.json`도 같은 규칙으로 맞춰 `dev`/`build`가 관리자 dev 산출물을 임의로 지우지 않게 했다. + - `/Users/alex/project/altteulmap/package.json`, `/Users/alex/project/altteulmap/apps/admin/package.json`에 `dev:clean`을 추가했고, `/Users/alex/project/altteulmap/README.md`의 복구 절차도 `npm run dev:clean` 기준으로 정리했다. +- 검증 결과 + - `npm run verify:quick` 통과 + - `npm run dev:clean` 후 `npm run dev` 기동, `curl -s -o /tmp/altteulmap-root-after-dev.html -w '%{http_code}' http://127.0.0.1:3000/` 결과 `200` + - dev 서버 유지 상태에서 `npm run build` 통과 + - build 직후 `test -d .next-dev/dev/cache/webpack/client-development && echo present-after-build` 확인 + - build 직후 `curl -s -o /tmp/altteulmap-root-after-build.html -w '%{http_code}' http://127.0.0.1:3000/` 결과 `200` +- 메모 + - 이번 `ENOENT ... .next-dev/dev/cache/webpack/client-development/*.pack.gz`는 webpack pack cache가 손상된 것이 아니라, 다른 스크립트가 살아 있는 dev 산출물 디렉터리를 지워서 생긴 증상으로 판단했다. + ### 2026-04-02 08:18 KST: `/map` 호환 경로를 redirect로 줄이고 홈 단일 진입점으로 정리 - 완료 내용 - `/Users/alex/project/altteulmap/src/features/map/map-page.tsx`로 실제 지도 홈 구현을 분리했다. diff --git a/README.md b/README.md index 6072f16..de2da16 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,10 @@ npm run dev 로컬 개발 서버는 `webpack` 기반으로 실행되고 산출물을 `.next-dev`에 저장합니다. 반대로 `build`, `start`, Playwright E2E, Cloudflare 빌드는 계속 `.next` 또는 `.open-next`를 사용하므로, dev 서버를 띄운 채 빌드/검증을 돌려도 예전처럼 같은 `.next`를 공유하며 깨지지 않습니다. -페이지 전환이 멈추거나 dev cache가 이상하면 아래처럼 dev 산출물만 비우고 다시 올리면 됩니다. +페이지 전환이 멈추거나 dev cache가 이상하면 실행 중인 dev 서버를 먼저 내린 뒤, dev 산출물만 비우고 다시 올리면 됩니다. ```bash -rm -rf .next-dev +npm run dev:clean npm run dev ``` @@ -48,6 +48,7 @@ npm run preview ``` - `dev`: Next.js 로컬 개발 서버 (`webpack`, `.next-dev`) +- `dev:clean`: 로컬 dev 산출물 `.next-dev`만 수동 정리 - `lint`: ESLint 검사 - `build`: Next.js 프로덕션 빌드 (`.next`) - `verify`: 현재 프로젝트 기준 전체 기본 검증(`lint + build`) @@ -62,10 +63,10 @@ npm run preview - `db:up`: 로컬 Postgres 컨테이너 시작 - `db:generate`: Drizzle 마이그레이션 SQL 생성 - `db:push`: 로컬/개발 DB에 스키마 반영 -- `db:seed`: 로컬 DB에 시드 데이터 입력 (`imported-goodprice.json`이 있으면 실제 착한가격업소 1000건 우선 사용) -- `data:goodprice`: 행정안전부 `착한가격업소` 사이트에서 `1만원 이하` 실제 업소를 수집해 `src/features/places/imported-goodprice.json`과 `data/goodprice/import-meta.json` 생성 +- `db:seed`: 로컬 DB에 시드 데이터 입력 (`imported-goodprice.json`이 있으면 실제 착한가격업소 1000건을 우선 사용) +- `data:goodprice`: 행정안전부 `착한가격업소` 사이트에서 `1만원 이하` 실제 업소를 수집해 `src/features/places/imported-goodprice.json`과 `data/goodprice/import-meta.json` 생성. 기본 quota는 `서울 500 + 비서울 500`, `음식점 70%`다 - `db:down`: 로컬 Postgres 컨테이너 중지 -- `cf:clean`: Cloudflare 빌드 전 `.next`, `.next-dev`, `.open-next` 정리 +- `cf:clean`: Cloudflare 빌드 전 `.next`, `.open-next` 정리 - `cf:build`: Cloudflare 배포용 clean build - `preview`: OpenNext로 Cloudflare Workers 런타임 미리보기 - `preview:public`: 관리자 route를 제외한 public 앱 preview @@ -117,7 +118,9 @@ npm run data:goodprice -- --delay-ms=50 --timeout-ms=10000 npm run db:seed ``` -생성된 `src/features/places/imported-goodprice.json`은 mock fallback과 DB seed 양쪽에서 공통으로 우선 사용합니다. 수집 메타와 원본 업소 id/지역 분포는 `data/goodprice/import-meta.json`에 남습니다. +기본 수집값은 `대표 가격 1만원 이하`, `서울 500 + 비서울 500`, `음식점 70%`입니다. 다른 분포가 필요하면 `--limit`, `--seoul-limit`, `--food-ratio`, `--max-price`를 함께 넘기면 됩니다. + +생성된 `src/features/places/imported-goodprice.json`은 mock fallback과 DB seed 양쪽에서 공통으로 우선 사용합니다. 수집 메타와 원본 업소 id, quota 결과, 지역/업종 분포는 `data/goodprice/import-meta.json`에 남습니다. 기본 예시는 `.env.example`에 들어 있고, 로컬 `.env`도 같은 값으로 맞춰두었습니다. diff --git a/apps/admin/package.json b/apps/admin/package.json index c40cc33..6157899 100644 --- a/apps/admin/package.json +++ b/apps/admin/package.json @@ -2,8 +2,9 @@ "name": "altteulmap-admin", "private": true, "scripts": { - "build": "rm -rf .next .next-dev && node ../../node_modules/next/dist/bin/next build --webpack", - "dev": "rm -rf .next-dev && node ../../node_modules/next/dist/bin/next dev --webpack -p 3001", + "build": "rm -rf .next && node ../../node_modules/next/dist/bin/next build --webpack", + "dev": "node ../../node_modules/next/dist/bin/next dev --webpack -p 3001", + "dev:clean": "rm -rf .next-dev", "start": "node ../../node_modules/next/dist/bin/next start -p 3001" } } diff --git a/apps/admin/src/app/layout.tsx b/apps/admin/src/app/layout.tsx index 91bfd8f..096cc13 100644 --- a/apps/admin/src/app/layout.tsx +++ b/apps/admin/src/app/layout.tsx @@ -1,5 +1,9 @@ import type { Metadata } from "next"; +import { GlobalHeader } from "@/components/global-header"; +import { getSessionUser } from "@/lib/session"; +import { createSiteUrl } from "@/lib/site"; + import "./globals.css"; export const metadata: Metadata = { @@ -10,14 +14,23 @@ export const metadata: Metadata = { description: "알뜰맵 운영 콘솔", }; -export default function AdminRootLayout({ +export default async function AdminRootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { + const user = await getSessionUser(); + return ( - - {children} + + + + {children} + ); } diff --git a/data/goodprice/import-meta.json b/data/goodprice/import-meta.json index f7b33d5..f296683 100644 --- a/data/goodprice/import-meta.json +++ b/data/goodprice/import-meta.json @@ -1,9 +1,11 @@ { "source": "https://goodprice.go.kr/bssh/bsshList.do", - "importedAt": "2026-04-01T23:59:20.790Z", + "importedAt": "2026-04-02T00:26:43.498Z", "options": { "limit": 1000, "maxPrice": 10000, + "seoulLimit": 500, + "foodRatio": 0.7, "delayMs": 50, "timeoutMs": 10000, "includeDetail": true, @@ -11,137 +13,140 @@ "manifestPath": "data/goodprice/import-meta.json" }, "selectedCount": 1000, + "quotas": { + "seoulLimit": 500, + "nonSeoulLimit": 500, + "foodRatio": 0.7, + "targets": { + "seoulFood": 350, + "seoulNonFood": 150, + "nonSeoulFood": 350, + "nonSeoulNonFood": 150 + }, + "actual": { + "seoulFood": 350, + "seoulNonFood": 150, + "nonSeoulFood": 350, + "nonSeoulNonFood": 150 + } + }, "regions": [ { "name": "서울특별시", - "count": 61 + "count": 500 }, { "name": "부산광역시", - "count": 66 + "count": 35 }, { - "name": "대구광역시", - "count": 66 + "name": "울산광역시", + "count": 30 }, { - "name": "인천광역시", - "count": 61 + "name": "경기도", + "count": 36 }, { - "name": "광주광역시", - "count": 53 + "name": "강원특별자치도", + "count": 36 }, { - "name": "대전광역시", - "count": 65 + "name": "대구광역시", + "count": 33 }, { - "name": "울산광역시", - "count": 64 + "name": "충청남도", + "count": 32 }, { - "name": "세종특별자치시", - "count": 32 + "name": "제주특별자치도", + "count": 27 }, { - "name": "경기도", - "count": 63 + "name": "대전광역시", + "count": 36 }, { - "name": "강원특별자치도", - "count": 62 + "name": "인천광역시", + "count": 24 }, { - "name": "충청북도", - "count": 60 + "name": "광주광역시", + "count": 30 }, { - "name": "충청남도", - "count": 58 + "name": "충청북도", + "count": 30 }, { - "name": "전북특별자치도", - "count": 59 + "name": "세종특별자치시", + "count": 27 }, { "name": "전라남도", - "count": 68 + "count": 35 }, { "name": "경상북도", - "count": 50 + "count": 33 }, { "name": "경상남도", - "count": 65 + "count": 27 }, { - "name": "제주특별자치도", - "count": 47 + "name": "전북특별자치도", + "count": 29 } ], "categories": [ + { + "name": "한식", + "count": 524 + }, { "name": "기타비요식업", - "count": 14 + "count": 19 }, { - "name": "한식", - "count": 610 + "name": "목욕업", + "count": 15 }, { "name": "중식", - "count": 74 + "count": 61 }, { - "name": "베이커리", - "count": 25 + "name": "미용업", + "count": 181 }, { - "name": "목욕업", - "count": 16 + "name": "양식", + "count": 17 }, { - "name": "미용업", - "count": 123 + "name": "이용업", + "count": 48 }, { - "name": "기타요식업", - "count": 63 + "name": "세탁업", + "count": 37 }, { - "name": "양식", - "count": 14 + "name": "기타요식업", + "count": 69 }, { - "name": "이용업", - "count": 26 + "name": "베이커리", + "count": 17 }, { "name": "일식", - "count": 13 - }, - { - "name": "세탁업", - "count": 22 + "count": 12 } ], "items": [ - { - "bsshSn": "11005", - "name": "㈜추억을 파는 극장 (허리우드클래식)", - "categoryName": "기타비요식업", - "address": "서울특별시 종로구 삼일대로 428 (낙원동, 4층)", - "phone": "02-3672-4235", - "representativeMenu": "영화입장권(경로)", - "price": 2000, - "latitude": 37.5727635233966, - "longitude": 126.987902476529, - "pageIndex": 1, - "regionCode": "11", - "regionName": "서울특별시" - }, { "bsshSn": "16045", "name": "국수전문점", @@ -156,6 +161,20 @@ "regionCode": "11", "regionName": "서울특별시" }, + { + "bsshSn": "11005", + "name": "㈜추억을 파는 극장 (허리우드클래식)", + "categoryName": "기타비요식업", + "address": "서울특별시 종로구 삼일대로 428 (낙원동, 4층)", + "phone": "02-3672-4235", + "representativeMenu": "영화입장권(경로)", + "price": 2000, + "latitude": 37.5727635233966, + "longitude": 126.987902476529, + "pageIndex": 1, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1643", "name": "고등어구이정식", @@ -170,6 +189,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "2987", + "name": "뉴강남탕", + "categoryName": "목욕업", + "address": "울산광역시 중구 당산4길 15 (우정동)", + "phone": "052-211-4873", + "representativeMenu": "대인", + "price": 7500, + "latitude": 35.5540646829463, + "longitude": 129.310128409134, + "pageIndex": 1, + "regionCode": "31", + "regionName": "울산광역시" + }, + { + "bsshSn": "16639", + "name": "남도식당", + "categoryName": "중식", + "address": "서울특별시 종로구 종로 374-1 (숭인동) 1층", + "phone": "02-2234-5544", + "representativeMenu": "짜장면", + "price": 3500, + "latitude": 37.5737068376897, + "longitude": 127.01922365532883, + "pageIndex": 2, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11063", + "name": "믿음미용실", + "categoryName": "미용업", + "address": "서울특별시 종로구 계동길 91 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.5814377145875, + "longitude": 126.986679281786, + "pageIndex": 4, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1640", "name": "구포밀면", @@ -184,6 +245,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "16371", + "name": "(권선)컷트클럽", + "categoryName": "미용업", + "address": "경기도 수원시 권선구 금곡로 46 (금곡동, 호매실역 서희 스타힐스) 나동 103호", + "phone": "031-297-2979", + "representativeMenu": "남성커트", + "price": 9000, + "latitude": 37.27181301997054, + "longitude": 126.938271063389, + "pageIndex": 1, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "11579", + "name": "눈나무집", + "categoryName": "한식", + "address": "서울특별시 종로구 삼청로 136-1 1층", + "phone": "02-739-6742", + "representativeMenu": "김치말이국수", + "price": 6500, + "latitude": 37.5874798577018, + "longitude": 126.981887109774, + "pageIndex": 2, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "947", + "name": "영미용실", + "categoryName": "미용업", + "address": "서울특별시 종로구 지봉로 62 (숭인동)", + "phone": "02-743-6052", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.5755618391963, + "longitude": 127.015850681862, + "pageIndex": 7, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1644", "name": "급행", @@ -198,6 +301,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "3406", + "name": "(장안)컷트클럽", + "categoryName": "미용업", + "address": "경기도 수원시 장안구 조원로 100 .", + "phone": "031-246-6306", + "representativeMenu": "남성커트", + "price": 8000, + "latitude": 37.301600598246, + "longitude": 127.015159002188, + "pageIndex": 1, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "946", + "name": "돈까스보라", + "categoryName": "양식", + "address": "서울특별시 종로구 대학로5길 5 (연건동)", + "phone": "02-741-3455", + "representativeMenu": "수제 돈까스", + "price": 7000, + "latitude": 37.5781982996716, + "longitude": 127.001695852612, + "pageIndex": 2, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "948", + "name": "은미용실", + "categoryName": "미용업", + "address": "서울특별시 종로구 사직로 108-6 (내자동)", + "phone": "02-738-1882", + "representativeMenu": "커트", + "price": 5000, + "latitude": 37.5757821511679, + "longitude": 126.970611077009, + "pageIndex": 9, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1645", "name": "기와집", @@ -212,6 +357,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "4336", + "name": "가고파미용실", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 안마산로 216 (퇴계동)", + "phone": "033-262-9488", + "representativeMenu": "커트", + "price": 5000, + "latitude": 37.8495302656251, + "longitude": 127.737647046448, + "pageIndex": 1, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "16864", + "name": "동대문 한국통닭", + "categoryName": "한식", + "address": "서울특별시 종로구 종로 304 (창신동) 1층", + "phone": "02-747-2443", + "representativeMenu": "통닭 1마리", + "price": 4500, + "latitude": 37.571667373066134, + "longitude": 127.01153873736409, + "pageIndex": 2, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11182", + "name": "이레이발관", + "categoryName": "이용업", + "address": "서울특별시 종로구 수표로 115 (낙원동)", + "phone": "010-7192-6413", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.5715425171338, + "longitude": 126.989053894726, + "pageIndex": 9, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17985", "name": "갑석이네", @@ -227,19 +414,103 @@ "regionName": "대구광역시" }, { - "bsshSn": "17983", - "name": "교동생선구이비빔밥", - "categoryName": "한식", - "address": "대구광역시 중구 교동길 48-1 (교동) 교동", - "phone": "053-257-0778", - "representativeMenu": "교동생선구이정식", - "price": 9000, - "latitude": 35.87327790566105, - "longitude": 128.5972021600524, + "bsshSn": "4909", + "name": "9000냥프로헤어", + "categoryName": "미용업", + "address": "충청남도 천안시 동남구 충무로 412-27 2층(영성동)", + "phone": "-", + "representativeMenu": "커트", + "price": 9000, + "latitude": 36.7971238482422, + "longitude": 127.151205811449, + "pageIndex": 1, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "18196", + "name": "동문식당", + "categoryName": "한식", + "address": "서울특별시 종로구 종로 300-1 (창신동) 1층", + "phone": "-", + "representativeMenu": "콩나물비빔밥", + "price": 5000, + "latitude": 37.57159249625645, + "longitude": 127.01124193717713, + "pageIndex": 3, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "950", + "name": "이소빈 머리나라", + "categoryName": "미용업", + "address": "서울특별시 종로구 명륜길 9 (명륜3가)", + "phone": "02-766-0545", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5879678107949, + "longitude": 126.996150319087, + "pageIndex": 10, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17983", + "name": "교동생선구이비빔밥", + "categoryName": "한식", + "address": "대구광역시 중구 교동길 48-1 (교동) 교동", + "phone": "053-257-0778", + "representativeMenu": "교동생선구이정식", + "price": 9000, + "latitude": 35.87327790566105, + "longitude": 128.5972021600524, "pageIndex": 1, "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "7012", + "name": "JJ노블휘트니스클럽", + "categoryName": "기타비요식업", + "address": "제주특별자치도 제주시 성신로 1길 34 3층(연동, 신동부삼무3차아파트)", + "phone": "064-743-1515", + "representativeMenu": "1일", + "price": 10000, + "latitude": 33.4922271525915, + "longitude": 126.48897408179, + "pageIndex": 1, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "19249", + "name": "둘리분식", + "categoryName": "한식", + "address": "서울특별시 종로구 창경궁로34길 15 (혜화동) 1층", + "phone": "02-744-8626", + "representativeMenu": "된장찌개", + "price": 4000, + "latitude": 37.584324897003846, + "longitude": 127.0011787060946, + "pageIndex": 3, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "952", + "name": "종묘이용원", + "categoryName": "이용업", + "address": "서울특별시 종로구 종로 146 (종로3가) (종로4가)", + "phone": "-", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.57022814518435, + "longitude": 126.99369870159373, + "pageIndex": 12, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2011", "name": "낙동강반점", @@ -254,6 +525,48 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "2527", + "name": "곽은아미용실", + "categoryName": "미용업", + "address": "대전광역시 동구 새울로 100 (용운동)", + "phone": "042-272-4478", + "representativeMenu": "커트(여성 일반)", + "price": 10000, + "latitude": 36.3271167002537, + "longitude": 127.461826711325, + "pageIndex": 2, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "19250", + "name": "맛밥김밥전문점", + "categoryName": "한식", + "address": "서울특별시 종로구 창경궁로 269 (혜화동) 1층", + "phone": "02-747-5425", + "representativeMenu": "돈가스", + "price": 7500, + "latitude": 37.585295075666664, + "longitude": 127.00073357977945, + "pageIndex": 4, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "953", + "name": "파고다이용원", + "categoryName": "이용업", + "address": "서울특별시 종로구 종로17길 12 (종로2가)", + "phone": "-", + "representativeMenu": "커트", + "price": 6000, + "latitude": 37.5709410977686, + "longitude": 126.988999535085, + "pageIndex": 15, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2230", "name": "골목집", @@ -268,6 +581,48 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "4338", + "name": "개성시대미용실", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 춘천로68번길 10 (효자동)", + "phone": "033-256-9304", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.8700600426461, + "longitude": 127.725474230628, + "pageIndex": 2, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "16044", + "name": "복코돼지", + "categoryName": "한식", + "address": "서울특별시 종로구 종로 232 (종로5가) 1층", + "phone": "02-2271-5989", + "representativeMenu": "김치찌개(점심)", + "price": 7000, + "latitude": 37.570761508765074, + "longitude": 127.00353272937728, + "pageIndex": 5, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "18570", + "name": "신라미용실", + "categoryName": "미용업", + "address": "서울특별시 중구 퇴계로 217 (충무로4가, 진양상가, 진양아파트) 1층 36호, 37호", + "phone": "010-9264-3072", + "representativeMenu": "남성컷", + "price": 10000, + "latitude": 37.562423982135904, + "longitude": 126.99593553115459, + "pageIndex": 21, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13183", "name": "계림동나주곰탕", @@ -282,6 +637,48 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "4679", + "name": "가든미용실", + "categoryName": "미용업", + "address": "충청북도 청주시 상당구 청남로2197번길 12 (석교동)", + "phone": "043-223-8097", + "representativeMenu": "커트", + "price": 6000, + "latitude": 36.6278271128724, + "longitude": 127.490164264559, + "pageIndex": 2, + "regionCode": "43", + "regionName": "충청북도" + }, + { + "bsshSn": "17542", + "name": "불백당", + "categoryName": "한식", + "address": "서울특별시 종로구 우정국로2길 34 (관철동) 1층", + "phone": "02-722-0086", + "representativeMenu": "고추장불백", + "price": 5500, + "latitude": 37.56946019643439, + "longitude": 126.98494601675547, + "pageIndex": 5, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "963", + "name": "일광사", + "categoryName": "세탁업", + "address": "서울특별시 중구 다산로 33다길 29 (신당동)", + "phone": "02-223-6492", + "representativeMenu": "드라이크리닝(양복 상하의)", + "price": 10000, + "latitude": 37.5640829919161, + "longitude": 127.013561996977, + "pageIndex": 24, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10150", "name": "24시서울식당", @@ -296,6 +693,48 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "10020", + "name": "남포이발컷트", + "categoryName": "이용업", + "address": "부산광역시 중구 중구로 2 2층(남포동5가)", + "phone": "-", + "representativeMenu": "커트", + "price": 6000, + "latitude": 35.0979757736079, + "longitude": 129.028282683866, + "pageIndex": 3, + "regionCode": "26", + "regionName": "부산광역시" + }, + { + "bsshSn": "958", + "name": "삼삼 뚝배기", + "categoryName": "한식", + "address": "서울특별시 종로구 동숭길 51 (동숭동)", + "phone": "02-765-4683", + "representativeMenu": "된장뚝배기", + "price": 7000, + "latitude": 37.5805564090189, + "longitude": 127.004190744723, + "pageIndex": 5, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "18569", + "name": "중림헤어", + "categoryName": "미용업", + "address": "서울특별시 중구 청파로 425-1 (중림동) 1층", + "phone": "02-365-2220", + "representativeMenu": "남성커트", + "price": 8000, + "latitude": 37.55760501038397, + "longitude": 126.96892243438135, + "pageIndex": 25, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10151", "name": "2900냥식당", @@ -311,19 +750,103 @@ "regionName": "대전광역시" }, { - "bsshSn": "2561", - "name": "강청골순대국밥", - "categoryName": "한식", - "address": "대전광역시 동구 동대전로 229 (가양동)", - "phone": "042-635-8181", - "representativeMenu": "순대국밥", - "price": 8000, - "latitude": 36.3419614517988, - "longitude": 127.447983980001, - "pageIndex": 1, + "bsshSn": "2528", + "name": "뉴모델이용원", + "categoryName": "이용업", + "address": "대전광역시 동구 계족로 103 (신흥동)", + "phone": "042-282-1933", + "representativeMenu": "이용료", + "price": 7000, + "latitude": 36.3235977678715, + "longitude": 127.445302754, + "pageIndex": 3, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "16866", + "name": "샐러드하우스", + "categoryName": "기타요식업", + "address": "서울특별시 종로구 새문안로5가길 28 (적선동) 지하1층 119호", + "phone": "02-722-5891", + "representativeMenu": "에그듬뿍샌드위치", + "price": 4900, + "latitude": 37.57446023473285, + "longitude": 126.97359705813241, + "pageIndex": 5, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11064", + "name": "채미미용실", + "categoryName": "미용업", + "address": "서울특별시 중구 다산로 101 (신당동)", + "phone": "02-223-8339", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.553274501935, + "longitude": 127.009303145852, + "pageIndex": 25, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "2561", + "name": "강청골순대국밥", + "categoryName": "한식", + "address": "대전광역시 동구 동대전로 229 (가양동)", + "phone": "042-635-8181", + "representativeMenu": "순대국밥", + "price": 8000, + "latitude": 36.3419614517988, + "longitude": 127.447983980001, + "pageIndex": 1, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "2529", + "name": "대광이용원", + "categoryName": "이용업", + "address": "대전광역시 동구 계족로 73-2 (신흥동)", + "phone": "042-282-7720", + "representativeMenu": "이용료", + "price": 7000, + "latitude": 36.3212528089861, + "longitude": 127.443947726738, + "pageIndex": 3, "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "14004", + "name": "서울식당", + "categoryName": "한식", + "address": "서울특별시 종로구 창신길 50 (창신동) 1층", + "phone": "02-764-7587", + "representativeMenu": "백반", + "price": 8000, + "latitude": 37.57383386363352, + "longitude": 127.01070027218017, + "pageIndex": 6, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16631", + "name": "은혜미용실", + "categoryName": "미용업", + "address": "서울특별시 용산구 효창원로42길 15 (용문동) 1층", + "phone": "02-713-3095", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.53663989921478, + "longitude": 126.96015043866937, + "pageIndex": 37, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14317", "name": "개천식당", @@ -338,6 +861,48 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "17111", + "name": "경희당구클럽", + "categoryName": "기타비요식업", + "address": "경기도 수원시 영통구 덕영대로 1707 (영통동) 4층", + "phone": "010-5631-2323", + "representativeMenu": "10분", + "price": 1000, + "latitude": 37.24799357407884, + "longitude": 127.07820639116257, + "pageIndex": 3, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "13892", + "name": "세종커피", + "categoryName": "기타요식업", + "address": "서울특별시 종로구 세종대로23길 54 (당주동) 지하1층 26호", + "phone": "010-5827-9542", + "representativeMenu": "아메리카노", + "price": 2500, + "latitude": 37.57183953065674, + "longitude": 126.97328450326039, + "pageIndex": 6, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "14105", + "name": "형한나미용실", + "categoryName": "미용업", + "address": "서울특별시 용산구 청파로47길 17-5 (청파동3가) 1층", + "phone": "02-704-3955", + "representativeMenu": "여성커트", + "price": 10000, + "latitude": 37.54459136907398, + "longitude": 126.96927294830239, + "pageIndex": 42, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2986", "name": "노르쇠핑", @@ -353,18 +918,46 @@ "regionName": "울산광역시" }, { - "bsshSn": "2987", - "name": "뉴강남탕", - "categoryName": "목욕업", - "address": "울산광역시 중구 당산4길 15 (우정동)", - "phone": "052-211-4873", - "representativeMenu": "대인", - "price": 7500, - "latitude": 35.5540646829463, - "longitude": 129.310128409134, - "pageIndex": 1, - "regionCode": "31", - "regionName": "울산광역시" + "bsshSn": "16650", + "name": "광명세탁", + "categoryName": "세탁업", + "address": "강원특별자치도 춘천시 삭주로 27 (교동)", + "phone": "033-252-6271", + "representativeMenu": "양복상의", + "price": 6000, + "latitude": 37.88154669495617, + "longitude": 127.73468581005257, + "pageIndex": 3, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "15002", + "name": "스윗샐러드", + "categoryName": "한식", + "address": "서울특별시 종로구 종로1길 50 (중학동) 지하1층", + "phone": "02-733-3225", + "representativeMenu": "버섯샐러드", + "price": 7900, + "latitude": 37.57491239937121, + "longitude": 126.97896535083947, + "pageIndex": 7, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "740", + "name": "덤앤더머", + "categoryName": "미용업", + "address": "서울특별시 성동구 사근동길 25-1 (사근동)", + "phone": "02-2292-9700", + "representativeMenu": "미용료(커트)", + "price": 10000, + "latitude": 37.5611469523893, + "longitude": 127.043812856394, + "pageIndex": 45, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "10200", @@ -380,6 +973,48 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "4724", + "name": "고려미용실", + "categoryName": "미용업", + "address": "충청북도 청주시 서원구 모충로 98-1 (모충동)", + "phone": "043-274-6207", + "representativeMenu": "커트", + "price": 8000, + "latitude": 36.6277882283516, + "longitude": 127.474142701453, + "pageIndex": 3, + "regionCode": "43", + "regionName": "충청북도" + }, + { + "bsshSn": "943", + "name": "약속커피숍", + "categoryName": "기타요식업", + "address": "서울특별시 종로구 종로 302 (창신동)", + "phone": "02-764-1100", + "representativeMenu": "맥심커피", + "price": 2000, + "latitude": 37.5716332944196, + "longitude": 127.01140072111, + "pageIndex": 7, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "738", + "name": "백광컴퓨터크리닝", + "categoryName": "세탁업", + "address": "서울특별시 성동구 마조로 59 1층", + "phone": "02-2292-8310", + "representativeMenu": "세탁료(정장한벌)", + "price": 6000, + "latitude": 37.5632719792507, + "longitude": 127.041494936359, + "pageIndex": 47, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19179", "name": "광진손짜장", @@ -394,6 +1029,48 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "15156", + "name": "까망헤어필", + "categoryName": "미용업", + "address": "전라남도 목포시 산정로79번길 15-1 (산정동) 까망헤어필", + "phone": "061-277-3173", + "representativeMenu": "커트", + "price": 10000, + "latitude": 34.795406737074515, + "longitude": 126.39113623218255, + "pageIndex": 3, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "17558", + "name": "완판생국수", + "categoryName": "한식", + "address": "서울특별시 종로구 종로 258 (종로6가) 1층", + "phone": "02-2272-0066", + "representativeMenu": "멸치국수", + "price": 5500, + "latitude": 37.5706572089172, + "longitude": 127.00647971676864, + "pageIndex": 8, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "739", + "name": "벽산세탁", + "categoryName": "세탁업", + "address": "서울특별시 성동구 금호로 100 벽산 (아) 상가 6층", + "phone": "02-2298-6675", + "representativeMenu": "세탁료", + "price": 6000, + "latitude": 37.5545314695033, + "longitude": 127.026186636459, + "pageIndex": 47, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10192", "name": "꼬막짬뽕", @@ -409,32 +1086,46 @@ "regionName": "세종특별자치시" }, { - "bsshSn": "16371", - "name": "(권선)컷트클럽", + "bsshSn": "6320", + "name": "걸앤맨", "categoryName": "미용업", - "address": "경기도 수원시 권선구 금곡로 46 (금곡동, 호매실역 서희 스타힐스) 나동 103호", - "phone": "031-297-2979", - "representativeMenu": "남성커트", - "price": 9000, - "latitude": 37.27181301997054, - "longitude": 126.938271063389, - "pageIndex": 1, - "regionCode": "41", - "regionName": "경기도" + "address": "경상북도 포항시 남구 축항로72번길 14", + "phone": "054-272-1533", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.0285256046441, + "longitude": 129.376479161194, + "pageIndex": 3, + "regionCode": "47", + "regionName": "경상북도" }, { - "bsshSn": "3406", - "name": "(장안)컷트클럽", - "categoryName": "미용업", - "address": "경기도 수원시 장안구 조원로 100 .", - "phone": "031-246-6306", - "representativeMenu": "남성커트", - "price": 8000, - "latitude": 37.301600598246, - "longitude": 127.015159002188, - "pageIndex": 1, - "regionCode": "41", - "regionName": "경기도" + "bsshSn": "944", + "name": "왕관커피숍", + "categoryName": "기타요식업", + "address": "서울특별시 종로구 종로 222 (종로5가)", + "phone": "02-2266-8365", + "representativeMenu": "커피", + "price": 2000, + "latitude": 37.570760396587, + "longitude": 127.002357657235, + "pageIndex": 8, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "741", + "name": "수주머리나라", + "categoryName": "미용업", + "address": "서울특별시 성동구 광나루로 11길 9-1 (송정동)", + "phone": "02-466-3882", + "representativeMenu": "미용료(커트)", + "price": 10000, + "latitude": 37.5491222087025, + "longitude": 127.065809609058, + "pageIndex": 49, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "14932", @@ -450,6 +1141,48 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "6321", + "name": "경민헤어샵", + "categoryName": "미용업", + "address": "경상북도 포항시 남구 대해로79번길 27", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.0254310711759, + "longitude": 129.36329181671, + "pageIndex": 3, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "19246", + "name": "유로시안커피전문점", + "categoryName": "기타요식업", + "address": "서울특별시 종로구 종로40길 4 (종로6가) 1층", + "phone": "02-2268-1007", + "representativeMenu": "아메리카노(16oz) 포장", + "price": 1500, + "latitude": 37.57075442433323, + "longitude": 127.00654859833715, + "pageIndex": 8, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "742", + "name": "아씨머리방", + "categoryName": "미용업", + "address": "서울특별시 성동구 고산자로8길 23-1 1층", + "phone": "02-2291-2874", + "representativeMenu": "미용료(커트)", + "price": 5000, + "latitude": 37.5582910247082, + "longitude": 127.036506811635, + "pageIndex": 50, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16372", "name": "Bestie(카페베스티)", @@ -465,18 +1198,46 @@ "regionName": "경기도" }, { - "bsshSn": "4336", - "name": "가고파미용실", + "bsshSn": "6322", + "name": "경아미용실", "categoryName": "미용업", - "address": "강원특별자치도 춘천시 안마산로 216 (퇴계동)", - "phone": "033-262-9488", + "address": "경상북도 포항시 남구 송림로 61", + "phone": "054-247-4573", "representativeMenu": "커트", - "price": 5000, - "latitude": 37.8495302656251, - "longitude": 127.737647046448, - "pageIndex": 1, - "regionCode": "51", - "regionName": "강원특별자치도" + "price": 7000, + "latitude": 36.0352517105272, + "longitude": 129.374922321202, + "pageIndex": 3, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "19244", + "name": "을밀대 (소문난국밥전문)", + "categoryName": "한식", + "address": "서울특별시 종로구 수표로 131 (낙원동) 1층", + "phone": "02-742-1633", + "representativeMenu": "우거지해장국", + "price": 3000, + "latitude": 37.572493575407705, + "longitude": 126.98826091182536, + "pageIndex": 9, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "744", + "name": "주노헤어숍", + "categoryName": "미용업", + "address": "서울특별시 성동구 왕십리로24길 13-1 .", + "phone": "02-2298-3546", + "representativeMenu": "미용료(커트)", + "price": 8000, + "latitude": 37.5637471846589, + "longitude": 127.034117063401, + "pageIndex": 51, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15775", @@ -492,6 +1253,48 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "6427", + "name": "경희미용실", + "categoryName": "미용업", + "address": "경상북도 포항시 북구 서동로47번길 25-4 1층(덕수동)", + "phone": "-", + "representativeMenu": "커트", + "price": 5000, + "latitude": 36.0433237553854, + "longitude": 129.364506666177, + "pageIndex": 3, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "19061", + "name": "이모네감자탕", + "categoryName": "한식", + "address": "서울특별시 종로구 새문안로9길 29-3 (당주동) 1층", + "phone": "02-733-7314", + "representativeMenu": "뼈해장국", + "price": 9000, + "latitude": 37.571272473253565, + "longitude": 126.97522954478573, + "pageIndex": 10, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "745", + "name": "채미용실", + "categoryName": "미용업", + "address": "서울특별시 성동구 용답중앙13길 14 .", + "phone": "02-2247-0471", + "representativeMenu": "미용료(커트)", + "price": 10000, + "latitude": 37.565276022281, + "longitude": 127.053075089282, + "pageIndex": 52, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4736", "name": "357짜장 짬뽕", @@ -506,6 +1309,48 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "14292", + "name": "김영이헤어모드", + "categoryName": "미용업", + "address": "경상남도 창원시 진해구 돌리로10번길 25 (석동, 유일수정빌라) 1층", + "phone": "055-543-4053", + "representativeMenu": "커트", + "price": 8000, + "latitude": 35.15791820070982, + "longitude": 128.7029593955796, + "pageIndex": 3, + "regionCode": "48", + "regionName": "경상남도" + }, + { + "bsshSn": "955", + "name": "인사동칼국수", + "categoryName": "한식", + "address": "서울특별시 종로구 인사동5길 25 1층", + "phone": "02-737-1151", + "representativeMenu": "칼국수", + "price": 7500, + "latitude": 37.5720973140597, + "longitude": 126.985392406484, + "pageIndex": 10, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "248", + "name": "그린세탁", + "categoryName": "세탁업", + "address": "서울특별시 광진구 뚝섬로54길 57 (자양동)", + "phone": "02-456-8301", + "representativeMenu": "의복수선료", + "price": 4000, + "latitude": 37.5291163464876, + "longitude": 127.079923539429, + "pageIndex": 56, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17000", "name": "86카츠", @@ -520,6 +1365,48 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "2247", + "name": "명문목욕탕", + "categoryName": "목욕업", + "address": "광주광역시 동구 지원로 5 (소태동)", + "phone": "062-227-2459", + "representativeMenu": "목욕", + "price": 6000, + "latitude": 35.1238630581617, + "longitude": 126.932939954425, + "pageIndex": 4, + "regionCode": "29", + "regionName": "광주광역시" + }, + { + "bsshSn": "16863", + "name": "장원식당", + "categoryName": "한식", + "address": "서울특별시 종로구 창신5나길 3 (창신동) 1층", + "phone": "02-6777-1437", + "representativeMenu": "우거지뼈해장국", + "price": 8000, + "latitude": 37.573776039713145, + "longitude": 127.01117339129199, + "pageIndex": 11, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "249", + "name": "동현세탁", + "categoryName": "세탁업", + "address": "서울특별시 광진구 뚝섬로52라길 65 (자양동)", + "phone": "02-458-6268", + "representativeMenu": "양복세탁료", + "price": 7000, + "latitude": 37.5293850230579, + "longitude": 127.082158673972, + "pageIndex": 58, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16062", "name": "9.9추어탕", @@ -535,18 +1422,46 @@ "regionName": "충청북도" }, { - "bsshSn": "4909", - "name": "9000냥프로헤어", + "bsshSn": "2519", + "name": "동양전자", + "categoryName": "기타비요식업", + "address": "대전광역시 동구 대전로 797번길 11 (중동)", + "phone": "042-254-3090", + "representativeMenu": "전자장비 수리비", + "price": 10000, + "latitude": 36.3304315762194, + "longitude": 127.432265782557, + "pageIndex": 4, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "959", + "name": "전주콩나물국밥", + "categoryName": "한식", + "address": "서울특별시 종로구 자하문로 3 (내자동)", + "phone": "02-738-8223", + "representativeMenu": "콩나물국밥", + "price": 7000, + "latitude": 37.5764830744797, + "longitude": 126.972264842484, + "pageIndex": 11, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17346", + "name": "쁘띠헤어", "categoryName": "미용업", - "address": "충청남도 천안시 동남구 충무로 412-27 2층(영성동)", + "address": "서울특별시 광진구 구의로 34 (구의동) 1층", "phone": "-", "representativeMenu": "커트", - "price": 9000, - "latitude": 36.7971238482422, - "longitude": 127.151205811449, - "pageIndex": 1, - "regionCode": "44", - "regionName": "충청남도" + "price": 10000, + "latitude": 37.54090263497381, + "longitude": 127.08994445617238, + "pageIndex": 62, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "4935", @@ -563,19 +1478,103 @@ "regionName": "충청남도" }, { - "bsshSn": "11752", - "name": "가화손만두 옛날통닭", - "categoryName": "한식", - "address": "충청남도 천안시 동남구 큰재빼기길 28 (오룡동)", - "phone": "041-558-0863", - "representativeMenu": "옛날통닭", - "price": 8000, - "latitude": 36.8039869569013, - "longitude": 127.149159570599, - "pageIndex": 1, - "regionCode": "44", + "bsshSn": "2989", + "name": "선경이용원", + "categoryName": "이용업", + "address": "울산광역시 중구 유곡로 10 (우정동)", + "phone": "052-246-1703", + "representativeMenu": "컷트", + "price": 5000, + "latitude": 35.5582366838079, + "longitude": 129.30845466344, + "pageIndex": 4, + "regionCode": "31", + "regionName": "울산광역시" + }, + { + "bsshSn": "16865", + "name": "중국", + "categoryName": "중식", + "address": "서울특별시 종로구 자하문로33길 2 (청운동) 1층", + "phone": "02-737-8055", + "representativeMenu": "짜장면", + "price": 6000, + "latitude": 37.58619403165867, + "longitude": 126.96972945340502, + "pageIndex": 12, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "259", + "name": "서승미헤어", + "categoryName": "미용업", + "address": "서울특별시 광진구 용마산로24길 6", + "phone": "02-456-0773", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.5651369246202, + "longitude": 127.087177740735, + "pageIndex": 62, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11752", + "name": "가화손만두 옛날통닭", + "categoryName": "한식", + "address": "충청남도 천안시 동남구 큰재빼기길 28 (오룡동)", + "phone": "041-558-0863", + "representativeMenu": "옛날통닭", + "price": 8000, + "latitude": 36.8039869569013, + "longitude": 127.149159570599, + "pageIndex": 1, + "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "15487", + "name": "금란미용실", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 둥지길 7 (효자동)", + "phone": "033-257-4174", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.874828386296336, + "longitude": 127.73569431782938, + "pageIndex": 4, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "14005", + "name": "진미김밥", + "categoryName": "한식", + "address": "서울특별시 종로구 종로46길 28 (창신동) 1층", + "phone": "02-2268-0069", + "representativeMenu": "진미김밥", + "price": 4000, + "latitude": 37.57045965794985, + "longitude": 127.01018731204245, + "pageIndex": 13, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "15557", + "name": "세실리아미용실", + "categoryName": "미용업", + "address": "서울특별시 광진구 긴고랑로13길 36 (중곡동) 1층", + "phone": "02-463-5282", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.564048368127175, + "longitude": 127.08257674824266, + "pageIndex": 63, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16879", "name": "강짬뽕", @@ -590,6 +1589,48 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "4910", + "name": "국빈4000냥미용실", + "categoryName": "미용업", + "address": "충청남도 천안시 동남구 대흥로 132-2 (사직동)", + "phone": "-", + "representativeMenu": "커트", + "price": 7000, + "latitude": 36.8008837521399, + "longitude": 127.148549025545, + "pageIndex": 4, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "19059", + "name": "착한커피공장", + "categoryName": "기타요식업", + "address": "서울특별시 종로구 자하문로7길 66 (누하동) 1층", + "phone": "02-738-7774", + "representativeMenu": "아메리카노", + "price": 2000, + "latitude": 37.58019735852819, + "longitude": 126.9691947292228, + "pageIndex": 13, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "250", + "name": "으뜸크리닝", + "categoryName": "세탁업", + "address": "서울특별시 광진구 아차산로51길 74 (구의동)", + "phone": "02-446-1756", + "representativeMenu": "의복수선료", + "price": 5000, + "latitude": 37.5401684513294, + "longitude": 127.085108450352, + "pageIndex": 68, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5413", "name": "나눔공정카페", @@ -604,6 +1645,48 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "18214", + "name": "란미용실", + "categoryName": "미용업", + "address": "전북특별자치도 전주시 완산구 공수내1길 7-2 (서서학동) 1층", + "phone": "070-4007-3960", + "representativeMenu": "커트", + "price": 10000, + "latitude": 35.805287710386786, + "longitude": 127.14763371176575, + "pageIndex": 4, + "regionCode": "52", + "regionName": "전북특별자치도" + }, + { + "bsshSn": "18198", + "name": "창신숯불돼지갈비", + "categoryName": "한식", + "address": "서울특별시 종로구 종로 322-11 (창신동) 1층", + "phone": "02-766-5861", + "representativeMenu": "돼지갈비정식", + "price": 10000, + "latitude": 37.5716697926823, + "longitude": 127.01361493727262, + "pageIndex": 13, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "268", + "name": "정은정헤어샵", + "categoryName": "미용업", + "address": "서울특별시 광진구 자양로28길 10", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5422855157893, + "longitude": 127.084752386767, + "pageIndex": 69, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11329", "name": "경남식당", @@ -618,6 +1701,48 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "15153", + "name": "드라이하우스 북항점", + "categoryName": "세탁업", + "address": "전라남도 목포시 청호로219번길 30 (산정동) 1층 106호", + "phone": "061-278-2788", + "representativeMenu": "정장한벌", + "price": 6100, + "latitude": 34.80742822388893, + "longitude": 126.36751972578438, + "pageIndex": 4, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "11363", + "name": "청정바지락칼국수", + "categoryName": "한식", + "address": "서울특별시 종로구 창신길 11 1층", + "phone": "02-743-6557", + "representativeMenu": "칼국수", + "price": 7000, + "latitude": 37.5722071295158, + "longitude": 127.010524084538, + "pageIndex": 14, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "13787", + "name": "중원사", + "categoryName": "세탁업", + "address": "서울특별시 광진구 천호대로135길 8 (구의동) 1층", + "phone": "-", + "representativeMenu": "의복수선료", + "price": 3000, + "latitude": 37.54986623666149, + "longitude": 127.09226460318719, + "pageIndex": 71, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15142", "name": "경성회관", @@ -632,6 +1757,48 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "16480", + "name": "동광세탁소", + "categoryName": "세탁업", + "address": "부산광역시 중구 법수길 19 (보수동1가) 1층", + "phone": "051-256-9047", + "representativeMenu": "드라이크리닝(하의)", + "price": 4000, + "latitude": 35.10490454876418, + "longitude": 129.02599093842454, + "pageIndex": 5, + "regionCode": "26", + "regionName": "부산광역시" + }, + { + "bsshSn": "19060", + "name": "체부동잔치집", + "categoryName": "한식", + "address": "서울특별시 종로구 자하문로1길 16 (체부동) 1층", + "phone": "02-730-5420", + "representativeMenu": "잔치국수", + "price": 5000, + "latitude": 37.57655121434925, + "longitude": 126.97150085198783, + "pageIndex": 14, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11030", + "name": "진아보석사우나", + "categoryName": "목욕업", + "address": "서울특별시 광진구 자양로15길 109 (자양동)", + "phone": "02-457-3355", + "representativeMenu": "목욕료", + "price": 8000, + "latitude": 37.5341204451659, + "longitude": 127.077993714026, + "pageIndex": 71, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15158", "name": "고향삼겹살", @@ -647,33 +1814,159 @@ "regionName": "전라남도" }, { - "bsshSn": "6367", - "name": "45번길국수", - "categoryName": "한식", - "address": "경상북도 포항시 남구 대이로45번길 12-4 45번길국수", - "phone": "-", - "representativeMenu": "잔치국수", - "price": 6000, - "latitude": 36.019222777464, - "longitude": 129.340576077049, - "pageIndex": 1, - "regionCode": "47", - "regionName": "경상북도" + "bsshSn": "2007", + "name": "영생이용소", + "categoryName": "이용업", + "address": "대구광역시 중구 이천로 184-8 (대봉동)", + "phone": "053-425-9732", + "representativeMenu": "커트", + "price": 10000, + "latitude": 35.8575452270514, + "longitude": 128.598969402186, + "pageIndex": 5, + "regionCode": "27", + "regionName": "대구광역시" }, { - "bsshSn": "6384", - "name": "감자바위", - "categoryName": "한식", - "address": "경상북도 포항시 남구 연일읍 유강길9번길 32 감자바위", - "phone": "054-272-8877", - "representativeMenu": "비빔밥", - "price": 8000, - "latitude": 36.0033909011122, - "longitude": 129.316527350566, - "pageIndex": 1, - "regionCode": "47", + "bsshSn": "16867", + "name": "카츠연", + "categoryName": "일식", + "address": "서울특별시 종로구 삼봉로 81 (수송동) 지하1층 136호", + "phone": "010-4015-1318", + "representativeMenu": "등심돈카츠정식", + "price": 9500, + "latitude": 37.572557012406925, + "longitude": 126.98181439015927, + "pageIndex": 14, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "15559", + "name": "파랑노랑미용실", + "categoryName": "미용업", + "address": "서울특별시 광진구 자양로45길 18 (구의동) 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.55208434611621, + "longitude": 127.091354541754, + "pageIndex": 72, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "6367", + "name": "45번길국수", + "categoryName": "한식", + "address": "경상북도 포항시 남구 대이로45번길 12-4 45번길국수", + "phone": "-", + "representativeMenu": "잔치국수", + "price": 6000, + "latitude": 36.019222777464, + "longitude": 129.340576077049, + "pageIndex": 1, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "3367", + "name": "꽃씨미용실", + "categoryName": "미용업", + "address": "경기도 수원시 권선구 금호로15번길12 (금곡동)", + "phone": "031-297-6106", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.2692497847657, + "longitude": 126.953624838044, + "pageIndex": 5, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "13949", + "name": "토리베이커리", + "categoryName": "베이커리", + "address": "서울특별시 종로구 옥인길 30-3 (옥인동) 1층", + "phone": "010-5330-0771", + "representativeMenu": "막걸리식빵", + "price": 4000, + "latitude": 37.58107428102593, + "longitude": 126.96708919813716, + "pageIndex": 14, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "251", + "name": "한양세탁소", + "categoryName": "세탁업", + "address": "서울특별시 광진구 뚝섬로46길 34 1층", + "phone": "02-452-3769", + "representativeMenu": "정장 드라이클리닝", + "price": 8000, + "latitude": 37.5312491485435, + "longitude": 127.0764580604, + "pageIndex": 73, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "6384", + "name": "감자바위", + "categoryName": "한식", + "address": "경상북도 포항시 남구 연일읍 유강길9번길 32 감자바위", + "phone": "054-272-8877", + "representativeMenu": "비빔밥", + "price": 8000, + "latitude": 36.0033909011122, + "longitude": 129.316527350566, + "pageIndex": 1, + "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "15849", + "name": "김진헤어", + "categoryName": "미용업", + "address": "충청북도 청주시 흥덕구 증안로 44 (복대동) 2층", + "phone": "043-239-4129", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.63652312339393, + "longitude": 127.42812791746137, + "pageIndex": 5, + "regionCode": "43", + "regionName": "충청북도" + }, + { + "bsshSn": "19241", + "name": "현궁", + "categoryName": "한식", + "address": "서울특별시 종로구 종로1길 42 (수송동) 지하1층", + "phone": "02-736-3369", + "representativeMenu": "철판제육쌈밥", + "price": 10000, + "latitude": 37.57390412787066, + "longitude": 126.97898519648197, + "pageIndex": 15, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "252", + "name": "한일세탁", + "categoryName": "세탁업", + "address": "서울특별시 광진구 자양번영로5길 7 (자양동)", + "phone": "02-447-2856", + "representativeMenu": "의복수선료", + "price": 3000, + "latitude": 37.5323210771224, + "longitude": 127.074899542077, + "pageIndex": 73, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13952", "name": "119찹쌀꽈배기", @@ -688,6 +1981,48 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "5419", + "name": "명보헤어", + "categoryName": "미용업", + "address": "전북특별자치도 전주시 완산구 팔달로 101-26", + "phone": "063-282-1643", + "representativeMenu": "커트", + "price": 10000, + "latitude": 35.8123674581985, + "longitude": 127.148537758879, + "pageIndex": 5, + "regionCode": "52", + "regionName": "전북특별자치도" + }, + { + "bsshSn": "11580", + "name": "홍순두부", + "categoryName": "한식", + "address": "서울특별시 종로구 명륜길 50 1층", + "phone": "-", + "representativeMenu": "홍순두부", + "price": 5500, + "latitude": 37.5892935619767, + "longitude": 126.994629871047, + "pageIndex": 16, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "271", + "name": "헤어라인", + "categoryName": "미용업", + "address": "서울특별시 광진구 광나루로30나길 6-1", + "phone": "-", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.5436236638171, + "longitude": 127.082097011554, + "pageIndex": 73, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19285", "name": "강남추어탕", @@ -702,6 +2037,48 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "18209", + "name": "바다미용샵", + "categoryName": "미용업", + "address": "전북특별자치도 전주시 완산구 영경1길 21 (중화산동2가) 우성근영타운상가 1-101", + "phone": "063-223-8840", + "representativeMenu": "커트(학생)", + "price": 10000, + "latitude": 35.81809189327877, + "longitude": 127.12518062331628, + "pageIndex": 5, + "regionCode": "52", + "regionName": "전북특별자치도" + }, + { + "bsshSn": "13929", + "name": "효자왕족발", + "categoryName": "한식", + "address": "서울특별시 종로구 자하문로 31-2 (통인동) 1층", + "phone": "02-735-7601", + "representativeMenu": "보쌈정식(점심)", + "price": 9000, + "latitude": 37.578801957623014, + "longitude": 126.9712764779437, + "pageIndex": 16, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11179", + "name": "경로이발관", + "categoryName": "이용업", + "address": "서울특별시 동대문구 왕산로 175-1 (제기동) 2층", + "phone": "010-8798-2717", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.57961025550147, + "longitude": 127.0426591413119, + "pageIndex": 76, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17141", "name": "고운프리티", @@ -716,6 +2093,48 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "15151", + "name": "몽헤어갤러리", + "categoryName": "미용업", + "address": "전라남도 목포시 산정로 211 (용당동) 몽헤어갤러리", + "phone": "061-276-0479", + "representativeMenu": "학생커트", + "price": 7000, + "latitude": 34.80675654469635, + "longitude": 126.38939338794059, + "pageIndex": 5, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "19242", + "name": "흥진옥", + "categoryName": "한식", + "address": "서울특별시 종로구 종로5길 19-12 (청진동) 1층", + "phone": "02-732-2214", + "representativeMenu": "뼈해장국", + "price": 10000, + "latitude": 37.571396433403386, + "longitude": 126.98027437148129, + "pageIndex": 16, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16151", + "name": "오드리스튜디오", + "categoryName": "기타비요식업", + "address": "서울특별시 동대문구 회기로 162 (회기동) 1층", + "phone": "02-969-7475", + "representativeMenu": "증명사진", + "price": 7900, + "latitude": 37.590585672307064, + "longitude": 127.05390121670456, + "pageIndex": 88, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10627", "name": "24시국수회관", @@ -731,86 +2150,100 @@ "regionName": "제주특별자치도" }, { - "bsshSn": "7012", - "name": "JJ노블휘트니스클럽", - "categoryName": "기타비요식업", - "address": "제주특별자치도 제주시 성신로 1길 34 3층(연동, 신동부삼무3차아파트)", - "phone": "064-743-1515", - "representativeMenu": "1일", - "price": 10000, - "latitude": 33.4922271525915, - "longitude": 126.48897408179, - "pageIndex": 1, - "regionCode": "50", - "regionName": "제주특별자치도" + "bsshSn": "6428", + "name": "곽헤어뷰티", + "categoryName": "미용업", + "address": "경상북도 포항시 북구 장량중앙로65번길 18-1 (양덕동) 1층", + "phone": "0507-1449-1250", + "representativeMenu": "남자커트", + "price": 6000, + "latitude": 36.09024160303488, + "longitude": 129.3898774029156, + "pageIndex": 5, + "regionCode": "47", + "regionName": "경상북도" }, { - "bsshSn": "7203", - "name": "가람", + "bsshSn": "968", + "name": "345국수", "categoryName": "한식", - "address": "제주특별자치도 제주시 복지로북길 4 1층", - "phone": "064-756-0012", - "representativeMenu": "추어탕", - "price": 10000, - "latitude": 33.4888491368419, - "longitude": 126.520646841034, - "pageIndex": 1, - "regionCode": "50", - "regionName": "제주특별자치도" + "address": "서울특별시 중구 청구로 83-9 1층", + "phone": "02-223-5257", + "representativeMenu": "손수제비", + "price": 8000, + "latitude": 37.560172073734, + "longitude": 127.013228537389, + "pageIndex": 17, + "regionCode": "11", + "regionName": "서울특별시" }, { - "bsshSn": "16639", - "name": "남도식당", - "categoryName": "중식", - "address": "서울특별시 종로구 종로 374-1 (숭인동) 1층", - "phone": "02-2234-5544", - "representativeMenu": "짜장면", - "price": 3500, - "latitude": 37.5737068376897, - "longitude": 127.01922365532883, - "pageIndex": 2, + "bsshSn": "488", + "name": "우주미용실", + "categoryName": "미용업", + "address": "서울특별시 동대문구 전농로16길 33 (전농동)", + "phone": "02-2244-2180", + "representativeMenu": "커트", + "price": 3000, + "latitude": 37.57837593251976, + "longitude": 127.05916519059018, + "pageIndex": 90, "regionCode": "11", "regionName": "서울특별시" }, { - "bsshSn": "11579", - "name": "눈나무집", + "bsshSn": "7203", + "name": "가람", "categoryName": "한식", - "address": "서울특별시 종로구 삼청로 136-1 1층", - "phone": "02-739-6742", - "representativeMenu": "김치말이국수", - "price": 6500, - "latitude": 37.5874798577018, - "longitude": 126.981887109774, - "pageIndex": 2, - "regionCode": "11", - "regionName": "서울특별시" + "address": "제주특별자치도 제주시 복지로북길 4 1층", + "phone": "064-756-0012", + "representativeMenu": "추어탕", + "price": 10000, + "latitude": 33.4888491368419, + "longitude": 126.520646841034, + "pageIndex": 1, + "regionCode": "50", + "regionName": "제주특별자치도" }, { - "bsshSn": "946", - "name": "돈까스보라", - "categoryName": "양식", - "address": "서울특별시 종로구 대학로5길 5 (연건동)", - "phone": "02-741-3455", - "representativeMenu": "수제 돈까스", + "bsshSn": "10579", + "name": "남양스튜디오", + "categoryName": "기타비요식업", + "address": "경상남도 창원시 마산합포구 장장군로 31-23 (장군동4가)", + "phone": "055-245-0548", + "representativeMenu": "가족사진", + "price": 10000, + "latitude": 35.1971042919322, + "longitude": 128.565386781544, + "pageIndex": 5, + "regionCode": "48", + "regionName": "경상남도" + }, + { + "bsshSn": "979", + "name": "거목식당", + "categoryName": "한식", + "address": "서울특별시 중구 을지로36길 18 (을지로5가)", + "phone": "02-226-0010", + "representativeMenu": "된장찌개", "price": 7000, - "latitude": 37.5781982996716, - "longitude": 127.001695852612, - "pageIndex": 2, + "latitude": 37.5659767545803, + "longitude": 127.001477572948, + "pageIndex": 17, "regionCode": "11", "regionName": "서울특별시" }, { - "bsshSn": "16864", - "name": "동대문 한국통닭", - "categoryName": "한식", - "address": "서울특별시 종로구 종로 304 (창신동) 1층", - "phone": "02-747-2443", - "representativeMenu": "통닭 1마리", - "price": 4500, - "latitude": 37.571667373066134, - "longitude": 127.01153873736409, - "pageIndex": 2, + "bsshSn": "11003", + "name": "이문동사진관", + "categoryName": "기타비요식업", + "address": "서울특별시 동대문구 이문로12길 4-3 (이문동)", + "phone": "0503-7151-4456", + "representativeMenu": "증명사진", + "price": 10000, + "latitude": 37.59303835527455, + "longitude": 127.05835078616246, + "pageIndex": 91, "regionCode": "11", "regionName": "서울특별시" }, @@ -828,6 +2261,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "17648", + "name": "뉴헤어라인 이용원", + "categoryName": "이용업", + "address": "경상남도 창원시 진해구 제황로 83-1 (충무동) 1층", + "phone": "0507-1405-1427", + "representativeMenu": "남성커트", + "price": 9000, + "latitude": 35.15172782098772, + "longitude": 128.66680204776503, + "pageIndex": 5, + "regionCode": "48", + "regionName": "경상남도" + }, + { + "bsshSn": "16085", + "name": "공화춘", + "categoryName": "중식", + "address": "서울특별시 중구 청파로 457-1 (중림동) 2층", + "phone": "02-723-4038", + "representativeMenu": "짜장면", + "price": 6000, + "latitude": 37.56020605082971, + "longitude": 126.96781059246393, + "pageIndex": 17, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "13392", + "name": "형제이발", + "categoryName": "이용업", + "address": "서울특별시 동대문구 왕산로35길 8 (청량리동)", + "phone": "010-4751-4245", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.58014649551235, + "longitude": 127.0434490157586, + "pageIndex": 97, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15032", "name": "꽃가람 남포직영점", @@ -842,6 +2317,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "2530", + "name": "머리카락&피부샵", + "categoryName": "미용업", + "address": "대전광역시 동구 동서대로 1692번길 153 (성남동)", + "phone": "-", + "representativeMenu": "미용료(여자커트)", + "price": 8000, + "latitude": 36.3424896102607, + "longitude": 127.438366074824, + "pageIndex": 6, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "980", + "name": "광희식당", + "categoryName": "한식", + "address": "서울특별시 중구 장충단로 212-2 (광희동2가)", + "phone": "02-226-1555", + "representativeMenu": "된장찌개", + "price": 7000, + "latitude": 37.5636366550507, + "longitude": 127.007233814214, + "pageIndex": 18, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "10674", + "name": "studio환히", + "categoryName": "기타비요식업", + "address": "서울특별시 중랑구 동일로109길 28-16", + "phone": "-", + "representativeMenu": "사진촬영료", + "price": 10000, + "latitude": 37.5920068039795, + "longitude": 127.077641704523, + "pageIndex": 99, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1646", "name": "남선식당", @@ -856,6 +2373,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "10183", + "name": "세종세탁 명품", + "categoryName": "세탁업", + "address": "세종특별자치시 만남로 190 상가 203호", + "phone": "044-864-2226", + "representativeMenu": "이불", + "price": 10000, + "latitude": 36.5170635630589, + "longitude": 127.241017466402, + "pageIndex": 6, + "regionCode": "36", + "regionName": "세종특별자치시" + }, + { + "bsshSn": "16087", + "name": "뉴욕스넥", + "categoryName": "한식", + "address": "서울특별시 중구 을지로 지하131 (을지로3가) 56호", + "phone": "02-2274-1110", + "representativeMenu": "야채김밥", + "price": 3500, + "latitude": 37.566442970950895, + "longitude": 126.99419916729464, + "pageIndex": 18, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "1001", + "name": "금천이발관", + "categoryName": "이용업", + "address": "서울특별시 중랑구 면목로29길 21", + "phone": "02-492-5613", + "representativeMenu": "이용료(커트)", + "price": 7000, + "latitude": 37.575726501017, + "longitude": 127.084575411368, + "pageIndex": 100, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1647", "name": "남원원조추어탕", @@ -870,6 +2429,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "10168", + "name": "송덕이용원", + "categoryName": "이용업", + "address": "세종특별자치시 전동면 금이로 266", + "phone": "044-867-1488", + "representativeMenu": "조발", + "price": 10000, + "latitude": 36.6302394683097, + "longitude": 127.260476864844, + "pageIndex": 6, + "regionCode": "36", + "regionName": "세종특별자치시" + }, + { + "bsshSn": "15373", + "name": "대박물갈비", + "categoryName": "한식", + "address": "서울특별시 중구 퇴계로4길 7 (남창동) 1층", + "phone": "02-755-6974", + "representativeMenu": "제육볶음", + "price": 9000, + "latitude": 37.557537858746215, + "longitude": 126.97773067463572, + "pageIndex": 18, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "1002", + "name": "더 이등병", + "categoryName": "미용업", + "address": "서울특별시 중랑구 면목로33길 33", + "phone": "-", + "representativeMenu": "이용료(커트)", + "price": 8000, + "latitude": 37.5764891385977, + "longitude": 127.084020210143, + "pageIndex": 101, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10075", "name": "누렁소식당", @@ -885,25 +2486,109 @@ "regionName": "대구광역시" }, { - "bsshSn": "15357", - "name": "덕종국수", - "categoryName": "한식", - "address": "대구광역시 중구 약령길 53 (수동) 1층", - "phone": "053-353-7971", - "representativeMenu": "비빔밥", + "bsshSn": "17117", + "name": "늘하얀세탁소", + "categoryName": "세탁업", + "address": "경기도 수원시 팔달구 화양로68번길 61 (화서동) 1층", + "phone": "031-242-5554", + "representativeMenu": "드라이클리닝(신사복)", "price": 8000, - "latitude": 35.86868347395729, - "longitude": 128.5892390743561, - "pageIndex": 2, - "regionCode": "27", - "regionName": "대구광역시" + "latitude": 37.28181847804219, + "longitude": 126.99725940969884, + "pageIndex": 6, + "regionCode": "41", + "regionName": "경기도" }, { - "bsshSn": "17975", - "name": "도리집", + "bsshSn": "981", + "name": "돈우가식당", "categoryName": "한식", - "address": "대구광역시 중구 달구벌대로 2109-34 (동성로3가) 1층", - "phone": "053-253-3062", + "address": "서울특별시 중구 남대문로 25-17 1층(북창동)", + "phone": "02-378-1313", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.5620306338518, + "longitude": 126.97816807023, + "pageIndex": 18, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "14503", + "name": "수빈헤어아트", + "categoryName": "미용업", + "address": "서울특별시 중랑구 겸재로 185 (면목동) 1층", + "phone": "02-432-7557", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.58868215374439, + "longitude": 127.08810686209344, + "pageIndex": 106, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "15357", + "name": "덕종국수", + "categoryName": "한식", + "address": "대구광역시 중구 약령길 53 (수동) 1층", + "phone": "053-353-7971", + "representativeMenu": "비빔밥", + "price": 8000, + "latitude": 35.86868347395729, + "longitude": 128.5892390743561, + "pageIndex": 2, + "regionCode": "27", + "regionName": "대구광역시" + }, + { + "bsshSn": "3401", + "name": "닛시헤어필", + "categoryName": "미용업", + "address": "경기도 수원시 장안구 파장로21번길 27 (송죽동)", + "phone": "031-257-1411", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.3033791048968, + "longitude": 126.997399634911, + "pageIndex": 6, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "18573", + "name": "동경우동(2호점)", + "categoryName": "한식", + "address": "서울특별시 중구 퇴계로27길 16 (필동1가) 1층 105호", + "phone": "02-2277-3223", + "representativeMenu": "우동", + "price": 5000, + "latitude": 37.56195219030635, + "longitude": 126.99184490399296, + "pageIndex": 19, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "1005", + "name": "수지헤어", + "categoryName": "미용업", + "address": "서울특별시 중랑구 봉우재로 41 (회진빌딩 2층)", + "phone": "-", + "representativeMenu": "이용료(커트)", + "price": 7000, + "latitude": 37.5907829369907, + "longitude": 127.077853865667, + "pageIndex": 106, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17975", + "name": "도리집", + "categoryName": "한식", + "address": "대구광역시 중구 달구벌대로 2109-34 (동성로3가) 1층", + "phone": "053-253-3062", "representativeMenu": "까만도리밥(덮밥)", "price": 4900, "latitude": 35.86686640891391, @@ -912,6 +2597,48 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "4340", + "name": "동네미용실", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 동내면 영서로 1747 1층", + "phone": "033-262-3257", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.8327701426154, + "longitude": 127.761293705291, + "pageIndex": 6, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "18572", + "name": "동경우동집", + "categoryName": "한식", + "address": "서울특별시 중구 충무로 48 (초동) 1층 1호", + "phone": "02-2274-3440", + "representativeMenu": "우동", + "price": 5000, + "latitude": 37.56537537416687, + "longitude": 126.99296134367208, + "pageIndex": 19, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "14502", + "name": "스타미용실", + "categoryName": "미용업", + "address": "서울특별시 중랑구 면목로28길 7 (면목동) 1층", + "phone": "010-5445-6927", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.57493334927133, + "longitude": 127.08577897325155, + "pageIndex": 106, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13117", "name": "김윤식의 착한국수, 솥뚜껑삼겹살", @@ -926,6 +2653,48 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "4959", + "name": "남성커트오천", + "categoryName": "이용업", + "address": "충청남도 천안시 서북구 월봉로 66 (쌍용동)", + "phone": "-", + "representativeMenu": "커트", + "price": 7000, + "latitude": 36.7964851683758, + "longitude": 127.118063685574, + "pageIndex": 6, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "10673", + "name": "명동얼큰수제비", + "categoryName": "한식", + "address": "서울특별시 중구 남대문로 64 1층", + "phone": "02-752-7649", + "representativeMenu": "김치찌개", + "price": 8000, + "latitude": 37.5627658956023, + "longitude": 126.982216802182, + "pageIndex": 19, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11183", + "name": "스타이발관", + "categoryName": "이용업", + "address": "서울특별시 중랑구 망우로 382-2 -", + "phone": "-", + "representativeMenu": "이용료(커트)", + "price": 7000, + "latitude": 37.5984167441294, + "longitude": 127.09476491164, + "pageIndex": 107, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14133", "name": "다정가마솥순두부", @@ -940,6 +2709,48 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "4911", + "name": "남성컷트오천냥클럽", + "categoryName": "이용업", + "address": "충청남도 천안시 동남구 서부대로 257-3 105호(신방동)", + "phone": "041-572-5283", + "representativeMenu": "커트", + "price": 7000, + "latitude": 36.7910983221181, + "longitude": 127.128572630944, + "pageIndex": 6, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "983", + "name": "민정이네", + "categoryName": "한식", + "address": "서울특별시 중구 만리재로 37길 21 (만리동1가)", + "phone": "02-312-1420", + "representativeMenu": "점심백반", + "price": 7000, + "latitude": 37.5565915616197, + "longitude": 126.967168586088, + "pageIndex": 20, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17618", + "name": "영헤어", + "categoryName": "미용업", + "address": "서울특별시 중랑구 면목로27가길 17 (면목동) 1층", + "phone": "02-493-0219", + "representativeMenu": "커트", + "price": 6000, + "latitude": 37.575991187224275, + "longitude": 127.08386326369666, + "pageIndex": 108, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2223", "name": "도래순", @@ -954,6 +2765,48 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "10392", + "name": "넘버원 남성컷트", + "categoryName": "미용업", + "address": "충청남도 천안시 서북구 두정로 263 (두정동)", + "phone": "041-904-1020", + "representativeMenu": "커트", + "price": 7700, + "latitude": 36.8334141610709, + "longitude": 127.146148378172, + "pageIndex": 6, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "16086", + "name": "바재커피", + "categoryName": "기타요식업", + "address": "서울특별시 중구 남대문시장8길 25 (남창동) 1층", + "phone": "02-776-5577", + "representativeMenu": "아메리카노(핫)", + "price": 2000, + "latitude": 37.55934272418682, + "longitude": 126.97870933285441, + "pageIndex": 20, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "1027", + "name": "제일이발관", + "categoryName": "이용업", + "address": "서울특별시 중랑구 중랑역로 15-1 2층", + "phone": "-", + "representativeMenu": "이용료(커트)", + "price": 7000, + "latitude": 37.5955649352659, + "longitude": 127.076080619786, + "pageIndex": 111, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14638", "name": "그냥집밥", @@ -968,6 +2821,48 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "10551", + "name": "굿맨", + "categoryName": "이용업", + "address": "경상북도 포항시 북구 아치로 57 상가동 101호 (우현동,화성아파트)", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.0511457346007, + "longitude": 129.355698800567, + "pageIndex": 6, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "15377", + "name": "산과들그리고바다", + "categoryName": "한식", + "address": "서울특별시 중구 을지로14길 22 (을지로3가) 1층", + "phone": "02-2277-7887", + "representativeMenu": "모듬돌솥비빔밥", + "price": 10000, + "latitude": 37.56523732282778, + "longitude": 126.99202506646904, + "pageIndex": 20, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11184", + "name": "착한이발관", + "categoryName": "이용업", + "address": "서울특별시 중랑구 봉화산로 54 -", + "phone": "-", + "representativeMenu": "이용료(커트)", + "price": 7000, + "latitude": 37.601476557412, + "longitude": 127.080368810985, + "pageIndex": 111, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13743", "name": "담양국수", @@ -983,19 +2878,103 @@ "regionName": "광주광역시" }, { - "bsshSn": "2258", - "name": "대왕김밥(대인동)", - "categoryName": "한식", - "address": "광주광역시 동구 구성로204번길 15-6 1층(대인동)", - "phone": "062-529-3363", - "representativeMenu": "김밥", - "price": 3500, - "latitude": 35.1525929911284, + "bsshSn": "16131", + "name": "권민선남성컷", + "categoryName": "미용업", + "address": "경상북도 포항시 남구 상공로221번길 28 (해도동) 권민선남성컷", + "phone": "054-277-4596", + "representativeMenu": "컷트", + "price": 10000, + "latitude": 36.02519921582511, + "longitude": 129.3695250773602, + "pageIndex": 6, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "967", + "name": "신빙고", + "categoryName": "기타요식업", + "address": "서울특별시 중구 동호로12길 93 1층(신당동)", + "phone": "02-223-8819", + "representativeMenu": "아메리카노", + "price": 2300, + "latitude": 37.559329134852, + "longitude": 127.012071243923, + "pageIndex": 21, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "996", + "name": "포토아트", + "categoryName": "기타비요식업", + "address": "서울특별시 중랑구 면목로40길 16", + "phone": "02-435-1757", + "representativeMenu": "사진촬영료", + "price": 10000, + "latitude": 37.5789701273514, + "longitude": 127.087962102299, + "pageIndex": 113, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "2258", + "name": "대왕김밥(대인동)", + "categoryName": "한식", + "address": "광주광역시 동구 구성로204번길 15-6 1층(대인동)", + "phone": "062-529-3363", + "representativeMenu": "김밥", + "price": 3500, + "latitude": 35.1525929911284, "longitude": 126.91613437943, "pageIndex": 2, "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "7201", + "name": "금천미용실", + "categoryName": "미용업", + "address": "제주특별자치도 제주시 중앙로23길 6 .", + "phone": "064-758-9254", + "representativeMenu": "커트", + "price": 10000, + "latitude": 33.5069619652156, + "longitude": 126.525476490278, + "pageIndex": 6, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "984", + "name": "영자씨우동김밥", + "categoryName": "한식", + "address": "서울특별시 중구 마른내로 15-1 (저동2가)", + "phone": "02-227-9791", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.5649541262687, + "longitude": 126.989606762221, + "pageIndex": 21, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "18849", + "name": "행운이발관", + "categoryName": "이용업", + "address": "서울특별시 중랑구 면목로 402 (면목동) 1층", + "phone": "010-8255-3388", + "representativeMenu": "이용료(커트)", + "price": 8000, + "latitude": 37.58784210881535, + "longitude": 127.0879735000605, + "pageIndex": 115, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2562", "name": "경성화로", @@ -1011,18 +2990,46 @@ "regionName": "대전광역시" }, { - "bsshSn": "2527", - "name": "곽은아미용실", + "bsshSn": "13187", + "name": "서림미용실", "categoryName": "미용업", - "address": "대전광역시 동구 새울로 100 (용운동)", - "phone": "042-272-4478", - "representativeMenu": "커트(여성 일반)", + "address": "광주광역시 동구 운림길 23 (운림동, 무등파크맨션) 상가동 202호", + "phone": "062-228-2909", + "representativeMenu": "커트(성인)", "price": 10000, - "latitude": 36.3271167002537, - "longitude": 127.461826711325, - "pageIndex": 2, - "regionCode": "30", - "regionName": "대전광역시" + "latitude": 35.13428906928481, + "longitude": 126.94139361034274, + "pageIndex": 7, + "regionCode": "29", + "regionName": "광주광역시" + }, + { + "bsshSn": "969", + "name": "옛날홍두깨손칼국수", + "categoryName": "한식", + "address": "서울특별시 중구 동호로7길 32 1층", + "phone": "02-223-1458", + "representativeMenu": "손수제비", + "price": 6000, + "latitude": 37.5525136777809, + "longitude": 127.010624637953, + "pageIndex": 21, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17623", + "name": "현대미용실", + "categoryName": "미용업", + "address": "서울특별시 중랑구 면목로44가길 50 (면목동) 1층", + "phone": "010-6856-2098", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.58334894436383, + "longitude": 127.09009102203078, + "pageIndex": 115, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "18955", @@ -1038,6 +3045,48 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "2531", + "name": "복지이용원", + "categoryName": "이용업", + "address": "대전광역시 동구 대전로 791번길 50 (중동)", + "phone": "042-251-8428", + "representativeMenu": "이용료", + "price": 7000, + "latitude": 36.3295205271986, + "longitude": 127.430506838139, + "pageIndex": 7, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "985", + "name": "우리집 맛자랑", + "categoryName": "한식", + "address": "서울특별시 중구 퇴계로20길 26 (남산동2가)", + "phone": "02-319-8939", + "representativeMenu": "된장찌개", + "price": 7000, + "latitude": 37.559092298164, + "longitude": 126.985816423839, + "pageIndex": 23, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "997", + "name": "호계대중사우나", + "categoryName": "목욕업", + "address": "서울특별시 중랑구 봉화산로56길 153 지하2층", + "phone": "02-433-5490", + "representativeMenu": "목욕료(성인)", + "price": 8500, + "latitude": 37.6014843289566, + "longitude": 127.096785094457, + "pageIndex": 116, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2544", "name": "김화칼국수", @@ -1052,6 +3101,48 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "3363", + "name": "당수여성사우나", + "categoryName": "목욕업", + "address": "경기도 수원시 권선구 당진로15번길 56 (당수동)", + "phone": "031-419-9042", + "representativeMenu": "목욕료", + "price": 8000, + "latitude": 37.2920971102154, + "longitude": 126.938984343475, + "pageIndex": 7, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "966", + "name": "유가", + "categoryName": "중식", + "address": "서울특별시 중구 퇴계로12길 68 1층 (회현동1가)", + "phone": "02-378-9688", + "representativeMenu": "자장면", + "price": 7000, + "latitude": 37.5566718882239, + "longitude": 126.981473444416, + "pageIndex": 23, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "1013", + "name": "효자동이발소", + "categoryName": "이용업", + "address": "서울특별시 중랑구 용마산로 394", + "phone": "-", + "representativeMenu": "이용료(커트)", + "price": 7000, + "latitude": 37.5866519523067, + "longitude": 127.095551256708, + "pageIndex": 117, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11675", "name": "다원식당", @@ -1066,6 +3157,48 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "16642", + "name": "머릿결사랑", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 칠전서길 15-2 (칠전동, 칠전대우2차아파트)", + "phone": "033-253-8940", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.8403768426874, + "longitude": 127.71243175796782, + "pageIndex": 7, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "15376", + "name": "이모분식", + "categoryName": "한식", + "address": "서울특별시 중구 충무로 43-2 (초동) 1층", + "phone": "02-2279-3897", + "representativeMenu": "김밥", + "price": 4000, + "latitude": 37.5650968997076, + "longitude": 126.99258310708615, + "pageIndex": 23, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "762", + "name": "5080실버미용실", + "categoryName": "미용업", + "address": "서울특별시 성북구 돌곶이로 141", + "phone": "02-942-9234", + "representativeMenu": "미용료(커트)", + "price": 10000, + "latitude": 37.6145460956653, + "longitude": 127.052601651021, + "pageIndex": 117, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16555", "name": "대가국밥", @@ -1080,6 +3213,48 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "10499", + "name": "영빈미용실", + "categoryName": "미용업", + "address": "전라남도 목포시 삼학로343번길 6 (용해동)", + "phone": "-", + "representativeMenu": "커트(기본)", + "price": 7000, + "latitude": 34.8018144738611, + "longitude": 126.408611997702, + "pageIndex": 7, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "16088", + "name": "이원 손칼국수", + "categoryName": "한식", + "address": "서울특별시 중구 동호로37길 33-16 (주교동) 1층", + "phone": "02-2273-5568", + "representativeMenu": "칼국수", + "price": 7000, + "latitude": 37.568594035149424, + "longitude": 126.9996703356776, + "pageIndex": 23, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "760", + "name": "Shville세탁", + "categoryName": "세탁업", + "address": "서울특별시 성북구 한천로101길 36 장월상가 203호", + "phone": "02-941-8423", + "representativeMenu": "와이셔츠", + "price": 2500, + "latitude": 37.6225362319459, + "longitude": 127.048839188383, + "pageIndex": 117, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19374", "name": "돈대박 복산점", @@ -1094,6 +3269,48 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "6430", + "name": "권헤어", + "categoryName": "미용업", + "address": "경상북도 포항시 북구 죽도시장5길 4-6 권헤어", + "phone": "-", + "representativeMenu": "커트(여성)", + "price": 10000, + "latitude": 36.0353351270253, + "longitude": 129.366985164135, + "pageIndex": 7, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "986", + "name": "이조식당", + "categoryName": "한식", + "address": "서울특별시 중구 청파로103길 33 1층(중림동)", + "phone": "02-365-5993", + "representativeMenu": "콩나물비빔밥", + "price": 7000, + "latitude": 37.5576624371646, + "longitude": 126.968304863066, + "pageIndex": 24, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "15930", + "name": "권정숙헤어", + "categoryName": "미용업", + "address": "서울특별시 성북구 성북로4길 52 (돈암동, 한신한진아파트) 417동1512호", + "phone": "02-745-0104", + "representativeMenu": "남성커트", + "price": 10000, + "latitude": 37.59109173463164, + "longitude": 127.00704694290194, + "pageIndex": 118, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10182", "name": "농부의한우", @@ -1108,6 +3325,48 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "6323", + "name": "그린빌미용실", + "categoryName": "미용업", + "address": "경상북도 포항시 남구 대이로 138 그린빌미용실", + "phone": "054-274-0450", + "representativeMenu": "여자커트", + "price": 10000, + "latitude": 36.0267483836043, + "longitude": 129.341432453617, + "pageIndex": 7, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "987", + "name": "장수보리밥", + "categoryName": "한식", + "address": "서울특별시 중구 퇴계로85길 12-4 (황학동)", + "phone": "02-225-2808", + "representativeMenu": "보리밥", + "price": 8000, + "latitude": 37.5662780085738, + "longitude": 127.0198582347, + "pageIndex": 24, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "763", + "name": "나경미용실", + "categoryName": "미용업", + "address": "서울특별시 성북구 종암로18길 6 (종암동)", + "phone": "02-914-5511", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5987051731675, + "longitude": 127.035123406077, + "pageIndex": 119, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10167", "name": "대신식당", @@ -1122,6 +3381,48 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "1635", + "name": "용두산이용원", + "categoryName": "이용업", + "address": "부산광역시 중구 남포길 43 (남포동2가)", + "phone": "051-242-7007", + "representativeMenu": "커트", + "price": 5000, + "latitude": 35.0981609773096, + "longitude": 129.033460927363, + "pageIndex": 8, + "regionCode": "26", + "regionName": "부산광역시" + }, + { + "bsshSn": "10672", + "name": "장안김밥", + "categoryName": "한식", + "address": "서울특별시 중구 다산로36길 25", + "phone": "02-223-8135", + "representativeMenu": "떡국", + "price": 4000, + "latitude": 37.5623625015386, + "longitude": 127.016670957748, + "pageIndex": 24, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "13501", + "name": "로데오당구장", + "categoryName": "기타비요식업", + "address": "서울특별시 성북구 보문로38길 53 (동소문동5가) 지하1층", + "phone": "010-4642-3078", + "representativeMenu": "당구 10분(10:00~17:00)", + "price": 1100, + "latitude": 37.590644206413586, + "longitude": 127.01670482731463, + "pageIndex": 122, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10185", "name": "도담얼큰이 칼국수", @@ -1136,6 +3437,48 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "2532", + "name": "뿌리미용실", + "categoryName": "미용업", + "address": "대전광역시 동구 충무로 219 (인동)", + "phone": "042-286-4444", + "representativeMenu": "미용료(커트)", + "price": 8000, + "latitude": 36.3225191758149, + "longitude": 127.440235253078, + "pageIndex": 8, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "10671", + "name": "충정로김밥", + "categoryName": "한식", + "address": "서울특별시 중구 서소문로6길 34 1층108호(중림동,성요셉아파트상가)", + "phone": "02-313-1006", + "representativeMenu": "충정로김밥", + "price": 3000, + "latitude": 37.5596149765767, + "longitude": 126.967598813552, + "pageIndex": 25, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17898", + "name": "부흥세탁소", + "categoryName": "세탁업", + "address": "서울특별시 성북구 장위로16길 5 (장위동) 1층", + "phone": "02-918-8260", + "representativeMenu": "운동화", + "price": 5000, + "latitude": 37.61393773711567, + "longitude": 127.04159696628186, + "pageIndex": 123, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17109", "name": "가치있는밥상", @@ -1150,6 +3493,48 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "14020", + "name": "동남사우나", + "categoryName": "목욕업", + "address": "경기도 수원시 장안구 영화로25번길 22 (영화동, 태영아파트) .", + "phone": "031-243-6422", + "representativeMenu": "목욕비", + "price": 10000, + "latitude": 37.288921701882735, + "longitude": 127.00821781483458, + "pageIndex": 8, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "988", + "name": "코너집", + "categoryName": "한식", + "address": "서울특별시 중구 퇴계로 336 1층101호(광희동2가,성진오피스텔)", + "phone": "02-227-6266", + "representativeMenu": "된장찌개", + "price": 8000, + "latitude": 37.5642008377656, + "longitude": 127.008866132716, + "pageIndex": 25, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16966", + "name": "서림탕", + "categoryName": "목욕업", + "address": "서울특별시 성북구 보국문로 151 (정릉동) 1층 서림탕", + "phone": "02-914-3852", + "representativeMenu": "목욕비(대인)", + "price": 7500, + "latitude": 37.616378244970825, + "longitude": 127.0043918502785, + "pageIndex": 124, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13884", "name": "강릉장칼국수", @@ -1165,19 +3550,47 @@ "regionName": "경기도" }, { - "bsshSn": "4338", - "name": "개성시대미용실", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 춘천로68번길 10 (효자동)", - "phone": "033-256-9304", - "representativeMenu": "커트", + "bsshSn": "4332", + "name": "바위목욕탕", + "categoryName": "목욕업", + "address": "강원특별자치도 춘천시 춘천로213번길 9 (효자동)", + "phone": "033-253-3610", + "representativeMenu": "대인", "price": 8000, - "latitude": 37.8700600426461, - "longitude": 127.725474230628, - "pageIndex": 2, + "latitude": 37.8781770353052, + "longitude": 127.737068247626, + "pageIndex": 8, "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "15372", + "name": "콩다방", + "categoryName": "기타요식업", + "address": "서울특별시 중구 마른내로 50 (인현동1가) 1층", + "phone": "02-2274-1678", + "representativeMenu": "아메리카노", + "price": 1800, + "latitude": 37.56423613325778, + "longitude": 126.993241593574, + "pageIndex": 26, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "18843", + "name": "쉼터미용실", + "categoryName": "미용업", + "address": "서울특별시 성북구 북악산로29길 67 (종암동, 극동아파트) 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.59526145486044, + "longitude": 127.03423882308982, + "pageIndex": 125, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4375", "name": "골목손두부", @@ -1192,6 +3605,48 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "14757", + "name": "내수시민미용실", + "categoryName": "미용업", + "address": "충청북도 청주시 청원구 내수읍 내수로 729-2", + "phone": "043-214-5124", + "representativeMenu": "커트", + "price": 6000, + "latitude": 36.72673097882712, + "longitude": 127.53610288381759, + "pageIndex": 8, + "regionCode": "43", + "regionName": "충청북도" + }, + { + "bsshSn": "989", + "name": "풍년식당", + "categoryName": "한식", + "address": "서울특별시 중구 퇴계로36가길 47 (필동2가)", + "phone": "02-227-0870", + "representativeMenu": "가정식백반", + "price": 7000, + "latitude": 37.5582187442402, + "longitude": 126.995702195702, + "pageIndex": 26, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "15251", + "name": "오지선미용실", + "categoryName": "미용업", + "address": "서울특별시 성북구 돌곶이로37길 23 (장위동, 장미원2차빌라) 1층상가1호", + "phone": "010-9991-3322", + "representativeMenu": "남성컷", + "price": 10000, + "latitude": 37.61642461654759, + "longitude": 127.04754823197801, + "pageIndex": 127, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4368", "name": "곱돌생삼겹살", @@ -1207,18 +3662,46 @@ "regionName": "강원특별자치도" }, { - "bsshSn": "4679", - "name": "가든미용실", + "bsshSn": "4912", + "name": "동은헤어", "categoryName": "미용업", - "address": "충청북도 청주시 상당구 청남로2197번길 12 (석교동)", - "phone": "043-223-8097", + "address": "충청남도 천안시 동남구 새말3길 38-4 지하1층(신방동)", + "phone": "070-4036-7721", "representativeMenu": "커트", - "price": 6000, - "latitude": 36.6278271128724, - "longitude": 127.490164264559, - "pageIndex": 2, - "regionCode": "43", - "regionName": "충청북도" + "price": 10000, + "latitude": 36.7945688750786, + "longitude": 127.131044743835, + "pageIndex": 8, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "18571", + "name": "하우마라탕", + "categoryName": "중식", + "address": "서울특별시 중구 퇴계로27길 42 (충무로3가) 2층", + "phone": "0507-1405-5357", + "representativeMenu": "소고기 마라탕", + "price": 9000, + "latitude": 37.56318036878231, + "longitude": 126.99136979700421, + "pageIndex": 26, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "18846", + "name": "필래뽀끌래", + "categoryName": "미용업", + "address": "서울특별시 성북구 오패산로10길 50 (하월곡동) 1층", + "phone": "-", + "representativeMenu": "커트(경로우대)", + "price": 10000, + "latitude": 37.60468194456091, + "longitude": 127.03901050519049, + "pageIndex": 132, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15768", @@ -1234,6 +3717,48 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "18216", + "name": "에바다미용실", + "categoryName": "미용업", + "address": "전북특별자치도 전주시 완산구 관선1길 74-4 (남노송동) 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 35.81910634092517, + "longitude": 127.15785208426966, + "pageIndex": 8, + "regionCode": "52", + "regionName": "전북특별자치도" + }, + { + "bsshSn": "990", + "name": "형제정육식당", + "categoryName": "한식", + "address": "서울특별시 중구 다산로40길 56 1층(신당5동)", + "phone": "02-223-9902", + "representativeMenu": "된장찌개", + "price": 7000, + "latitude": 37.5631864591946, + "longitude": 127.019075758025, + "pageIndex": 26, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "15250", + "name": "호수헤어", + "categoryName": "미용업", + "address": "서울특별시 성북구 지봉로 171 (보문동2가) 1층", + "phone": "02-927-0709", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.58492930938145, + "longitude": 127.01783472300218, + "pageIndex": 133, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4742", "name": "감촌삼겹살", @@ -1248,6 +3773,48 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "10500", + "name": "우아미미용실", + "categoryName": "미용업", + "address": "전라남도 목포시 영산로250번길 13 (용당동)", + "phone": "061-277-1869", + "representativeMenu": "커트(기본)", + "price": 5000, + "latitude": 34.8020067240489, + "longitude": 126.39447577251, + "pageIndex": 8, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "991", + "name": "흑돈연가", + "categoryName": "한식", + "address": "서울특별시 중구 퇴계로88길 20 1층 (신당5동)", + "phone": "02-223-7854", + "representativeMenu": "점심백반", + "price": 7000, + "latitude": 37.5647641578328, + "longitude": 127.020885801266, + "pageIndex": 27, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16482", + "name": "극동머리방", + "categoryName": "미용업", + "address": "서울특별시 강북구 인수봉로72가길 7 (수유동) 1층", + "phone": "02-907-2251", + "representativeMenu": "커트", + "price": 5000, + "latitude": 37.6431756088048, + "longitude": 127.01313193605671, + "pageIndex": 134, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4708", "name": "개미돈까스", @@ -1262,6 +3829,48 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "18039", + "name": "꽃이피어나", + "categoryName": "미용업", + "address": "제주특별자치도 제주시 도남로 102-12 (도남동) 꽃이피어나", + "phone": "064-722-1202", + "representativeMenu": "커트", + "price": 10000, + "latitude": 33.49138991942305, + "longitude": 126.52711922981103, + "pageIndex": 8, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "14104", + "name": "5빠떡볶이", + "categoryName": "한식", + "address": "서울특별시 용산구 후암로 37-1 (후암동) 1층", + "phone": "02-3789-1489", + "representativeMenu": "떡볶이", + "price": 4000, + "latitude": 37.54931978404158, + "longitude": 126.97740399387813, + "pageIndex": 27, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "115", + "name": "럭키미용실", + "categoryName": "미용업", + "address": "서울특별시 강북구 오패산로 273 1층", + "phone": "02-986-2530", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.6257488946126, + "longitude": 127.029538289863, + "pageIndex": 135, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11028", "name": "겨자씨까페", @@ -1276,6 +3885,48 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "11185", + "name": "정원이용원", + "categoryName": "이용업", + "address": "부산광역시 중구 대청로134번길16 (동광동3가)", + "phone": "051-246-0108", + "representativeMenu": "커트", + "price": 10000, + "latitude": 35.1014290808544, + "longitude": 129.034814332461, + "pageIndex": 9, + "regionCode": "26", + "regionName": "부산광역시" + }, + { + "bsshSn": "14698", + "name": "Y brew(와이브루)", + "categoryName": "기타요식업", + "address": "서울특별시 용산구 서빙고로 17 (한강로3가) 센트럴파크몰 A동 1층 76호", + "phone": "010-4446-5218", + "representativeMenu": "아메리카노", + "price": 1800, + "latitude": 37.52560239924648, + "longitude": 126.96674079441847, + "pageIndex": 27, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "116", + "name": "머리하는집", + "categoryName": "미용업", + "address": "서울특별시 강북구 오현로9길 132 1층", + "phone": "02-985-0234", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.62242295372, + "longitude": 127.0327510333, + "pageIndex": 136, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11409", "name": "경북당", @@ -1290,6 +3941,48 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "10199", + "name": "자연셀프 세차장", + "categoryName": "기타비요식업", + "address": "세종특별자치시 금남면 용포로 32", + "phone": "-", + "representativeMenu": "고압세척(2분30초)", + "price": 1000, + "latitude": 36.4613848948516, + "longitude": 127.280691708831, + "pageIndex": 9, + "regionCode": "36", + "regionName": "세종특별자치시" + }, + { + "bsshSn": "14108", + "name": "가마골", + "categoryName": "한식", + "address": "서울특별시 용산구 이촌로75길 16-5 (이촌동) 107호", + "phone": "02-794-6489", + "representativeMenu": "오늘의정식", + "price": 8000, + "latitude": 37.52072429510628, + "longitude": 126.97467501755911, + "pageIndex": 27, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "14193", + "name": "미주이발소", + "categoryName": "이용업", + "address": "서울특별시 강북구 인수봉로79길 32 (수유동) 1층", + "phone": "010-4753-1726", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.64430707644983, + "longitude": 127.00929698556787, + "pageIndex": 136, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16877", "name": "경자네칼국수", @@ -1304,6 +3997,48 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "3400", + "name": "동남세탁소", + "categoryName": "세탁업", + "address": "경기도 수원시 장안구 만석로101번길 46 (정자동)", + "phone": "031-253-1414", + "representativeMenu": "드라이클리닝", + "price": 7000, + "latitude": 37.3007439187584, + "longitude": 126.991377835815, + "pageIndex": 9, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "886", + "name": "감베로니", + "categoryName": "양식", + "address": "서울특별시 용산구 한강대로 81길 5 1층", + "phone": "02-3273-1791", + "representativeMenu": "돈 까 스 (1인분)", + "price": 9000, + "latitude": 37.5429793370245, + "longitude": 126.971946055378, + "pageIndex": 28, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "114", + "name": "백양세탁소", + "categoryName": "세탁업", + "address": "서울특별시 강북구 인수봉로 251-1 1층", + "phone": "02-997-9390", + "representativeMenu": "양복세탁료", + "price": 7000, + "latitude": 37.6411378755368, + "longitude": 127.010739559379, + "pageIndex": 137, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13651", "name": "고운육회방앗간", @@ -1318,6 +4053,48 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "3393", + "name": "동아사우나", + "categoryName": "목욕업", + "address": "경기도 수원시 영통구 매여울로40번길 45 (매탄동)", + "phone": "031-214-3537", + "representativeMenu": "일반 입욕비", + "price": 10000, + "latitude": 37.2727443891937, + "longitude": 127.047494082233, + "pageIndex": 9, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "17224", + "name": "갑을", + "categoryName": "한식", + "address": "서울특별시 용산구 이촌로77길 19 (이촌동) 1층", + "phone": "02-795-6003", + "representativeMenu": "떡만두국", + "price": 10000, + "latitude": 37.52053381564489, + "longitude": 126.97489050011073, + "pageIndex": 28, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "117", + "name": "별미용실", + "categoryName": "미용업", + "address": "서울특별시 강북구 삼양로41길 17 1층", + "phone": "02-983-0650", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.6218363410093, + "longitude": 127.019135590462, + "pageIndex": 138, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13856", "name": "돈초야", @@ -1332,6 +4109,48 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "11109", + "name": "박설매미용실", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 서부대성로 126-1 1층(운교동)", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.8783657017514, + "longitude": 127.73400940214, + "pageIndex": 9, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "15298", + "name": "강남화로숯불갈비", + "categoryName": "한식", + "address": "서울특별시 용산구 청파로47길 56 (청파동2가) 1층", + "phone": "02-713-9708", + "representativeMenu": "백반", + "price": 8000, + "latitude": 37.54493079081581, + "longitude": 126.96730533508787, + "pageIndex": 28, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "19038", + "name": "봄날헤어", + "categoryName": "미용업", + "address": "서울특별시 강북구 삼각산로 142-1 (수유동) 1층", + "phone": "02-902-1233", + "representativeMenu": "남자 커트", + "price": 8000, + "latitude": 37.640981908516444, + "longitude": 127.02006640087626, + "pageIndex": 138, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5435", "name": "동래분식", @@ -1346,6 +4165,48 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "4342", + "name": "박혜숙헤어", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 춘천로309번길 7 (후평동)", + "phone": "033-257-1360", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.8823136801827, + "longitude": 127.746727606313, + "pageIndex": 9, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "14096", + "name": "경리단578", + "categoryName": "한식", + "address": "서울특별시 용산구 녹사평대로 226 (이태원동) 1층", + "phone": "02-798-6577", + "representativeMenu": "부대찌개", + "price": 10000, + "latitude": 37.53781692227876, + "longitude": 126.98697115721664, + "pageIndex": 29, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17926", + "name": "세븐미용실", + "categoryName": "미용업", + "address": "서울특별시 강북구 삼양로38길 13 (미아동) 1층", + "phone": "02-984-7306", + "representativeMenu": "커트", + "price": 5000, + "latitude": 37.62115561793724, + "longitude": 127.02146533471753, + "pageIndex": 138, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16971", "name": "곰순이식당", @@ -1360,6 +4221,48 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "7044", + "name": "남문이용원", + "categoryName": "이용업", + "address": "제주특별자치도 제주시 남성로 125 (삼도일동)", + "phone": "064-757-5935", + "representativeMenu": "일반컷트", + "price": 10000, + "latitude": 33.5090975162483, + "longitude": 126.518756056763, + "pageIndex": 9, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "16637", + "name": "기사식당(효창동짜장우동)", + "categoryName": "중식", + "address": "서울특별시 용산구 백범로 283 (효창동) 1층", + "phone": "02-703-5287", + "representativeMenu": "짜장면", + "price": 5000, + "latitude": 37.53966141960287, + "longitude": 126.96086956384646, + "pageIndex": 29, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "118", + "name": "송미용실", + "categoryName": "미용업", + "address": "서울특별시 강북구 인수봉로78길 13 1층(수유동)", + "phone": "02-998-7775", + "representativeMenu": "커트", + "price": 5000, + "latitude": 37.6446109094185, + "longitude": 127.011587606952, + "pageIndex": 139, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5616", "name": "광양숯불갈비", @@ -1374,6 +4277,48 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "2249", + "name": "주영미용실", + "categoryName": "미용업", + "address": "광주광역시 동구 무등로375번길 27-1 1층(계림동)", + "phone": "062-529-3184", + "representativeMenu": "성인남녀컷트", + "price": 10000, + "latitude": 35.1630933471234, + "longitude": 126.924296217507, + "pageIndex": 10, + "regionCode": "29", + "regionName": "광주광역시" + }, + { + "bsshSn": "15301", + "name": "김정문숯불갈비", + "categoryName": "한식", + "address": "서울특별시 용산구 장문로 98 (보광동) 1층", + "phone": "02-792-6088", + "representativeMenu": "된장찌게", + "price": 8000, + "latitude": 37.52599742281353, + "longitude": 127.00038037049828, + "pageIndex": 29, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16479", + "name": "수경머리방", + "categoryName": "미용업", + "address": "서울특별시 강북구 도봉로49길 50 (미아동) 1층", + "phone": "02-982-0204", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.62469739941569, + "longitude": 127.0236964703264, + "pageIndex": 139, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16974", "name": "김밥나라(중앙병원점)", @@ -1389,19 +4334,103 @@ "regionName": "전라남도" }, { - "bsshSn": "18284", - "name": "김밥마트(용당점)", - "categoryName": "한식", - "address": "전라남도 목포시 영산로 260 (용당동) 김밥마트", - "phone": "061-272-4288", - "representativeMenu": "김밥", - "price": 3000, - "latitude": 34.803356100920574, + "bsshSn": "2533", + "name": "송미용실", + "categoryName": "미용업", + "address": "대전광역시 동구 산내로 1302 (낭월동) 103호", + "phone": "042-271-9443", + "representativeMenu": "미용료(커트)", + "price": 8000, + "latitude": 36.27973981942758, + "longitude": 127.46857116346227, + "pageIndex": 10, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "15299", + "name": "대도식당", + "categoryName": "한식", + "address": "서울특별시 용산구 청파로93길 9 (서계동) 1층", + "phone": "02-704-2033", + "representativeMenu": "된장찌게", + "price": 8000, + "latitude": 37.55426568003423, + "longitude": 126.96829602755408, + "pageIndex": 30, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "19375", + "name": "아이시떼루 헤어클럽", + "categoryName": "미용업", + "address": "서울특별시 강북구 삼양로163나길 2 (우이동) 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.65874122780649, + "longitude": 127.012575141424, + "pageIndex": 139, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "18284", + "name": "김밥마트(용당점)", + "categoryName": "한식", + "address": "전라남도 목포시 영산로 260 (용당동) 김밥마트", + "phone": "061-272-4288", + "representativeMenu": "김밥", + "price": 3000, + "latitude": 34.803356100920574, "longitude": 126.3947727037926, "pageIndex": 2, "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "2524", + "name": "수정목욕탕", + "categoryName": "목욕업", + "address": "대전광역시 동구 비래서로62번길 103 (가양동)", + "phone": "042-631-3660", + "representativeMenu": "목욕료", + "price": 6000, + "latitude": 36.3498831171768, + "longitude": 127.449018725201, + "pageIndex": 10, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "14107", + "name": "대포항", + "categoryName": "한식", + "address": "서울특별시 용산구 새창로 116-7 (용문동) 1층", + "phone": "02-3211-3272", + "representativeMenu": "삼치구이", + "price": 10000, + "latitude": 37.53676666362042, + "longitude": 126.9602632225852, + "pageIndex": 30, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "112", + "name": "아쿠아산소사우나", + "categoryName": "목욕업", + "address": "서울특별시 강북구 한천로 1131 지층", + "phone": "02-991-6388", + "representativeMenu": "목욕료", + "price": 10000, + "latitude": 37.6454358502605, + "longitude": 127.018624497272, + "pageIndex": 139, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6368", "name": "강가박가92", @@ -1416,6 +4445,48 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "18132", + "name": "슈퍼몽테마파크", + "categoryName": "기타비요식업", + "address": "대전광역시 동구 석천로 8 (낭월동) 2층", + "phone": "042-271-1644", + "representativeMenu": "이용료(1시간)", + "price": 5000, + "latitude": 36.27670405471021, + "longitude": 127.46581697285043, + "pageIndex": 10, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "17212", + "name": "만나칼국수", + "categoryName": "한식", + "address": "서울특별시 용산구 청파로49길 18 (청파동2가, 덕수빌라) 1층", + "phone": "0507-1497-5224", + "representativeMenu": "칼국수", + "price": 8000, + "latitude": 37.54543174471915, + "longitude": 126.96936561673434, + "pageIndex": 31, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "119", + "name": "주헤어필", + "categoryName": "미용업", + "address": "서울특별시 강북구 한천로144길 53 1층", + "phone": "02-905-1588", + "representativeMenu": "커트", + "price": 6000, + "latitude": 37.6430854280736, + "longitude": 127.027119494487, + "pageIndex": 141, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14874", "name": "강변식당", @@ -1430,6 +4501,48 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "16648", + "name": "백양세탁소", + "categoryName": "세탁업", + "address": "강원특별자치도 춘천시 춘천로 263-1 (후평동)", + "phone": "033-252-6311", + "representativeMenu": "양복상의", + "price": 5000, + "latitude": 37.8799279349072, + "longitude": 127.74265772378813, + "pageIndex": 10, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "16337", + "name": "맛사랑", + "categoryName": "한식", + "address": "서울특별시 용산구 한강대로42길 5 (한강로2가) 1층", + "phone": "02-796-8778", + "representativeMenu": "쭈꾸미 비빔밥", + "price": 10000, + "latitude": 37.53083808140842, + "longitude": 126.97007202323455, + "pageIndex": 31, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16481", + "name": "착한가격머리방", + "categoryName": "미용업", + "address": "서울특별시 강북구 삼양로27길 43 (미아동) 101호", + "phone": "02-986-1605", + "representativeMenu": "커트", + "price": 6000, + "latitude": 37.618550452391496, + "longitude": 127.01884716618042, + "pageIndex": 142, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "18324", "name": "개나리분식", @@ -1444,6 +4557,48 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "16651", + "name": "백조컴퓨터세탁", + "categoryName": "세탁업", + "address": "강원특별자치도 춘천시 퇴계로146번길 12-1 (퇴계동)", + "phone": "033-261-8348", + "representativeMenu": "양복상의", + "price": 5000, + "latitude": 37.85855890084086, + "longitude": 127.73469966103542, + "pageIndex": 10, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "892", + "name": "면마루", + "categoryName": "한식", + "address": "서울특별시 용산구 신흥로 86 2층", + "phone": "02-797-3449", + "representativeMenu": "물냉면", + "price": 9000, + "latitude": 37.5456536557396, + "longitude": 126.985939031575, + "pageIndex": 32, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "121", + "name": "착한이발", + "categoryName": "이용업", + "address": "서울특별시 강북구 도봉로 371 지층", + "phone": "070-8866-2350", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.6404579904869, + "longitude": 127.027836761941, + "pageIndex": 142, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6380", "name": "거성갈비살", @@ -1458,6 +4613,48 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "4961", + "name": "루미너스헤어", + "categoryName": "미용업", + "address": "충청남도 천안시 서북구 서부12길12 (성정동)", + "phone": "041-575-0727", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.8207843702587, + "longitude": 127.137340027875, + "pageIndex": 10, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "15743", + "name": "미스터 아메리카노", + "categoryName": "기타요식업", + "address": "서울특별시 용산구 백범로99길 46 (한강로1가) 1층", + "phone": "070-7868-5557", + "representativeMenu": "아메리카노(테이크아웃만 가능)", + "price": 2500, + "latitude": 37.536108089260864, + "longitude": 126.97202246968268, + "pageIndex": 32, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "122", + "name": "현정헤어샵", + "categoryName": "미용업", + "address": "서울특별시 강북구 삼양로87길 24 1층(수유동)", + "phone": "02-905-2225", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.6356182388523, + "longitude": 127.01641698907, + "pageIndex": 143, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6792", "name": "고인돌", @@ -1472,6 +4669,48 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "4962", + "name": "머리못하는집", + "categoryName": "미용업", + "address": "충청남도 천안시 서북구 불당17길 14 (불당동)", + "phone": "041-551-9111", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.8091043219242, + "longitude": 127.11029060282, + "pageIndex": 10, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "16969", + "name": "보광정 이태원점", + "categoryName": "한식", + "address": "서울특별시 용산구 보광로 118 (이태원동) 1층", + "phone": "0507-1466-9272", + "representativeMenu": "찌게", + "price": 8000, + "latitude": 37.53332632270216, + "longitude": 126.99454869716465, + "pageIndex": 32, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "441", + "name": "도깨비머리방", + "categoryName": "미용업", + "address": "서울특별시 도봉구 방학로 6가길 76", + "phone": "02-349-4724", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.6659396262151, + "longitude": 127.040182640253, + "pageIndex": 145, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6929", "name": "곰내커피", @@ -1486,6 +4725,48 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "5401", + "name": "제일크리너스샵", + "categoryName": "세탁업", + "address": "전북특별자치도 전주시 덕진구 쪽구름로 37", + "phone": "063-211-2177", + "representativeMenu": "양복(1벌)", + "price": 9000, + "latitude": 35.8686263475242, + "longitude": 127.077142048735, + "pageIndex": 10, + "regionCode": "52", + "regionName": "전북특별자치도" + }, + { + "bsshSn": "15741", + "name": "부자반점", + "categoryName": "중식", + "address": "서울특별시 용산구 한강대로 275-1 (갈월동) 1층", + "phone": "02-718-7889", + "representativeMenu": "짜장면", + "price": 6500, + "latitude": 37.542891074563585, + "longitude": 126.97213617564002, + "pageIndex": 33, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "442", + "name": "마르떼헤어", + "categoryName": "미용업", + "address": "서울특별시 도봉구 도봉로113길 38 (쌍문동)", + "phone": "02-990-6965", + "representativeMenu": "여성커트", + "price": 10000, + "latitude": 37.6485613480828, + "longitude": 127.032101770911, + "pageIndex": 145, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10635", "name": "감나무집", @@ -1501,24 +4782,108 @@ "regionName": "제주특별자치도" }, { - "bsshSn": "7114", - "name": "강김밥집", - "categoryName": "한식", - "address": "제주특별자치도 제주시 애월읍 하귀9길 2 1층 114호", - "phone": "064-711-5096", - "representativeMenu": "강김밥", - "price": 2900, - "latitude": 33.4864182898895, - "longitude": 126.414565502113, - "pageIndex": 2, - "regionCode": "50", - "regionName": "제주특별자치도" + "bsshSn": "18212", + "name": "조선옥미용실", + "categoryName": "미용업", + "address": "전북특별자치도 전주시 완산구 완산길 105 (서완산동1가) 1층", + "phone": "063-288-1229", + "representativeMenu": "커트(학생)", + "price": 8000, + "latitude": 35.81196716378034, + "longitude": 127.13938563394339, + "pageIndex": 10, + "regionCode": "52", + "regionName": "전북특별자치도" }, { - "bsshSn": "7202", - "name": "고기서맛나(하몽이네)", + "bsshSn": "16334", + "name": "서리김밥", "categoryName": "한식", - "address": "제주특별자치도 제주시 중앙로21길 4 1층(이도일동)", + "address": "서울특별시 용산구 원효로 220 (원효로2가) 1층", + "phone": "02-707-0936", + "representativeMenu": "서리김밥", + "price": 3000, + "latitude": 37.53772931789348, + "longitude": 126.96635693270667, + "pageIndex": 33, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "10308", + "name": "머리깎자", + "categoryName": "이용업", + "address": "서울특별시 도봉구 해등로243 (방학동)", + "phone": "-", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.6576268981974, + "longitude": 127.029523602361, + "pageIndex": 146, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "7114", + "name": "강김밥집", + "categoryName": "한식", + "address": "제주특별자치도 제주시 애월읍 하귀9길 2 1층 114호", + "phone": "064-711-5096", + "representativeMenu": "강김밥", + "price": 2900, + "latitude": 33.4864182898895, + "longitude": 126.414565502113, + "pageIndex": 2, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "6324", + "name": "김육환 미용실", + "categoryName": "미용업", + "address": "경상북도 포항시 남구 대이로 14 김육환 미용실", + "phone": "054-281-7918", + "representativeMenu": "여자커트", + "price": 10000, + "latitude": 36.0170774969108, + "longitude": 129.343624477205, + "pageIndex": 10, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "14103", + "name": "소문난국수집", + "categoryName": "한식", + "address": "서울특별시 용산구 보광로 41 (보광동) 1층", + "phone": "02-790-8494", + "representativeMenu": "칼국수", + "price": 6000, + "latitude": 37.52776014147213, + "longitude": 126.99926795358544, + "pageIndex": 33, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "13395", + "name": "미용실 시현", + "categoryName": "미용업", + "address": "서울특별시 도봉구 덕릉로60바길 14 (창동, 성원하이츠) 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.63845652514259, + "longitude": 127.04112208231514, + "pageIndex": 147, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "7202", + "name": "고기서맛나(하몽이네)", + "categoryName": "한식", + "address": "제주특별자치도 제주시 중앙로21길 4 1층(이도일동)", "phone": "0507-1322-1011", "representativeMenu": "제주산 생뒷고기", "price": 5000, @@ -1529,30 +4894,44 @@ "regionName": "제주특별자치도" }, { - "bsshSn": "18196", - "name": "동문식당", - "categoryName": "한식", - "address": "서울특별시 종로구 종로 300-1 (창신동) 1층", + "bsshSn": "16134", + "name": "까꼬뽀꼬", + "categoryName": "미용업", + "address": "경상북도 포항시 북구 흥해읍 동해대로1574번길 18 까꼬뽀꼬", "phone": "-", - "representativeMenu": "콩나물비빔밥", - "price": 5000, - "latitude": 37.57159249625645, - "longitude": 127.01124193717713, - "pageIndex": 3, - "regionCode": "11", - "regionName": "서울특별시" + "representativeMenu": "학생컷", + "price": 10000, + "latitude": 36.11248157816856, + "longitude": 129.34344079201517, + "pageIndex": 10, + "regionCode": "47", + "regionName": "경상북도" }, { - "bsshSn": "19249", - "name": "둘리분식", + "bsshSn": "17230", + "name": "손맛집", "categoryName": "한식", - "address": "서울특별시 종로구 창경궁로34길 15 (혜화동) 1층", - "phone": "02-744-8626", + "address": "서울특별시 용산구 원효로89길 13-3 (원효로1가) 1층", + "phone": "02-702-7677", "representativeMenu": "된장찌개", - "price": 4000, - "latitude": 37.584324897003846, - "longitude": 127.0011787060946, - "pageIndex": 3, + "price": 8000, + "latitude": 37.54053570472628, + "longitude": 126.96815583996997, + "pageIndex": 34, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "444", + "name": "박연헤어", + "categoryName": "미용업", + "address": "서울특별시 도봉구 도봉로136길111 103호(창동,창동2차현대아파트상가)", + "phone": "02-900-0838", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.6616434568955, + "longitude": 127.046380281378, + "pageIndex": 147, "regionCode": "11", "regionName": "서울특별시" }, @@ -1570,6 +4949,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "14064", + "name": "MHK정미용실", + "categoryName": "미용업", + "address": "대구광역시 동구 반야월로 134-1 (신기동) 동부프라자 나동", + "phone": "010-2829-6158", + "representativeMenu": "커트", + "price": 8000, + "latitude": 35.87268975976554, + "longitude": 128.70304821144194, + "pageIndex": 11, + "regionCode": "27", + "regionName": "대구광역시" + }, + { + "bsshSn": "17215", + "name": "시온", + "categoryName": "기타요식업", + "address": "서울특별시 용산구 한강대로7길 13 (한강로3가) 1층", + "phone": "02-792-4688", + "representativeMenu": "아메리카노", + "price": 3300, + "latitude": 37.524325920409254, + "longitude": 126.96211985401933, + "pageIndex": 34, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "13397", + "name": "뷰티헤어", + "categoryName": "미용업", + "address": "서울특별시 도봉구 도봉로123길 14 (쌍문동)", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.65283568517923, + "longitude": 127.03612055048983, + "pageIndex": 149, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1648", "name": "남포수제비", @@ -1585,18 +5006,46 @@ "regionName": "부산광역시" }, { - "bsshSn": "10020", - "name": "남포이발컷트", + "bsshSn": "18695", + "name": "헤이맨남성컷", "categoryName": "이용업", - "address": "부산광역시 중구 중구로 2 2층(남포동5가)", - "phone": "-", + "address": "세종특별자치시 새롬북로 13 (새롬동, 새뜸마을4단지) 상가동 1층", + "phone": "044-864-7004", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.48655065561284, + "longitude": 127.24647322838923, + "pageIndex": 11, + "regionCode": "36", + "regionName": "세종특별자치시" + }, + { + "bsshSn": "11577", + "name": "영광정육식당", + "categoryName": "한식", + "address": "서울특별시 용산구 서빙고로91나길 104 1층", + "phone": "02-798-2423", + "representativeMenu": "곰탕", + "price": 9000, + "latitude": 37.5252696495859, + "longitude": 126.996147660543, + "pageIndex": 34, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11052", + "name": "블루커트", + "categoryName": "미용업", + "address": "서울특별시 도봉구 해등로255 101동131호(쌍문동,에벤에셀아파트상가)", + "phone": "02-998-6923", "representativeMenu": "커트", "price": 6000, - "latitude": 35.0979757736079, - "longitude": 129.028282683866, - "pageIndex": 3, - "regionCode": "26", - "regionName": "부산광역시" + "latitude": 37.6573748589473, + "longitude": 127.028191786525, + "pageIndex": 149, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "1649", @@ -1612,6 +5061,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "14332", + "name": "렛츠헤어", + "categoryName": "미용업", + "address": "경기도 수원시 권선구 권광로27번길 51 (권선동) 1층", + "phone": "-", + "representativeMenu": "컷트", + "price": 10000, + "latitude": 37.251111070274, + "longitude": 127.02439282380257, + "pageIndex": 11, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "16628", + "name": "와이브루", + "categoryName": "기타요식업", + "address": "서울특별시 용산구 새창로45길 12 (신계동) 1층", + "phone": "-", + "representativeMenu": "아메리카노", + "price": 2000, + "latitude": 37.53449127588085, + "longitude": 126.9630012638545, + "pageIndex": 35, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11002", + "name": "뽀빠이포토스튜디오원", + "categoryName": "기타비요식업", + "address": "서울특별시 도봉구 도당로13길50 (방학동)", + "phone": "02-955-3795", + "representativeMenu": "사진촬영료", + "price": 8000, + "latitude": 37.6667446350337, + "longitude": 127.034240206205, + "pageIndex": 150, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14626", "name": "동인1번지", @@ -1626,6 +5117,48 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "4994", + "name": "문헤어갤러리", + "categoryName": "미용업", + "address": "충청남도 천안시 서북구 미라14길 20 (쌍용동)", + "phone": "041-577-4466", + "representativeMenu": "커트", + "price": 8000, + "latitude": 36.8056741666016, + "longitude": 127.13015496868, + "pageIndex": 11, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "900", + "name": "용대박", + "categoryName": "한식", + "address": "서울특별시 용산구 원효로83길 13-5 102호", + "phone": "02-718-8853", + "representativeMenu": "순대국", + "price": 8000, + "latitude": 37.5400072571702, + "longitude": 126.967560569215, + "pageIndex": 35, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11053", + "name": "세나미용실", + "categoryName": "미용업", + "address": "서울특별시 도봉구 덕릉로57길 22 (창동)", + "phone": "-", + "representativeMenu": "커트", + "price": 5000, + "latitude": 37.6396869947247, + "longitude": 127.037375060198, + "pageIndex": 150, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17986", "name": "동인식당", @@ -1640,6 +5173,48 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "10501", + "name": "착한가격헤어", + "categoryName": "미용업", + "address": "전라남도 목포시 상리로9번길 22 1층(상동)", + "phone": "061-278-1571", + "representativeMenu": "커트(기본)", + "price": 6000, + "latitude": 34.8137466442366, + "longitude": 126.41499805728, + "pageIndex": 11, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "893", + "name": "용산풍천숯불민물장어", + "categoryName": "한식", + "address": "서울특별시 용산구 한강대로39길 10 1층", + "phone": "02-749-5905", + "representativeMenu": "손칼국수", + "price": 5500, + "latitude": 37.5312479318758, + "longitude": 126.968986718823, + "pageIndex": 35, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "13396", + "name": "써니헤어", + "categoryName": "미용업", + "address": "서울특별시 도봉구 도봉로150길 8 (방학동) 2층 201호", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.66575627591173, + "longitude": 127.04363892994309, + "pageIndex": 152, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14949", "name": "만리장성", @@ -1655,18 +5230,102 @@ "regionName": "대구광역시" }, { - "bsshSn": "2012", - "name": "만리향반점", - "categoryName": "중식", - "address": "대구광역시 중구 명덕로35길 112 (남산)", - "phone": "053-255-9380", - "representativeMenu": "짜장면", - "price": 6000, - "latitude": 35.8614534554198, - "longitude": 128.590364961693, - "pageIndex": 3, - "regionCode": "27", - "regionName": "대구광역시" + "bsshSn": "11126", + "name": "하나둘미용실", + "categoryName": "미용업", + "address": "전라남도 목포시 수강로 6 (수강동1가)", + "phone": "061-243-9098", + "representativeMenu": "여성(일반)컷트", + "price": 10000, + "latitude": 34.7856055450319, + "longitude": 126.386018127697, + "pageIndex": 11, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "889", + "name": "원돈까스우동", + "categoryName": "일식", + "address": "서울특별시 용산구 서빙고로65길 10 1층", + "phone": "02-797-9718", + "representativeMenu": "원우동", + "price": 7000, + "latitude": 37.5206387935546, + "longitude": 126.994548371044, + "pageIndex": 36, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "452", + "name": "엄지헤어", + "categoryName": "미용업", + "address": "서울특별시 도봉구 우이천로4다길 13 (창동)", + "phone": "02-902-4697", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.634491387427, + "longitude": 127.040867210782, + "pageIndex": 152, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "2012", + "name": "만리향반점", + "categoryName": "중식", + "address": "대구광역시 중구 명덕로35길 112 (남산)", + "phone": "053-255-9380", + "representativeMenu": "짜장면", + "price": 6000, + "latitude": 35.8614534554198, + "longitude": 128.590364961693, + "pageIndex": 3, + "regionCode": "27", + "regionName": "대구광역시" + }, + { + "bsshSn": "6326", + "name": "나미화헤어클럽", + "categoryName": "미용업", + "address": "경상북도 포항시 남구 송도로 10-1", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.0337446127344, + "longitude": 129.372175309483, + "pageIndex": 11, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "14102", + "name": "원조보리밥수제비", + "categoryName": "한식", + "address": "서울특별시 용산구 이태원로14길 24 (이태원동) 1층", + "phone": "02-798-4762", + "representativeMenu": "감자수제비", + "price": 9000, + "latitude": 37.53327181801306, + "longitude": 126.99077102753624, + "pageIndex": 36, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17010", + "name": "원헤어", + "categoryName": "미용업", + "address": "서울특별시 도봉구 도당로13가길 63-1 (방학동, 대광맨션) 1층", + "phone": "010-2074-6160", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.66738840350434, + "longitude": 127.03821123582789, + "pageIndex": 153, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "16953", @@ -1682,6 +5341,48 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "7013", + "name": "다마내기", + "categoryName": "기타비요식업", + "address": "제주특별자치도 제주시 원노형로 26 202호 (서림빌딩)", + "phone": "064-747-0618", + "representativeMenu": "중대 10분", + "price": 1700, + "latitude": 33.4864471773391, + "longitude": 126.484759413813, + "pageIndex": 11, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "16634", + "name": "원효로돈가스&어쩌다열게된소주집", + "categoryName": "한식", + "address": "서울특별시 용산구 백범로 323-1 (원효로1가) 1층", + "phone": "02-718-1695", + "representativeMenu": "돈가스", + "price": 8000, + "latitude": 37.538479463013985, + "longitude": 126.96500499893364, + "pageIndex": 36, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "454", + "name": "이지헤어", + "categoryName": "미용업", + "address": "서울특별시 도봉구 도봉로130길 31 101호", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.6542767410144, + "longitude": 127.040297497099, + "pageIndex": 153, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17145", "name": "명동식당", @@ -1696,6 +5397,48 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "18078", + "name": "다인헤어", + "categoryName": "미용업", + "address": "제주특별자치도 제주시 원노형로 9 (노형동) 다인헤어", + "phone": "064-744-9242", + "representativeMenu": "컷트", + "price": 10000, + "latitude": 33.487776208529105, + "longitude": 126.48422199658157, + "pageIndex": 11, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "16126", + "name": "인디에어", + "categoryName": "기타요식업", + "address": "서울특별시 용산구 백범로 325 (원효로1가) 1층", + "phone": "02-2420-9999", + "representativeMenu": "아메리카노(테이크아웃만 가능)", + "price": 3000, + "latitude": 37.53843282270516, + "longitude": 126.96524220023485, + "pageIndex": 37, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "456", + "name": "착한이발관", + "categoryName": "이용업", + "address": "서울특별시 도봉구 도당로27길 48 (방학동)", + "phone": "-", + "representativeMenu": "커트", + "price": 6000, + "latitude": 37.6694936890142, + "longitude": 127.041067864224, + "pageIndex": 156, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2259", "name": "대왕김밥(학동)", @@ -1710,6 +5453,48 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "1393", + "name": "777헤어샵", + "categoryName": "미용업", + "address": "부산광역시 서구 자갈치로 8-1 (충무동1가)", + "phone": "051-244-2430", + "representativeMenu": "커트(남)", + "price": 10000, + "latitude": 35.0961210951299, + "longitude": 129.025327657564, + "pageIndex": 12, + "regionCode": "26", + "regionName": "부산광역시" + }, + { + "bsshSn": "902", + "name": "일공오삼겹살", + "categoryName": "한식", + "address": "서울특별시 용산구 백범로87길 52 1층", + "phone": "02-3273-0105", + "representativeMenu": "된장찌개", + "price": 8000, + "latitude": 37.5394589579514, + "longitude": 126.969434444107, + "pageIndex": 38, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17011", + "name": "쿨헤어", + "categoryName": "이용업", + "address": "서울특별시 도봉구 해등로 48 (창동)", + "phone": "02-903-4760", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.6485969579426, + "longitude": 127.04372099622822, + "pageIndex": 157, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15363", "name": "대접", @@ -1724,6 +5509,48 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "2222", + "name": "현대세탁소", + "categoryName": "세탁업", + "address": "인천광역시 중구 인항로 34 1층 102호 (신흥동3가)", + "phone": "032-891-5252", + "representativeMenu": "바지", + "price": 5000, + "latitude": 37.4571633075413, + "longitude": 126.634101603919, + "pageIndex": 12, + "regionCode": "28", + "regionName": "인천광역시" + }, + { + "bsshSn": "15300", + "name": "장군이네", + "categoryName": "한식", + "address": "서울특별시 용산구 청파로 325 (청파동1가) 1층", + "phone": "02-712-7708", + "representativeMenu": "버섯불고시", + "price": 10000, + "latitude": 37.548674610487964, + "longitude": 126.96980743648191, + "pageIndex": 38, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16477", + "name": "킹당구클럽", + "categoryName": "기타비요식업", + "address": "서울특별시 도봉구 노해로69길 21-11 (창동) 4층", + "phone": "070-7576-3832", + "representativeMenu": "1시간 이용료", + "price": 7200, + "latitude": 37.65311007089221, + "longitude": 127.05007528398089, + "pageIndex": 157, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14224", "name": "덕산오징어보쌈", @@ -1738,6 +5565,48 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "17166", + "name": "헤어필(학동)", + "categoryName": "미용업", + "address": "광주광역시 동구 천변우로 603 (학동, 백화아파트) 상가102동 104호", + "phone": "-", + "representativeMenu": "성인커트", + "price": 10000, + "latitude": 35.13097376055375, + "longitude": 126.92644589626747, + "pageIndex": 12, + "regionCode": "29", + "regionName": "광주광역시" + }, + { + "bsshSn": "903", + "name": "장원", + "categoryName": "한식", + "address": "서울특별시 용산구 원효로19길 34 1층", + "phone": "02-711-8948", + "representativeMenu": "오늘의메뉴(백반찌개류)", + "price": 9000, + "latitude": 37.5331134182461, + "longitude": 126.953729977052, + "pageIndex": 38, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "13399", + "name": "홍 미용실", + "categoryName": "미용업", + "address": "서울특별시 도봉구 도봉로121길 8 (쌍문동) 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.6520071796717, + "longitude": 127.03600505029534, + "pageIndex": 160, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14430", "name": "넘치는국수한그릇", @@ -1753,32 +5622,46 @@ "regionName": "대전광역시" }, { - "bsshSn": "2528", - "name": "뉴모델이용원", + "bsshSn": "2887", + "name": "경주이용원", "categoryName": "이용업", - "address": "대전광역시 동구 계족로 103 (신흥동)", - "phone": "042-282-1933", - "representativeMenu": "이용료", - "price": 7000, - "latitude": 36.3235977678715, - "longitude": 127.445302754, - "pageIndex": 3, - "regionCode": "30", - "regionName": "대전광역시" + "address": "울산광역시 남구 월평로159번길 4 1층", + "phone": "052-268-5170", + "representativeMenu": "초등부컷트", + "price": 10000, + "latitude": 35.545149268254, + "longitude": 129.322629378239, + "pageIndex": 12, + "regionCode": "31", + "regionName": "울산광역시" }, { - "bsshSn": "2529", - "name": "대광이용원", + "bsshSn": "16335", + "name": "정가네왕김밥", + "categoryName": "한식", + "address": "서울특별시 용산구 효창원로 91 (용문동) 1층", + "phone": "0507-1386-5598", + "representativeMenu": "정가네왕김밥", + "price": 3000, + "latitude": 37.53709820413125, + "longitude": 126.9590431309581, + "pageIndex": 38, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "411", + "name": "경노이발관", "categoryName": "이용업", - "address": "대전광역시 동구 계족로 73-2 (신흥동)", - "phone": "042-282-7720", - "representativeMenu": "이용료", - "price": 7000, - "latitude": 36.3212528089861, - "longitude": 127.443947726738, - "pageIndex": 3, - "regionCode": "30", - "regionName": "대전광역시" + "address": "서울특별시 노원구 석계로 27", + "phone": "02-917-7050", + "representativeMenu": "이용료(컷트)", + "price": 6000, + "latitude": 37.617294742104, + "longitude": 127.063913865481, + "pageIndex": 161, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "14196", @@ -1795,19 +5678,103 @@ "regionName": "울산광역시" }, { - "bsshSn": "16674", - "name": "마마칼국수", - "categoryName": "한식", - "address": "울산광역시 중구 남외1길 56 (남외동) 1층", - "phone": "052-291-1159", - "representativeMenu": "돌솥비빔밥", - "price": 7000, - "latitude": 35.56704089419386, - "longitude": 129.35042603603065, - "pageIndex": 3, + "bsshSn": "10202", + "name": "멋진남자", + "categoryName": "이용업", + "address": "경기도 수원시 영통구 매봉로35번길 50 1층(매탄동)", + "phone": "-", + "representativeMenu": "남성커트", + "price": 10000, + "latitude": 37.2719859731344, + "longitude": 127.050140470108, + "pageIndex": 12, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "15297", + "name": "준참치", + "categoryName": "일식", + "address": "서울특별시 용산구 두텁바위로 79-1 (후암동) 1층 준참치", + "phone": "02-773-3838", + "representativeMenu": "회덮밥", + "price": 9000, + "latitude": 37.54660113519156, + "longitude": 126.98077828947247, + "pageIndex": 39, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17761", + "name": "금호헤어", + "categoryName": "미용업", + "address": "서울특별시 노원구 한글비석로46나길 3 (상계동) 1층", + "phone": "02-951-5597", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.66668108719866, + "longitude": 127.06947762279536, + "pageIndex": 162, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16674", + "name": "마마칼국수", + "categoryName": "한식", + "address": "울산광역시 중구 남외1길 56 (남외동) 1층", + "phone": "052-291-1159", + "representativeMenu": "돌솥비빔밥", + "price": 7000, + "latitude": 35.56704089419386, + "longitude": 129.35042603603065, + "pageIndex": 3, "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "15843", + "name": "더 맨", + "categoryName": "미용업", + "address": "충청북도 청주시 청원구 율봉로 258 (율량동)", + "phone": "043-214-2500", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.666703430250955, + "longitude": 127.49720884874743, + "pageIndex": 12, + "regionCode": "43", + "regionName": "충청북도" + }, + { + "bsshSn": "11361", + "name": "지혜식당", + "categoryName": "한식", + "address": "서울특별시 용산구 이촌로18길 21-15 (이촌동) 1층", + "phone": "02-706-5255", + "representativeMenu": "가정식백반", + "price": 9000, + "latitude": 37.525791802369646, + "longitude": 126.95497065595673, + "pageIndex": 39, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "14236", + "name": "나드리헤어", + "categoryName": "미용업", + "address": "서울특별시 노원구 덕릉로 459-37 (상계동) 203호", + "phone": "02-6406-2080", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.646800513214316, + "longitude": 127.05959299911272, + "pageIndex": 162, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2999", "name": "만수원숯불갈비", @@ -1822,6 +5789,48 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "4964", + "name": "미헤어샵", + "categoryName": "미용업", + "address": "충청남도 천안시 서북구 쌍용16길 24 (쌍용동)", + "phone": "041-575-1196", + "representativeMenu": "커트", + "price": 7000, + "latitude": 36.798721258652, + "longitude": 127.120954088064, + "pageIndex": 12, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "905", + "name": "진미식당", + "categoryName": "한식", + "address": "서울특별시 용산구 백범로 90길 46 1층", + "phone": "02-703-6842", + "representativeMenu": "오징어볶음", + "price": 10000, + "latitude": 37.5366958702301, + "longitude": 126.970177576899, + "pageIndex": 39, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "10277", + "name": "남성헤어컷", + "categoryName": "이용업", + "address": "서울특별시 노원구 월계로55길 16 204호", + "phone": "-", + "representativeMenu": "기본컷", + "price": 7000, + "latitude": 37.6329639777027, + "longitude": 127.060508959979, + "pageIndex": 162, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19370", "name": "모닝베이커리", @@ -1836,6 +5845,48 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "4913", + "name": "박정미5000냥헤어", + "categoryName": "미용업", + "address": "충청남도 천안시 동남구 대흥로 127 (사직동)", + "phone": "041-561-3344", + "representativeMenu": "커트", + "price": 7000, + "latitude": 36.800548575871, + "longitude": 127.148519132471, + "pageIndex": 12, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "11346", + "name": "친구의천", + "categoryName": "한식", + "address": "서울특별시 용산구 장문로 88", + "phone": "02-790-9415", + "representativeMenu": "즉석떡볶이", + "price": 5000, + "latitude": 37.525986638102, + "longitude": 126.999353921205, + "pageIndex": 40, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "409", + "name": "브랜드특수크리닝", + "categoryName": "세탁업", + "address": "서울특별시 노원구 섬밭로 263 1층 4호 (롯데상가)", + "phone": "02-979-5474", + "representativeMenu": "양복세탁", + "price": 7000, + "latitude": 37.6391399283859, + "longitude": 127.06381950095, + "pageIndex": 166, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15902", "name": "만리장성", @@ -1850,6 +5901,48 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "11119", + "name": "박정미5000냥헤어2호점", + "categoryName": "미용업", + "address": "충청남도 천안시 동남구 영성로 36 (중앙동)", + "phone": "-", + "representativeMenu": "커트", + "price": 7000, + "latitude": 36.8014348547938, + "longitude": 127.150782653869, + "pageIndex": 12, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "885", + "name": "커피스모키", + "categoryName": "기타요식업", + "address": "서울특별시 용산구 한강대로30길 25 지하1층 26호", + "phone": "-", + "representativeMenu": "아메리카노", + "price": 2900, + "latitude": 37.527358545339, + "longitude": 126.968861735609, + "pageIndex": 40, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "10272", + "name": "샤보이 남성커트", + "categoryName": "미용업", + "address": "서울특별시 노원구 덕릉로82길 25 1층(중계동, 동우상가)", + "phone": "02-977-3135", + "representativeMenu": "이용료(커트)", + "price": 8000, + "latitude": 37.6584395197218, + "longitude": 127.076694268075, + "pageIndex": 167, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10190", "name": "맛있는 수다", @@ -1865,18 +5958,46 @@ "regionName": "세종특별자치시" }, { - "bsshSn": "17111", - "name": "경희당구클럽", - "categoryName": "기타비요식업", - "address": "경기도 수원시 영통구 덕영대로 1707 (영통동) 4층", - "phone": "010-5631-2323", - "representativeMenu": "10분", - "price": 1000, - "latitude": 37.24799357407884, - "longitude": 127.07820639116257, - "pageIndex": 3, - "regionCode": "41", - "regionName": "경기도" + "bsshSn": "5421", + "name": "초희미용실", + "categoryName": "미용업", + "address": "전북특별자치도 전주시 완산구 모악로 4683 우미아파트 상가", + "phone": "063-226-3701", + "representativeMenu": "커트(성인)", + "price": 8000, + "latitude": 35.7876745457672, + "longitude": 127.130038142656, + "pageIndex": 12, + "regionCode": "52", + "regionName": "전북특별자치도" + }, + { + "bsshSn": "16125", + "name": "콩양황군", + "categoryName": "한식", + "address": "서울특별시 용산구 청파로93길 7 (서계동) 1층", + "phone": "02-6369-4023", + "representativeMenu": "황태콩나물해장국", + "price": 9000, + "latitude": 37.55427950761147, + "longitude": 126.96844975026704, + "pageIndex": 41, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "410", + "name": "세탁편의점", + "categoryName": "세탁업", + "address": "서울특별시 노원구 한글비석로444 (교림노원프라자 1층)", + "phone": "02-339-4459", + "representativeMenu": "양복세탁", + "price": 6000, + "latitude": 37.663613046348, + "longitude": 127.068492606148, + "pageIndex": 167, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15567", @@ -1892,6 +6013,48 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "6327", + "name": "내가본미용실", + "categoryName": "미용업", + "address": "경상북도 포항시 남구 대이로45번길 15 내가본미용실", + "phone": "054-274-7754", + "representativeMenu": "여자커트", + "price": 10000, + "latitude": 36.0187057254121, + "longitude": 129.340316118787, + "pageIndex": 12, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "15742", + "name": "쿠쿠스", + "categoryName": "한식", + "address": "서울특별시 용산구 한강대로15길 19-2 (한강로3가) 1층", + "phone": "02-798-9233", + "representativeMenu": "제육덮밥", + "price": 7000, + "latitude": 37.526022091947766, + "longitude": 126.96307096171546, + "pageIndex": 41, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "414", + "name": "은영이발관", + "categoryName": "이용업", + "address": "서울특별시 노원구 석계로 15길25", + "phone": "-", + "representativeMenu": "이용료(컷트)", + "price": 5000, + "latitude": 37.6220625118578, + "longitude": 127.06134243043, + "pageIndex": 171, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14640", "name": "광명수산 수원역점", @@ -1907,18 +6070,46 @@ "regionName": "경기도" }, { - "bsshSn": "16650", - "name": "광명세탁", - "categoryName": "세탁업", - "address": "강원특별자치도 춘천시 삭주로 27 (교동)", - "phone": "033-252-6271", - "representativeMenu": "양복상의", - "price": 6000, - "latitude": 37.88154669495617, - "longitude": 127.73468581005257, - "pageIndex": 3, - "regionCode": "51", - "regionName": "강원특별자치도" + "bsshSn": "13022", + "name": "남성여성커트전문점", + "categoryName": "미용업", + "address": "인천광역시 동구 샛골로161번길 26 (송림동) 1층", + "phone": "010-8670-9155", + "representativeMenu": "남성커트", + "price": 5000, + "latitude": 37.47703198808541, + "longitude": 126.64334345184642, + "pageIndex": 13, + "regionCode": "28", + "regionName": "인천광역시" + }, + { + "bsshSn": "17216", + "name": "테폼", + "categoryName": "기타요식업", + "address": "서울특별시 용산구 녹사평대로26길 21 (이태원동) 1층 (이태원동, 미광빌딩)", + "phone": "02-793-6926", + "representativeMenu": "아메리카노(핫)", + "price": 3000, + "latitude": 37.53087259952325, + "longitude": 126.99128823933295, + "pageIndex": 41, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "415", + "name": "장미헤어컷트원", + "categoryName": "미용업", + "address": "서울특별시 노원구 섬밭로196 (하계동, 하계장미6단지 상가B14호)", + "phone": "-", + "representativeMenu": "이용료(커트)", + "price": 5000, + "latitude": 37.6339976168528, + "longitude": 127.067277883916, + "pageIndex": 172, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "4376", @@ -1935,12 +6126,54 @@ "regionName": "강원특별자치도" }, { - "bsshSn": "4358", - "name": "국수닭", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 남춘로 36번길 48 (퇴계동)", - "phone": "033-262-6399", - "representativeMenu": "닭국수", + "bsshSn": "2093", + "name": "네오클리닝센타", + "categoryName": "세탁업", + "address": "인천광역시 동구 송현로 19번길 14 (송현동)", + "phone": "032-766-0030", + "representativeMenu": "정장1벌", + "price": 10000, + "latitude": 37.4785676119164, + "longitude": 126.634101843256, + "pageIndex": 13, + "regionCode": "28", + "regionName": "인천광역시" + }, + { + "bsshSn": "17200", + "name": "통큰칼국수", + "categoryName": "한식", + "address": "서울특별시 용산구 장문로 112 (보광동) 1층", + "phone": "02-712-9874", + "representativeMenu": "손칼국수", + "price": 9000, + "latitude": 37.52639637993005, + "longitude": 127.00196129835076, + "pageIndex": 41, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17188", + "name": "착한헤어", + "categoryName": "미용업", + "address": "서울특별시 노원구 상계로24길 23-3 (상계동) 1층", + "phone": "02-933-2529", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.65763237654204, + "longitude": 127.07047794036895, + "pageIndex": 173, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "4358", + "name": "국수닭", + "categoryName": "한식", + "address": "강원특별자치도 춘천시 남춘로 36번길 48 (퇴계동)", + "phone": "033-262-6399", + "representativeMenu": "닭국수", "price": 6500, "latitude": 37.8615806593812, "longitude": 127.735535866785, @@ -1948,6 +6181,48 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "13184", + "name": "호수목욕탕", + "categoryName": "목욕업", + "address": "광주광역시 동구 구성로194번길 7-1 (대인동) 1층", + "phone": "062-226-1142", + "representativeMenu": "성인", + "price": 4000, + "latitude": 35.15276002074088, + "longitude": 126.9147242991847, + "pageIndex": 13, + "regionCode": "29", + "regionName": "광주광역시" + }, + { + "bsshSn": "907", + "name": "풍년숯불갈비", + "categoryName": "한식", + "address": "서울특별시 용산구 새창로 130 1,2층", + "phone": "02-719-6530", + "representativeMenu": "돌솥비밤밥", + "price": 9000, + "latitude": 37.5359434126284, + "longitude": 126.961088803009, + "pageIndex": 42, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "416", + "name": "컷트클럽", + "categoryName": "미용업", + "address": "서울특별시 노원구 동일로 1541 (상계동, 11단지종합상가 15-2)", + "phone": "02-933-0221", + "representativeMenu": "이용료(커트)", + "price": 10000, + "latitude": 37.6656742727167, + "longitude": 127.05705028385, + "pageIndex": 173, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4359", "name": "그랑블루바다향기칼국수", @@ -1962,6 +6237,48 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "18678", + "name": "우리뷰티", + "categoryName": "미용업", + "address": "대전광역시 동구 용운로1번길 5 (대동) 대동", + "phone": "042-282-7718", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.32944033216982, + "longitude": 127.44360995154223, + "pageIndex": 13, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "890", + "name": "한일각", + "categoryName": "중식", + "address": "서울특별시 용산구 보광로 21-1 2층", + "phone": "02-796-2557", + "representativeMenu": "자장면", + "price": 4000, + "latitude": 37.5263948828068, + "longitude": 127.000515078407, + "pageIndex": 42, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16464", + "name": "클래식", + "categoryName": "이용업", + "address": "서울특별시 노원구 한글비석로22길 18 (중계동) 3층", + "phone": "-", + "representativeMenu": "남성커트", + "price": 7000, + "latitude": 37.66037534399267, + "longitude": 127.073423918189, + "pageIndex": 174, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14756", "name": "고가네왕돈까스", @@ -1976,6 +6293,48 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "14912", + "name": "우리헤어클럽", + "categoryName": "미용업", + "address": "대전광역시 동구 백룡로57번길 118 (자양동) 자양동", + "phone": "0507-1367-4071", + "representativeMenu": "미용료(커트)", + "price": 10000, + "latitude": 36.3383596687159, + "longitude": 127.45088284522323, + "pageIndex": 13, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "15744", + "name": "홍콩중화요리", + "categoryName": "중식", + "address": "서울특별시 용산구 한강대로 367-1 (동자동) 1층", + "phone": "010-6451-0653", + "representativeMenu": "짜장면", + "price": 6500, + "latitude": 37.55137708872881, + "longitude": 126.97191979121847, + "pageIndex": 43, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "417", + "name": "행운이발관", + "categoryName": "이용업", + "address": "서울특별시 노원구 화랑로 449 2층1호 (공릉동)", + "phone": "-", + "representativeMenu": "이용료(커트)", + "price": 7000, + "latitude": 37.6185353708275, + "longitude": 127.07736255034, + "pageIndex": 175, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15786", "name": "고가네행복밥상", @@ -1990,6 +6349,48 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "2525", + "name": "운동화목욕한날", + "categoryName": "세탁업", + "address": "대전광역시 동구 용운로 170가동 102호(용운동)", + "phone": "-", + "representativeMenu": "운동화 빨래", + "price": 5000, + "latitude": 36.3276734373929, + "longitude": 127.460965313411, + "pageIndex": 13, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "897", + "name": "화로가", + "categoryName": "한식", + "address": "서울특별시 용산구 한강대로 39길 5 1층", + "phone": "02-798-8480", + "representativeMenu": "돌솥비빔밥", + "price": 10000, + "latitude": 37.5305301811316, + "longitude": 126.96859635845, + "pageIndex": 43, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16466", + "name": "현대세탁", + "categoryName": "세탁업", + "address": "서울특별시 노원구 중계로 230 (중계동, 중계5단지주공아파트) 2상가 102호", + "phone": "02-951-1756", + "representativeMenu": "양복 세탁", + "price": 8000, + "latitude": 37.65082132337281, + "longitude": 127.07473673124387, + "pageIndex": 175, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15852", "name": "고드미손두부", @@ -2005,18 +6406,46 @@ "regionName": "충청북도" }, { - "bsshSn": "4724", - "name": "고려미용실", + "bsshSn": "17508", + "name": "꽃보다남자남성커트", "categoryName": "미용업", - "address": "충청북도 청주시 서원구 모충로 98-1 (모충동)", - "phone": "043-274-6207", + "address": "울산광역시 남구 두왕로190번길 31 (선암동) 1층", + "phone": "0507-1315-4144", "representativeMenu": "커트", - "price": 8000, - "latitude": 36.6277882283516, - "longitude": 127.474142701453, - "pageIndex": 3, - "regionCode": "43", - "regionName": "충청북도" + "price": 10000, + "latitude": 35.518683361146806, + "longitude": 129.31515922674268, + "pageIndex": 13, + "regionCode": "31", + "regionName": "울산광역시" + }, + { + "bsshSn": "18223", + "name": "5오돈까스", + "categoryName": "한식", + "address": "서울특별시 성동구 용답중앙길 57-1 (용답동) 1층", + "phone": "0507-1405-7573", + "representativeMenu": "등심돈까스", + "price": 9000, + "latitude": 37.56432681506716, + "longitude": 127.05232354630908, + "pageIndex": 44, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "418", + "name": "힘북이용원", + "categoryName": "이용업", + "address": "서울특별시 노원구 동일로 1390 204(상계동, 상계주공아파트6단지 상가)", + "phone": "02-931-2331", + "representativeMenu": "이용료(커트)", + "price": 7000, + "latitude": 37.6527180726916, + "longitude": 127.061519941724, + "pageIndex": 176, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "5410", @@ -2032,6 +6461,48 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "3398", + "name": "명품세탁 빨래터", + "categoryName": "세탁업", + "address": "경기도 수원시 영통구 동탄원천로 915번길 36 104호", + "phone": "031-216-8939", + "representativeMenu": "세탁료", + "price": 7500, + "latitude": 37.2569793706321, + "longitude": 127.043828501468, + "pageIndex": 13, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "755", + "name": "고바우생삼겹", + "categoryName": "한식", + "address": "서울특별시 성동구 동일로 221 1층", + "phone": "02-498-8442", + "representativeMenu": "백반", + "price": 8000, + "latitude": 37.551669481941, + "longitude": 127.069016755899, + "pageIndex": 44, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "15942", + "name": "다다다헤어", + "categoryName": "미용업", + "address": "서울특별시 은평구 응암로28길 36 (응암동, 임창폴라리스) 101호", + "phone": "02-356-6811", + "representativeMenu": "학생 컷", + "price": 10000, + "latitude": 37.593874578604826, + "longitude": 126.92195781796335, + "pageIndex": 178, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13854", "name": "또또커피", @@ -2046,6 +6517,48 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "11096", + "name": "모아헤어", + "categoryName": "미용업", + "address": "경기도 수원시 장안구 화산로 285번길 12 화남아파트상가 102호(율전동)", + "phone": "031-295-4005", + "representativeMenu": "커트", + "price": 9000, + "latitude": 37.3002864705875, + "longitude": 126.964407790648, + "pageIndex": 13, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "748", + "name": "고향냉면", + "categoryName": "한식", + "address": "서울특별시 성동구 독서당로 301-93 .", + "phone": "02-2234-8043", + "representativeMenu": "냉면", + "price": 9000, + "latitude": 37.5488200114508, + "longitude": 127.022392761196, + "pageIndex": 44, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "913", + "name": "대흥이발관", + "categoryName": "이용업", + "address": "서울특별시 은평구 연서로32길 19 대흥이발관", + "phone": "02-352-5755", + "representativeMenu": "이발", + "price": 10000, + "latitude": 37.618890160091, + "longitude": 126.924414392647, + "pageIndex": 178, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5436", "name": "또와분식", @@ -2061,25 +6574,53 @@ "regionName": "전북특별자치도" }, { - "bsshSn": "15156", - "name": "까망헤어필", + "bsshSn": "4343", + "name": "송혜진미용실", "categoryName": "미용업", - "address": "전라남도 목포시 산정로79번길 15-1 (산정동) 까망헤어필", - "phone": "061-277-3173", + "address": "강원특별자치도 춘천시 신흥길5번길 8-6 1층(우두동)", + "phone": "-", "representativeMenu": "커트", - "price": 10000, - "latitude": 34.795406737074515, - "longitude": 126.39113623218255, - "pageIndex": 3, - "regionCode": "46", - "regionName": "전라남도" + "price": 9000, + "latitude": 37.9005696948236, + "longitude": 127.727393589753, + "pageIndex": 13, + "regionCode": "51", + "regionName": "강원특별자치도" }, { - "bsshSn": "10497", - "name": "남도먹거리방", - "categoryName": "한식", - "address": "전라남도 목포시 삼일로13번길 2-1 (남교동)", - "phone": "061-242-9895", + "bsshSn": "18225", + "name": "동네커피", + "categoryName": "기타요식업", + "address": "서울특별시 성동구 용답중앙길 57 (용답동) 1층", + "phone": "-", + "representativeMenu": "아메리카노", + "price": 2000, + "latitude": 37.56424361566244, + "longitude": 127.05243946078681, + "pageIndex": 45, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "914", + "name": "영미용실", + "categoryName": "미용업", + "address": "서울특별시 은평구 진흥로 13길 8 1층(대조동)", + "phone": "02-352-6675", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.6093313817188, + "longitude": 126.925672929288, + "pageIndex": 183, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "10497", + "name": "남도먹거리방", + "categoryName": "한식", + "address": "전라남도 목포시 삼일로13번길 2-1 (남교동)", + "phone": "061-242-9895", "representativeMenu": "순대", "price": 8000, "latitude": 34.7936753216335, @@ -2088,6 +6629,48 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "11113", + "name": "숙미용실", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 공지로 432-1 (근화동)", + "phone": "033-253-9217", + "representativeMenu": "커트", + "price": 5000, + "latitude": 37.8737216981244, + "longitude": 127.719469536522, + "pageIndex": 13, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "747", + "name": "동해루", + "categoryName": "중식", + "address": "서울특별시 성동구 고산자로8길 26 .", + "phone": "02-2292-5342", + "representativeMenu": "자장면", + "price": 6000, + "latitude": 37.5581421344486, + "longitude": 127.036653756474, + "pageIndex": 45, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17614", + "name": "컷트클럽", + "categoryName": "미용업", + "address": "서울특별시 은평구 연서로9길 3 (역촌동) 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 9000, + "latitude": 37.607363441738244, + "longitude": 126.91461372177586, + "pageIndex": 189, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16973", "name": "낭만맛집", @@ -2102,6 +6685,48 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "4915", + "name": "백미용실", + "categoryName": "미용업", + "address": "충청남도 천안시 동남구 우영1길 10 106호(봉명동)", + "phone": "041-572-5953", + "representativeMenu": "커트", + "price": 7000, + "latitude": 36.805213750612, + "longitude": 127.140789087028, + "pageIndex": 13, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "16962", + "name": "또와", + "categoryName": "한식", + "address": "서울특별시 성동구 성수일로12길 20 (성수동2가) 1층 101호", + "phone": "02-468-4111", + "representativeMenu": "점심뷔페", + "price": 7000, + "latitude": 37.548174430780506, + "longitude": 127.05325046638245, + "pageIndex": 46, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "912", + "name": "행복한세탁소", + "categoryName": "세탁업", + "address": "서울특별시 은평구 진흥로1길 37 1층", + "phone": "02-353-8671", + "representativeMenu": "수선비", + "price": 3000, + "latitude": 37.6036960556282, + "longitude": 126.918317294932, + "pageIndex": 192, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15149", "name": "대영한우식육식당", @@ -2117,60 +6742,46 @@ "regionName": "전라남도" }, { - "bsshSn": "6320", - "name": "걸앤맨", - "categoryName": "미용업", - "address": "경상북도 포항시 남구 축항로72번길 14", - "phone": "054-272-1533", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.0285256046441, - "longitude": 129.376479161194, - "pageIndex": 3, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6321", - "name": "경민헤어샵", - "categoryName": "미용업", - "address": "경상북도 포항시 남구 대해로79번길 27", - "phone": "-", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.0254310711759, - "longitude": 129.36329181671, - "pageIndex": 3, - "regionCode": "47", - "regionName": "경상북도" + "bsshSn": "5402", + "name": "하얀세탁나라", + "categoryName": "세탁업", + "address": "전북특별자치도 전주시 덕진구 시천로 29-30 (송천동1가, 한양아파트 상가 1층)", + "phone": "063-902-4555", + "representativeMenu": "양복", + "price": 6000, + "latitude": 35.8605364471238, + "longitude": 127.113373136028, + "pageIndex": 13, + "regionCode": "52", + "regionName": "전북특별자치도" }, { - "bsshSn": "6322", - "name": "경아미용실", - "categoryName": "미용업", - "address": "경상북도 포항시 남구 송림로 61", - "phone": "054-247-4573", - "representativeMenu": "커트", - "price": 7000, - "latitude": 36.0352517105272, - "longitude": 129.374922321202, - "pageIndex": 3, - "regionCode": "47", - "regionName": "경상북도" + "bsshSn": "16965", + "name": "또와분식", + "categoryName": "한식", + "address": "서울특별시 성동구 마장로35나길 40 (마장동) 101호", + "phone": "02-6052-8083", + "representativeMenu": "떡볶이", + "price": 5000, + "latitude": 37.56721803327301, + "longitude": 127.0432918670249, + "pageIndex": 46, + "regionCode": "11", + "regionName": "서울특별시" }, { - "bsshSn": "6427", - "name": "경희미용실", - "categoryName": "미용업", - "address": "경상북도 포항시 북구 서동로47번길 25-4 1층(덕수동)", + "bsshSn": "917", + "name": "행복한이발관", + "categoryName": "이용업", + "address": "서울특별시 은평구 통일로69길 33 1층", "phone": "-", "representativeMenu": "커트", - "price": 5000, - "latitude": 36.0433237553854, - "longitude": 129.364506666177, - "pageIndex": 3, - "regionCode": "47", - "regionName": "경상북도" + "price": 9000, + "latitude": 37.6100148987322, + "longitude": 126.925572244057, + "pageIndex": 192, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "16322", @@ -2186,6 +6797,48 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "17489", + "name": "e쁘제헤어프리", + "categoryName": "미용업", + "address": "전라남도 여수시 허문정1길 52 (문수동) 1층", + "phone": "061-651-0612", + "representativeMenu": "성인여자커트", + "price": 10000, + "latitude": 34.74984276015307, + "longitude": 127.69462555986541, + "pageIndex": 13, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "13420", + "name": "란칼국수", + "categoryName": "한식", + "address": "서울특별시 성동구 성수일로8길 42 (성수동2가) 1층 104호", + "phone": "02-466-6931", + "representativeMenu": "칼국수", + "price": 9000, + "latitude": 37.545352861266906, + "longitude": 127.05504501517011, + "pageIndex": 46, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "679", + "name": "가족이발", + "categoryName": "이용업", + "address": "서울특별시 서대문구 거북골로 154 삼호상가 104호", + "phone": "02-374-4323", + "representativeMenu": "이발커트", + "price": 10000, + "latitude": 37.5765626078203, + "longitude": 126.913783524957, + "pageIndex": 193, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17102", "name": "국밥명가 온마루", @@ -2200,6 +6853,48 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "6433", + "name": "뉴현대미용실", + "categoryName": "미용업", + "address": "경상북도 포항시 북구 새마을로 2 뉴현대미용실", + "phone": "054-241-5678", + "representativeMenu": "커트", + "price": 5000, + "latitude": 36.0384567529592, + "longitude": 129.358106840482, + "pageIndex": 13, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "14363", + "name": "맹꽁이", + "categoryName": "한식", + "address": "서울특별시 성동구 용답중앙25길 1 (용답동) 1층", + "phone": "02-2214-9996", + "representativeMenu": "칼국수", + "price": 6000, + "latitude": 37.56300839788014, + "longitude": 127.0540980823421, + "pageIndex": 46, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "680", + "name": "더헤어", + "categoryName": "미용업", + "address": "서울특별시 서대문구 증가로32안길 1 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5841400980583, + "longitude": 126.912011888775, + "pageIndex": 197, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17142", "name": "국수랑돈가스랑", @@ -2215,18 +6910,46 @@ "regionName": "경상남도" }, { - "bsshSn": "14292", - "name": "김영이헤어모드", - "categoryName": "미용업", - "address": "경상남도 창원시 진해구 돌리로10번길 25 (석동, 유일수정빌라) 1층", - "phone": "055-543-4053", - "representativeMenu": "커트", + "bsshSn": "1388", + "name": "대영탕", + "categoryName": "목욕업", + "address": "부산광역시 서구 구덕로 132번길 9 (토성동5가)", + "phone": "051-254-9515", + "representativeMenu": "대인", "price": 8000, - "latitude": 35.15791820070982, - "longitude": 128.7029593955796, - "pageIndex": 3, - "regionCode": "48", - "regionName": "경상남도" + "latitude": 35.0972775635676, + "longitude": 129.022430372656, + "pageIndex": 14, + "regionCode": "26", + "regionName": "부산광역시" + }, + { + "bsshSn": "13421", + "name": "명가", + "categoryName": "한식", + "address": "서울특별시 성동구 무학봉16길 1 (하왕십리동) 1층", + "phone": "-", + "representativeMenu": "소불고기", + "price": 10000, + "latitude": 37.5613651060617, + "longitude": 127.03138203262702, + "pageIndex": 47, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "681", + "name": "머리사랑", + "categoryName": "미용업", + "address": "서울특별시 서대문구 거북골로200", + "phone": "02-305-6912", + "representativeMenu": "커트(남,여)", + "price": 10000, + "latitude": 37.5785088438124, + "longitude": 126.908981139193, + "pageIndex": 199, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15812", @@ -2243,10 +6966,52 @@ "regionName": "제주특별자치도" }, { - "bsshSn": "18065", - "name": "고슬", + "bsshSn": "2535", + "name": "은성미용실", + "categoryName": "미용업", + "address": "대전광역시 동구 새터2길 26 (신흥동)", + "phone": "042-283-9633", + "representativeMenu": "미용료(커트)", + "price": 8000, + "latitude": 36.3227027931205, + "longitude": 127.443901827716, + "pageIndex": 14, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "15247", + "name": "별난만두", "categoryName": "한식", - "address": "제주특별자치도 제주시 문송길 22 (연동) 고슬", + "address": "서울특별시 성동구 용답중앙길 52 (용답동) 1층", + "phone": "02-2246-2751", + "representativeMenu": "손칼국수", + "price": 7000, + "latitude": 37.564545599886905, + "longitude": 127.0516502479485, + "pageIndex": 48, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "682", + "name": "미성이용원", + "categoryName": "이용업", + "address": "서울특별시 서대문구 명지대3길 48 지하층 102호", + "phone": "02-314-3396", + "representativeMenu": "성인커트", + "price": 7000, + "latitude": 37.581903175669, + "longitude": 126.921154123028, + "pageIndex": 200, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "18065", + "name": "고슬", + "categoryName": "한식", + "address": "제주특별자치도 제주시 문송길 22 (연동) 고슬", "phone": "070-8900-8495", "representativeMenu": "떡볶이", "price": 4000, @@ -2256,6 +7021,48 @@ "regionCode": "50", "regionName": "제주특별자치도" }, + { + "bsshSn": "3403", + "name": "문화미용실", + "categoryName": "미용업", + "address": "경기도 수원시 장안구 정조로 934번길 29-18 (영화동)", + "phone": "031-256-1463", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.2923701800345, + "longitude": 127.013797271773, + "pageIndex": 14, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "18224", + "name": "소문난순대국왕족발", + "categoryName": "한식", + "address": "서울특별시 성동구 용답25라길 23 (용답동) 1층", + "phone": "0507-1417-0207", + "representativeMenu": "순대국", + "price": 8000, + "latitude": 37.563518499146895, + "longitude": 127.05300594244785, + "pageIndex": 48, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "14413", + "name": "민들레미용실", + "categoryName": "미용업", + "address": "서울특별시 서대문구 간호대로3길 2 (홍제동) 1층", + "phone": "-", + "representativeMenu": "남성커트", + "price": 8000, + "latitude": 37.59667646241485, + "longitude": 126.94809506312029, + "pageIndex": 200, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14253", "name": "고찌가게", @@ -2270,6 +7077,48 @@ "regionCode": "50", "regionName": "제주특별자치도" }, + { + "bsshSn": "16643", + "name": "실비아미용실", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 춘천로296번길 18 (후평동)", + "phone": "033-253-5746", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.879961550470746, + "longitude": 127.74662200640537, + "pageIndex": 14, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "751", + "name": "송하정", + "categoryName": "한식", + "address": "서울특별시 성동구 무학봉길 77 (하왕십리동) .", + "phone": "02-2291-3346", + "representativeMenu": "백반", + "price": 9000, + "latitude": 37.56129368171884, + "longitude": 127.03112585073366, + "pageIndex": 49, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "676", + "name": "바늘꽃옷수선", + "categoryName": "기타비요식업", + "address": "서울특별시 서대문구 홍은중앙로 8길 22", + "phone": "-", + "representativeMenu": "의복수선료(바지밑단)", + "price": 3000, + "latitude": 37.5987804443942, + "longitude": 126.948733439817, + "pageIndex": 201, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "7116", "name": "공주네국수", @@ -2285,30 +7134,44 @@ "regionName": "제주특별자치도" }, { - "bsshSn": "19250", - "name": "맛밥김밥전문점", + "bsshSn": "10306", + "name": "쌍다리이용소", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 춘천순환로 42 상가동 101호 (석사동)", + "phone": "033-262-5087", + "representativeMenu": "커트", + "price": 5000, + "latitude": 37.8546857141914, + "longitude": 127.748703975697, + "pageIndex": 14, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "16961", + "name": "수제비먹는닭갈비", "categoryName": "한식", - "address": "서울특별시 종로구 창경궁로 269 (혜화동) 1층", - "phone": "02-747-5425", - "representativeMenu": "돈가스", + "address": "서울특별시 성동구 왕십리로21길 14 (행당동) 1층", + "phone": "02-2297-8522", + "representativeMenu": "수제비", "price": 7500, - "latitude": 37.585295075666664, - "longitude": 127.00073357977945, - "pageIndex": 4, + "latitude": 37.561297857943586, + "longitude": 127.03286445721793, + "pageIndex": 49, "regionCode": "11", "regionName": "서울특별시" }, { - "bsshSn": "11063", - "name": "믿음미용실", - "categoryName": "미용업", - "address": "서울특별시 종로구 계동길 91 1층", - "phone": "-", + "bsshSn": "683", + "name": "삼성이발관", + "categoryName": "이용업", + "address": "서울특별시 서대문구 응암로 28 상가101호", + "phone": "02-373-3672", "representativeMenu": "커트", - "price": 8000, - "latitude": 37.5814377145875, - "longitude": 126.986679281786, - "pageIndex": 4, + "price": 7000, + "latitude": 37.5762716171408, + "longitude": 126.909844105861, + "pageIndex": 204, "regionCode": "11", "regionName": "서울특별시" }, @@ -2326,6 +7189,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "4965", + "name": "비비헤어샵", + "categoryName": "미용업", + "address": "충청남도 천안시 서북구 미라2길 26-1 (쌍용동)", + "phone": "041-571-1666", + "representativeMenu": "커트", + "price": 5000, + "latitude": 36.8018297147943, + "longitude": 127.129696210405, + "pageIndex": 14, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "13424", + "name": "수제비먹는닭갈비 본점", + "categoryName": "한식", + "address": "서울특별시 성동구 왕십리로21다길 39 (행당동) 1층", + "phone": "02-2299-8557", + "representativeMenu": "칼국수", + "price": 7500, + "latitude": 37.5596440879484, + "longitude": 127.03321604601851, + "pageIndex": 49, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "684", + "name": "선머리방", + "categoryName": "미용업", + "address": "서울특별시 서대문구 모래내로 350", + "phone": "02-379-2696", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5809989065081, + "longitude": 126.935330124979, + "pageIndex": 204, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1641", "name": "대성밀냉면전문", @@ -2340,6 +7245,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "5711", + "name": "개성미용실", + "categoryName": "미용업", + "address": "전라남도 여수시 율촌면 당머리길3-1", + "phone": "061-684-7114", + "representativeMenu": "커트", + "price": 10000, + "latitude": 34.882586423451, + "longitude": 127.579141600752, + "pageIndex": 14, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "14387", + "name": "엘닷", + "categoryName": "일식", + "address": "서울특별시 성동구 성수일로12길 20 (성수동2가) 1층 103호", + "phone": "02-469-4003", + "representativeMenu": "모듬초밥(8pcs)", + "price": 6900, + "latitude": 37.548174430780506, + "longitude": 127.05325046638245, + "pageIndex": 50, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "685", + "name": "아름다운헤어", + "categoryName": "미용업", + "address": "서울특별시 서대문구 응암로 28 (북가좌동, DMC한양) 한양아파트상가 103호", + "phone": "02-376-7124", + "representativeMenu": "커트(남여)", + "price": 10000, + "latitude": 37.57622777866786, + "longitude": 126.908300495886, + "pageIndex": 206, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13811", "name": "돌고래", @@ -2354,6 +7301,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "6423", + "name": "닥터크리닝", + "categoryName": "세탁업", + "address": "경상북도 포항시 북구 삼호로253번길 14-1", + "phone": "054-249-4519", + "representativeMenu": "세탁료 (상의)", + "price": 4000, + "latitude": 36.0612792841722, + "longitude": 129.378003776355, + "pageIndex": 14, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "13428", + "name": "전과함께", + "categoryName": "한식", + "address": "서울특별시 성동구 무학봉15길 28-1 (하왕십리동) 1층", + "phone": "-", + "representativeMenu": "백반", + "price": 8000, + "latitude": 37.56360663461696, + "longitude": 127.03036480848614, + "pageIndex": 51, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "687", + "name": "윤헤어모드", + "categoryName": "미용업", + "address": "서울특별시 서대문구 가재울로10길 25", + "phone": "02-307-2896", + "representativeMenu": "커트", + "price": 5000, + "latitude": 37.5764992467746, + "longitude": 126.922319268751, + "pageIndex": 210, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1651", "name": "동경식당", @@ -2368,6 +7357,48 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "6424", + "name": "대명세탁소", + "categoryName": "세탁업", + "address": "경상북도 포항시 북구 중흥로213번길 18-1", + "phone": "054-275-9579", + "representativeMenu": "와이셔츠", + "price": 2500, + "latitude": 36.0236667659089, + "longitude": 129.356179134247, + "pageIndex": 14, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "10619", + "name": "전주식당", + "categoryName": "한식", + "address": "서울특별시 성동구 무학봉15가길 1 (하왕십리동) .", + "phone": "02-2295-0517", + "representativeMenu": "백반", + "price": 8000, + "latitude": 37.56149793492549, + "longitude": 127.03086754559628, + "pageIndex": 51, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "688", + "name": "은주헤어뉴스", + "categoryName": "미용업", + "address": "서울특별시 서대문구 거북골로20길53-3", + "phone": "02-302-6281", + "representativeMenu": "커트(여)", + "price": 7000, + "latitude": 37.5803043702542, + "longitude": 126.910666702104, + "pageIndex": 211, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10076", "name": "명가", @@ -2382,6 +7413,48 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "15406", + "name": "박하헤어", + "categoryName": "미용업", + "address": "경상남도 창원시 진해구 충장로 397-1 (이동) 1층", + "phone": "055-542-5894", + "representativeMenu": "컷트", + "price": 10000, + "latitude": 35.15259896527641, + "longitude": 128.69534269679198, + "pageIndex": 14, + "regionCode": "48", + "regionName": "경상남도" + }, + { + "bsshSn": "13430", + "name": "착한짜장", + "categoryName": "중식", + "address": "서울특별시 성동구 아차산로7길 17-1 (성수동2가) 1층", + "phone": "-", + "representativeMenu": "자장면", + "price": 5500, + "latitude": 37.54672907636821, + "longitude": 127.05466412141058, + "pageIndex": 51, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "689", + "name": "은하수헤어갤러리", + "categoryName": "미용업", + "address": "서울특별시 서대문구 응암로53", + "phone": "02-306-4580", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5782043803412, + "longitude": 126.909779737699, + "pageIndex": 211, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15468", "name": "명성김밥", @@ -2397,19 +7470,103 @@ "regionName": "대구광역시" }, { - "bsshSn": "15355", - "name": "모정", - "categoryName": "한식", - "address": "대구광역시 중구 달구벌대로 2037-16 (동산동) 모정(식당)", - "phone": "-", - "representativeMenu": "된장찌개", - "price": 8000, + "bsshSn": "18050", + "name": "돌하루방방", + "categoryName": "기타비요식업", + "address": "제주특별자치도 제주시 화삼북로 43 (화북일동) 돌하루방방", + "phone": "010-9487-4132", + "representativeMenu": "트램펄린(30분)", + "price": 3000, + "latitude": 33.517489993448145, + "longitude": 126.57772441179883, + "pageIndex": 14, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "18906", + "name": "커피로 그리는 꿈 협동조합", + "categoryName": "기타요식업", + "address": "서울특별시 성동구 상원6나길 22-11 (성수동1가) 1층", + "phone": "-", + "representativeMenu": "아메리카노", + "price": 3000, + "latitude": 37.547690790937395, + "longitude": 127.04999118729668, + "pageIndex": 52, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "691", + "name": "이리이발관", + "categoryName": "이용업", + "address": "서울특별시 서대문구 거북골로 208", + "phone": "02-374-3875", + "representativeMenu": "커트", + "price": 7000, + "latitude": 37.5789419883622, + "longitude": 126.908330113748, + "pageIndex": 211, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "15355", + "name": "모정", + "categoryName": "한식", + "address": "대구광역시 중구 달구벌대로 2037-16 (동산동) 모정(식당)", + "phone": "-", + "representativeMenu": "된장찌개", + "price": 8000, "latitude": 35.86701996348072, "longitude": 128.58658111123873, "pageIndex": 4, "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "1390", + "name": "류박사종합세탁", + "categoryName": "세탁업", + "address": "부산광역시 서구 대영로 40 (서대신동1가)", + "phone": "051-253-0972", + "representativeMenu": "양복", + "price": 7000, + "latitude": 35.1092342130678, + "longitude": 129.015966141997, + "pageIndex": 15, + "regionCode": "26", + "regionName": "부산광역시" + }, + { + "bsshSn": "14364", + "name": "코너스톤", + "categoryName": "기타요식업", + "address": "서울특별시 성동구 용답길 169-1 (용답동) 1층", + "phone": "02-2249-9445", + "representativeMenu": "아메리카노", + "price": 3000, + "latitude": 37.56378766446642, + "longitude": 127.05596389673978, + "pageIndex": 52, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "17908", + "name": "컷앤컬러", + "categoryName": "미용업", + "address": "서울특별시 서대문구 통일로 404 (홍제동) 1층", + "phone": "0507-1412-0733", + "representativeMenu": "경로우대 남자컷트", + "price": 10000, + "latitude": 37.58578773683185, + "longitude": 126.94773292635615, + "pageIndex": 216, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2231", "name": "백원이네", @@ -2424,6 +7581,48 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "11081", + "name": "꺳잎머리", + "categoryName": "미용업", + "address": "광주광역시 서구 경열로76번길 6 (농성동)", + "phone": "062-361-1781", + "representativeMenu": "성인커트", + "price": 10000, + "latitude": 35.151028051239, + "longitude": 126.894249830137, + "pageIndex": 15, + "regionCode": "29", + "regionName": "광주광역시" + }, + { + "bsshSn": "15248", + "name": "한우공감", + "categoryName": "한식", + "address": "서울특별시 성동구 용답중앙길 57-1 (용답동) 1층", + "phone": "0507-1329-2861", + "representativeMenu": "김치찌개", + "price": 8000, + "latitude": 37.56432681506716, + "longitude": 127.05232354630908, + "pageIndex": 53, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "14414", + "name": "헤어큐미용실", + "categoryName": "미용업", + "address": "서울특별시 서대문구 포방터길 43 (홍은동) 1층", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.59866949252993, + "longitude": 126.94889575654706, + "pageIndex": 219, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "18031", "name": "복락만두", @@ -2438,6 +7637,48 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "11033", + "name": "미영목욕탕", + "categoryName": "목욕업", + "address": "경기도 수원시 권선구 정조로 432 (세류동)", + "phone": "031-236-5038", + "representativeMenu": "목욕료", + "price": 9000, + "latitude": 37.2474693136438, + "longitude": 127.014533989176, + "pageIndex": 15, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "253", + "name": "겨울나그네", + "categoryName": "양식", + "address": "서울특별시 광진구 능동로 147-1 (화양동)", + "phone": "02-498-3650", + "representativeMenu": "돈까스", + "price": 5500, + "latitude": 37.5440353858273, + "longitude": 127.072221992568, + "pageIndex": 54, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "696", + "name": "히즈모", + "categoryName": "미용업", + "address": "서울특별시 서대문구 세무서길 71 1층", + "phone": "02-321-4275", + "representativeMenu": "스마트커트", + "price": 8000, + "latitude": 37.5910921447059, + "longitude": 126.946590905356, + "pageIndex": 220, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14637", "name": "마시타", @@ -2452,6 +7693,48 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "4966", + "name": "사라헤어라인", + "categoryName": "미용업", + "address": "충청남도 천안시 서북구 양지21길 25 (성정동)", + "phone": "041-575-5093", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.8127160425691, + "longitude": 127.138482517182, + "pageIndex": 15, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "243", + "name": "고은별", + "categoryName": "기타요식업", + "address": "서울특별시 광진구 자양로 177", + "phone": "02-453-4933", + "representativeMenu": "커피", + "price": 3000, + "latitude": 37.5434577433462, + "longitude": 127.084336510516, + "pageIndex": 55, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "19368", + "name": "란미용실", + "categoryName": "미용업", + "address": "서울특별시 마포구 효창목4길 26 (공덕동)", + "phone": "02-703-6981", + "representativeMenu": "커트(남)", + "price": 10000, + "latitude": 37.54719258290101, + "longitude": 126.96058098823266, + "pageIndex": 223, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11651", "name": "마쏘라까망베르", @@ -2467,18 +7750,46 @@ "regionName": "광주광역시" }, { - "bsshSn": "2247", - "name": "명문목욕탕", - "categoryName": "목욕업", - "address": "광주광역시 동구 지원로 5 (소태동)", - "phone": "062-227-2459", - "representativeMenu": "목욕", - "price": 6000, - "latitude": 35.1238630581617, - "longitude": 126.932939954425, - "pageIndex": 4, - "regionCode": "29", - "regionName": "광주광역시" + "bsshSn": "4967", + "name": "사천냥클럽", + "categoryName": "미용업", + "address": "충청남도 천안시 서북구 두정로 271 (두정동)", + "phone": "041-564-5283", + "representativeMenu": "커트", + "price": 5000, + "latitude": 36.8332567599608, + "longitude": 127.147007440446, + "pageIndex": 15, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "14700", + "name": "곰곰탕", + "categoryName": "한식", + "address": "서울특별시 광진구 용마산로 128 (중곡동) 1층", + "phone": "0507-1487-1216", + "representativeMenu": "돼지곰탕", + "price": 8500, + "latitude": 37.564977213608785, + "longitude": 127.0869171023704, + "pageIndex": 55, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "10546", + "name": "로뎀헤어", + "categoryName": "이용업", + "address": "서울특별시 마포구 마포구 숭문길 217 (대흥동)", + "phone": "02-713-7228", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5560808598589, + "longitude": 126.946436974443, + "pageIndex": 223, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "2526", @@ -2494,6 +7805,48 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "14877", + "name": "더(the) 공감", + "categoryName": "미용업", + "address": "경상북도 포항시 북구 환호공원길 17-4 (환호동) 1층", + "phone": "054-615-9097", + "representativeMenu": "커트", + "price": 10000, + "latitude": 36.06810739171294, + "longitude": 129.39160852450493, + "pageIndex": 15, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "17190", + "name": "국이랑찌개랑", + "categoryName": "한식", + "address": "서울특별시 광진구 자양로26길 21 (구의동) 1층", + "phone": "02-2201-6259", + "representativeMenu": "김치찌개백반", + "price": 8000, + "latitude": 37.54171482750448, + "longitude": 127.0852972937134, + "pageIndex": 55, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "634", + "name": "머리사랑", + "categoryName": "미용업", + "address": "서울특별시 마포구 독막로40길 8 (대흥동)", + "phone": "02-706-0727", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5447802460503, + "longitude": 126.944246755429, + "pageIndex": 224, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16531", "name": "돌구이 돼지마을 해장국", @@ -2509,18 +7862,46 @@ "regionName": "대전광역시" }, { - "bsshSn": "2519", - "name": "동양전자", - "categoryName": "기타비요식업", - "address": "대전광역시 동구 대전로 797번길 11 (중동)", - "phone": "042-254-3090", - "representativeMenu": "전자장비 수리비", + "bsshSn": "6785", + "name": "발리불소사우나", + "categoryName": "목욕업", + "address": "경상남도 창원시 마산회원구 석전동16길 28 (석전동)", + "phone": "055-292-3588", + "representativeMenu": "목욕(대인)", + "price": 7000, + "latitude": 35.2368615089355, + "longitude": 128.579505619476, + "pageIndex": 15, + "regionCode": "48", + "regionName": "경상남도" + }, + { + "bsshSn": "18871", + "name": "기절초풍물닭갈비", + "categoryName": "한식", + "address": "서울특별시 광진구 자양로13길 88-1 (자양동) 1층", + "phone": "02-444-9222", + "representativeMenu": "조리라면", + "price": 4000, + "latitude": 37.533000029209944, + "longitude": 127.08018125555606, + "pageIndex": 56, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "635", + "name": "명품헤어샵", + "categoryName": "미용업", + "address": "서울특별시 마포구 월드컵로23길 25 (망원동, 1층)", + "phone": "02-314-2989", + "representativeMenu": "커트", "price": 10000, - "latitude": 36.3304315762194, - "longitude": 127.432265782557, - "pageIndex": 4, - "regionCode": "30", - "regionName": "대전광역시" + "latitude": 37.556716988748, + "longitude": 126.90779701587, + "pageIndex": 225, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "13641", @@ -2537,19 +7918,103 @@ "regionName": "울산광역시" }, { - "bsshSn": "11235", - "name": "빠삐용 베이커리", - "categoryName": "베이커리", - "address": "울산광역시 중구 중앙길 91 (성남동)", - "phone": "052-248-0250", - "representativeMenu": "팥빵", - "price": 1900, - "latitude": 35.5555689712778, - "longitude": 129.318463151667, + "bsshSn": "2288", + "name": "남진컴퓨터", + "categoryName": "세탁업", + "address": "광주광역시 서구 구성로 109-3 (양동)", + "phone": "062-368-3931", + "representativeMenu": "정장1벌드라이", + "price": 6000, + "latitude": 35.1488007460721, + "longitude": 126.907060175109, + "pageIndex": 16, + "regionCode": "29", + "regionName": "광주광역시" + }, + { + "bsshSn": "283", + "name": "능라도분식", + "categoryName": "한식", + "address": "서울특별시 광진구 천호대로110길 50 (능동)", + "phone": "02-455-0322", + "representativeMenu": "김밥", + "price": 2500, + "latitude": 37.5551457109101, + "longitude": 127.079074919213, + "pageIndex": 57, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "636", + "name": "부산미용", + "categoryName": "미용업", + "address": "서울특별시 마포구 숭문길 186 (염리동)", + "phone": "-", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5546833332726, + "longitude": 126.946659679023, + "pageIndex": 226, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "11235", + "name": "빠삐용 베이커리", + "categoryName": "베이커리", + "address": "울산광역시 중구 중앙길 91 (성남동)", + "phone": "052-248-0250", + "representativeMenu": "팥빵", + "price": 1900, + "latitude": 35.5555689712778, + "longitude": 129.318463151667, "pageIndex": 4, "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "14736", + "name": "대성떡방앗간", + "categoryName": "기타비요식업", + "address": "광주광역시 서구 상무대로1005번길 46 (내방동) 1층", + "phone": "062-365-0059", + "representativeMenu": "참기름 350ml", + "price": 10000, + "latitude": 35.155975871786964, + "longitude": 126.87179971307111, + "pageIndex": 16, + "regionCode": "29", + "regionName": "광주광역시" + }, + { + "bsshSn": "244", + "name": "달디빈", + "categoryName": "기타요식업", + "address": "서울특별시 광진구 능동로39길 11 1층", + "phone": "-", + "representativeMenu": "커피", + "price": 2500, + "latitude": 37.5585293444964, + "longitude": 127.079434892288, + "pageIndex": 57, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "639", + "name": "수도미용실", + "categoryName": "미용업", + "address": "서울특별시 마포구 마포구 굴레방로7길 26 (아현동)", + "phone": "02-363-1248", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.556360677503, + "longitude": 126.954058299941, + "pageIndex": 229, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14775", "name": "서울본갈비본감자탕성안점", @@ -2565,18 +8030,46 @@ "regionName": "울산광역시" }, { - "bsshSn": "2989", - "name": "선경이용원", - "categoryName": "이용업", - "address": "울산광역시 중구 유곡로 10 (우정동)", - "phone": "052-246-1703", - "representativeMenu": "컷트", + "bsshSn": "2536", + "name": "지선미용타운", + "categoryName": "미용업", + "address": "대전광역시 동구 솔랑시울길 87 (소제동)", + "phone": "-", + "representativeMenu": "미용료(커트)", "price": 5000, - "latitude": 35.5582366838079, - "longitude": 129.30845466344, - "pageIndex": 4, - "regionCode": "31", - "regionName": "울산광역시" + "latitude": 36.3353609397276, + "longitude": 127.434496484742, + "pageIndex": 16, + "regionCode": "30", + "regionName": "대전광역시" + }, + { + "bsshSn": "15272", + "name": "리플커피 건국대점", + "categoryName": "기타요식업", + "address": "서울특별시 광진구 광나루로24길 20 (화양동) 1층", + "phone": "02-455-5600", + "representativeMenu": "아메리카노", + "price": 1500, + "latitude": 37.54545205668764, + "longitude": 127.07631911192601, + "pageIndex": 58, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "641", + "name": "연백이발관", + "categoryName": "이용업", + "address": "서울특별시 마포구 만리재옛길 5 (공덕동)", + "phone": "02-711-9782", + "representativeMenu": "이발료", + "price": 7000, + "latitude": 37.545045043436, + "longitude": 126.954299594353, + "pageIndex": 230, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "10172", @@ -2592,6 +8085,48 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "13686", + "name": "벽산세탁소", + "categoryName": "세탁업", + "address": "경기도 수원시 장안구 파장로 53 (정자동, 정자 벽산블루밍) 108호", + "phone": "031-245-1269", + "representativeMenu": "드라이클리닝", + "price": 6000, + "latitude": 37.3054993333515, + "longitude": 126.99475365985273, + "pageIndex": 16, + "regionCode": "41", + "regionName": "경기도" + }, + { + "bsshSn": "277", + "name": "마니아우동", + "categoryName": "한식", + "address": "서울특별시 광진구 긴고랑로 25 (중곡동)", + "phone": "02-465-2587", + "representativeMenu": "냉면", + "price": 7000, + "latitude": 37.5635316803178, + "longitude": 127.079296570847, + "pageIndex": 59, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "642", + "name": "유나헤어", + "categoryName": "미용업", + "address": "서울특별시 마포구 마포구 방울내로 40 1층(망원동)", + "phone": "02-323-8024", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5587388154098, + "longitude": 126.900353730704, + "pageIndex": 233, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10198", "name": "모란반점", @@ -2606,6 +8141,48 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "16640", + "name": "예대미용실", + "categoryName": "미용업", + "address": "강원특별자치도 춘천시 후만로 69-1 (후평동) 1층", + "phone": "033-241-2937", + "representativeMenu": "커트", + "price": 8000, + "latitude": 37.87612733597792, + "longitude": 127.75221288287008, + "pageIndex": 16, + "regionCode": "51", + "regionName": "강원특별자치도" + }, + { + "bsshSn": "13790", + "name": "마미가", + "categoryName": "한식", + "address": "서울특별시 광진구 아차산로51길 101 (구의동)", + "phone": "02-456-3362", + "representativeMenu": "돈가스", + "price": 8000, + "latitude": 37.541482133756666, + "longitude": 127.08542366307833, + "pageIndex": 59, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16089", + "name": "유림헤어모드", + "categoryName": "미용업", + "address": "서울특별시 마포구 숭문길 208 (염리동) 1층", + "phone": "02-363-8035", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.55567467356137, + "longitude": 126.94663632701702, + "pageIndex": 233, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10195", "name": "무진장 황태칼국수", @@ -2620,6 +8197,48 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "11164", + "name": "선경세탁소", + "categoryName": "세탁업", + "address": "충청남도 천안시 동남구 양지4길 15 (봉명동)", + "phone": "041-574-7001", + "representativeMenu": "신사복드라이", + "price": 9000, + "latitude": 36.8084580969342, + "longitude": 127.137098587523, + "pageIndex": 16, + "regionCode": "44", + "regionName": "충청남도" + }, + { + "bsshSn": "17194", + "name": "면곡당", + "categoryName": "기타요식업", + "address": "서울특별시 광진구 면목로17길 24 (중곡동) 1층", + "phone": "0502-5551-7961", + "representativeMenu": "커피(콜드브루)", + "price": 3400, + "latitude": 37.570621617769575, + "longitude": 127.0819900514536, + "pageIndex": 59, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "645", + "name": "주연헤어센스", + "categoryName": "미용업", + "address": "서울특별시 마포구 희우정로 10길 30 (망원동)", + "phone": "02-332-1777", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5531957397292, + "longitude": 126.905666630029, + "pageIndex": 235, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19000", "name": "구름빵집", @@ -2634,6 +8253,48 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "16455", + "name": "김연선 헤어뷰", + "categoryName": "미용업", + "address": "전라남도 여수시 돌산읍 강남동로 46-19 1층 104호(청솔상가)", + "phone": "061-643-0669", + "representativeMenu": "소아 커트", + "price": 8000, + "latitude": 34.71784643561729, + "longitude": 127.75728889294511, + "pageIndex": 16, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "11278", + "name": "무한정수제돈가스", + "categoryName": "양식", + "address": "서울특별시 광진구 군자로 102 1층 (군자동)", + "phone": "02-469-3122", + "representativeMenu": "돈가스", + "price": 8500, + "latitude": 37.5521905589032, + "longitude": 127.071540099809, + "pageIndex": 60, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "648", + "name": "태양미용실", + "categoryName": "미용업", + "address": "서울특별시 마포구 월드컵북로 207", + "phone": "02-375-3912", + "representativeMenu": "커트", + "price": 10000, + "latitude": 37.5687954893124, + "longitude": 126.905649902888, + "pageIndex": 237, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16201", "name": "국수명가", @@ -2648,6 +8309,48 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "5712", + "name": "남성커트클럽 블루가이", + "categoryName": "이용업", + "address": "전라남도 여수시 여문2로 97 (문수동)", + "phone": "061-653-0317", + "representativeMenu": "커트", + "price": 10000, + "latitude": 34.7547925562527, + "longitude": 127.695461279732, + "pageIndex": 16, + "regionCode": "46", + "regionName": "전라남도" + }, + { + "bsshSn": "15555", + "name": "베이지크", + "categoryName": "기타요식업", + "address": "서울특별시 광진구 뚝섬로24길 21 (자양동) 1층", + "phone": "0507-1351-9020", + "representativeMenu": "아메리카노", + "price": 3000, + "latitude": 37.5354826790739, + "longitude": 127.06346313731117, + "pageIndex": 61, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "629", + "name": "한화세탁", + "categoryName": "세탁업", + "address": "서울특별시 마포구 마포구 마포대로 33 (도화동)", + "phone": "02-706-6603", + "representativeMenu": "양복세탁료", + "price": 7000, + "latitude": 37.5399847863145, + "longitude": 126.945447452979, + "pageIndex": 237, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "3384", "name": "국수촌", @@ -2663,21 +8366,49 @@ "regionName": "경기도" }, { - "bsshSn": "15487", - "name": "금란미용실", + "bsshSn": "6435", + "name": "더헤어", "categoryName": "미용업", - "address": "강원특별자치도 춘천시 둥지길 7 (효자동)", - "phone": "033-257-4174", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.874828386296336, - "longitude": 127.73569431782938, - "pageIndex": 4, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "10303", + "address": "경상북도 포항시 북구 흥해읍 중성로32번길 14 (1층)", + "phone": "054-261-6785", + "representativeMenu": "여성커트", + "price": 8000, + "latitude": 36.1074175340788, + "longitude": 129.346453745514, + "pageIndex": 16, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "280", + "name": "보광식당", + "categoryName": "한식", + "address": "서울특별시 광진구 아차산로 341-1 (자양동) (자양동)", + "phone": "02-456-3707", + "representativeMenu": "된장찌개", + "price": 7000, + "latitude": 37.537331732095886, + "longitude": 127.08091171710089, + "pageIndex": 61, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "838", + "name": "까끌래깍자", + "categoryName": "미용업", + "address": "서울특별시 양천구 남부순환로70길 20-2 1층", + "phone": "02-2603-7289", + "representativeMenu": "커트(남)", + "price": 5000, + "latitude": 37.5217842066902, + "longitude": 126.834576400647, + "pageIndex": 240, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "10303", "name": "금옥", "categoryName": "한식", "address": "강원특별자치도 춘천시 동면 금옥길 289-27 1층", @@ -2690,6 +8421,48 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "6436", + "name": "동동이네시니어펌전문점", + "categoryName": "미용업", + "address": "경상북도 포항시 북구 월막길 2", + "phone": "054-247-6989", + "representativeMenu": "커트", + "price": 7000, + "latitude": 36.049135177781, + "longitude": 129.367187661289, + "pageIndex": 16, + "regionCode": "47", + "regionName": "경상북도" + }, + { + "bsshSn": "13789", + "name": "새맛식당", + "categoryName": "한식", + "address": "서울특별시 광진구 자양로18길 12-3 (구의동)", + "phone": "02-444-1749", + "representativeMenu": "삼겹살", + "price": 10000, + "latitude": 37.537382323242724, + "longitude": 127.08433535141758, + "pageIndex": 62, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "14579", + "name": "남자들의세상", + "categoryName": "미용업", + "address": "서울특별시 양천구 화곡로 41 (신월동) 1층", + "phone": "-", + "representativeMenu": "커트(남)", + "price": 8000, + "latitude": 37.539556840001545, + "longitude": 126.82650412486814, + "pageIndex": 240, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4378", "name": "낭만국수집", @@ -2704,6 +8477,48 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "7216", + "name": "또와헤어샾", + "categoryName": "미용업", + "address": "제주특별자치도 제주시 지석6길 9 또와헤어샾", + "phone": "064-756-6528", + "representativeMenu": "커트", + "price": 10000, + "latitude": 33.5203409285847, + "longitude": 126.581100037461, + "pageIndex": 16, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "274", + "name": "석기시대짜장마을", + "categoryName": "중식", + "address": "서울특별시 광진구 군자로 111", + "phone": "02-467-7123", + "representativeMenu": "자장면", + "price": 4000, + "latitude": 37.5529612679396, + "longitude": 127.072139956245, + "pageIndex": 63, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "840", + "name": "머리잘하는집", + "categoryName": "미용업", + "address": "서울특별시 양천구 남부순환로57길 24-1 1층", + "phone": "02-2692-3758", + "representativeMenu": "커트(남)", + "price": 10000, + "latitude": 37.5347487451649, + "longitude": 126.831354223636, + "pageIndex": 241, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15779", "name": "괴산식당", @@ -2718,6 +8533,34 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "18037", + "name": "뛰니뛰니", + "categoryName": "기타비요식업", + "address": "제주특별자치도 제주시 연신로 76 (이도이동) 뛰니뛰니", + "phone": "064-727-0369", + "representativeMenu": "어린이입장료", + "price": 6000, + "latitude": 33.4946894705016, + "longitude": 126.54802422292092, + "pageIndex": 16, + "regionCode": "50", + "regionName": "제주특별자치도" + }, + { + "bsshSn": "275", + "name": "세종원", + "categoryName": "중식", + "address": "서울특별시 광진구 광나루로 373 (군자동)", + "phone": "02-499-1800", + "representativeMenu": "자장면", + "price": 6000, + "latitude": 37.5482417291505, + "longitude": 127.07158079852, + "pageIndex": 63, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13537", "name": "국가대표", @@ -2732,6 +8575,20 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "296", + "name": "스시붐", + "categoryName": "일식", + "address": "서울특별시 광진구 광나루로17길 14-5 (군자동)", + "phone": "02-466-6077", + "representativeMenu": "초밥(10p)", + "price": 10000, + "latitude": 37.548390033317, + "longitude": 127.072760434793, + "pageIndex": 64, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15534", "name": "국수좋은날", @@ -2746,6 +8603,20 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "15834", + "name": "옛골", + "categoryName": "한식", + "address": "서울특별시 광진구 자양로26길 10 (구의동) 1층", + "phone": "-", + "representativeMenu": "백반", + "price": 6000, + "latitude": 37.54175346209209, + "longitude": 127.08460314144905, + "pageIndex": 65, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13709", "name": "굼드림", @@ -2761,18 +8632,18 @@ "regionName": "충청북도" }, { - "bsshSn": "4910", - "name": "국빈4000냥미용실", - "categoryName": "미용업", - "address": "충청남도 천안시 동남구 대흥로 132-2 (사직동)", - "phone": "-", - "representativeMenu": "커트", - "price": 7000, - "latitude": 36.8008837521399, - "longitude": 127.148549025545, - "pageIndex": 4, - "regionCode": "44", - "regionName": "충청남도" + "bsshSn": "18924", + "name": "옛날집", + "categoryName": "한식", + "address": "서울특별시 광진구 면목로17길 40 (중곡동) 1층", + "phone": "010-8714-5606", + "representativeMenu": "보리비빔밥", + "price": 7500, + "latitude": 37.57084535428605, + "longitude": 127.08107480965234, + "pageIndex": 66, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "13065", @@ -2788,6 +8659,20 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "297", + "name": "위락", + "categoryName": "한식", + "address": "서울특별시 광진구 능동로16길 50 1층 (화양동)", + "phone": "-", + "representativeMenu": "된장찌개", + "price": 6000, + "latitude": 37.5450828437467, + "longitude": 127.075883427175, + "pageIndex": 67, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11750", "name": "김밥하나", @@ -2803,18 +8688,18 @@ "regionName": "충청남도" }, { - "bsshSn": "18214", - "name": "란미용실", - "categoryName": "미용업", - "address": "전북특별자치도 전주시 완산구 공수내1길 7-2 (서서학동) 1층", - "phone": "070-4007-3960", - "representativeMenu": "커트", - "price": 10000, - "latitude": 35.805287710386786, - "longitude": 127.14763371176575, - "pageIndex": 4, - "regionCode": "52", - "regionName": "전북특별자치도" + "bsshSn": "18925", + "name": "윤가네", + "categoryName": "한식", + "address": "서울특별시 광진구 동일로60길 43 (군자동) 1층", + "phone": "02-467-8990", + "representativeMenu": "냉면", + "price": 8000, + "latitude": 37.55786789329742, + "longitude": 127.0757892802891, + "pageIndex": 67, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "5437", @@ -2830,6 +8715,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "278", + "name": "이삭홍두깨칼국수", + "categoryName": "한식", + "address": "서울특별시 광진구 동일로72길 51 (중곡동)", + "phone": "02-464-8457", + "representativeMenu": "칼국수", + "price": 4500, + "latitude": 37.5653450430501, + "longitude": 127.080468294062, + "pageIndex": 68, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5438", "name": "만남의집", @@ -2844,6 +8743,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "11209", + "name": "자양다방", + "categoryName": "기타요식업", + "address": "서울특별시 광진구 자양로15길 100 1층", + "phone": "-", + "representativeMenu": "커피", + "price": 2000, + "latitude": 37.5347343376592, + "longitude": 127.078204571221, + "pageIndex": 69, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15140", "name": "대흥정", @@ -2859,18 +8772,18 @@ "regionName": "전라남도" }, { - "bsshSn": "15153", - "name": "드라이하우스 북항점", - "categoryName": "세탁업", - "address": "전라남도 목포시 청호로219번길 30 (산정동) 1층 106호", - "phone": "061-278-2788", - "representativeMenu": "정장한벌", - "price": 6100, - "latitude": 34.80742822388893, - "longitude": 126.36751972578438, - "pageIndex": 4, - "regionCode": "46", - "regionName": "전라남도" + "bsshSn": "289", + "name": "종로한정식", + "categoryName": "한식", + "address": "서울특별시 광진구 아차산로 324", + "phone": "02-457-2411", + "representativeMenu": "된장찌개", + "price": 7000, + "latitude": 37.5374179594352, + "longitude": 127.078758734579, + "pageIndex": 70, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "10506", @@ -2886,6 +8799,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "276", + "name": "중국관", + "categoryName": "중식", + "address": "서울특별시 광진구 긴고랑로 39 (중곡동)", + "phone": "02-497-5276", + "representativeMenu": "짜장면", + "price": 4000, + "latitude": 37.5630759218576, + "longitude": 127.080677509112, + "pageIndex": 70, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6386", "name": "고을마당", @@ -2900,6 +8827,20 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "15554", + "name": "차우동짜장", + "categoryName": "중식", + "address": "서울특별시 광진구 뚝섬로 472 (자양동) 1층", + "phone": "02-466-2006", + "representativeMenu": "짜장면", + "price": 5000, + "latitude": 37.536638685830155, + "longitude": 127.06282565119446, + "pageIndex": 71, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6387", "name": "고향식당", @@ -2914,6 +8855,20 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "290", + "name": "채움", + "categoryName": "한식", + "address": "서울특별시 광진구 군자로 104-1", + "phone": "02-462-8859", + "representativeMenu": "된장찌개", + "price": 7000, + "latitude": 37.5523503895716, + "longitude": 127.071699141373, + "pageIndex": 71, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6809", "name": "낙동추어탕", @@ -2928,6 +8883,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "16788", + "name": "청담커피 자양점", + "categoryName": "기타요식업", + "address": "서울특별시 광진구 뚝섬로52길 41 (자양동) 1층 청담커피", + "phone": "02-6952-0543", + "representativeMenu": "아메리카노", + "price": 2500, + "latitude": 37.53014726760224, + "longitude": 127.07889954566937, + "pageIndex": 72, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "7117", "name": "광양왕소금깡통구이", @@ -2942,6 +8911,20 @@ "regionCode": "50", "regionName": "제주특별자치도" }, + { + "bsshSn": "17341", + "name": "통영돌문어산곰장어", + "categoryName": "한식", + "address": "서울특별시 광진구 용마산로6길 9 (중곡동) 1층", + "phone": "02-452-5330", + "representativeMenu": "열무비빔밥", + "price": 7000, + "latitude": 37.557412021661776, + "longitude": 127.08863998274485, + "pageIndex": 72, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15758", "name": "국수한상", @@ -2956,6 +8939,20 @@ "regionCode": "50", "regionName": "제주특별자치도" }, + { + "bsshSn": "298", + "name": "하루", + "categoryName": "양식", + "address": "서울특별시 광진구 능동로16길 60 1층 (화양동)", + "phone": "-", + "representativeMenu": "돈가스", + "price": 8500, + "latitude": 37.5452297113773, + "longitude": 127.076295470745, + "pageIndex": 73, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "7018", "name": "굴무기낭", @@ -2971,78 +8968,22 @@ "regionName": "제주특별자치도" }, { - "bsshSn": "16044", - "name": "복코돼지", + "bsshSn": "282", + "name": "흥부농장", "categoryName": "한식", - "address": "서울특별시 종로구 종로 232 (종로5가) 1층", - "phone": "02-2271-5989", - "representativeMenu": "김치찌개(점심)", + "address": "서울특별시 광진구 뚝섬로59길 81-2 (자양동)", + "phone": "02-343-3611", + "representativeMenu": "김치찌개", "price": 7000, - "latitude": 37.570761508765074, - "longitude": 127.00353272937728, - "pageIndex": 5, + "latitude": 37.5355225542768, + "longitude": 127.082799348183, + "pageIndex": 74, "regionCode": "11", "regionName": "서울특별시" }, { - "bsshSn": "17542", - "name": "불백당", - "categoryName": "한식", - "address": "서울특별시 종로구 우정국로2길 34 (관철동) 1층", - "phone": "02-722-0086", - "representativeMenu": "고추장불백", - "price": 5500, - "latitude": 37.56946019643439, - "longitude": 126.98494601675547, - "pageIndex": 5, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "958", - "name": "삼삼 뚝배기", - "categoryName": "한식", - "address": "서울특별시 종로구 동숭길 51 (동숭동)", - "phone": "02-765-4683", - "representativeMenu": "된장뚝배기", - "price": 7000, - "latitude": 37.5805564090189, - "longitude": 127.004190744723, - "pageIndex": 5, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "16866", - "name": "샐러드하우스", - "categoryName": "기타요식업", - "address": "서울특별시 종로구 새문안로5가길 28 (적선동) 지하1층 119호", - "phone": "02-722-5891", - "representativeMenu": "에그듬뿍샌드위치", - "price": 4900, - "latitude": 37.57446023473285, - "longitude": 126.97359705813241, - "pageIndex": 5, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "16480", - "name": "동광세탁소", - "categoryName": "세탁업", - "address": "부산광역시 중구 법수길 19 (보수동1가) 1층", - "phone": "051-256-9047", - "representativeMenu": "드라이크리닝(하의)", - "price": 4000, - "latitude": 35.10490454876418, - "longitude": 129.02599093842454, - "pageIndex": 5, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "17048", - "name": "동명칼국수", + "bsshSn": "17048", + "name": "동명칼국수", "categoryName": "한식", "address": "부산광역시 중구 중구로34번길 23 (신창동1가) 2층", "phone": "051-241-0061", @@ -3054,6 +8995,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "16096", + "name": "39돈가스", + "categoryName": "양식", + "address": "서울특별시 동대문구 휘경로2길 5-2 (이문동)", + "phone": "070-4103-9632", + "representativeMenu": "등심돈가스", + "price": 8500, + "latitude": 37.59563504374783, + "longitude": 127.06109607695427, + "pageIndex": 75, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19007", "name": "된장한상", @@ -3068,6 +9023,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "13398", + "name": "79번지국수집", + "categoryName": "한식", + "address": "서울특별시 동대문구 회기로13길 25 (회기동) 1층", + "phone": "02-6082-9494", + "representativeMenu": "닭칼국수", + "price": 7000, + "latitude": 37.59267895445311, + "longitude": 127.05097144631529, + "pageIndex": 75, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1653", "name": "뚱보집", @@ -3082,6 +9051,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "16091", + "name": "가위바위보떡볶이", + "categoryName": "한식", + "address": "서울특별시 동대문구 전농로 222 (전농동, 씨티빌라트)", + "phone": "070-8742-0006", + "representativeMenu": "라면", + "price": 4000, + "latitude": 37.58394430500011, + "longitude": 127.05361904793929, + "pageIndex": 75, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14627", "name": "밥맛나는집", @@ -3096,6 +9079,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "16161", + "name": "갈비장터", + "categoryName": "한식", + "address": "서울특별시 동대문구 회기로 188 (휘경동)", + "phone": "02-969-9200", + "representativeMenu": "된장찌개", + "price": 9000, + "latitude": 37.58977643714721, + "longitude": 127.05682401514723, + "pageIndex": 76, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17982", "name": "배사공멸치국수", @@ -3110,6 +9107,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "16150", + "name": "경희쌈밥", + "categoryName": "한식", + "address": "서울특별시 동대문구 경희대로1가길 4 (회기동, 힐링빌)", + "phone": "02-959-9379", + "representativeMenu": "한식뷔페", + "price": 8000, + "latitude": 37.591880743563365, + "longitude": 127.05147328239181, + "pageIndex": 76, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11440", "name": "쎈밤 종로점", @@ -3125,18 +9136,18 @@ "regionName": "대구광역시" }, { - "bsshSn": "2007", - "name": "영생이용소", - "categoryName": "이용업", - "address": "대구광역시 중구 이천로 184-8 (대봉동)", - "phone": "053-425-9732", - "representativeMenu": "커트", - "price": 10000, - "latitude": 35.8575452270514, - "longitude": 128.598969402186, - "pageIndex": 5, - "regionCode": "27", - "regionName": "대구광역시" + "bsshSn": "18249", + "name": "고대멸치국수", + "categoryName": "한식", + "address": "서울특별시 동대문구 제기로 2 (제기동)", + "phone": "02-928-9394", + "representativeMenu": "멸치국수", + "price": 7000, + "latitude": 37.58626198972733, + "longitude": 127.03311706112662, + "pageIndex": 76, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "14222", @@ -3152,6 +9163,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "18248", + "name": "고향홍두깨손칼국수", + "categoryName": "한식", + "address": "서울특별시 동대문구 경동시장로10길 53 (제기동)", + "phone": "02-6339-8868", + "representativeMenu": "손칼국수", + "price": 5000, + "latitude": 37.58138850183611, + "longitude": 127.04368550795968, + "pageIndex": 77, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16743", "name": "삼시국수", @@ -3166,6 +9191,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "16145", + "name": "광주회관", + "categoryName": "한식", + "address": "서울특별시 동대문구 이문로 118 (이문동)", + "phone": "02-957-3876", + "representativeMenu": "김치찌개", + "price": 10000, + "latitude": 37.59713752510465, + "longitude": 127.06091521284733, + "pageIndex": 77, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14009", "name": "소미국수", @@ -3180,6 +9219,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "18819", + "name": "국수천천히", + "categoryName": "한식", + "address": "서울특별시 동대문구 서울시립대로28길 6 (전농동) 1층", + "phone": "02-2215-1025", + "representativeMenu": "멸치국수", + "price": 5000, + "latitude": 37.58248022110494, + "longitude": 127.05300099206838, + "pageIndex": 77, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19356", "name": "무등산국밥", @@ -3194,6 +9247,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "10378", + "name": "그린하우스", + "categoryName": "한식", + "address": "서울특별시 동대문구 전농로 219 (전농동)", + "phone": "02-2247-2247", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.58369688833996, + "longitude": 127.0532274604834, + "pageIndex": 77, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2264", "name": "박순자녹두집", @@ -3208,6 +9275,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "10352", + "name": "금복", + "categoryName": "한식", + "address": "서울특별시 동대문구 안암로20길 16 (제기동)", + "phone": "02-923-7844", + "representativeMenu": "김치찌개", + "price": 5500, + "latitude": 37.58737447659273, + "longitude": 127.03504769377918, + "pageIndex": 78, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2265", "name": "반디식당", @@ -3222,6 +9303,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "10376", + "name": "김가네김밥", + "categoryName": "한식", + "address": "서울특별시 동대문구 서울시립대로16길 97-2 (전농동)", + "phone": "02-2245-6340", + "representativeMenu": "김가네김밥", + "price": 3000, + "latitude": 37.57782337357348, + "longitude": 127.05575878506123, + "pageIndex": 78, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2564", "name": "뒤집어진뚝배기", @@ -3236,6 +9331,20 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "483", + "name": "까페뜨랑", + "categoryName": "기타요식업", + "address": "서울특별시 동대문구 제기로 130 (청량리동)", + "phone": "02-6949-3928", + "representativeMenu": "아메리카노", + "price": 2500, + "latitude": 37.58642702617338, + "longitude": 127.04748948131413, + "pageIndex": 78, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16819", "name": "또와짬뽕", @@ -3250,6 +9359,20 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "11344", + "name": "낙원떡방앗간", + "categoryName": "한식", + "address": "서울특별시 동대문구 회기로25길 11 (회기동)", + "phone": "02-964-2450", + "representativeMenu": "인절미(400g)", + "price": 3000, + "latitude": 37.590971093960796, + "longitude": 127.05497688177023, + "pageIndex": 78, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2575", "name": "마실", @@ -3264,6 +9387,20 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "18239", + "name": "난망베이킹스튜디오", + "categoryName": "기타요식업", + "address": "서울특별시 동대문구 사가정로 41-1 (답십리동) 3층", + "phone": "010-6639-8697", + "representativeMenu": "대만카스테라", + "price": 3500, + "latitude": 37.572980184516354, + "longitude": 127.05156599223547, + "pageIndex": 79, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14774", "name": "송림식당", @@ -3278,6 +9415,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "506", + "name": "놀부만두", + "categoryName": "한식", + "address": "서울특별시 동대문구 망우로16길 15 (휘경동)", + "phone": "02-2241-7550", + "representativeMenu": "고기통만두(10개)", + "price": 7000, + "latitude": 37.58935268371408, + "longitude": 127.06148244815414, + "pageIndex": 79, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2994", "name": "수다라", @@ -3292,6 +9443,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "14390", + "name": "다옴감자탕양평해장국", + "categoryName": "한식", + "address": "서울특별시 동대문구 전농로 91 (답십리동)", + "phone": "02-2244-8500", + "representativeMenu": "뼈해장국", + "price": 9000, + "latitude": 37.573100897078405, + "longitude": 127.05723973492465, + "pageIndex": 79, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14577", "name": "순정분식", @@ -3306,6 +9471,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "18242", + "name": "대광반점", + "categoryName": "중식", + "address": "서울특별시 동대문구 전농로 19-1 (답십리동) 1층", + "phone": "02-2214-2341", + "representativeMenu": "짜장면", + "price": 5000, + "latitude": 37.56685793779734, + "longitude": 127.0561402766234, + "pageIndex": 79, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10174", "name": "복조갈비", @@ -3320,6 +9499,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "18243", + "name": "도읍지", + "categoryName": "한식", + "address": "서울특별시 동대문구 회기로21길 38-1 (회기동)", + "phone": "02-964-2388", + "representativeMenu": "순두부찌개백반", + "price": 8000, + "latitude": 37.593072231340464, + "longitude": 127.05308883621412, + "pageIndex": 80, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19176", "name": "부산면가", @@ -3334,6 +9527,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "16148", + "name": "돈태자", + "categoryName": "양식", + "address": "서울특별시 동대문구 한천로24길 10 (장안동) 1층", + "phone": "02-2244-9255", + "representativeMenu": "돈까스", + "price": 10000, + "latitude": 37.57052570021872, + "longitude": 127.06570259593434, + "pageIndex": 80, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14528", "name": "까페시모 우만점", @@ -3348,6 +9555,20 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "18855", + "name": "디디카페", + "categoryName": "기타요식업", + "address": "서울특별시 동대문구 회기로21가길 10 (회기동) 1층 101호", + "phone": "0507-1483-1997", + "representativeMenu": "아메리카노", + "price": 1900, + "latitude": 37.59198193359728, + "longitude": 127.05360962878765, + "pageIndex": 80, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14526", "name": "꼼빠도르", @@ -3363,18 +9584,18 @@ "regionName": "경기도" }, { - "bsshSn": "3367", - "name": "꽃씨미용실", - "categoryName": "미용업", - "address": "경기도 수원시 권선구 금호로15번길12 (금곡동)", - "phone": "031-297-6106", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.2692497847657, - "longitude": 126.953624838044, - "pageIndex": 5, - "regionCode": "41", - "regionName": "경기도" + "bsshSn": "16158", + "name": "따께리아 라 비다(Taqueria La Vida)", + "categoryName": "양식", + "address": "서울특별시 동대문구 경희대로1길 27 (회기동) 1층", + "phone": "0507-1389-4311", + "representativeMenu": "타코(3p)", + "price": 9000, + "latitude": 37.591758876264926, + "longitude": 127.05063243471741, + "pageIndex": 80, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15303", @@ -3390,6 +9611,20 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "18240", + "name": "따뜻한밥상 외대점", + "categoryName": "한식", + "address": "서울특별시 동대문구 이문로 58 (휘경동) 오스카빌딩 2층", + "phone": "0507-1354-2143", + "representativeMenu": "김치찌개", + "price": 3000, + "latitude": 37.592384712273564, + "longitude": 127.05779432976583, + "pageIndex": 81, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10304", "name": "낭만국시", @@ -3404,6 +9639,20 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "14391", + "name": "또래가마솥해장국", + "categoryName": "한식", + "address": "서울특별시 동대문구 제기로 15 (제기동)", + "phone": "02-924-9319", + "representativeMenu": "해장국", + "price": 7000, + "latitude": 37.58663659350062, + "longitude": 127.03463790145233, + "pageIndex": 81, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4354", "name": "누이네", @@ -3418,6 +9667,20 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "507", + "name": "명물식당", + "categoryName": "한식", + "address": "서울특별시 동대문구 답십리로51길 8-4 (답십리동)", + "phone": "02-2212-4039", + "representativeMenu": "백반", + "price": 6000, + "latitude": 37.573253667475235, + "longitude": 127.05873688627321, + "pageIndex": 81, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4327", "name": "달콤한게으름", @@ -3432,6 +9695,20 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "16156", + "name": "명성식당", + "categoryName": "한식", + "address": "서울특별시 동대문구 무학로 142-2 (용두동) 1층", + "phone": "02-922-3192", + "representativeMenu": "백반", + "price": 7000, + "latitude": 37.576986767908934, + "longitude": 127.03083152169971, + "pageIndex": 81, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "18315", "name": "닭갈비짱", @@ -3446,6 +9723,20 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "18820", + "name": "밥이야기", + "categoryName": "한식", + "address": "서울특별시 동대문구 한천로33길 21 (답십리동) 1층", + "phone": "02-3394-7433", + "representativeMenu": "특정식(10찬)", + "price": 7000, + "latitude": 37.57642809141042, + "longitude": 127.0669117429603, + "pageIndex": 82, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16059", "name": "그레이스 칼국수", @@ -3460,6 +9751,20 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "11215", + "name": "배트콩", + "categoryName": "기타요식업", + "address": "서울특별시 동대문구 경희대로4길 52 (회기동) 1층", + "phone": "02-6213-1835", + "representativeMenu": "아메리카노", + "price": 3000, + "latitude": 37.59154149876361, + "longitude": 127.0551418511356, + "pageIndex": 82, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4746", "name": "금와가든", @@ -3475,10 +9780,24 @@ "regionName": "충청북도" }, { - "bsshSn": "16069", - "name": "기쁨가득 엄마밥상", + "bsshSn": "11549", + "name": "버드나무순대국", "categoryName": "한식", - "address": "충청북도 청주시 흥덕구 사운로190번길 1 (운천동)", + "address": "서울특별시 동대문구 휘경로2길 42 (이문동) 1층", + "phone": "02-960-2932", + "representativeMenu": "순대국밥", + "price": 7000, + "latitude": 37.59439437972906, + "longitude": 127.05998891253705, + "pageIndex": 82, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "16069", + "name": "기쁨가득 엄마밥상", + "categoryName": "한식", + "address": "충청북도 청주시 흥덕구 사운로190번길 1 (운천동)", "phone": "-", "representativeMenu": "된장찌개", "price": 6000, @@ -3489,18 +9808,18 @@ "regionName": "충청북도" }, { - "bsshSn": "15849", - "name": "김진헤어", - "categoryName": "미용업", - "address": "충청북도 청주시 흥덕구 증안로 44 (복대동) 2층", - "phone": "043-239-4129", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.63652312339393, - "longitude": 127.42812791746137, - "pageIndex": 5, - "regionCode": "43", - "regionName": "충청북도" + "bsshSn": "16095", + "name": "불꽃냉면칼국수", + "categoryName": "한식", + "address": "서울특별시 동대문구 경희대로3길 13 (회기동) 2층", + "phone": "02-6014-0013", + "representativeMenu": "장칼국수", + "price": 9000, + "latitude": 37.59265919775777, + "longitude": 127.05165601213012, + "pageIndex": 82, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "19313", @@ -3516,6 +9835,20 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "18238", + "name": "비나레스토랑", + "categoryName": "일식", + "address": "서울특별시 동대문구 안암로24길 4 (제기동) 1층", + "phone": "02-926-5860", + "representativeMenu": "커리", + "price": 9000, + "latitude": 37.58842314254856, + "longitude": 127.03528592290078, + "pageIndex": 83, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "18220", "name": "만족", @@ -3530,6 +9863,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "11554", + "name": "비에르 에 프리트", + "categoryName": "한식", + "address": "서울특별시 동대문구 제기로5길 40 (제기동)", + "phone": "02-3291-5111", + "representativeMenu": "소세지볶음", + "price": 10000, + "latitude": 37.58803260900692, + "longitude": 127.03542173796306, + "pageIndex": 83, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5425", "name": "맛자랑 팥고향집", @@ -3545,46 +9892,18 @@ "regionName": "전북특별자치도" }, { - "bsshSn": "5419", - "name": "명보헤어", - "categoryName": "미용업", - "address": "전북특별자치도 전주시 완산구 팔달로 101-26", - "phone": "063-282-1643", - "representativeMenu": "커트", - "price": 10000, - "latitude": 35.8123674581985, - "longitude": 127.148537758879, - "pageIndex": 5, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "18209", - "name": "바다미용샵", - "categoryName": "미용업", - "address": "전북특별자치도 전주시 완산구 영경1길 21 (중화산동2가) 우성근영타운상가 1-101", - "phone": "063-223-8840", - "representativeMenu": "커트(학생)", - "price": 10000, - "latitude": 35.81809189327877, - "longitude": 127.12518062331628, - "pageIndex": 5, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "15151", - "name": "몽헤어갤러리", - "categoryName": "미용업", - "address": "전라남도 목포시 산정로 211 (용당동) 몽헤어갤러리", - "phone": "061-276-0479", - "representativeMenu": "학생커트", - "price": 7000, - "latitude": 34.80675654469635, - "longitude": 126.38939338794059, - "pageIndex": 5, - "regionCode": "46", - "regionName": "전라남도" + "bsshSn": "13727", + "name": "사나이뚝배기", + "categoryName": "한식", + "address": "서울특별시 동대문구 경희대로4길 5 (회기동) 1층", + "phone": "02-963-2407", + "representativeMenu": "된장뚝배기", + "price": 6300, + "latitude": 37.592580690345116, + "longitude": 127.05289457873386, + "pageIndex": 83, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15141", @@ -3600,6 +9919,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "10387", + "name": "삼보닭꼬치", + "categoryName": "한식", + "address": "서울특별시 동대문구 한천로 186 (장안동)", + "phone": "010-6493-3450", + "representativeMenu": "파닭꼬치", + "price": 3500, + "latitude": 37.57746456123217, + "longitude": 127.06816795077384, + "pageIndex": 83, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10507", "name": "백련가정식백반", @@ -3614,6 +9947,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "485", + "name": "서울쉬퐁", + "categoryName": "기타요식업", + "address": "서울특별시 동대문구 한천로63길 17 (이문동) 1층", + "phone": "02-966-2539", + "representativeMenu": "아메리카노", + "price": 2500, + "latitude": 37.60394823824401, + "longitude": 127.06653078603297, + "pageIndex": 84, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6388", "name": "고향식당", @@ -3628,6 +9975,20 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "11305", + "name": "서희", + "categoryName": "중식", + "address": "서울특별시 동대문구 사가정로23길 64 (장안동, 성우스타팰리스) 105-101", + "phone": "02-2212-8877", + "representativeMenu": "자장면(현금)", + "price": 5500, + "latitude": 37.58163338009504, + "longitude": 127.07003011308035, + "pageIndex": 84, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16132", "name": "공원분식", @@ -3643,18 +10004,18 @@ "regionName": "경상북도" }, { - "bsshSn": "6428", - "name": "곽헤어뷰티", - "categoryName": "미용업", - "address": "경상북도 포항시 북구 장량중앙로65번길 18-1 (양덕동) 1층", - "phone": "0507-1449-1250", - "representativeMenu": "남자커트", - "price": 6000, - "latitude": 36.09024160303488, - "longitude": 129.3898774029156, - "pageIndex": 5, - "regionCode": "47", - "regionName": "경상북도" + "bsshSn": "16097", + "name": "선이네순대국", + "categoryName": "한식", + "address": "서울특별시 동대문구 이문로28길 16 (이문동)", + "phone": "02-968-9168", + "representativeMenu": "순대국", + "price": 8000, + "latitude": 37.59549891463256, + "longitude": 127.06063036799861, + "pageIndex": 84, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15582", @@ -3671,18 +10032,18 @@ "regionName": "경상남도" }, { - "bsshSn": "10579", - "name": "남양스튜디오", - "categoryName": "기타비요식업", - "address": "경상남도 창원시 마산합포구 장장군로 31-23 (장군동4가)", - "phone": "055-245-0548", - "representativeMenu": "가족사진", - "price": 10000, - "latitude": 35.1971042919322, - "longitude": 128.565386781544, - "pageIndex": 5, - "regionCode": "48", - "regionName": "경상남도" + "bsshSn": "11555", + "name": "세진식당", + "categoryName": "한식", + "address": "서울특별시 동대문구 서울시립대로 61-4 (전농동)", + "phone": "02-2215-0305", + "representativeMenu": "백반", + "price": 6000, + "latitude": 37.57682883460906, + "longitude": 127.04777654203231, + "pageIndex": 84, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15129", @@ -3699,18 +10060,18 @@ "regionName": "경상남도" }, { - "bsshSn": "17648", - "name": "뉴헤어라인 이용원", - "categoryName": "이용업", - "address": "경상남도 창원시 진해구 제황로 83-1 (충무동) 1층", - "phone": "0507-1405-1427", - "representativeMenu": "남성커트", + "bsshSn": "10373", + "name": "수빈마마", + "categoryName": "한식", + "address": "서울특별시 동대문구 사가정로 221 (장안동) 103호", + "phone": "02-2244-9294", + "representativeMenu": "된장찌개", "price": 9000, - "latitude": 35.15172782098772, - "longitude": 128.66680204776503, - "pageIndex": 5, - "regionCode": "48", - "regionName": "경상남도" + "latitude": 37.57892188428139, + "longitude": 127.06970335305819, + "pageIndex": 85, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "7068", @@ -3726,6 +10087,20 @@ "regionCode": "50", "regionName": "제주특별자치도" }, + { + "bsshSn": "18856", + "name": "시루앤도마", + "categoryName": "기타요식업", + "address": "서울특별시 동대문구 제기로 131 (청량리동, 한신아파트) 121동 1층 6호", + "phone": "010-7272-7777", + "representativeMenu": "호두강정", + "price": 3000, + "latitude": 37.587270026787095, + "longitude": 127.04826367370279, + "pageIndex": 85, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11423", "name": "금악 똣똣라면", @@ -3740,6 +10115,20 @@ "regionCode": "50", "regionName": "제주특별자치도" }, + { + "bsshSn": "11304", + "name": "신라방마라탕 장안동맛집", + "categoryName": "중식", + "address": "서울특별시 동대문구 천호대로79길 66 (장안동)", + "phone": "02-2212-9991", + "representativeMenu": "마라탕", + "price": 7000, + "latitude": 37.56504359478191, + "longitude": 127.06448608529534, + "pageIndex": 85, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17999", "name": "금악리자양식당", @@ -3755,30 +10144,16 @@ "regionName": "제주특별자치도" }, { - "bsshSn": "14004", - "name": "서울식당", + "bsshSn": "16154", + "name": "신설동뚝배기", "categoryName": "한식", - "address": "서울특별시 종로구 창신길 50 (창신동) 1층", - "phone": "02-764-7587", - "representativeMenu": "백반", - "price": 8000, - "latitude": 37.57383386363352, - "longitude": 127.01070027218017, - "pageIndex": 6, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "13892", - "name": "세종커피", - "categoryName": "기타요식업", - "address": "서울특별시 종로구 세종대로23길 54 (당주동) 지하1층 26호", - "phone": "010-5827-9542", - "representativeMenu": "아메리카노", - "price": 2500, - "latitude": 37.57183953065674, - "longitude": 126.97328450326039, - "pageIndex": 6, + "address": "서울특별시 동대문구 한빛로 18 (신설동)", + "phone": "02-922-1070", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.577277991288966, + "longitude": 127.02529432677873, + "pageIndex": 86, "regionCode": "11", "regionName": "서울특별시" }, @@ -3796,6 +10171,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "11557", + "name": "신설보쌈앤칼국수", + "categoryName": "한식", + "address": "서울특별시 동대문구 하정로3길 10 (신설동) 1층", + "phone": "02-925-3030", + "representativeMenu": "보쌈정식", + "price": 10000, + "latitude": 37.57559393325427, + "longitude": 127.02598045290175, + "pageIndex": 86, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17051", "name": "미향장어탕", @@ -3810,6 +10199,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "16098", + "name": "아리랑동가스", + "categoryName": "양식", + "address": "서울특별시 동대문구 이문로28길 13 (이문동)", + "phone": "02-3295-2897", + "representativeMenu": "마늘돈까스", + "price": 6500, + "latitude": 37.59561543618536, + "longitude": 127.06063764607374, + "pageIndex": 87, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14624", "name": "예원생선구이", @@ -3824,6 +10227,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "495", + "name": "영칼국수", + "categoryName": "한식", + "address": "서울특별시 동대문구 답십리로51길 10 (답십리동)", + "phone": "02-2213-0994", + "representativeMenu": "칼국수", + "price": 6000, + "latitude": 37.57342683203908, + "longitude": 127.05872117736355, + "pageIndex": 87, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15358", "name": "옛고을", @@ -3838,6 +10255,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "10374", + "name": "옛고을닭한마리", + "categoryName": "한식", + "address": "서울특별시 동대문구 사가정로 7 (답십리동) 1층", + "phone": "02-2215-1316", + "representativeMenu": "백반", + "price": 7000, + "latitude": 37.57060345934798, + "longitude": 127.04900645171843, + "pageIndex": 87, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10074", "name": "옛날국수", @@ -3852,6 +10283,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "18237", + "name": "오뚜기부대찌개", + "categoryName": "한식", + "address": "서울특별시 동대문구 휘경로 6-5 (이문동) 1층", + "phone": "02-968-0256", + "representativeMenu": "부대찌개", + "price": 9000, + "latitude": 37.59590086643286, + "longitude": 127.06081965165868, + "pageIndex": 88, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17977", "name": "와래이수제꼬치전문점", @@ -3866,6 +10311,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "11559", + "name": "오뚝식당", + "categoryName": "한식", + "address": "서울특별시 동대문구 회기로21길 8-18 (회기동)", + "phone": "02-966-6680", + "representativeMenu": "된장찌개", + "price": 9000, + "latitude": 37.591354802446865, + "longitude": 127.05383844362834, + "pageIndex": 88, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2234", "name": "신신분식", @@ -3880,6 +10339,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "10366", + "name": "오케이식당", + "categoryName": "한식", + "address": "서울특별시 동대문구 장한로18길 36 (장안동)", + "phone": "02-2213-3671", + "representativeMenu": "칼국수", + "price": 6000, + "latitude": 37.56752539395785, + "longitude": 127.07102172457361, + "pageIndex": 88, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2225", "name": "신포대패", @@ -3894,6 +10367,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "10395", + "name": "왕산골만두(그시절그맛)", + "categoryName": "한식", + "address": "서울특별시 동대문구 고산자로38길 25 (제기동) 경동시장 다-11", + "phone": "010-8205-2763", + "representativeMenu": "꽈배기(3개)", + "price": 2000, + "latitude": 37.58016480388146, + "longitude": 127.03986720453042, + "pageIndex": 89, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2235", "name": "신포화로구이", @@ -3908,6 +10395,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "18245", + "name": "요집가먹으러", + "categoryName": "한식", + "address": "서울특별시 동대문구 왕산로 183 (청량리동)", + "phone": "02-951-6977", + "representativeMenu": "청국장", + "price": 8000, + "latitude": 37.57991964573927, + "longitude": 127.043578676224, + "pageIndex": 89, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2226", "name": "신흥숯불갈비", @@ -3922,6 +10423,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "16155", + "name": "용두동홍가네", + "categoryName": "한식", + "address": "서울특별시 동대문구 무학로 116 (용두동)", + "phone": "02-2243-2465", + "representativeMenu": "한식뷔페", + "price": 7000, + "latitude": 37.574482059067876, + "longitude": 127.03087524947837, + "pageIndex": 89, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2266", "name": "밥s", @@ -3936,6 +10451,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "16159", + "name": "우담", + "categoryName": "한식", + "address": "서울특별시 동대문구 경희대로1가길 39 (회기동)", + "phone": "010-3675-4790", + "representativeMenu": "양파보쌈정식", + "price": 8400, + "latitude": 37.59314778861966, + "longitude": 127.05219663105255, + "pageIndex": 89, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10138", "name": "삼미관", @@ -3951,18 +10480,18 @@ "regionName": "광주광역시" }, { - "bsshSn": "2530", - "name": "머리카락&피부샵", - "categoryName": "미용업", - "address": "대전광역시 동구 동서대로 1692번길 153 (성남동)", - "phone": "-", - "representativeMenu": "미용료(여자커트)", - "price": 8000, - "latitude": 36.3424896102607, - "longitude": 127.438366074824, - "pageIndex": 6, - "regionCode": "30", - "regionName": "대전광역시" + "bsshSn": "11216", + "name": "원더월커피로스터스", + "categoryName": "기타요식업", + "address": "서울특별시 동대문구 답십리로 80 (답십리동)", + "phone": "010-8754-6467", + "representativeMenu": "텀블러(to go) 아메리카노", + "price": 1500, + "latitude": 37.57473338785996, + "longitude": 127.04950893235026, + "pageIndex": 90, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "16081", @@ -3978,6 +10507,20 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "16144", + "name": "이도감식당", + "categoryName": "한식", + "address": "서울특별시 동대문구 망우로20가길 3 (휘경동) 1층", + "phone": "02-3295-2250", + "representativeMenu": "김치찌개", + "price": 8000, + "latitude": 37.5899681419076, + "longitude": 127.06325833607585, + "pageIndex": 90, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16083", "name": "명동만두", @@ -3992,6 +10535,20 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "18250", + "name": "이문동커피집 크럼블로스터스", + "categoryName": "기타요식업", + "address": "서울특별시 동대문구 이문로25길 39 (이문동) 1층", + "phone": "070-8776-4147", + "representativeMenu": "아메리카노", + "price": 2300, + "latitude": 37.59546788028201, + "longitude": 127.05733028386251, + "pageIndex": 91, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2545", "name": "미가칼국수", @@ -4006,6 +10563,20 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "13486", + "name": "인더베이글(InTheBagel)", + "categoryName": "기타요식업", + "address": "서울특별시 동대문구 회기로13길 19 (회기동) 1층", + "phone": "0507-1374-3338", + "representativeMenu": "훈제연어 샌드", + "price": 8500, + "latitude": 37.59230617495015, + "longitude": 127.0508771710477, + "pageIndex": 91, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2995", "name": "엄마네뷔페", @@ -4020,6 +10591,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "18515", + "name": "일심해장국 본점", + "categoryName": "한식", + "address": "서울특별시 동대문구 장한로 179 (장안동) 1층", + "phone": "02-2243-4525", + "representativeMenu": "해장국", + "price": 7000, + "latitude": 37.57648686602377, + "longitude": 127.0717319866918, + "pageIndex": 91, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16557", "name": "에뜨왈베이커리", @@ -4034,6 +10619,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "16152", + "name": "자매분식", + "categoryName": "한식", + "address": "서울특별시 동대문구 경희대로1가길 15 (회기동)", + "phone": "02-960-7455", + "representativeMenu": "오징어볶음", + "price": 10000, + "latitude": 37.59254506899683, + "longitude": 127.05139492741468, + "pageIndex": 92, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11677", "name": "옥교국밥", @@ -4048,6 +10647,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "512", + "name": "장안골", + "categoryName": "한식", + "address": "서울특별시 동대문구 답십리로65길 124-3 (장안동) 1층", + "phone": "02-2242-9476", + "representativeMenu": "뚝배기불고기", + "price": 7000, + "latitude": 37.57818191527725, + "longitude": 127.07041173721838, + "pageIndex": 92, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2996", "name": "유가냉면", @@ -4063,32 +10676,18 @@ "regionName": "울산광역시" }, { - "bsshSn": "10183", - "name": "세종세탁 명품", - "categoryName": "세탁업", - "address": "세종특별자치시 만남로 190 상가 203호", - "phone": "044-864-2226", - "representativeMenu": "이불", - "price": 10000, - "latitude": 36.5170635630589, - "longitude": 127.241017466402, - "pageIndex": 6, - "regionCode": "36", - "regionName": "세종특별자치시" - }, - { - "bsshSn": "10168", - "name": "송덕이용원", - "categoryName": "이용업", - "address": "세종특별자치시 전동면 금이로 266", - "phone": "044-867-1488", - "representativeMenu": "조발", - "price": 10000, - "latitude": 36.6302394683097, - "longitude": 127.260476864844, - "pageIndex": 6, - "regionCode": "36", - "regionName": "세종특별자치시" + "bsshSn": "513", + "name": "장진주", + "categoryName": "한식", + "address": "서울특별시 동대문구 약령동길 97 (제기동) 1층", + "phone": "02-957-3993", + "representativeMenu": "콩나물비빔밥", + "price": 9000, + "latitude": 37.582681211562026, + "longitude": 127.03787002162649, + "pageIndex": 92, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "10196", @@ -4104,6 +10703,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "514", + "name": "전주곰탕", + "categoryName": "한식", + "address": "서울특별시 동대문구 답십리로51길 15-12 (답십리동) 12호", + "phone": "02-2249-3399", + "representativeMenu": "소머리국밥", + "price": 10000, + "latitude": 37.57341419897548, + "longitude": 127.05829549805017, + "pageIndex": 93, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10186", "name": "시장감자탕", @@ -4118,6 +10731,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "497", + "name": "정성서울국수집", + "categoryName": "한식", + "address": "서울특별시 동대문구 이문로 166 (이문동) 캠퍼스빌 101호", + "phone": "02-966-0579", + "representativeMenu": "멸치국수", + "price": 5000, + "latitude": 37.60131518930494, + "longitude": 127.06226389136587, + "pageIndex": 93, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15882", "name": "냉삼집", @@ -4132,6 +10759,20 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "515", + "name": "제주흑돼지알토란쌈밥", + "categoryName": "한식", + "address": "서울특별시 동대문구 한천로14길 69 (장안동) 1층", + "phone": "02-2246-8987", + "representativeMenu": "백반", + "price": 7000, + "latitude": 37.56660165261301, + "longitude": 127.06651991212908, + "pageIndex": 93, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "3419", "name": "논골손칼국수", @@ -4147,32 +10788,18 @@ "regionName": "경기도" }, { - "bsshSn": "17117", - "name": "늘하얀세탁소", - "categoryName": "세탁업", - "address": "경기도 수원시 팔달구 화양로68번길 61 (화서동) 1층", - "phone": "031-242-5554", - "representativeMenu": "드라이클리닝(신사복)", - "price": 8000, - "latitude": 37.28181847804219, - "longitude": 126.99725940969884, - "pageIndex": 6, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "3401", - "name": "닛시헤어필", - "categoryName": "미용업", - "address": "경기도 수원시 장안구 파장로21번길 27 (송죽동)", - "phone": "031-257-1411", - "representativeMenu": "커트", - "price": 8000, - "latitude": 37.3033791048968, - "longitude": 126.997399634911, - "pageIndex": 6, - "regionCode": "41", - "regionName": "경기도" + "bsshSn": "16100", + "name": "주연푸드", + "categoryName": "한식", + "address": "서울특별시 동대문구 휘경로 3-4 (이문동)", + "phone": "0507-1400-8509", + "representativeMenu": "돼지짜글이", + "price": 8500, + "latitude": 37.5964812118617, + "longitude": 127.06087344222534, + "pageIndex": 94, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "10313", @@ -4189,18 +10816,18 @@ "regionName": "강원특별자치도" }, { - "bsshSn": "4340", - "name": "동네미용실", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 동내면 영서로 1747 1층", - "phone": "033-262-3257", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.8327701426154, - "longitude": 127.761293705291, - "pageIndex": 6, - "regionCode": "51", - "regionName": "강원특별자치도" + "bsshSn": "10372", + "name": "지노돈까스", + "categoryName": "양식", + "address": "서울특별시 동대문구 제기로38길 40 (청량리동) 1층", + "phone": "02-959-3189", + "representativeMenu": "돈까스", + "price": 8500, + "latitude": 37.584488619841885, + "longitude": 127.0494960787065, + "pageIndex": 94, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "10310", @@ -4216,6 +10843,20 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "10381", + "name": "청량리할머니냉면", + "categoryName": "한식", + "address": "서울특별시 동대문구 왕산로37길 51 (제기동)", + "phone": "02-963-5362", + "representativeMenu": "냉면", + "price": 7000, + "latitude": 37.58228095120073, + "longitude": 127.04375491090488, + "pageIndex": 94, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15783", "name": "꽃돼지댁", @@ -4230,6 +10871,20 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "16162", + "name": "청정생고기집", + "categoryName": "한식", + "address": "서울특별시 동대문구 서울시립대로 121 (전농동)", + "phone": "02-2244-3467", + "representativeMenu": "삼겹살(150g)", + "price": 7000, + "latitude": 37.5813115354497, + "longitude": 127.05167468958982, + "pageIndex": 94, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4687", "name": "나누리장터", @@ -4244,6 +10899,20 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "11558", + "name": "충북식당", + "categoryName": "한식", + "address": "서울특별시 동대문구 고산자로38길 27 (제기동)", + "phone": "02-964-3031", + "representativeMenu": "청국장보리밥", + "price": 8000, + "latitude": 37.5801860790802, + "longitude": 127.04003274480417, + "pageIndex": 95, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4747", "name": "나성불고기쌈밥", @@ -4259,46 +10928,18 @@ "regionName": "충청북도" }, { - "bsshSn": "4959", - "name": "남성커트오천", - "categoryName": "이용업", - "address": "충청남도 천안시 서북구 월봉로 66 (쌍용동)", - "phone": "-", - "representativeMenu": "커트", - "price": 7000, - "latitude": 36.7964851683758, - "longitude": 127.118063685574, - "pageIndex": 6, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4911", - "name": "남성컷트오천냥클럽", - "categoryName": "이용업", - "address": "충청남도 천안시 동남구 서부대로 257-3 105호(신방동)", - "phone": "041-572-5283", - "representativeMenu": "커트", - "price": 7000, - "latitude": 36.7910983221181, - "longitude": 127.128572630944, - "pageIndex": 6, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "10392", - "name": "넘버원 남성컷트", - "categoryName": "미용업", - "address": "충청남도 천안시 서북구 두정로 263 (두정동)", - "phone": "041-904-1020", - "representativeMenu": "커트", - "price": 7700, - "latitude": 36.8334141610709, - "longitude": 127.146148378172, - "pageIndex": 6, - "regionCode": "44", - "regionName": "충청남도" + "bsshSn": "18244", + "name": "충청도식당", + "categoryName": "한식", + "address": "서울특별시 동대문구 경동시장로12길 26 (제기동)", + "phone": "02-959-1192", + "representativeMenu": "정식백반", + "price": 6000, + "latitude": 37.58207907922376, + "longitude": 127.04203783971076, + "pageIndex": 95, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "13848", @@ -4314,6 +10955,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "13400", + "name": "친친", + "categoryName": "중식", + "address": "서울특별시 동대문구 정릉천동로 58 (용두동, 롯데캐슬피렌체)", + "phone": "070-8960-9891", + "representativeMenu": "짜장면", + "price": 6000, + "latitude": 37.5771639443969, + "longitude": 127.03580933416836, + "pageIndex": 95, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13852", "name": "백운면아중점", @@ -4328,6 +10983,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "11551", + "name": "칼리앤메리", + "categoryName": "한식", + "address": "서울특별시 동대문구 서울시립대로 160 (전농동) 영광빌딩 105호", + "phone": "010-6429-0747", + "representativeMenu": "제육비빔밥", + "price": 8000, + "latitude": 37.58341533342644, + "longitude": 127.05453994474995, + "pageIndex": 95, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5414", "name": "빵굽는나라", @@ -4342,6 +11011,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "13393", + "name": "푸드김밥", + "categoryName": "한식", + "address": "서울특별시 동대문구 왕산로9길 6 (용두동)", + "phone": "02-929-4123", + "representativeMenu": "김밥", + "price": 2500, + "latitude": 37.577352181924674, + "longitude": 127.02794251747314, + "pageIndex": 96, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5439", "name": "서신정", @@ -4356,6 +11039,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "16093", + "name": "푸른하늘", + "categoryName": "한식", + "address": "서울특별시 동대문구 경희대로6길 3-4 (회기동)", + "phone": "02-966-3394", + "representativeMenu": "물냉면", + "price": 6500, + "latitude": 37.593546790515155, + "longitude": 127.0530751458377, + "pageIndex": 96, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15145", "name": "복스짜장짬뽕(용해점)", @@ -4371,12 +11068,26 @@ "regionName": "전라남도" }, { - "bsshSn": "5609", - "name": "삼국지", - "categoryName": "중식", - "address": "전라남도 목포시 하당남부로 108 (옥암동)", - "phone": "061-284-8775", - "representativeMenu": "자장면", + "bsshSn": "13405", + "name": "할매순대국", + "categoryName": "한식", + "address": "서울특별시 동대문구 망우로 76 (휘경동)", + "phone": "02-2247-1213", + "representativeMenu": "순대국", + "price": 9000, + "latitude": 37.589743964646864, + "longitude": 127.0616549489971, + "pageIndex": 96, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "5609", + "name": "삼국지", + "categoryName": "중식", + "address": "전라남도 목포시 하당남부로 108 (옥암동)", + "phone": "061-284-8775", + "representativeMenu": "자장면", "price": 6000, "latitude": 34.8022264162699, "longitude": 126.435217612049, @@ -4384,6 +11095,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "16090", + "name": "행복한연탄구이", + "categoryName": "한식", + "address": "서울특별시 동대문구 답십리로 145-1 (답십리동)", + "phone": "02-2216-4861", + "representativeMenu": "라면", + "price": 4000, + "latitude": 37.573075434834955, + "longitude": 127.05632065426413, + "pageIndex": 97, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16968", "name": "서울대중", @@ -4398,6 +11123,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "18247", + "name": "형제집칼국수", + "categoryName": "한식", + "address": "서울특별시 동대문구 사가정로25길 46 (장안동)", + "phone": "02-2216-7502", + "representativeMenu": "칼국수", + "price": 7000, + "latitude": 37.58079543205763, + "longitude": 127.07099071013515, + "pageIndex": 97, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5617", "name": "손가네분식", @@ -4412,6 +11151,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "16149", + "name": "호미", + "categoryName": "한식", + "address": "서울특별시 동대문구 안암로20길 7-15 (제기동) 지하1층", + "phone": "010-8761-3297", + "representativeMenu": "참치김치찌개", + "price": 7000, + "latitude": 37.58802747170622, + "longitude": 127.03482903872096, + "pageIndex": 98, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6374", "name": "국수마을", @@ -4426,6 +11179,20 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "13391", + "name": "홍두깨손칼국수(청량리)", + "categoryName": "한식", + "address": "서울특별시 동대문구 왕산로 185 (청량리동) 1층", + "phone": "02-957-7734", + "representativeMenu": "손칼국수", + "price": 4000, + "latitude": 37.57990785905942, + "longitude": 127.0437870917468, + "pageIndex": 98, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14723", "name": "국시묵자", @@ -4441,32 +11208,18 @@ "regionName": "경상북도" }, { - "bsshSn": "10551", - "name": "굿맨", - "categoryName": "이용업", - "address": "경상북도 포항시 북구 아치로 57 상가동 101호 (우현동,화성아파트)", - "phone": "-", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.0511457346007, - "longitude": 129.355698800567, - "pageIndex": 6, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "16131", - "name": "권민선남성컷", - "categoryName": "미용업", - "address": "경상북도 포항시 남구 상공로221번길 28 (해도동) 권민선남성컷", - "phone": "054-277-4596", - "representativeMenu": "컷트", - "price": 10000, - "latitude": 36.02519921582511, - "longitude": 129.3695250773602, - "pageIndex": 6, - "regionCode": "47", - "regionName": "경상북도" + "bsshSn": "18516", + "name": "홍두깨칼국수(답십리동)", + "categoryName": "한식", + "address": "서울특별시 동대문구 전농로 99 (답십리동) 1층", + "phone": "02-2243-2734", + "representativeMenu": "손칼국수", + "price": 5000, + "latitude": 37.573895151532554, + "longitude": 127.05726590799888, + "pageIndex": 98, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "14472", @@ -4482,6 +11235,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "18246", + "name": "홍두깨칼국수(제기동)", + "categoryName": "한식", + "address": "서울특별시 동대문구 왕산로 165 (제기동)", + "phone": "02-960-6126", + "representativeMenu": "칼국수", + "price": 4000, + "latitude": 37.57923386335034, + "longitude": 127.04162867525169, + "pageIndex": 98, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13714", "name": "다래원", @@ -4496,6 +11263,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "13402", + "name": "휘경곱창", + "categoryName": "한식", + "address": "서울특별시 동대문구 휘경로14길 15-1 (휘경동)", + "phone": "02-959-7973", + "representativeMenu": "야채곱창", + "price": 10000, + "latitude": 37.59452741434721, + "longitude": 127.06330212739795, + "pageIndex": 99, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13719", "name": "다복식당", @@ -4510,6 +11291,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "14499", + "name": "곰배령칼국수", + "categoryName": "한식", + "address": "서울특별시 중랑구 용마산로117길 54 (신내동) 1층", + "phone": "010-4175-9089", + "representativeMenu": "칼국수", + "price": 6000, + "latitude": 37.60000933540708, + "longitude": 127.09746561077974, + "pageIndex": 100, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6810", "name": "다복한식부페", @@ -4525,18 +11320,18 @@ "regionName": "경상남도" }, { - "bsshSn": "7201", - "name": "금천미용실", - "categoryName": "미용업", - "address": "제주특별자치도 제주시 중앙로23길 6 .", - "phone": "064-758-9254", - "representativeMenu": "커트", - "price": 10000, - "latitude": 33.5069619652156, - "longitude": 126.525476490278, - "pageIndex": 6, - "regionCode": "50", - "regionName": "제주특별자치도" + "bsshSn": "11221", + "name": "다이렉트커피", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 용마산로100길 35 (망우동) 1층", + "phone": "0507-0288-7263", + "representativeMenu": "커피", + "price": 2300, + "latitude": 37.59112764712891, + "longitude": 127.10012606552009, + "pageIndex": 100, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "7019", @@ -4553,44 +11348,16 @@ "regionName": "제주특별자치도" }, { - "bsshSn": "15002", - "name": "스윗샐러드", - "categoryName": "한식", - "address": "서울특별시 종로구 종로1길 50 (중학동) 지하1층", - "phone": "02-733-3225", - "representativeMenu": "버섯샐러드", - "price": 7900, - "latitude": 37.57491239937121, - "longitude": 126.97896535083947, - "pageIndex": 7, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "943", - "name": "약속커피숍", + "bsshSn": "16076", + "name": "담다", "categoryName": "기타요식업", - "address": "서울특별시 종로구 종로 302 (창신동)", - "phone": "02-764-1100", - "representativeMenu": "맥심커피", - "price": 2000, - "latitude": 37.5716332944196, - "longitude": 127.01140072111, - "pageIndex": 7, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "947", - "name": "영미용실", - "categoryName": "미용업", - "address": "서울특별시 종로구 지봉로 62 (숭인동)", - "phone": "02-743-6052", - "representativeMenu": "커트", - "price": 8000, - "latitude": 37.5755618391963, - "longitude": 127.015850681862, - "pageIndex": 7, + "address": "서울특별시 중랑구 봉화산로4길 62 (중화동) 1층", + "phone": "-", + "representativeMenu": "아메리카노", + "price": 2500, + "latitude": 37.59915611624509, + "longitude": 127.0751578970956, + "pageIndex": 101, "regionCode": "11", "regionName": "서울특별시" }, @@ -4608,6 +11375,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "14494", + "name": "대성식당", + "categoryName": "한식", + "address": "서울특별시 중랑구 면목로33길 14 (면목동) 1층", + "phone": "010-8962-7097", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.57679837613986, + "longitude": 127.08508904482112, + "pageIndex": 101, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "1638", "name": "석기시대", @@ -4622,6 +11403,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "14504", + "name": "대흥각", + "categoryName": "중식", + "address": "서울특별시 중랑구 동일로139길 7 (중화동) 1층", + "phone": "0507-1415-5215", + "representativeMenu": "자장면", + "price": 5000, + "latitude": 37.603360654414715, + "longitude": 127.07849409383937, + "pageIndex": 101, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17050", "name": "양가손만두 부평직영점", @@ -4636,6 +11431,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "16077", + "name": "동춘원", + "categoryName": "중식", + "address": "서울특별시 중랑구 망우로66길 57 (망우동) 1층", + "phone": "02-434-9454", + "representativeMenu": "자장면", + "price": 5000, + "latitude": 37.59695205479161, + "longitude": 127.09963096790973, + "pageIndex": 102, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14625", "name": "용정반점", @@ -4650,6 +11459,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "1028", + "name": "마션", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 봉화산로56길 69", + "phone": "-", + "representativeMenu": "커피", + "price": 2000, + "latitude": 37.6056814088478, + "longitude": 127.098096524041, + "pageIndex": 102, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2018", "name": "우리할매칼국수", @@ -4664,6 +11487,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "15224", + "name": "미례김밥", + "categoryName": "한식", + "address": "서울특별시 중랑구 상봉로 7 (면목동) 1층", + "phone": "010-4757-6109", + "representativeMenu": "김밥", + "price": 3000, + "latitude": 37.58643600575516, + "longitude": 127.0943796758029, + "pageIndex": 102, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14950", "name": "윤소인고단백장어죽", @@ -4678,6 +11515,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "11581", + "name": "박리김밥", + "categoryName": "한식", + "address": "서울특별시 중랑구 공릉로2길 22 1층", + "phone": "02-949-7101", + "representativeMenu": "김밥", + "price": 3000, + "latitude": 37.6119559660238, + "longitude": 127.079036383266, + "pageIndex": 103, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14012", "name": "옹진찰밥", @@ -4692,6 +11543,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "15221", + "name": "베이글옆케이크", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 면목로21길 26 (면목동, 현대주택) 102호", + "phone": "010-3917-1293", + "representativeMenu": "컵케이크", + "price": 5000, + "latitude": 37.572657693081965, + "longitude": 127.08243699640079, + "pageIndex": 103, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13120", "name": "우리두리머물다", @@ -4707,18 +11572,18 @@ "regionName": "인천광역시" }, { - "bsshSn": "13187", - "name": "서림미용실", - "categoryName": "미용업", - "address": "광주광역시 동구 운림길 23 (운림동, 무등파크맨션) 상가동 202호", - "phone": "062-228-2909", - "representativeMenu": "커트(성인)", - "price": 10000, - "latitude": 35.13428906928481, - "longitude": 126.94139361034274, - "pageIndex": 7, - "regionCode": "29", - "regionName": "광주광역시" + "bsshSn": "15226", + "name": "복희커피 인테리어공방", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 상봉로1길 14 (면목동) 1층", + "phone": "02-2207-5000", + "representativeMenu": "커피", + "price": 2500, + "latitude": 37.58627856313082, + "longitude": 127.09386999547063, + "pageIndex": 103, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "2284", @@ -4734,6 +11599,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "14500", + "name": "사가정손두부", + "categoryName": "한식", + "address": "서울특별시 중랑구 면목로44길 62 (면목동) 1층", + "phone": "02-496-7787", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.58087636617898, + "longitude": 127.09196826611658, + "pageIndex": 104, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2269", "name": "수라상", @@ -4748,6 +11627,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "15227", + "name": "사가커피", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 면목로44길 37 (면목동) 1층", + "phone": "0507-1427-0539", + "representativeMenu": "커피", + "price": 2000, + "latitude": 37.58107796557923, + "longitude": 127.09064720619213, + "pageIndex": 104, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13185", "name": "옥땡김밥", @@ -4762,6 +11655,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "17615", + "name": "상하이", + "categoryName": "중식", + "address": "서울특별시 중랑구 면목로 223 (면목동) 1층", + "phone": "02-432-3240", + "representativeMenu": "자장면", + "price": 4000, + "latitude": 37.57319243078983, + "longitude": 127.08410245355938, + "pageIndex": 104, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "18131", "name": "별이네 분식", @@ -4777,18 +11684,18 @@ "regionName": "대전광역시" }, { - "bsshSn": "2531", - "name": "복지이용원", - "categoryName": "이용업", - "address": "대전광역시 동구 대전로 791번길 50 (중동)", - "phone": "042-251-8428", - "representativeMenu": "이용료", - "price": 7000, - "latitude": 36.3295205271986, - "longitude": 127.430506838139, - "pageIndex": 7, - "regionCode": "30", - "regionName": "대전광역시" + "bsshSn": "14501", + "name": "성이네천원김밥", + "categoryName": "한식", + "address": "서울특별시 중랑구 중랑역로 150 (묵동, 우성아파트) 1층", + "phone": "02-976-5648", + "representativeMenu": "김밥", + "price": 2000, + "latitude": 37.60677911638967, + "longitude": 127.07715385191284, + "pageIndex": 105, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "16673", @@ -4805,11 +11712,25 @@ "regionName": "울산광역시" }, { - "bsshSn": "2997", - "name": "장현돼지국밥", + "bsshSn": "14496", + "name": "성창식당", "categoryName": "한식", - "address": "울산광역시 중구 종가로 745 (장현동)", - "phone": "052-293-0392", + "address": "서울특별시 중랑구 면목로 421 (면목동) 1층", + "phone": "02-435-3061", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.58964701261553, + "longitude": 127.08705113856698, + "pageIndex": 105, + "regionCode": "11", + "regionName": "서울특별시" + }, + { + "bsshSn": "2997", + "name": "장현돼지국밥", + "categoryName": "한식", + "address": "울산광역시 중구 종가로 745 (장현동)", + "phone": "052-293-0392", "representativeMenu": "돼지국밥", "price": 8000, "latitude": 35.5881230965409, @@ -4818,6 +11739,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "1023", + "name": "세븐돈가스", + "categoryName": "한식", + "address": "서울특별시 중랑구 용마산로 557", + "phone": "02-433-1644", + "representativeMenu": "김치찌개", + "price": 6000, + "latitude": 37.6006970374489, + "longitude": 127.100246556563, + "pageIndex": 105, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10188", "name": "엉클생고기(보람동)", @@ -4832,6 +11767,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "17617", + "name": "소문난 황칠 순대국 왕족발", + "categoryName": "한식", + "address": "서울특별시 중랑구 겸재로 217 (면목동) 1층", + "phone": "02-2138-0908", + "representativeMenu": "순대국밥", + "price": 8000, + "latitude": 37.589475647450776, + "longitude": 127.09178385349664, + "pageIndex": 105, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10193", "name": "엉클생고기(아름동)", @@ -4847,18 +11796,18 @@ "regionName": "세종특별자치시" }, { - "bsshSn": "3363", - "name": "당수여성사우나", - "categoryName": "목욕업", - "address": "경기도 수원시 권선구 당진로15번길 56 (당수동)", - "phone": "031-419-9042", - "representativeMenu": "목욕료", - "price": 8000, - "latitude": 37.2920971102154, - "longitude": 126.938984343475, - "pageIndex": 7, - "regionCode": "41", - "regionName": "경기도" + "bsshSn": "14489", + "name": "수리야", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 양원역로 19 (망우동) 1층", + "phone": "010-8969-7459", + "representativeMenu": "커피", + "price": 1500, + "latitude": 37.602247869293805, + "longitude": 127.1079142080932, + "pageIndex": 106, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "3428", @@ -4874,6 +11823,20 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "1030", + "name": "스텔라커피", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 신내로7가길 13 1층", + "phone": "-", + "representativeMenu": "커피", + "price": 2000, + "latitude": 37.6023913424372, + "longitude": 127.095139356268, + "pageIndex": 107, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11723", "name": "뚝배기마을", @@ -4888,6 +11851,20 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "14497", + "name": "신성식당", + "categoryName": "한식", + "address": "서울특별시 중랑구 겸재로 202 (면목동) 1층", + "phone": "02-437-4132", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.58876000358219, + "longitude": 127.09009548531725, + "pageIndex": 107, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4381", "name": "롯데자율식당", @@ -4902,6 +11879,20 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "1029", + "name": "아르카디아커피컴퍼니", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 면목로88길 5-9", + "phone": "02-640-9692", + "representativeMenu": "커피", + "price": 2000, + "latitude": 37.5944534334494, + "longitude": 127.086350457246, + "pageIndex": 107, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4356", "name": "만리향", @@ -4917,18 +11908,18 @@ "regionName": "강원특별자치도" }, { - "bsshSn": "16642", - "name": "머릿결사랑", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 칠전서길 15-2 (칠전동, 칠전대우2차아파트)", - "phone": "033-253-8940", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.8403768426874, - "longitude": 127.71243175796782, - "pageIndex": 7, - "regionCode": "51", - "regionName": "강원특별자치도" + "bsshSn": "15223", + "name": "안대복원조맛집 멸치국수", + "categoryName": "한식", + "address": "서울특별시 중랑구 상봉로 33 (면목동) 1층", + "phone": "010-9272-9806", + "representativeMenu": "김밥", + "price": 3000, + "latitude": 37.588839182048, + "longitude": 127.09369137430004, + "pageIndex": 108, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "16981", @@ -4944,6 +11935,20 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "1024", + "name": "와우돈까스", + "categoryName": "한식", + "address": "서울특별시 중랑구 공릉로12가길 6 1층", + "phone": "02-220-3607", + "representativeMenu": "돈가스", + "price": 7000, + "latitude": 37.6163424774824, + "longitude": 127.080165526507, + "pageIndex": 109, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16070", "name": "남원추어탕", @@ -4958,6 +11963,20 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "1016", + "name": "왕짜장", + "categoryName": "중식", + "address": "서울특별시 중랑구 신내로14길 26", + "phone": "02-433-0202", + "representativeMenu": "짜장면", + "price": 4500, + "latitude": 37.6054986627446, + "longitude": 127.097037404944, + "pageIndex": 109, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4938", "name": "늑대골", @@ -4972,6 +11991,20 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "14505", + "name": "용궁", + "categoryName": "중식", + "address": "서울특별시 중랑구 봉우재로5길 16 (면목동) 1층", + "phone": "02-437-2007", + "representativeMenu": "자장면", + "price": 5000, + "latitude": 37.59068228806201, + "longitude": 127.0756692353704, + "pageIndex": 109, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19291", "name": "단대로", @@ -4986,6 +12019,20 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "14493", + "name": "유미식당", + "categoryName": "한식", + "address": "서울특별시 중랑구 망우로 276 (상봉동) 1층", + "phone": "02-6338-3814", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.59549904416484, + "longitude": 127.08321851811226, + "pageIndex": 109, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "18728", "name": "달식당", @@ -5000,6 +12047,20 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "14492", + "name": "이가김밥", + "categoryName": "한식", + "address": "서울특별시 중랑구 망우로 383 (상봉동) 1층", + "phone": "02-433-5575", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.5988034614169, + "longitude": 127.09479366777123, + "pageIndex": 110, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5440", "name": "섬진강백반", @@ -5014,6 +12075,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "1019", + "name": "정가네홍두깨손칼국수", + "categoryName": "한식", + "address": "서울특별시 중랑구 망우로62길 61", + "phone": "02-491-8457", + "representativeMenu": "칼국수", + "price": 4500, + "latitude": 37.5966527672409, + "longitude": 127.098957490859, + "pageIndex": 110, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5426", "name": "세은이네집", @@ -5028,6 +12103,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "14488", + "name": "짜앤짬", + "categoryName": "중식", + "address": "서울특별시 중랑구 겸재로 130 (면목동) 1층", + "phone": "02-493-8136", + "representativeMenu": "자장면", + "price": 4000, + "latitude": 37.58698484069053, + "longitude": 127.08211584334735, + "pageIndex": 111, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5415", "name": "수제왕돈까스(경원점)", @@ -5042,6 +12131,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "1017", + "name": "짜장나루", + "categoryName": "중식", + "address": "서울특별시 중랑구 겸재로 161", + "phone": "02-494-4774", + "representativeMenu": "자장면", + "price": 4500, + "latitude": 37.5880809932158, + "longitude": 127.085476828026, + "pageIndex": 111, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5442", "name": "신뱅이", @@ -5056,6 +12159,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "18848", + "name": "청석골잔치국수", + "categoryName": "한식", + "address": "서울특별시 중랑구 중랑역로 152 (묵동) 1층", + "phone": "02-948-9819", + "representativeMenu": "칼국수", + "price": 6000, + "latitude": 37.60695316722815, + "longitude": 127.07690616768816, + "pageIndex": 112, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11789", "name": "시골집 순두부(연산)", @@ -5070,6 +12187,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "16075", + "name": "카페 피울", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 용마산로129나길 42 (신내동) 1층", + "phone": "0507-1471-7980", + "representativeMenu": "아메리카노", + "price": 2000, + "latitude": 37.60569483355735, + "longitude": 127.09903182293912, + "pageIndex": 112, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15155", "name": "어락", @@ -5084,6 +12215,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "14490", + "name": "커피나무", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 겸재로 263 (망우동) 1층", + "phone": "02-6012-1333", + "representativeMenu": "커피", + "price": 2500, + "latitude": 37.590672677811746, + "longitude": 127.09677404278304, + "pageIndex": 112, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11788", "name": "연산순대국밥", @@ -5099,46 +12244,18 @@ "regionName": "전라남도" }, { - "bsshSn": "10499", - "name": "영빈미용실", - "categoryName": "미용업", - "address": "전라남도 목포시 삼학로343번길 6 (용해동)", - "phone": "-", - "representativeMenu": "커트(기본)", - "price": 7000, - "latitude": 34.8018144738611, - "longitude": 126.408611997702, - "pageIndex": 7, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6430", - "name": "권헤어", - "categoryName": "미용업", - "address": "경상북도 포항시 북구 죽도시장5길 4-6 권헤어", - "phone": "-", - "representativeMenu": "커트(여성)", - "price": 10000, - "latitude": 36.0353351270253, - "longitude": 129.366985164135, - "pageIndex": 7, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6323", - "name": "그린빌미용실", - "categoryName": "미용업", - "address": "경상북도 포항시 남구 대이로 138 그린빌미용실", - "phone": "054-274-0450", - "representativeMenu": "여자커트", - "price": 10000, - "latitude": 36.0267483836043, - "longitude": 129.341432453617, - "pageIndex": 7, - "regionCode": "47", - "regionName": "경상북도" + "bsshSn": "17626", + "name": "케익하우스 쥬떼므", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 망우로32길 49 (면목동) 1층", + "phone": "02-492-1148", + "representativeMenu": "단팥빵", + "price": 500, + "latitude": 37.59161249706707, + "longitude": 127.07738948509346, + "pageIndex": 112, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "6369", @@ -5154,6 +12271,20 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "14491", + "name": "코끼리카페", + "categoryName": "기타요식업", + "address": "서울특별시 중랑구 봉우재로33길 25 (상봉동, 이레59) 102호", + "phone": "0507-1323-4183", + "representativeMenu": "커피", + "price": 2500, + "latitude": 37.593888437528356, + "longitude": 127.08743089890284, + "pageIndex": 113, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15982", "name": "다정다맛", @@ -5168,6 +12299,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "10675", + "name": "한밀청년밥상", + "categoryName": "한식", + "address": "서울특별시 중랑구 동일로140길 15 1층", + "phone": "-", + "representativeMenu": "김치찌개", + "price": 3000, + "latitude": 37.6043694603432, + "longitude": 127.079965365014, + "pageIndex": 113, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6834", "name": "대도식당", @@ -5182,6 +12327,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "14498", + "name": "한우리", + "categoryName": "한식", + "address": "서울특별시 중랑구 중랑천로 70 (면목동) 1층", + "phone": "-", + "representativeMenu": "잔치국수", + "price": 5000, + "latitude": 37.591448171182655, + "longitude": 127.07321790898509, + "pageIndex": 114, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17127", "name": "대림식당", @@ -5196,6 +12355,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "1025", + "name": "할매김밥", + "categoryName": "한식", + "address": "서울특별시 중랑구 동일로163길 17", + "phone": "02-979-6227", + "representativeMenu": "김치찌개", + "price": 5000, + "latitude": 37.6118077346557, + "longitude": 127.076327305169, + "pageIndex": 114, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14394", "name": "대복갈비", @@ -5211,44 +12384,16 @@ "regionName": "경상남도" }, { - "bsshSn": "17558", - "name": "완판생국수", + "bsshSn": "15225", + "name": "행복한 한우돈", "categoryName": "한식", - "address": "서울특별시 종로구 종로 258 (종로6가) 1층", - "phone": "02-2272-0066", - "representativeMenu": "멸치국수", - "price": 5500, - "latitude": 37.5706572089172, - "longitude": 127.00647971676864, - "pageIndex": 8, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "944", - "name": "왕관커피숍", - "categoryName": "기타요식업", - "address": "서울특별시 종로구 종로 222 (종로5가)", - "phone": "02-2266-8365", - "representativeMenu": "커피", - "price": 2000, - "latitude": 37.570760396587, - "longitude": 127.002357657235, - "pageIndex": 8, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "19246", - "name": "유로시안커피전문점", - "categoryName": "기타요식업", - "address": "서울특별시 종로구 종로40길 4 (종로6가) 1층", - "phone": "02-2268-1007", - "representativeMenu": "아메리카노(16oz) 포장", - "price": 1500, - "latitude": 37.57075442433323, - "longitude": 127.00654859833715, - "pageIndex": 8, + "address": "서울특별시 중랑구 면목로 365 (면목동) 1층", + "phone": "010-7795-5903", + "representativeMenu": "삼겹살(200g)", + "price": 10000, + "latitude": 37.584782148814455, + "longitude": 127.08818041946849, + "pageIndex": 114, "regionCode": "11", "regionName": "서울특별시" }, @@ -5267,18 +12412,18 @@ "regionName": "부산광역시" }, { - "bsshSn": "1635", - "name": "용두산이용원", - "categoryName": "이용업", - "address": "부산광역시 중구 남포길 43 (남포동2가)", - "phone": "051-242-7007", - "representativeMenu": "커트", - "price": 5000, - "latitude": 35.0981609773096, - "longitude": 129.033460927363, - "pageIndex": 8, - "regionCode": "26", - "regionName": "부산광역시" + "bsshSn": "17624", + "name": "현미숯불갈비", + "categoryName": "한식", + "address": "서울특별시 중랑구 면목로48길 65 (면목동) 1층", + "phone": "02-2209-5484", + "representativeMenu": "김치찌개", + "price": 7000, + "latitude": 37.58207163110791, + "longitude": 127.09227715845628, + "pageIndex": 115, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "1658", @@ -5294,6 +12439,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "1018", + "name": "화성각", + "categoryName": "중식", + "address": "서울특별시 중랑구 면목로48길 37", + "phone": "02-432-8301", + "representativeMenu": "자장면", + "price": 4000, + "latitude": 37.5822683789334, + "longitude": 127.090720477178, + "pageIndex": 116, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14157", "name": "재성밀면", @@ -5308,6 +12467,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "19282", + "name": "황태식당", + "categoryName": "한식", + "address": "서울특별시 중랑구 봉화산로30길 37 (중화동) 1층", + "phone": "-", + "representativeMenu": "백반", + "price": 7000, + "latitude": 37.60059738843938, + "longitude": 127.08530772179701, + "pageIndex": 116, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2013", "name": "장성루", @@ -5322,6 +12495,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "15352", + "name": "고향산천", + "categoryName": "한식", + "address": "서울특별시 성북구 보국문로 154 (정릉동) 1층", + "phone": "02-909-2068", + "representativeMenu": "비빔국수", + "price": 6000, + "latitude": 37.61669932643618, + "longitude": 127.0042059702094, + "pageIndex": 118, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2025", "name": "장셰프한식전통중화요리", @@ -5336,6 +12523,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "18841", + "name": "꾸이꾸이 멱살", + "categoryName": "한식", + "address": "서울특별시 성북구 동소문로22길 25-5 (동선동1가) 1층", + "phone": "02-928-7999", + "representativeMenu": "멱살(120g)", + "price": 9900, + "latitude": 37.59194473176575, + "longitude": 127.0182606797179, + "pageIndex": 119, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10078", "name": "제일분식", @@ -5350,6 +12551,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "18844", + "name": "낙지사랑", + "categoryName": "한식", + "address": "서울특별시 성북구 종암로 129 (종암동) 2층", + "phone": "02-986-6868", + "representativeMenu": "낙지덮밥", + "price": 9000, + "latitude": 37.601432303407066, + "longitude": 127.03272344105156, + "pageIndex": 119, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2014", "name": "중해반점", @@ -5364,6 +12579,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "15350", + "name": "대중식당", + "categoryName": "한식", + "address": "서울특별시 성북구 정릉로29길 23 (정릉동) 1층", + "phone": "02-943-4840", + "representativeMenu": "백반", + "price": 8000, + "latitude": 37.60430955542665, + "longitude": 127.01530622798631, + "pageIndex": 119, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2224", "name": "월미식당", @@ -5378,6 +12607,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "756", + "name": "독일베이커리", + "categoryName": "베이커리", + "address": "서울특별시 성북구 삼양로50", + "phone": "-", + "representativeMenu": "단팥빵", + "price": 700, + "latitude": 37.6075962650866, + "longitude": 127.023820814466, + "pageIndex": 120, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13118", "name": "일등짬뽕", @@ -5392,6 +12635,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "777", + "name": "동네", + "categoryName": "한식", + "address": "서울특별시 성북구 개운사길 22-5 지하", + "phone": "-", + "representativeMenu": "김치찌개 된장찌개 순두부찌개", + "price": 7500, + "latitude": 37.5874944782335, + "longitude": 127.029586004467, + "pageIndex": 121, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2270", "name": "우리뷔페", @@ -5406,6 +12663,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "16770", + "name": "또래끼리", + "categoryName": "한식", + "address": "서울특별시 성북구 개운사길 22-5 (안암동5가) 1층", + "phone": "0507-1424-6694", + "representativeMenu": "김치볶음밥", + "price": 7000, + "latitude": 37.58749447152897, + "longitude": 127.02958599079939, + "pageIndex": 121, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14226", "name": "이가진우동", @@ -5420,6 +12691,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "15252", + "name": "레드컵스떡볶이&컵닭", + "categoryName": "한식", + "address": "서울특별시 성북구 고려대로24길 61 (안암동5가) 1층", + "phone": "02-922-9918", + "representativeMenu": "떡볶이", + "price": 4000, + "latitude": 37.583493745199604, + "longitude": 127.02960727857395, + "pageIndex": 121, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2565", "name": "부림식당", @@ -5435,18 +12720,18 @@ "regionName": "대전광역시" }, { - "bsshSn": "2532", - "name": "뿌리미용실", - "categoryName": "미용업", - "address": "대전광역시 동구 충무로 219 (인동)", - "phone": "042-286-4444", - "representativeMenu": "미용료(커트)", + "bsshSn": "778", + "name": "명가추어탕보리밥", + "categoryName": "한식", + "address": "서울특별시 성북구 오패산로 6-9", + "phone": "02-916-4443", + "representativeMenu": "추어탕", "price": 8000, - "latitude": 36.3225191758149, - "longitude": 127.440235253078, - "pageIndex": 8, - "regionCode": "30", - "regionName": "대전광역시" + "latitude": 37.6034088294682, + "longitude": 127.037922566416, + "pageIndex": 122, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "17349", @@ -5462,6 +12747,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "770", + "name": "미락(우성)", + "categoryName": "한식", + "address": "서울특별시 성북구 화랑로25길 13", + "phone": "02-915-3334", + "representativeMenu": "돼지갈비(200g)국내산", + "price": 8000, + "latitude": 37.6091619740138, + "longitude": 127.052177910553, + "pageIndex": 123, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11315", "name": "탕짜", @@ -5476,6 +12775,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "11572", + "name": "밀밭손칼국수", + "categoryName": "한식", + "address": "서울특별시 성북구 보문로 156-3 1층", + "phone": "02-953-8894", + "representativeMenu": "육개장", + "price": 8000, + "latitude": 37.588841121152, + "longitude": 127.017218298384, + "pageIndex": 123, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "3001", "name": "태화식육식당", @@ -5490,6 +12803,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "15351", + "name": "산마을", + "categoryName": "한식", + "address": "서울특별시 성북구 솔샘로6길 36-15 (정릉동) 지1층 제비03호", + "phone": "02-911-0456", + "representativeMenu": "비빔밥", + "price": 7000, + "latitude": 37.60875069253795, + "longitude": 127.00733671926129, + "pageIndex": 124, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10178", "name": "옛날통닭", @@ -5504,6 +12831,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "15923", + "name": "소풍가는날 김밥", + "categoryName": "한식", + "address": "서울특별시 성북구 보국문로11길 8 (정릉동) 1층", + "phone": "010-8335-5432", + "representativeMenu": "제육볶음", + "price": 10000, + "latitude": 37.608587636101056, + "longitude": 127.00954325591464, + "pageIndex": 125, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19180", "name": "오가네빵굼터", @@ -5518,6 +12859,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "780", + "name": "아리랑 수미감자탕", + "categoryName": "한식", + "address": "서울특별시 성북구 아리랑로54 1층(동선동5가)", + "phone": "0507-1386-9255", + "representativeMenu": "뼈해장국", + "price": 8000, + "latitude": 37.5975515072035, + "longitude": 127.014883204875, + "pageIndex": 125, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10191", "name": "유정칼국수", @@ -5532,6 +12887,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "14465", + "name": "언니네김밥", + "categoryName": "한식", + "address": "서울특별시 성북구 보국문로11길 23 (정릉동) 1층", + "phone": "02-6402-2727", + "representativeMenu": "언니네김밥", + "price": 3500, + "latitude": 37.608563671981614, + "longitude": 127.0087712499381, + "pageIndex": 126, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "16805", "name": "대왕칼국수", @@ -5546,6 +12915,20 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "10657", + "name": "옐로치킨7&바로돈까스", + "categoryName": "한식", + "address": "서울특별시 성북구 아리랑로19길 48 (정릉동)", + "phone": "02-913-2360", + "representativeMenu": "수제돈까스", + "price": 7000, + "latitude": 37.6025403837257, + "longitude": 127.010728685897, + "pageIndex": 126, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19003", "name": "데일리샌듀(DailySandew)", @@ -5560,6 +12943,20 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "10656", + "name": "옛날중국집", + "categoryName": "중식", + "address": "서울특별시 성북구 성북로8길 8 (성북동)", + "phone": "02-764-0094", + "representativeMenu": "짜장면", + "price": 6000, + "latitude": 37.5908227672503, + "longitude": 127.004375540476, + "pageIndex": 126, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14336", "name": "도담칡냉면", @@ -5575,18 +12972,18 @@ "regionName": "경기도" }, { - "bsshSn": "14020", - "name": "동남사우나", - "categoryName": "목욕업", - "address": "경기도 수원시 장안구 영화로25번길 22 (영화동, 태영아파트) .", - "phone": "031-243-6422", - "representativeMenu": "목욕비", - "price": 10000, - "latitude": 37.288921701882735, - "longitude": 127.00821781483458, - "pageIndex": 8, - "regionCode": "41", - "regionName": "경기도" + "bsshSn": "784", + "name": "오늘김밥", + "categoryName": "한식", + "address": "서울특별시 성북구 보문로 157-1 1층", + "phone": "02-925-8558", + "representativeMenu": "된장찌개", + "price": 6000, + "latitude": 37.5885975549306, + "longitude": 127.016786747397, + "pageIndex": 127, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "4328", @@ -5603,18 +13000,18 @@ "regionName": "강원특별자치도" }, { - "bsshSn": "4332", - "name": "바위목욕탕", - "categoryName": "목욕업", - "address": "강원특별자치도 춘천시 춘천로213번길 9 (효자동)", - "phone": "033-253-3610", - "representativeMenu": "대인", - "price": 8000, - "latitude": 37.8781770353052, - "longitude": 127.737068247626, - "pageIndex": 8, - "regionCode": "51", - "regionName": "강원특별자치도" + "bsshSn": "18842", + "name": "웅이네 손칼국수", + "categoryName": "한식", + "address": "서울특별시 성북구 돌곶이로27길 42 (장위동) 1층", + "phone": "02-943-0378", + "representativeMenu": "칼국수", + "price": 7000, + "latitude": 37.61136426044229, + "longitude": 127.05327848462039, + "pageIndex": 128, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "4382", @@ -5630,6 +13027,20 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "759", + "name": "원도넛", + "categoryName": "기타요식업", + "address": "서울특별시 성북구 돌곶이로 29 1층(석관동)", + "phone": "02-695-0707", + "representativeMenu": "글레이즈/꽈배기", + "price": 1400, + "latitude": 37.6069130944963, + "longitude": 127.060852972811, + "pageIndex": 128, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "4759", "name": "내고향맛집", @@ -5645,18 +13056,18 @@ "regionName": "충청북도" }, { - "bsshSn": "14757", - "name": "내수시민미용실", - "categoryName": "미용업", - "address": "충청북도 청주시 청원구 내수읍 내수로 729-2", - "phone": "043-214-5124", - "representativeMenu": "커트", - "price": 6000, - "latitude": 36.72673097882712, - "longitude": 127.53610288381759, - "pageIndex": 8, - "regionCode": "43", - "regionName": "충청북도" + "bsshSn": "767", + "name": "원준식당", + "categoryName": "한식", + "address": "서울특별시 성북구 장위로38길 67", + "phone": "02-915-0820", + "representativeMenu": "물냉면", + "price": 6500, + "latitude": 37.6103803919803, + "longitude": 127.051539541872, + "pageIndex": 128, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "13536", @@ -5672,6 +13083,20 @@ "regionCode": "43", "regionName": "충청북도" }, + { + "bsshSn": "16768", + "name": "월곡동 할매떡볶이", + "categoryName": "한식", + "address": "서울특별시 성북구 오패산로19길 46 (하월곡동) 1층", + "phone": "070-7537-1454", + "representativeMenu": "떡볶이", + "price": 3000, + "latitude": 37.60924928905219, + "longitude": 127.03331820363316, + "pageIndex": 129, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15580", "name": "더드림빵", @@ -5687,18 +13112,18 @@ "regionName": "충청남도" }, { - "bsshSn": "4912", - "name": "동은헤어", - "categoryName": "미용업", - "address": "충청남도 천안시 동남구 새말3길 38-4 지하1층(신방동)", - "phone": "070-4036-7721", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.7945688750786, - "longitude": 127.131044743835, - "pageIndex": 8, - "regionCode": "44", - "regionName": "충청남도" + "bsshSn": "15451", + "name": "유정식당", + "categoryName": "한식", + "address": "서울특별시 성북구 북악산로29길 21 (종암동) 1층", + "phone": "02-928-6256", + "representativeMenu": "뚝배기불고기", + "price": 9000, + "latitude": 37.593294236172554, + "longitude": 127.0346377045632, + "pageIndex": 129, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15798", @@ -5714,6 +13139,20 @@ "regionCode": "44", "regionName": "충청남도" }, + { + "bsshSn": "785", + "name": "이모네식당", + "categoryName": "한식", + "address": "서울특별시 성북구 안암로73-3", + "phone": "-", + "representativeMenu": "제육덮밥", + "price": 7000, + "latitude": 37.5830526568282, + "longitude": 127.028922504119, + "pageIndex": 129, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5411", "name": "아리랑하우스", @@ -5728,6 +13167,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "18847", + "name": "이자카야준", + "categoryName": "일식", + "address": "서울특별시 성북구 장월로 96 (장위동) 2층", + "phone": "02-917-3452", + "representativeMenu": "회덮밥", + "price": 8000, + "latitude": 37.61432990805818, + "longitude": 127.04878241310507, + "pageIndex": 130, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5403", "name": "야미전북대점", @@ -5743,18 +13196,18 @@ "regionName": "전북특별자치도" }, { - "bsshSn": "18216", - "name": "에바다미용실", - "categoryName": "미용업", - "address": "전북특별자치도 전주시 완산구 관선1길 74-4 (남노송동) 1층", - "phone": "-", - "representativeMenu": "커트", - "price": 10000, - "latitude": 35.81910634092517, - "longitude": 127.15785208426966, - "pageIndex": 8, - "regionCode": "52", - "regionName": "전북특별자치도" + "bsshSn": "18200", + "name": "정이든김밥", + "categoryName": "한식", + "address": "서울특별시 성북구 보국문로 19-8 (정릉동) 1층", + "phone": "02-909-3382", + "representativeMenu": "땡초김밥", + "price": 4000, + "latitude": 37.606427686488104, + "longitude": 127.01047902556422, + "pageIndex": 130, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "15996", @@ -5770,6 +13223,20 @@ "regionCode": "52", "regionName": "전북특별자치도" }, + { + "bsshSn": "766", + "name": "착한짬뽕더착한탕수육", + "categoryName": "중식", + "address": "서울특별시 성북구 월곡로18길 4 2층(하월곡동)", + "phone": "02-601-3559", + "representativeMenu": "짜장면", + "price": 4500, + "latitude": 37.6015932065234, + "longitude": 127.041768969884, + "pageIndex": 131, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "5622", "name": "예향밥상", @@ -5784,6 +13251,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "787", + "name": "청년밥상 문간", + "categoryName": "한식", + "address": "서울특별시 성북구 보국문로11길 18-2 2층", + "phone": "02-743-6031", + "representativeMenu": "김치찌개", + "price": 3000, + "latitude": 37.6088609651749, + "longitude": 127.009098506123, + "pageIndex": 131, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10496", "name": "옛날짜장", @@ -5798,6 +13279,20 @@ "regionCode": "46", "regionName": "전라남도" }, + { + "bsshSn": "15325", + "name": "카페플라워", + "categoryName": "기타요식업", + "address": "서울특별시 성북구 성북로4길 52 (돈암동, 한신한진아파트) 104호", + "phone": "010-4897-4144", + "representativeMenu": "아메리카노", + "price": 1500, + "latitude": 37.59109173463164, + "longitude": 127.00704694290194, + "pageIndex": 131, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10502", "name": "용일식육식당", @@ -5813,18 +13308,18 @@ "regionName": "전라남도" }, { - "bsshSn": "10500", - "name": "우아미미용실", - "categoryName": "미용업", - "address": "전라남도 목포시 영산로250번길 13 (용당동)", - "phone": "061-277-1869", - "representativeMenu": "커트(기본)", - "price": 5000, - "latitude": 34.8020067240489, - "longitude": 126.39447577251, - "pageIndex": 8, - "regionCode": "46", - "regionName": "전라남도" + "bsshSn": "18126", + "name": "한선생부엌", + "categoryName": "한식", + "address": "서울특별시 성북구 돌곶이로18길 3-3 (석관동) 1층", + "phone": "02-960-7306", + "representativeMenu": "한식반찬(150g)", + "price": 3000, + "latitude": 37.60927410853928, + "longitude": 127.05923324386661, + "pageIndex": 132, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "11261", @@ -5840,6 +13335,20 @@ "regionCode": "47", "regionName": "경상북도" }, + { + "bsshSn": "768", + "name": "홍두깨손칼국수", + "categoryName": "한식", + "address": "서울특별시 성북구 보문로40길 5", + "phone": "02-953-5595", + "representativeMenu": "칼국수", + "price": 5000, + "latitude": 37.5917381701651, + "longitude": 127.013802528612, + "pageIndex": 133, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "6831", "name": "대봉막창", @@ -5854,6 +13363,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "11575", + "name": "홍두깨손칼국수", + "categoryName": "한식", + "address": "서울특별시 성북구 오패산로3길 119 1층(하월곡동)", + "phone": "02-942-1235", + "representativeMenu": "칼국수", + "price": 6000, + "latitude": 37.6082944944716, + "longitude": 127.033285848664, + "pageIndex": 133, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14220", "name": "대패3000냥삼겹살", @@ -5868,6 +13391,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "16769", + "name": "홍칼국수", + "categoryName": "한식", + "address": "서울특별시 성북구 아리랑로 33 (동소문동7가) 1층", + "phone": "02-923-9402", + "representativeMenu": "칼국수", + "price": 5000, + "latitude": 37.595735767616475, + "longitude": 127.01555314993159, + "pageIndex": 133, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15973", "name": "돌솥밥 수", @@ -5882,6 +13419,20 @@ "regionCode": "48", "regionName": "경상남도" }, + { + "bsshSn": "19376", + "name": "금복이네", + "categoryName": "한식", + "address": "서울특별시 강북구 인수봉로 195 (수유동) 1층", + "phone": "-", + "representativeMenu": "백반", + "price": 7000, + "latitude": 37.63716551521585, + "longitude": 127.01277501851514, + "pageIndex": 134, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "7121", "name": "김희선제주몸국", @@ -5896,6 +13447,20 @@ "regionCode": "50", "regionName": "제주특별자치도" }, + { + "bsshSn": "17927", + "name": "다온한식", + "categoryName": "한식", + "address": "서울특별시 강북구 솔매로 84 (미아동) 지하1층", + "phone": "0507-1421-0747", + "representativeMenu": "한식뷔페", + "price": 7500, + "latitude": 37.624988231653774, + "longitude": 127.02161847748827, + "pageIndex": 134, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "14247", "name": "꽃가마식당", @@ -5911,58 +13476,16 @@ "regionName": "제주특별자치도" }, { - "bsshSn": "18039", - "name": "꽃이피어나", - "categoryName": "미용업", - "address": "제주특별자치도 제주시 도남로 102-12 (도남동) 꽃이피어나", - "phone": "064-722-1202", - "representativeMenu": "커트", - "price": 10000, - "latitude": 33.49138991942305, - "longitude": 126.52711922981103, - "pageIndex": 8, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "948", - "name": "은미용실", - "categoryName": "미용업", - "address": "서울특별시 종로구 사직로 108-6 (내자동)", - "phone": "02-738-1882", - "representativeMenu": "커트", - "price": 5000, - "latitude": 37.5757821511679, - "longitude": 126.970611077009, - "pageIndex": 9, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "19244", - "name": "을밀대 (소문난국밥전문)", + "bsshSn": "17923", + "name": "대중집", "categoryName": "한식", - "address": "서울특별시 종로구 수표로 131 (낙원동) 1층", - "phone": "02-742-1633", - "representativeMenu": "우거지해장국", - "price": 3000, - "latitude": 37.572493575407705, - "longitude": 126.98826091182536, - "pageIndex": 9, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "11182", - "name": "이레이발관", - "categoryName": "이용업", - "address": "서울특별시 종로구 수표로 115 (낙원동)", - "phone": "010-7192-6413", - "representativeMenu": "커트", - "price": 7000, - "latitude": 37.5715425171338, - "longitude": 126.989053894726, - "pageIndex": 9, + "address": "서울특별시 강북구 도봉로 259 (수유동) 1층 14호", + "phone": "02-980-1565", + "representativeMenu": "순대국", + "price": 9000, + "latitude": 37.63153785991017, + "longitude": 127.02386424656332, + "pageIndex": 135, "regionCode": "11", "regionName": "서울특별시" }, @@ -5980,6 +13503,20 @@ "regionCode": "26", "regionName": "부산광역시" }, + { + "bsshSn": "126", + "name": "만미정 식당", + "categoryName": "한식", + "address": "서울특별시 강북구 솔매로43길 96 1층", + "phone": "02-983-8884", + "representativeMenu": "김치찌개백반", + "price": 7000, + "latitude": 37.629930418149, + "longitude": 127.022840651737, + "pageIndex": 135, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "19098", "name": "정가는집밥", @@ -5995,18 +13532,18 @@ "regionName": "부산광역시" }, { - "bsshSn": "11185", - "name": "정원이용원", - "categoryName": "이용업", - "address": "부산광역시 중구 대청로134번길16 (동광동3가)", - "phone": "051-246-0108", - "representativeMenu": "커트", - "price": 10000, - "latitude": 35.1014290808544, - "longitude": 129.034814332461, - "pageIndex": 9, - "regionCode": "26", - "regionName": "부산광역시" + "bsshSn": "14614", + "name": "매일만나", + "categoryName": "한식", + "address": "서울특별시 강북구 삼양로117길 58 (수유동) 1층, 101호", + "phone": "010-8234-0431", + "representativeMenu": "칼국수", + "price": 8000, + "latitude": 37.64433983244436, + "longitude": 127.01324475206988, + "pageIndex": 136, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "17980", @@ -6022,6 +13559,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "130", + "name": "박가네생고기전문점", + "categoryName": "한식", + "address": "서울특별시 강북구 덕릉로28길 63 1층", + "phone": "02-982-2929", + "representativeMenu": "소고기비빔밥", + "price": 9000, + "latitude": 37.6319258777596, + "longitude": 127.024843649663, + "pageIndex": 137, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2015", "name": "천선루", @@ -6036,6 +13587,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "19037", + "name": "방가네 해물짬뽕", + "categoryName": "중식", + "address": "서울특별시 강북구 오패산로 135 (미아동) 1층", + "phone": "02-988-4005", + "representativeMenu": "짜장면", + "price": 5000, + "latitude": 37.61391220980939, + "longitude": 127.0337605934294, + "pageIndex": 137, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "10070", "name": "춘사김밥", @@ -6050,6 +13615,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "131", + "name": "번동식당", + "categoryName": "한식", + "address": "서울특별시 강북구 덕릉로40길 11 (번동)", + "phone": "02-985-0370", + "representativeMenu": "한식뷔페", + "price": 5000, + "latitude": 37.634609946891, + "longitude": 127.030469782574, + "pageIndex": 137, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "17981", "name": "콩나물과시래기밥맛집", @@ -6064,6 +13643,20 @@ "regionCode": "27", "regionName": "대구광역시" }, + { + "bsshSn": "15948", + "name": "빵과함께", + "categoryName": "베이커리", + "address": "서울특별시 강북구 인수봉로77길 15 (수유동) 1층", + "phone": "02-900-8503", + "representativeMenu": "단팥빵", + "price": 700, + "latitude": 37.64433520421588, + "longitude": 127.0098808230791, + "pageIndex": 138, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2227", "name": "장터삼겹살(신흥)", @@ -6078,6 +13671,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "128", + "name": "음밥협동조합", + "categoryName": "한식", + "address": "서울특별시 강북구 솔매로50길 78 1층(미아동)", + "phone": "02-992-2048", + "representativeMenu": "오늘의 메뉴", + "price": 8000, + "latitude": 37.6230889892574, + "longitude": 127.02810939564, + "pageIndex": 141, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2228", "name": "장터삼겹살(연안)", @@ -6092,6 +13699,20 @@ "regionCode": "28", "regionName": "인천광역시" }, + { + "bsshSn": "111", + "name": "카페스타", + "categoryName": "기타요식업", + "address": "서울특별시 강북구 삼각산로 71 1층", + "phone": "-", + "representativeMenu": "원두커피", + "price": 2500, + "latitude": 37.6401225859536, + "longitude": 127.012279522984, + "pageIndex": 142, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15362", "name": "인촌", @@ -6106,6 +13727,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "15946", + "name": "해물칼국수수제비", + "categoryName": "한식", + "address": "서울특별시 강북구 수유로 24 (수유동) 1층", + "phone": "02-988-3381", + "representativeMenu": "칼국수", + "price": 6000, + "latitude": 37.63296345004117, + "longitude": 127.0191440214576, + "pageIndex": 143, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13190", "name": "전지적돼지시점", @@ -6120,6 +13755,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "463", + "name": "김가네국수집", + "categoryName": "한식", + "address": "서울특별시 도봉구 도봉로153길 51", + "phone": "02-955-1357", + "representativeMenu": "칼국수", + "price": 6500, + "latitude": 37.6698653658525, + "longitude": 127.0404813856, + "pageIndex": 143, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11652", "name": "종합분식", @@ -6134,6 +13783,20 @@ "regionCode": "29", "regionName": "광주광역시" }, + { + "bsshSn": "470", + "name": "김밥타운", + "categoryName": "한식", + "address": "서울특별시 도봉구 도당로15길 3 (방학동)", + "phone": "02-956-2001", + "representativeMenu": "김밥", + "price": 2500, + "latitude": 37.6657622273039, + "longitude": 127.036859170423, + "pageIndex": 143, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2546", "name": "삼대째전통칼국수", @@ -6148,6 +13811,20 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "15311", + "name": "김밥하우스", + "categoryName": "한식", + "address": "서울특별시 도봉구 우이천로4길 9 (창동) 1층", + "phone": "02-994-3632", + "representativeMenu": "김밥", + "price": 2000, + "latitude": 37.63356423695464, + "longitude": 127.03996870341436, + "pageIndex": 144, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13385", "name": "생일집", @@ -6162,6 +13839,20 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "471", + "name": "남원추어탕", + "categoryName": "한식", + "address": "서울특별시 도봉구 해등로 83 (창동)", + "phone": "02-902-0056", + "representativeMenu": "추어탕", + "price": 8000, + "latitude": 37.6510272412012, + "longitude": 127.041383482955, + "pageIndex": 144, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "2540", "name": "성심관", @@ -6176,6 +13867,20 @@ "regionCode": "30", "regionName": "대전광역시" }, + { + "bsshSn": "10339", + "name": "다온", + "categoryName": "한식", + "address": "서울특별시 도봉구 도당로13길34-21 (방학동)", + "phone": "-", + "representativeMenu": "비빔밥", + "price": 8000, + "latitude": 37.666885045002, + "longitude": 127.035635514997, + "pageIndex": 144, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "11390", "name": "태화장터칼국수", @@ -6190,6 +13895,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "16478", + "name": "도봉산콩나물국밥", + "categoryName": "한식", + "address": "서울특별시 도봉구 도봉로181길 53 (도봉동) 1층", + "phone": "02-955-9335", + "representativeMenu": "콩나물국밥", + "price": 6000, + "latitude": 37.68461597970264, + "longitude": 127.0429656928568, + "pageIndex": 145, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13648", "name": "텃밭의반찬&분식", @@ -6204,6 +13923,20 @@ "regionCode": "31", "regionName": "울산광역시" }, + { + "bsshSn": "17008", + "name": "동치냉면쌍문점", + "categoryName": "한식", + "address": "서울특별시 도봉구 우이천로 335 (쌍문동) 1층", + "phone": "02-999-2109", + "representativeMenu": "물냉면", + "price": 8000, + "latitude": 37.64664430942057, + "longitude": 127.0262088247343, + "pageIndex": 145, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "18450", "name": "파송송분식", @@ -6219,18 +13952,18 @@ "regionName": "울산광역시" }, { - "bsshSn": "10199", - "name": "자연셀프 세차장", - "categoryName": "기타비요식업", - "address": "세종특별자치시 금남면 용포로 32", - "phone": "-", - "representativeMenu": "고압세척(2분30초)", - "price": 1000, - "latitude": 36.4613848948516, - "longitude": 127.280691708831, - "pageIndex": 9, - "regionCode": "36", - "regionName": "세종특별자치시" + "bsshSn": "473", + "name": "멸치국수", + "categoryName": "한식", + "address": "서울특별시 도봉구 해등로16길 12", + "phone": "02-994-8233", + "representativeMenu": "김밥", + "price": 3000, + "latitude": 37.6562348415638, + "longitude": 127.040572917949, + "pageIndex": 146, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "19178", @@ -6246,6 +13979,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "474", + "name": "명동분식", + "categoryName": "한식", + "address": "서울특별시 도봉구 도당로13가길 6 (방학동)", + "phone": "02-349-6553", + "representativeMenu": "깁밥", + "price": 2500, + "latitude": 37.6654827924061, + "longitude": 127.035821742602, + "pageIndex": 146, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15901", "name": "정브레드", @@ -6260,6 +14007,20 @@ "regionCode": "36", "regionName": "세종특별자치시" }, + { + "bsshSn": "464", + "name": "미락칼국수", + "categoryName": "한식", + "address": "서울특별시 도봉구 도봉로110길 68 (창동)", + "phone": "02-908-7017", + "representativeMenu": "칼국수", + "price": 7000, + "latitude": 37.6461159676582, + "longitude": 127.037374768708, + "pageIndex": 146, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15900", "name": "집밥한식뷔페", @@ -6275,32 +14036,18 @@ "regionName": "세종특별자치시" }, { - "bsshSn": "3400", - "name": "동남세탁소", - "categoryName": "세탁업", - "address": "경기도 수원시 장안구 만석로101번길 46 (정자동)", - "phone": "031-253-1414", - "representativeMenu": "드라이클리닝", - "price": 7000, - "latitude": 37.3007439187584, - "longitude": 126.991377835815, - "pageIndex": 9, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "3393", - "name": "동아사우나", - "categoryName": "목욕업", - "address": "경기도 수원시 영통구 매여울로40번길 45 (매탄동)", - "phone": "031-214-3537", - "representativeMenu": "일반 입욕비", - "price": 10000, - "latitude": 37.2727443891937, - "longitude": 127.047494082233, - "pageIndex": 9, - "regionCode": "41", - "regionName": "경기도" + "bsshSn": "475", + "name": "박리김밥", + "categoryName": "한식", + "address": "서울특별시 도봉구 덕릉로57길 22 (창동)", + "phone": "02-907-7002", + "representativeMenu": "김밥", + "price": 3000, + "latitude": 37.6396869947247, + "longitude": 127.037375060198, + "pageIndex": 147, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "11391", @@ -6316,6 +14063,20 @@ "regionCode": "41", "regionName": "경기도" }, + { + "bsshSn": "16476", + "name": "박은선닭꼬치", + "categoryName": "기타요식업", + "address": "서울특별시 도봉구 도봉로145길 65 (방학동) 상가 나동 104호", + "phone": "02-3494-0369", + "representativeMenu": "떡꼬치", + "price": 2000, + "latitude": 37.664535863595034, + "longitude": 127.03890403254496, + "pageIndex": 147, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "13795", "name": "박사로냉면", @@ -6331,32 +14092,18 @@ "regionName": "강원특별자치도" }, { - "bsshSn": "11109", - "name": "박설매미용실", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 서부대성로 126-1 1층(운교동)", - "phone": "-", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.8783657017514, - "longitude": 127.73400940214, - "pageIndex": 9, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4342", - "name": "박혜숙헤어", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 춘천로309번길 7 (후평동)", - "phone": "033-257-1360", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.8823136801827, - "longitude": 127.746727606313, - "pageIndex": 9, - "regionCode": "51", - "regionName": "강원특별자치도" + "bsshSn": "16475", + "name": "백송순두부", + "categoryName": "한식", + "address": "서울특별시 도봉구 도당로27길 43 (방학동) 1층", + "phone": "02-3494-1616", + "representativeMenu": "얼큰순두부", + "price": 7000, + "latitude": 37.66930988407001, + "longitude": 127.04081603332443, + "pageIndex": 148, + "regionCode": "11", + "regionName": "서울특별시" }, { "bsshSn": "4383", @@ -6372,6 +14119,20 @@ "regionCode": "51", "regionName": "강원특별자치도" }, + { + "bsshSn": "477", + "name": "북부식당", + "categoryName": "한식", + "address": "서울특별시 도봉구 도봉로152가길 102 (도봉동)", + "phone": "-", + "representativeMenu": "뼈해장국", + "price": 8000, + "latitude": 37.6740728644657, + "longitude": 127.044924059183, + "pageIndex": 149, + "regionCode": "11", + "regionName": "서울특별시" + }, { "bsshSn": "15845", "name": "다정순대국", @@ -6385,7748 +14146,6 @@ "pageIndex": 9, "regionCode": "43", "regionName": "충청북도" - }, - { - "bsshSn": "16073", - "name": "달시쓰", - "categoryName": "기타요식업", - "address": "충청북도 청주시 서원구 창직로 104 (사직동) 1층", - "phone": "-", - "representativeMenu": "아메리카노", - "price": 2000, - "latitude": 36.63017696582773, - "longitude": 127.47323022163665, - "pageIndex": 9, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15579", - "name": "듀팡과자점", - "categoryName": "베이커리", - "address": "충청남도 천안시 서북구 늘푸른5길 22 (두정동) 102호", - "phone": "041-556-0456", - "representativeMenu": "슈크림빵", - "price": 1600, - "latitude": 36.827325601311905, - "longitude": 127.12967689750721, - "pageIndex": 9, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "14667", - "name": "디저트카페 아마이", - "categoryName": "기타요식업", - "address": "충청남도 천안시 동남구 신촌4로 34 (신방동) .", - "phone": "0507-1324-8466", - "representativeMenu": "아메리카노", - "price": 3500, - "latitude": 36.789176140906456, - "longitude": 127.1251417877315, - "pageIndex": 9, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "15305", - "name": "로봇카페 쉼21", - "categoryName": "기타요식업", - "address": "충청남도 천안시 서북구 불당21로 71 (불당동) 1층 108호", - "phone": "0507-1365-2171", - "representativeMenu": "아메리카노", - "price": 1500, - "latitude": 36.81296311764873, - "longitude": 127.1081762349608, - "pageIndex": 9, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "5445", - "name": "자유식당", - "categoryName": "한식", - "address": "전북특별자치도 전주시 완산구 풍남문3길 25 (전동)", - "phone": "063-286-1986", - "representativeMenu": "청국장", - "price": 6000, - "latitude": 35.8148512494836, - "longitude": 127.146919020928, - "pageIndex": 9, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5432", - "name": "전원갈비", - "categoryName": "한식", - "address": "전북특별자치도 전주시 완산구 서신천변로 57", - "phone": "063-242-8560", - "representativeMenu": "우렁쌈밥", - "price": 8000, - "latitude": 35.8306785212809, - "longitude": 127.114061757425, - "pageIndex": 9, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "18285", - "name": "울도숯불갈비", - "categoryName": "한식", - "address": "전라남도 목포시 대양로 107-1 (연산동) 1층", - "phone": "061-276-7800", - "representativeMenu": "돌판비빔밥", - "price": 9000, - "latitude": 34.821537871081894, - "longitude": 126.39121589517268, - "pageIndex": 9, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5624", - "name": "유달산추어탕", - "categoryName": "한식", - "address": "전라남도 목포시 노적봉길 22-1 (죽동)", - "phone": "061-270-7030", - "representativeMenu": "추어탕", - "price": 9000, - "latitude": 34.7900302636707, - "longitude": 126.383065291475, - "pageIndex": 9, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "11413", - "name": "유달손칼국수", - "categoryName": "한식", - "address": "전라남도 목포시 상동로 65 (상동) 유달손칼국수", - "phone": "061-278-1093", - "representativeMenu": "멸치칼국수", - "price": 7500, - "latitude": 34.81503671921055, - "longitude": 126.41272602035068, - "pageIndex": 9, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "10498", - "name": "일로순대", - "categoryName": "한식", - "address": "전라남도 목포시 삼일로13번길 4 (남교동)", - "phone": "061-243-9424", - "representativeMenu": "순대", - "price": 8000, - "latitude": 34.7936987314894, - "longitude": 126.383236507782, - "pageIndex": 9, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "18335", - "name": "기와집식당", - "categoryName": "한식", - "address": "경상북도 포항시 남구 연일읍 동문로 45-2 기와집식당", - "phone": "054-283-9888", - "representativeMenu": "소고기국밥", - "price": 8000, - "latitude": 35.994115629687634, - "longitude": 129.35170500121095, - "pageIndex": 9, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "14714", - "name": "길커피", - "categoryName": "기타요식업", - "address": "경상북도 포항시 남구 송도해안길73번길 2 (송도동) 1층", - "phone": "-", - "representativeMenu": "원두커피", - "price": 2000, - "latitude": 36.03715240915286, - "longitude": 129.37803218689874, - "pageIndex": 9, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "18614", - "name": "동마산시장 815족발", - "categoryName": "한식", - "address": "경상남도 창원시 마산회원구 합성남9길 64 (합성동) 1층", - "phone": "055-255-0815", - "representativeMenu": "족발한팩", - "price": 10000, - "latitude": 35.23951128222638, - "longitude": 128.58769435088436, - "pageIndex": 9, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "16320", - "name": "동북식당", - "categoryName": "한식", - "address": "경상남도 창원시 마산회원구 회원동15길 32 (회원동, 대양빌라) 동북식당", - "phone": "055-224-4004", - "representativeMenu": "한정식", - "price": 7000, - "latitude": 35.2204142401416, - "longitude": 128.57174853653618, - "pageIndex": 9, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "11421", - "name": "동촌손칼국수", - "categoryName": "한식", - "address": "경상남도 창원시 마산회원구 합성남3길 39 (합성동)", - "phone": "055-255-3378", - "representativeMenu": "손칼국수", - "price": 5500, - "latitude": 35.2388486973012, - "longitude": 128.585592677036, - "pageIndex": 9, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "7044", - "name": "남문이용원", - "categoryName": "이용업", - "address": "제주특별자치도 제주시 남성로 125 (삼도일동)", - "phone": "064-757-5935", - "representativeMenu": "일반컷트", - "price": 10000, - "latitude": 33.5090975162483, - "longitude": 126.518756056763, - "pageIndex": 9, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "7222", - "name": "남촌식당", - "categoryName": "한식", - "address": "제주특별자치도 제주시 서광로 174", - "phone": "064-753-1502", - "representativeMenu": "멸치국수", - "price": 6000, - "latitude": 33.4997144726038, - "longitude": 126.514871117614, - "pageIndex": 9, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "10624", - "name": "남현순대", - "categoryName": "한식", - "address": "제주특별자치도 제주시 천수로 56 108동 102호", - "phone": "064-751-3374", - "representativeMenu": "멸치국수", - "price": 7000, - "latitude": 33.5039520338025, - "longitude": 126.542601590797, - "pageIndex": 9, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "19061", - "name": "이모네감자탕", - "categoryName": "한식", - "address": "서울특별시 종로구 새문안로9길 29-3 (당주동) 1층", - "phone": "02-733-7314", - "representativeMenu": "뼈해장국", - "price": 9000, - "latitude": 37.571272473253565, - "longitude": 126.97522954478573, - "pageIndex": 10, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "950", - "name": "이소빈 머리나라", - "categoryName": "미용업", - "address": "서울특별시 종로구 명륜길 9 (명륜3가)", - "phone": "02-766-0545", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.5879678107949, - "longitude": 126.996150319087, - "pageIndex": 10, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "955", - "name": "인사동칼국수", - "categoryName": "한식", - "address": "서울특별시 종로구 인사동5길 25 1층", - "phone": "02-737-1151", - "representativeMenu": "칼국수", - "price": 7500, - "latitude": 37.5720973140597, - "longitude": 126.985392406484, - "pageIndex": 10, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "17053", - "name": "쭈니네부엌", - "categoryName": "한식", - "address": "부산광역시 중구 중구로 86 (대청동4가) 1층", - "phone": "051-467-9359", - "representativeMenu": "추억의쫄우동", - "price": 6000, - "latitude": 35.10453814088189, - "longitude": 129.03021358937883, - "pageIndex": 10, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1639", - "name": "청춘탕수육", - "categoryName": "중식", - "address": "부산광역시 중구 대청로135번길18 (중앙동4가)", - "phone": "051-468-3786", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 35.1043355825209, - "longitude": 129.034908852842, - "pageIndex": 10, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1633", - "name": "카페두콩", - "categoryName": "기타요식업", - "address": "부산광역시 중구 흑교로46번길8 (보수동1가)", - "phone": "-", - "representativeMenu": "아메리카노", - "price": 2500, - "latitude": 35.1034858345236, - "longitude": 129.025890398337, - "pageIndex": 10, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "18938", - "name": "커피컵피", - "categoryName": "기타요식업", - "address": "부산광역시 중구 대청로135번길 13-1 (중앙동4가) 1,2층", - "phone": "0507-2085-0982", - "representativeMenu": "커피", - "price": 2000, - "latitude": 35.10404106218001, - "longitude": 129.03464555501037, - "pageIndex": 10, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "10077", - "name": "특별한돼지국밥", - "categoryName": "한식", - "address": "대구광역시 중구 국채보상로140길 35 (동인동4가) .", - "phone": "053-425-5243", - "representativeMenu": "돼지국밥", - "price": 8000, - "latitude": 35.867239763231744, - "longitude": 128.60637360935215, - "pageIndex": 10, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "14629", - "name": "포항회식당", - "categoryName": "한식", - "address": "대구광역시 중구 대봉로 240 (대봉동, 대봉서한포레스트) 상가 106호. 포항회식당", - "phone": "053-422-4415", - "representativeMenu": "정식", - "price": 7000, - "latitude": 35.860129676053866, - "longitude": 128.6023289015774, - "pageIndex": 10, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "17974", - "name": "한강반점", - "categoryName": "중식", - "address": "대구광역시 중구 달구벌대로387길 42 (대신동) 1층", - "phone": "053-253-7518", - "representativeMenu": "짜장면", - "price": 3000, - "latitude": 35.86500733659813, - "longitude": 128.57524030565048, - "pageIndex": 10, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "2026", - "name": "한양뚝배기감자탕", - "categoryName": "한식", - "address": "대구광역시 중구 국채보상로140길 28 (동인동2가) .", - "phone": "053-424-7161", - "representativeMenu": "뚝배기", - "price": 7000, - "latitude": 35.86756096197846, - "longitude": 128.60615118148775, - "pageIndex": 10, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "14011", - "name": "진국", - "categoryName": "한식", - "address": "인천광역시 중구 제물량로 245-2 (항동1가) 1층", - "phone": "032-772-0321", - "representativeMenu": "콩나물국밥", - "price": 6000, - "latitude": 37.473760992186925, - "longitude": 126.61789147782304, - "pageIndex": 10, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "16952", - "name": "진순두부", - "categoryName": "한식", - "address": "인천광역시 중구 우현로35번길 24-3 (신포동) 1층", - "phone": "032-764-9898", - "representativeMenu": "바지락순두부+솥밥", - "price": 10000, - "latitude": 37.47101351299041, - "longitude": 126.62511183339346, - "pageIndex": 10, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "14225", - "name": "진흥각", - "categoryName": "중식", - "address": "인천광역시 중구 신포로23번길 20 (중앙동4가) 1층", - "phone": "032-772-3058", - "representativeMenu": "유니짜장", - "price": 6500, - "latitude": 37.471703087227134, - "longitude": 126.62392009417408, - "pageIndex": 10, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2249", - "name": "주영미용실", - "categoryName": "미용업", - "address": "광주광역시 동구 무등로375번길 27-1 1층(계림동)", - "phone": "062-529-3184", - "representativeMenu": "성인남녀컷트", - "price": 10000, - "latitude": 35.1630933471234, - "longitude": 126.924296217507, - "pageIndex": 10, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "11310", - "name": "진 숯불갈비", - "categoryName": "중식", - "address": "광주광역시 동구 무등로 529 (산수동)", - "phone": "0507-1482-7550", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 35.1564823477708, - "longitude": 126.937445538702, - "pageIndex": 10, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2277", - "name": "참스민", - "categoryName": "한식", - "address": "광주광역시 동구 남문로 752-3 1층(학동)", - "phone": "062-232-3883", - "representativeMenu": "김밥", - "price": 3000, - "latitude": 35.1370928662675, - "longitude": 126.925449709403, - "pageIndex": 10, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "14318", - "name": "손복순수라상뷔페", - "categoryName": "한식", - "address": "대전광역시 동구 석천로 7-15 (낭월동) 낭월동", - "phone": "042-272-3233", - "representativeMenu": "뷔페(~7세)", - "price": 3000, - "latitude": 36.27595980984733, - "longitude": 127.46565739495651, - "pageIndex": 10, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2533", - "name": "송미용실", - "categoryName": "미용업", - "address": "대전광역시 동구 산내로 1302 (낭월동) 103호", - "phone": "042-271-9443", - "representativeMenu": "미용료(커트)", - "price": 8000, - "latitude": 36.27973981942758, - "longitude": 127.46857116346227, - "pageIndex": 10, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2524", - "name": "수정목욕탕", - "categoryName": "목욕업", - "address": "대전광역시 동구 비래서로62번길 103 (가양동)", - "phone": "042-631-3660", - "representativeMenu": "목욕료", - "price": 6000, - "latitude": 36.3498831171768, - "longitude": 127.449018725201, - "pageIndex": 10, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "18132", - "name": "슈퍼몽테마파크", - "categoryName": "기타비요식업", - "address": "대전광역시 동구 석천로 8 (낭월동) 2층", - "phone": "042-271-1644", - "representativeMenu": "이용료(1시간)", - "price": 5000, - "latitude": 36.27670405471021, - "longitude": 127.46581697285043, - "pageIndex": 10, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "14576", - "name": "할매칼국수", - "categoryName": "한식", - "address": "울산광역시 중구 중앙시장길 21-4 (옥교동) 1층", - "phone": "052-245-1333", - "representativeMenu": "칼국수", - "price": 7000, - "latitude": 35.55535577904836, - "longitude": 129.3236810137489, - "pageIndex": 10, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "2998", - "name": "할머니손칼국시", - "categoryName": "한식", - "address": "울산광역시 중구 화진4길 20 (태화동)", - "phone": "052-245-8542", - "representativeMenu": "칼국수", - "price": 6000, - "latitude": 35.5559132736789, - "longitude": 129.307740756218, - "pageIndex": 10, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "13647", - "name": "홍사부", - "categoryName": "중식", - "address": "울산광역시 중구 내황14길 50 (반구동, 나린헤리티지 2차) .", - "phone": "052-298-0777", - "representativeMenu": "자장면", - "price": 6000, - "latitude": 35.55381618863106, - "longitude": 129.34837209424774, - "pageIndex": 10, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "14612", - "name": "24시해장국", - "categoryName": "한식", - "address": "울산광역시 남구 번영로156번길 23 (달동) 1층", - "phone": "052-274-3344", - "representativeMenu": "순두부찌개", - "price": 9000, - "latitude": 35.53975218505595, - "longitude": 129.33041512613374, - "pageIndex": 10, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "10180", - "name": "침산똥돼지", - "categoryName": "한식", - "address": "세종특별자치시 조치원읍 행복6길 40", - "phone": "044-867-3391", - "representativeMenu": "오삼불고기(점심특선)", - "price": 9000, - "latitude": 36.606084930284, - "longitude": 127.293726259292, - "pageIndex": 10, - "regionCode": "36", - "regionName": "세종특별자치시" - }, - { - "bsshSn": "10187", - "name": "큰나무식당", - "categoryName": "한식", - "address": "세종특별자치시 금남면 대평시장2길 6 1층", - "phone": "044-866-4924", - "representativeMenu": "보리밥", - "price": 8000, - "latitude": 36.4658590703269, - "longitude": 127.282333172075, - "pageIndex": 10, - "regionCode": "36", - "regionName": "세종특별자치시" - }, - { - "bsshSn": "10175", - "name": "한아름식당", - "categoryName": "한식", - "address": "세종특별자치시 연동면 태산로 60 청정상가 102호", - "phone": "044-868-5005", - "representativeMenu": "된장찌개", - "price": 8000, - "latitude": 36.5290966808229, - "longitude": 127.351449156014, - "pageIndex": 10, - "regionCode": "36", - "regionName": "세종특별자치시" - }, - { - "bsshSn": "10197", - "name": "행복한 약초칼국수", - "categoryName": "한식", - "address": "세종특별자치시 보듬3로 8-15 1층 102호(도담동, 해피라움5)", - "phone": "044-862-1128", - "representativeMenu": "칼국수", - "price": 5000, - "latitude": 36.5138053791972, - "longitude": 127.258063600072, - "pageIndex": 10, - "regionCode": "36", - "regionName": "세종특별자치시" - }, - { - "bsshSn": "3387", - "name": "뚱가네", - "categoryName": "한식", - "address": "경기도 수원시 영통구 영통로 217번길5 (영통동)", - "phone": "031-234-5208", - "representativeMenu": "차돌된장찌개", - "price": 7000, - "latitude": 37.2466692531637, - "longitude": 127.056605302185, - "pageIndex": 10, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "19001", - "name": "뚱보네 꽈배기", - "categoryName": "베이커리", - "address": "경기도 수원시 장안구 경수대로1081번길 39 (파장동) 1층", - "phone": "0507-1489-1202", - "representativeMenu": "꽈배기(3개)", - "price": 2000, - "latitude": 37.30773025414107, - "longitude": 126.99299873461685, - "pageIndex": 10, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "18122", - "name": "러너커피로스터스", - "categoryName": "기타요식업", - "address": "경기도 수원시 장안구 만석로209번길 12 (송죽동) 1층", - "phone": "010-3245-3759", - "representativeMenu": "아메리카노", - "price": 2500, - "latitude": 37.305402508312305, - "longitude": 127.00062950713131, - "pageIndex": 10, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "4384", - "name": "밥짓는마을", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 중앙로 63-1 2층(중앙로2가)", - "phone": "033-242-2624", - "representativeMenu": "한식뷔페", - "price": 7000, - "latitude": 37.8793858304165, - "longitude": 127.726806123679, - "pageIndex": 10, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "11725", - "name": "백령밥집", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 백령로 180 (후평동) 가운데 1층", - "phone": "033-241-2287", - "representativeMenu": "가정식백반", - "price": 7000, - "latitude": 37.87627632697244, - "longitude": 127.74631332467781, - "pageIndex": 10, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "16648", - "name": "백양세탁소", - "categoryName": "세탁업", - "address": "강원특별자치도 춘천시 춘천로 263-1 (후평동)", - "phone": "033-252-6311", - "representativeMenu": "양복상의", - "price": 5000, - "latitude": 37.8799279349072, - "longitude": 127.74265772378813, - "pageIndex": 10, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "16651", - "name": "백조컴퓨터세탁", - "categoryName": "세탁업", - "address": "강원특별자치도 춘천시 퇴계로146번길 12-1 (퇴계동)", - "phone": "033-261-8348", - "representativeMenu": "양복상의", - "price": 5000, - "latitude": 37.85855890084086, - "longitude": 127.73469966103542, - "pageIndex": 10, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "15770", - "name": "대길식당", - "categoryName": "한식", - "address": "충청북도 청주시 서원구 창신로 34-1 (사창동) 1층", - "phone": "049-271-0284", - "representativeMenu": "한우내장탕(보통)", - "price": 7000, - "latitude": 36.633961660488815, - "longitude": 127.46479698824699, - "pageIndex": 10, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4737", - "name": "대동관", - "categoryName": "중식", - "address": "충청북도 청주시 청원구 내수읍 내수로 731-2", - "phone": "043-214-0020", - "representativeMenu": "자장면", - "price": 4000, - "latitude": 36.7268063827084, - "longitude": 127.536156682424, - "pageIndex": 10, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15578", - "name": "로스팅포인트 오렌지", - "categoryName": "기타요식업", - "address": "충청남도 천안시 서북구 불당25로 154 (불당동) 118호", - "phone": "-", - "representativeMenu": "핸드드립", - "price": 3000, - "latitude": 36.814917231485325, - "longitude": 127.10795228730834, - "pageIndex": 10, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4961", - "name": "루미너스헤어", - "categoryName": "미용업", - "address": "충청남도 천안시 서북구 서부12길12 (성정동)", - "phone": "041-575-0727", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.8207843702587, - "longitude": 127.137340027875, - "pageIndex": 10, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "11751", - "name": "맛짱김밥", - "categoryName": "한식", - "address": "충청남도 천안시 동남구 원거리11길 42 (원성동)", - "phone": "041-568-7775", - "representativeMenu": "김치찌개", - "price": 6000, - "latitude": 36.8010379639367, - "longitude": 127.157625650438, - "pageIndex": 10, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4962", - "name": "머리못하는집", - "categoryName": "미용업", - "address": "충청남도 천안시 서북구 불당17길 14 (불당동)", - "phone": "041-551-9111", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.8091043219242, - "longitude": 127.11029060282, - "pageIndex": 10, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "5401", - "name": "제일크리너스샵", - "categoryName": "세탁업", - "address": "전북특별자치도 전주시 덕진구 쪽구름로 37", - "phone": "063-211-2177", - "representativeMenu": "양복(1벌)", - "price": 9000, - "latitude": 35.8686263475242, - "longitude": 127.077142048735, - "pageIndex": 10, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "18212", - "name": "조선옥미용실", - "categoryName": "미용업", - "address": "전북특별자치도 전주시 완산구 완산길 105 (서완산동1가) 1층", - "phone": "063-288-1229", - "representativeMenu": "커트(학생)", - "price": 8000, - "latitude": 35.81196716378034, - "longitude": 127.13938563394339, - "pageIndex": 10, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "11327", - "name": "중본이쟁반짜장", - "categoryName": "중식", - "address": "전북특별자치도 전주시 완산구 공북로71", - "phone": "063-271-2223", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 35.826119320872, - "longitude": 127.139523334928, - "pageIndex": 10, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "18286", - "name": "작은곰집", - "categoryName": "한식", - "address": "전라남도 목포시 삼일로13번길 3 (남교동) 작은곰집", - "phone": "061-244-2180", - "representativeMenu": "순대", - "price": 8000, - "latitude": 34.79357861479481, - "longitude": 126.38329621043106, - "pageIndex": 10, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "18287", - "name": "조선국수", - "categoryName": "한식", - "address": "전라남도 목포시 교육로66번길 23-1 (상동) 1층", - "phone": "0507-1303-3481", - "representativeMenu": "비빔국수", - "price": 6000, - "latitude": 34.80412602893619, - "longitude": 126.42234641443257, - "pageIndex": 10, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5625", - "name": "종가집", - "categoryName": "한식", - "address": "전라남도 목포시 노적봉길 22 (죽동)", - "phone": "061-242-7766", - "representativeMenu": "청국장", - "price": 8000, - "latitude": 34.7900216219656, - "longitude": 126.383192100449, - "pageIndex": 10, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "18283", - "name": "진국밥", - "categoryName": "한식", - "address": "전라남도 목포시 영산로250번길 35 (용당동) 주2동 1층", - "phone": "061-278-0009", - "representativeMenu": "돼지머리국밥", - "price": 8000, - "latitude": 34.80020715783033, - "longitude": 126.3957145704502, - "pageIndex": 10, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6324", - "name": "김육환 미용실", - "categoryName": "미용업", - "address": "경상북도 포항시 남구 대이로 14 김육환 미용실", - "phone": "054-281-7918", - "representativeMenu": "여자커트", - "price": 10000, - "latitude": 36.0170774969108, - "longitude": 129.343624477205, - "pageIndex": 10, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "16134", - "name": "까꼬뽀꼬", - "categoryName": "미용업", - "address": "경상북도 포항시 북구 흥해읍 동해대로1574번길 18 까꼬뽀꼬", - "phone": "-", - "representativeMenu": "학생컷", - "price": 10000, - "latitude": 36.11248157816856, - "longitude": 129.34344079201517, - "pageIndex": 10, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "15292", - "name": "둘리왕만두", - "categoryName": "한식", - "address": "경상남도 창원시 의창구 도계로60번길 13-16 (도계동) 둘리왕만두", - "phone": "055-273-8700", - "representativeMenu": "만두", - "price": 5000, - "latitude": 35.257774977009696, - "longitude": 128.63697480240288, - "pageIndex": 10, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "18773", - "name": "따뜻한밥상", - "categoryName": "한식", - "address": "경상남도 창원시 의창구 퇴촌로25번길 6-15 (사림동) 지하 1층", - "phone": "010-2587-5925", - "representativeMenu": "김치찌개", - "price": 3000, - "latitude": 35.24245999906216, - "longitude": 128.6887510304655, - "pageIndex": 10, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "19169", - "name": "만날재삼계탕", - "categoryName": "한식", - "address": "경상남도 창원시 마산합포구 월영동6길 7 (해운동) 2층", - "phone": "055-222-3908", - "representativeMenu": "삼계탕", - "price": 10000, - "latitude": 35.17985383679972, - "longitude": 128.56194235833954, - "pageIndex": 10, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "18741", - "name": "넉둥베기", - "categoryName": "한식", - "address": "제주특별자치도 제주시 서문로 9 (용담일동) 1층", - "phone": "064-743-2585", - "representativeMenu": "돼지머리국밥", - "price": 6000, - "latitude": 33.50976651062224, - "longitude": 126.51245788210441, - "pageIndex": 10, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "16863", - "name": "장원식당", - "categoryName": "한식", - "address": "서울특별시 종로구 창신5나길 3 (창신동) 1층", - "phone": "02-6777-1437", - "representativeMenu": "우거지뼈해장국", - "price": 8000, - "latitude": 37.573776039713145, - "longitude": 127.01117339129199, - "pageIndex": 11, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "959", - "name": "전주콩나물국밥", - "categoryName": "한식", - "address": "서울특별시 종로구 자하문로 3 (내자동)", - "phone": "02-738-8223", - "representativeMenu": "콩나물국밥", - "price": 7000, - "latitude": 37.5764830744797, - "longitude": 126.972264842484, - "pageIndex": 11, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "1634", - "name": "퍼짱", - "categoryName": "기타요식업", - "address": "부산광역시 중구 충장대로9번길 21 1층(중앙동4가)", - "phone": "-", - "representativeMenu": "양지곰탕", - "price": 8500, - "latitude": 35.1072175500747, - "longitude": 129.037444857052, - "pageIndex": 11, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "10021", - "name": "학마을", - "categoryName": "중식", - "address": "부산광역시 중구 중구로 29번길 7 (부평동1가)", - "phone": "051-257-0221", - "representativeMenu": "짜장면", - "price": 4000, - "latitude": 35.1003450042619, - "longitude": 129.02748323782, - "pageIndex": 11, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1661", - "name": "한양왕순대", - "categoryName": "한식", - "address": "부산광역시 중구 해관로20-1 (중앙동)", - "phone": "051-245-9138", - "representativeMenu": "순대국밥", - "price": 9000, - "latitude": 35.1006289027265, - "longitude": 129.035905126423, - "pageIndex": 11, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "10072", - "name": "한우장", - "categoryName": "한식", - "address": "대구광역시 중구 국채보상로 555 (종로1가) (전)", - "phone": "053-257-1125", - "representativeMenu": "설렁탕", - "price": 10000, - "latitude": 35.8709131264325, - "longitude": 128.59143517676986, - "pageIndex": 11, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "17987", - "name": "한울식당", - "categoryName": "한식", - "address": "대구광역시 중구 경상감영길 280 (동인동2가) 동인동", - "phone": "053-425-2462", - "representativeMenu": "정식", - "price": 8000, - "latitude": 35.87080928368533, - "longitude": 128.60257722168762, - "pageIndex": 11, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "14064", - "name": "MHK정미용실", - "categoryName": "미용업", - "address": "대구광역시 동구 반야월로 134-1 (신기동) 동부프라자 나동", - "phone": "010-2829-6158", - "representativeMenu": "커트", - "price": 8000, - "latitude": 35.87268975976554, - "longitude": 128.70304821144194, - "pageIndex": 11, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "2237", - "name": "철이네손수제비랑칼국수(신포)", - "categoryName": "한식", - "address": "인천광역시 중구 개항로 9-1 1층(중앙동4가)", - "phone": "032-777-1159", - "representativeMenu": "얼큰수제비", - "price": 7000, - "latitude": 37.4714042648041, - "longitude": 126.623802333892, - "pageIndex": 11, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2238", - "name": "철이네손수제비랑칼국수(신흥)", - "categoryName": "한식", - "address": "인천광역시 중구 인중로144번길 71-1 (답동)", - "phone": "032-204-8990", - "representativeMenu": "수제비", - "price": 7000, - "latitude": 37.4684000940284, - "longitude": 126.630126454085, - "pageIndex": 11, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2239", - "name": "청수식당", - "categoryName": "한식", - "address": "인천광역시 중구 제물량로206번길 3 (해안동2가)", - "phone": "032-765-8586", - "representativeMenu": "오삼불고기", - "price": 9000, - "latitude": 37.4717703194453, - "longitude": 126.621537648833, - "pageIndex": 11, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2241", - "name": "할매왕족발순대", - "categoryName": "한식", - "address": "인천광역시 중구 우현로45번길 13 (신포동) (신포동)", - "phone": "032-772-6919", - "representativeMenu": "순대국밥", - "price": 9000, - "latitude": 37.47117471982517, - "longitude": 126.62741642573887, - "pageIndex": 11, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2278", - "name": "칠미우동만두", - "categoryName": "한식", - "address": "광주광역시 동구 지산로 69 1층(지산동)", - "phone": "062-228-7228", - "representativeMenu": "김밥", - "price": 3000, - "latitude": 35.1498802119369, - "longitude": 126.933003887435, - "pageIndex": 11, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2280", - "name": "학동김밥", - "categoryName": "한식", - "address": "광주광역시 동구 남문로 683 1층(학동)", - "phone": "062-225-3248", - "representativeMenu": "김밥", - "price": 3000, - "latitude": 35.1315918766729, - "longitude": 126.928644258668, - "pageIndex": 11, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2547", - "name": "신도칼국수", - "categoryName": "한식", - "address": "대전광역시 동구 대전로 825번길 11 (정동)", - "phone": "-", - "representativeMenu": "칼국수", - "price": 7000, - "latitude": 36.3325852871967, - "longitude": 127.430995831215, - "pageIndex": 11, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "16821", - "name": "신미식당", - "categoryName": "한식", - "address": "대전광역시 동구 우암로85번길 35 (삼성동) 1층", - "phone": "042-672-5728", - "representativeMenu": "선지국밥", - "price": 6000, - "latitude": 36.33884769737071, - "longitude": 127.42700019228904, - "pageIndex": 11, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "14611", - "name": "30년전통감자탕", - "categoryName": "한식", - "address": "울산광역시 남구 봉월로8번길 15 (신정동) 1층", - "phone": "0507-1317-8555", - "representativeMenu": "뼈다귀해장국", - "price": 8000, - "latitude": 35.53379995639712, - "longitude": 129.30877505918386, - "pageIndex": 11, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "15122", - "name": "가을정류장", - "categoryName": "일식", - "address": "울산광역시 남구 문수로 295 (옥동) 1층", - "phone": "052-266-1005", - "representativeMenu": "오리지날함박스테이크", - "price": 10000, - "latitude": 35.535986796355175, - "longitude": 129.28599318182114, - "pageIndex": 11, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "2897", - "name": "경북식당", - "categoryName": "한식", - "address": "울산광역시 남구 돋질로 145번길 38-25 -", - "phone": "052-267-7855", - "representativeMenu": "정식", - "price": 7000, - "latitude": 35.544040122471, - "longitude": 129.321265246852, - "pageIndex": 11, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "15109", - "name": "경북칼국수", - "categoryName": "한식", - "address": "울산광역시 남구 월평로37번길 5 (신정동) 1층", - "phone": "052-272-6903", - "representativeMenu": "손칼국수", - "price": 6000, - "latitude": 35.541808785746284, - "longitude": 129.30930615922028, - "pageIndex": 11, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "13003", - "name": "행복한곰탕", - "categoryName": "한식", - "address": "세종특별자치시 절재로 194 (어진동) 중앙타운 317호", - "phone": "-", - "representativeMenu": "곰탕", - "price": 9000, - "latitude": 36.50830733147383, - "longitude": 127.26244504454054, - "pageIndex": 11, - "regionCode": "36", - "regionName": "세종특별자치시" - }, - { - "bsshSn": "18695", - "name": "헤이맨남성컷", - "categoryName": "이용업", - "address": "세종특별자치시 새롬북로 13 (새롬동, 새뜸마을4단지) 상가동 1층", - "phone": "044-864-7004", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.48655065561284, - "longitude": 127.24647322838923, - "pageIndex": 11, - "regionCode": "36", - "regionName": "세종특별자치시" - }, - { - "bsshSn": "14930", - "name": "레알떡볶이", - "categoryName": "한식", - "address": "경기도 수원시 영통구 봉영로 1623 (영통동) 1층 133-2호", - "phone": "0507-1311-8698", - "representativeMenu": "떡볶이", - "price": 3000, - "latitude": 37.25592537670266, - "longitude": 127.07472815939546, - "pageIndex": 11, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "14332", - "name": "렛츠헤어", - "categoryName": "미용업", - "address": "경기도 수원시 권선구 권광로27번길 51 (권선동) 1층", - "phone": "-", - "representativeMenu": "컷트", - "price": 10000, - "latitude": 37.251111070274, - "longitude": 127.02439282380257, - "pageIndex": 11, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "13883", - "name": "만두가게", - "categoryName": "한식", - "address": "경기도 수원시 팔달구 수원천로 315 (남수동) 1층", - "phone": "031-251-3900", - "representativeMenu": "만두", - "price": 6000, - "latitude": 37.28148605591346, - "longitude": 127.01796582445644, - "pageIndex": 11, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "11724", - "name": "봉실스넥", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 서부대성로239번길 8 (효자동)", - "phone": "033-251-6890", - "representativeMenu": "순두부찌개", - "price": 5000, - "latitude": 37.8732547890045, - "longitude": 127.745099874572, - "pageIndex": 11, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "16632", - "name": "분식집에 하숙하는 붕어빵", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 삭주로 25 (교동)", - "phone": "0507-1402-8552", - "representativeMenu": "떡볶이", - "price": 3000, - "latitude": 37.88144386414532, - "longitude": 127.73456759786936, - "pageIndex": 11, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "15847", - "name": "대복분식", - "categoryName": "한식", - "address": "충청북도 청주시 흥덕구 강내면 태성탑연로 454-1 주2동 1층", - "phone": "043-236-3142", - "representativeMenu": "된장찌개", - "price": 8000, - "latitude": 36.622893602285906, - "longitude": 127.3588240445716, - "pageIndex": 11, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "16071", - "name": "대선집", - "categoryName": "한식", - "address": "충청북도 청주시 서원구 구룡산로51번다길 4 (성화동) 1층", - "phone": "043-233-2212", - "representativeMenu": "돌솥제육정식", - "price": 10000, - "latitude": 36.615134258549226, - "longitude": 127.45225164740799, - "pageIndex": 11, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15520", - "name": "대성식당", - "categoryName": "한식", - "address": "충청북도 청주시 상당구 상당로186번길 17 (수동) (대성식당)", - "phone": "043-258-1345", - "representativeMenu": "가정식백반", - "price": 6000, - "latitude": 36.64494841100788, - "longitude": 127.49068538143457, - "pageIndex": 11, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4760", - "name": "대운분식", - "categoryName": "한식", - "address": "충청북도 청주시 흥덕구 옥산면 청주역로 654", - "phone": "043-260-0667", - "representativeMenu": "콩나물밥", - "price": 6000, - "latitude": 36.6654960294927, - "longitude": 127.374242450261, - "pageIndex": 11, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "16878", - "name": "명윤", - "categoryName": "중식", - "address": "충청남도 천안시 서북구 직산읍 4산단로 241 1동", - "phone": "0507-1426-9775", - "representativeMenu": "자장면", - "price": 6000, - "latitude": 36.85787766445741, - "longitude": 127.10949582855619, - "pageIndex": 11, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "16880", - "name": "모모아지트", - "categoryName": "기타요식업", - "address": "충청남도 천안시 서북구 봉정로 140 (성정동) 3층", - "phone": "0507-1337-4919", - "representativeMenu": "아메리카노", - "price": 3000, - "latitude": 36.814482384883114, - "longitude": 127.14202209848756, - "pageIndex": 11, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4994", - "name": "문헤어갤러리", - "categoryName": "미용업", - "address": "충청남도 천안시 서북구 미라14길 20 (쌍용동)", - "phone": "041-577-4466", - "representativeMenu": "커트", - "price": 8000, - "latitude": 36.8056741666016, - "longitude": 127.13015496868, - "pageIndex": 11, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "10501", - "name": "착한가격헤어", - "categoryName": "미용업", - "address": "전라남도 목포시 상리로9번길 22 1층(상동)", - "phone": "061-278-1571", - "representativeMenu": "커트(기본)", - "price": 6000, - "latitude": 34.8137466442366, - "longitude": 126.41499805728, - "pageIndex": 11, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "15147", - "name": "태동반점", - "categoryName": "중식", - "address": "전라남도 목포시 마인계터로40번길 10-1 (죽동) 태동반점", - "phone": "061-243-3351", - "representativeMenu": "짜장면", - "price": 7000, - "latitude": 34.7899992363049, - "longitude": 126.38341878576848, - "pageIndex": 11, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "11126", - "name": "하나둘미용실", - "categoryName": "미용업", - "address": "전라남도 목포시 수강로 6 (수강동1가)", - "phone": "061-243-9098", - "representativeMenu": "여성(일반)컷트", - "price": 10000, - "latitude": 34.7856055450319, - "longitude": 126.386018127697, - "pageIndex": 11, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6309", - "name": "끄티디저트카페", - "categoryName": "기타요식업", - "address": "경상북도 포항시 남구 중앙로134번길 2 끄티디저트카페", - "phone": "054-281-2496", - "representativeMenu": "아메리카노", - "price": 2000, - "latitude": 36.0250169966387, - "longitude": 129.368453187457, - "pageIndex": 11, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6326", - "name": "나미화헤어클럽", - "categoryName": "미용업", - "address": "경상북도 포항시 남구 송도로 10-1", - "phone": "-", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.0337446127344, - "longitude": 129.372175309483, - "pageIndex": 11, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6495", - "name": "나주식당", - "categoryName": "한식", - "address": "경상북도 포항시 북구 양학로32번길 9-1 나주식당", - "phone": "-", - "representativeMenu": "정식", - "price": 7500, - "latitude": 36.0264062592383, - "longitude": 129.351296310605, - "pageIndex": 11, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "17129", - "name": "만원족발", - "categoryName": "한식", - "address": "경상남도 창원시 마산회원구 양덕북2길 13 (양덕동) 1층", - "phone": "055-299-4822", - "representativeMenu": "왕족발", - "price": 10000, - "latitude": 35.232299773538415, - "longitude": 128.58552226970943, - "pageIndex": 11, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "17130", - "name": "맛집", - "categoryName": "한식", - "address": "경상남도 창원시 마산회원구 구암북12길 17 (구암동) 맛집", - "phone": "055-255-9597", - "representativeMenu": "맛집김밥", - "price": 3000, - "latitude": 35.25555706724836, - "longitude": 128.59779095142022, - "pageIndex": 11, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "17139", - "name": "먹거리아", - "categoryName": "한식", - "address": "경상남도 창원시 진해구 벚꽃로70번길 17-2 (화천동) 먹거리아", - "phone": "055-542-9476", - "representativeMenu": "고구마튀김 8개", - "price": 5000, - "latitude": 35.151431963349566, - "longitude": 128.66566078665707, - "pageIndex": 11, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "6804", - "name": "메밀파티", - "categoryName": "한식", - "address": "경상남도 창원시 성산구 토월로 88 (상남동) 지하", - "phone": "055-284-0618", - "representativeMenu": "막국수", - "price": 8000, - "latitude": 35.21882052587623, - "longitude": 128.68409106230135, - "pageIndex": 11, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "7013", - "name": "다마내기", - "categoryName": "기타비요식업", - "address": "제주특별자치도 제주시 원노형로 26 202호 (서림빌딩)", - "phone": "064-747-0618", - "representativeMenu": "중대 10분", - "price": 1700, - "latitude": 33.4864471773391, - "longitude": 126.484759413813, - "pageIndex": 11, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "18086", - "name": "다올국수", - "categoryName": "한식", - "address": "제주특별자치도 제주시 서광로 209-1 (삼도일동) 다올국수", - "phone": "064-755-7076", - "representativeMenu": "멸치국수", - "price": 7000, - "latitude": 33.50016357321733, - "longitude": 126.51892020124394, - "pageIndex": 11, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "18078", - "name": "다인헤어", - "categoryName": "미용업", - "address": "제주특별자치도 제주시 원노형로 9 (노형동) 다인헤어", - "phone": "064-744-9242", - "representativeMenu": "컷트", - "price": 10000, - "latitude": 33.487776208529105, - "longitude": 126.48422199658157, - "pageIndex": 11, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "952", - "name": "종묘이용원", - "categoryName": "이용업", - "address": "서울특별시 종로구 종로 146 (종로3가) (종로4가)", - "phone": "-", - "representativeMenu": "커트", - "price": 7000, - "latitude": 37.57022814518435, - "longitude": 126.99369870159373, - "pageIndex": 12, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "16865", - "name": "중국", - "categoryName": "중식", - "address": "서울특별시 종로구 자하문로33길 2 (청운동) 1층", - "phone": "02-737-8055", - "representativeMenu": "짜장면", - "price": 6000, - "latitude": 37.58619403165867, - "longitude": 126.96972945340502, - "pageIndex": 12, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "10019", - "name": "황소식당", - "categoryName": "한식", - "address": "부산광역시 중구 충장대로 4번길 8 (중앙동4가)", - "phone": "051-465-6648", - "representativeMenu": "부대찌개", - "price": 7000, - "latitude": 35.1044916301827, - "longitude": 129.036809946537, - "pageIndex": 12, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1420", - "name": "3678통장어", - "categoryName": "한식", - "address": "부산광역시 서구 구덕로 280번길 17 (동대신동1가)", - "phone": "051-242-3678", - "representativeMenu": "장어탕", - "price": 10000, - "latitude": 35.1095112240639, - "longitude": 129.01944149398, - "pageIndex": 12, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1393", - "name": "777헤어샵", - "categoryName": "미용업", - "address": "부산광역시 서구 자갈치로 8-1 (충무동1가)", - "phone": "051-244-2430", - "representativeMenu": "커트(남)", - "price": 10000, - "latitude": 35.0961210951299, - "longitude": 129.025327657564, - "pageIndex": 12, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "10083", - "name": "강변복어", - "categoryName": "한식", - "address": "대구광역시 동구 호반길67 (방촌동)", - "phone": "053-982-7252", - "representativeMenu": "복어탕", - "price": 8000, - "latitude": 35.8788829142879, - "longitude": 128.660877483508, - "pageIndex": 12, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "1870", - "name": "고향손칼국수", - "categoryName": "한식", - "address": "대구광역시 동구 장등로 9 (신천동)", - "phone": "053-752-8894", - "representativeMenu": "잔치국수", - "price": 4500, - "latitude": 35.8682732754141, - "longitude": 128.622905927079, - "pageIndex": 12, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "2222", - "name": "현대세탁소", - "categoryName": "세탁업", - "address": "인천광역시 중구 인항로 34 1층 102호 (신흥동3가)", - "phone": "032-891-5252", - "representativeMenu": "바지", - "price": 5000, - "latitude": 37.4571633075413, - "longitude": 126.634101603919, - "pageIndex": 12, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "16954", - "name": "혼밥밥상", - "categoryName": "한식", - "address": "인천광역시 중구 하늘중앙로225번길 11 (중산동) 2층 206,207호", - "phone": "-", - "representativeMenu": "백반", - "price": 10000, - "latitude": 37.487838041971756, - "longitude": 126.55922287899413, - "pageIndex": 12, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2281", - "name": "한우물", - "categoryName": "한식", - "address": "광주광역시 동구 필문대로191번길 15-2 (산수동)", - "phone": "062-675-9944", - "representativeMenu": "생선구이(모듬)", - "price": 9000, - "latitude": 35.1533803800092, - "longitude": 126.933174859781, - "pageIndex": 12, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2282", - "name": "해뜨는식당", - "categoryName": "한식", - "address": "광주광역시 동구 제봉로190번길 7-1 1층(대인동)", - "phone": "062-227-6063", - "representativeMenu": "백반", - "price": 1000, - "latitude": 35.1540271398023, - "longitude": 126.917438484668, - "pageIndex": 12, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "17166", - "name": "헤어필(학동)", - "categoryName": "미용업", - "address": "광주광역시 동구 천변우로 603 (학동, 백화아파트) 상가102동 104호", - "phone": "-", - "representativeMenu": "성인커트", - "price": 10000, - "latitude": 35.13097376055375, - "longitude": 126.92644589626747, - "pageIndex": 12, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2568", - "name": "옛고을식당", - "categoryName": "한식", - "address": "대전광역시 동구 역전시장길 8 (정동)", - "phone": "042-274-1983", - "representativeMenu": "비빔밥", - "price": 7000, - "latitude": 36.3304560058946, - "longitude": 127.433731277703, - "pageIndex": 12, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "14911", - "name": "왕관식당", - "categoryName": "한식", - "address": "대전광역시 동구 선화로196번길 6 (중동) 중동", - "phone": "042-221-1663", - "representativeMenu": "콩나물밥", - "price": 6000, - "latitude": 36.33360283723725, - "longitude": 127.42754191112995, - "pageIndex": 12, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2887", - "name": "경주이용원", - "categoryName": "이용업", - "address": "울산광역시 남구 월평로159번길 4 1층", - "phone": "052-268-5170", - "representativeMenu": "초등부컷트", - "price": 10000, - "latitude": 35.545149268254, - "longitude": 129.322629378239, - "pageIndex": 12, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "15106", - "name": "경주칼국수", - "categoryName": "한식", - "address": "울산광역시 남구 월평로37번길 5 (신정동) 1층", - "phone": "052-271-3278", - "representativeMenu": "손칼국수", - "price": 6000, - "latitude": 35.541808785746284, - "longitude": 129.30930615922028, - "pageIndex": 12, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "18735", - "name": "궁전중화요리", - "categoryName": "중식", - "address": "울산광역시 남구 두왕로22번길 5-16 (선암동) 1층", - "phone": "052-256-3003", - "representativeMenu": "짜장면", - "price": 6000, - "latitude": 35.505829524208984, - "longitude": 129.30959340736075, - "pageIndex": 12, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "14935", - "name": "만두촌", - "categoryName": "한식", - "address": "경기도 수원시 권선구 하탑로 39 (탑동) 102호", - "phone": "031-295-8798", - "representativeMenu": "고기찐만두(10개)", - "price": 5000, - "latitude": 37.26911230608807, - "longitude": 126.97589883567454, - "pageIndex": 12, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "10202", - "name": "멋진남자", - "categoryName": "이용업", - "address": "경기도 수원시 영통구 매봉로35번길 50 1층(매탄동)", - "phone": "-", - "representativeMenu": "남성커트", - "price": 10000, - "latitude": 37.2719859731344, - "longitude": 127.050140470108, - "pageIndex": 12, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "14015", - "name": "메종드커피", - "categoryName": "기타요식업", - "address": "경기도 수원시 팔달구 매산로 131 (교동) 1층", - "phone": "031-258-3545", - "representativeMenu": "아메리카노", - "price": 3400, - "latitude": 37.27211175333725, - "longitude": 127.01481129960187, - "pageIndex": 12, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "16199", - "name": "명랑꽈배기", - "categoryName": "기타요식업", - "address": "경기도 수원시 권선구 하탑로 43 (탑동) 1층", - "phone": "010-9532-0088", - "representativeMenu": "찹쌀꽈배기(3개)", - "price": 2000, - "latitude": 37.26917399031983, - "longitude": 126.97642424590657, - "pageIndex": 12, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "13799", - "name": "블루밍", - "categoryName": "기타요식업", - "address": "강원특별자치도 춘천시 옥천길54번길 26-1 (옥천동)", - "phone": "-", - "representativeMenu": "아메리카노", - "price": 2000, - "latitude": 37.88199230616044, - "longitude": 127.73200418707303, - "pageIndex": 12, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4390", - "name": "삼남매", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 춘천로170번길 8 1층(운교동)", - "phone": "033-637-5770", - "representativeMenu": "가정식백반", - "price": 8000, - "latitude": 37.8756946677783, - "longitude": 127.73332299084, - "pageIndex": 12, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "10312", - "name": "석사반점", - "categoryName": "중식", - "address": "강원특별자치도 춘천시 효석로67번길 25 (석사동)", - "phone": "033-262-2354", - "representativeMenu": "자장면", - "price": 4000, - "latitude": 37.862559878518, - "longitude": 127.739362733706, - "pageIndex": 12, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "15843", - "name": "더 맨", - "categoryName": "미용업", - "address": "충청북도 청주시 청원구 율봉로 258 (율량동)", - "phone": "043-214-2500", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.666703430250955, - "longitude": 127.49720884874743, - "pageIndex": 12, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4748", - "name": "덤블식당", - "categoryName": "한식", - "address": "충청북도 청주시 청원구 향군로31번길 32 (우암동)", - "phone": "043-257-2237", - "representativeMenu": "된장찌개", - "price": 7000, - "latitude": 36.6477777347953, - "longitude": 127.485430090266, - "pageIndex": 12, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15776", - "name": "도니수제돈까스", - "categoryName": "한식", - "address": "충청북도 청주시 서원구 호국로 99 (사직동) 1층", - "phone": "043-277-8230", - "representativeMenu": "등심돈까스정식", - "price": 6000, - "latitude": 36.636876933056726, - "longitude": 127.47622733012022, - "pageIndex": 12, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4964", - "name": "미헤어샵", - "categoryName": "미용업", - "address": "충청남도 천안시 서북구 쌍용16길 24 (쌍용동)", - "phone": "041-575-1196", - "representativeMenu": "커트", - "price": 7000, - "latitude": 36.798721258652, - "longitude": 127.120954088064, - "pageIndex": 12, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4913", - "name": "박정미5000냥헤어", - "categoryName": "미용업", - "address": "충청남도 천안시 동남구 대흥로 127 (사직동)", - "phone": "041-561-3344", - "representativeMenu": "커트", - "price": 7000, - "latitude": 36.800548575871, - "longitude": 127.148519132471, - "pageIndex": 12, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "11119", - "name": "박정미5000냥헤어2호점", - "categoryName": "미용업", - "address": "충청남도 천안시 동남구 영성로 36 (중앙동)", - "phone": "-", - "representativeMenu": "커트", - "price": 7000, - "latitude": 36.8014348547938, - "longitude": 127.150782653869, - "pageIndex": 12, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "5412", - "name": "청년식탁 사잇길", - "categoryName": "한식", - "address": "전북특별자치도 전주시 덕진구 백제대로 563 2층", - "phone": "063-272-0214", - "representativeMenu": "김치찌개", - "price": 3000, - "latitude": 35.8409178469739, - "longitude": 127.131238280077, - "pageIndex": 12, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5446", - "name": "청라회관", - "categoryName": "한식", - "address": "전북특별자치도 전주시 완산구 노송여울2길 10", - "phone": "063-286-3044", - "representativeMenu": "돌솥비빔밥", - "price": 8000, - "latitude": 35.8242200343495, - "longitude": 127.146544090353, - "pageIndex": 12, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5421", - "name": "초희미용실", - "categoryName": "미용업", - "address": "전북특별자치도 전주시 완산구 모악로 4683 우미아파트 상가", - "phone": "063-226-3701", - "representativeMenu": "커트(성인)", - "price": 8000, - "latitude": 35.7876745457672, - "longitude": 127.130038142656, - "pageIndex": 12, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "15994", - "name": "최가돈", - "categoryName": "한식", - "address": "전북특별자치도 전주시 완산구 후곡길 23-24 (효자동2가) 1층", - "phone": "063-227-5931", - "representativeMenu": "김치찌개", - "price": 7000, - "latitude": 35.81087083441043, - "longitude": 127.09465897893688, - "pageIndex": 12, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "10495", - "name": "홍가네만두분식", - "categoryName": "한식", - "address": "전라남도 목포시 삼일로 12 (창평동)", - "phone": "061-242-6705", - "representativeMenu": "칼국수", - "price": 7000, - "latitude": 34.7933588484617, - "longitude": 126.38358115361, - "pageIndex": 12, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "18288", - "name": "홍두깨멸치칼국수", - "categoryName": "한식", - "address": "전라남도 목포시 교육로 45-1 (상동) 1층", - "phone": "061-282-7669", - "representativeMenu": "칼국수", - "price": 6000, - "latitude": 34.8014150837424, - "longitude": 126.42079872738657, - "pageIndex": 12, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "15146", - "name": "황가네보리밥", - "categoryName": "한식", - "address": "전라남도 목포시 노적봉길 19-4 (무안동) 황가네보리밥", - "phone": "061-278-3986", - "representativeMenu": "보리밥", - "price": 9000, - "latitude": 34.78982445409798, - "longitude": 126.38334964496875, - "pageIndex": 12, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "10504", - "name": "흑산도전복", - "categoryName": "한식", - "address": "전라남도 목포시 양을로208번길 9 (용당동)", - "phone": "061-276-5095", - "representativeMenu": "백반", - "price": 9000, - "latitude": 34.8103104782939, - "longitude": 126.393158316771, - "pageIndex": 12, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6327", - "name": "내가본미용실", - "categoryName": "미용업", - "address": "경상북도 포항시 남구 대이로45번길 15 내가본미용실", - "phone": "054-274-7754", - "representativeMenu": "여자커트", - "price": 10000, - "latitude": 36.0187057254121, - "longitude": 129.340316118787, - "pageIndex": 12, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "11257", - "name": "넌지시", - "categoryName": "기타요식업", - "address": "경상북도 포항시 남구 오천읍 남원로 85-99 나동 101호", - "phone": "070-8870-3318", - "representativeMenu": "아메리카노", - "price": 2500, - "latitude": 35.9659854034839, - "longitude": 129.400825078075, - "pageIndex": 12, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6805", - "name": "메밀한판", - "categoryName": "한식", - "address": "경상남도 창원시 성산구 마디미로 28 B동 202호(상남동, 상남재래시장)", - "phone": "055-262-2002", - "representativeMenu": "냄비우동", - "price": 5500, - "latitude": 35.2222148675498, - "longitude": 128.683379990696, - "pageIndex": 12, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "6811", - "name": "명동식당", - "categoryName": "한식", - "address": "경상남도 창원시 성산구 원이대로589번길 12 (용호동)", - "phone": "055-262-8374", - "representativeMenu": "정식", - "price": 8000, - "latitude": 35.2286912789379, - "longitude": 128.679710134939, - "pageIndex": 12, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "17137", - "name": "모도면집", - "categoryName": "한식", - "address": "경상남도 창원시 성산구 창이대로881번길 17 (대방동) 대방대동황토방아파트상가 12동 2층 206호", - "phone": "055-713-1130", - "representativeMenu": "비빔면", - "price": 8500, - "latitude": 35.20742717951569, - "longitude": 128.7086999798537, - "pageIndex": 12, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "10625", - "name": "도남오거리도남점", - "categoryName": "한식", - "address": "제주특별자치도 제주시 도남로6길 16", - "phone": "064-722-4844", - "representativeMenu": "김치찌개", - "price": 5000, - "latitude": 33.4965453079539, - "longitude": 126.526082680031, - "pageIndex": 12, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "14005", - "name": "진미김밥", - "categoryName": "한식", - "address": "서울특별시 종로구 종로46길 28 (창신동) 1층", - "phone": "02-2268-0069", - "representativeMenu": "진미김밥", - "price": 4000, - "latitude": 37.57045965794985, - "longitude": 127.01018731204245, - "pageIndex": 13, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "19059", - "name": "착한커피공장", - "categoryName": "기타요식업", - "address": "서울특별시 종로구 자하문로7길 66 (누하동) 1층", - "phone": "02-738-7774", - "representativeMenu": "아메리카노", - "price": 2000, - "latitude": 37.58019735852819, - "longitude": 126.9691947292228, - "pageIndex": 13, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "18198", - "name": "창신숯불돼지갈비", - "categoryName": "한식", - "address": "서울특별시 종로구 종로 322-11 (창신동) 1층", - "phone": "02-766-5861", - "representativeMenu": "돼지갈비정식", - "price": 10000, - "latitude": 37.5716697926823, - "longitude": 127.01361493727262, - "pageIndex": 13, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "11365", - "name": "광화냉면", - "categoryName": "한식", - "address": "부산광역시 서구 대영로 73번길 108 (동대신동3가)", - "phone": "051-253-4823", - "representativeMenu": "냉면", - "price": 9000, - "latitude": 35.1150878509163, - "longitude": 129.016829835228, - "pageIndex": 13, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "17709", - "name": "국수집국모", - "categoryName": "한식", - "address": "대구광역시 동구 팔공로27길 24 (불로동) 1층", - "phone": "053-981-3339", - "representativeMenu": "잔치국수", - "price": 5000, - "latitude": 35.9115976360345, - "longitude": 128.63861561811987, - "pageIndex": 13, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "13033", - "name": "갓구워낸빵", - "categoryName": "베이커리", - "address": "인천광역시 동구 샛골로 173 (송림동) 1층", - "phone": "032-567-9019", - "representativeMenu": "단팥빵", - "price": 1200, - "latitude": 37.47786072727075, - "longitude": 126.64475585486453, - "pageIndex": 13, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "13022", - "name": "남성여성커트전문점", - "categoryName": "미용업", - "address": "인천광역시 동구 샛골로161번길 26 (송림동) 1층", - "phone": "010-8670-9155", - "representativeMenu": "남성커트", - "price": 5000, - "latitude": 37.47703198808541, - "longitude": 126.64334345184642, - "pageIndex": 13, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "13798", - "name": "냠냠분식", - "categoryName": "한식", - "address": "인천광역시 동구 수문통로 39 (송현동) 1층", - "phone": "032-777-3355", - "representativeMenu": "떡볶이", - "price": 3500, - "latitude": 37.47984549987457, - "longitude": 126.63397144892058, - "pageIndex": 13, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2093", - "name": "네오클리닝센타", - "categoryName": "세탁업", - "address": "인천광역시 동구 송현로 19번길 14 (송현동)", - "phone": "032-766-0030", - "representativeMenu": "정장1벌", - "price": 10000, - "latitude": 37.4785676119164, - "longitude": 126.634101843256, - "pageIndex": 13, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "13184", - "name": "호수목욕탕", - "categoryName": "목욕업", - "address": "광주광역시 동구 구성로194번길 7-1 (대인동) 1층", - "phone": "062-226-1142", - "representativeMenu": "성인", - "price": 4000, - "latitude": 35.15276002074088, - "longitude": 126.9147242991847, - "pageIndex": 13, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "17171", - "name": "홀인원김밥", - "categoryName": "한식", - "address": "광주광역시 동구 독립로 262-1 (금남로5가) 1", - "phone": "1555-5878", - "representativeMenu": "그냥김밥", - "price": 3500, - "latitude": 35.15454223324605, - "longitude": 126.91127651626087, - "pageIndex": 13, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2569", - "name": "왕산", - "categoryName": "한식", - "address": "대전광역시 동구 계족로 202 (대동)", - "phone": "042-626-7006", - "representativeMenu": "갈비탕", - "price": 7000, - "latitude": 36.3312406960166, - "longitude": 127.441181784066, - "pageIndex": 13, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "18678", - "name": "우리뷰티", - "categoryName": "미용업", - "address": "대전광역시 동구 용운로1번길 5 (대동) 대동", - "phone": "042-282-7718", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.32944033216982, - "longitude": 127.44360995154223, - "pageIndex": 13, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "14912", - "name": "우리헤어클럽", - "categoryName": "미용업", - "address": "대전광역시 동구 백룡로57번길 118 (자양동) 자양동", - "phone": "0507-1367-4071", - "representativeMenu": "미용료(커트)", - "price": 10000, - "latitude": 36.3383596687159, - "longitude": 127.45088284522323, - "pageIndex": 13, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2525", - "name": "운동화목욕한날", - "categoryName": "세탁업", - "address": "대전광역시 동구 용운로 170가동 102호(용운동)", - "phone": "-", - "representativeMenu": "운동화 빨래", - "price": 5000, - "latitude": 36.3276734373929, - "longitude": 127.460965313411, - "pageIndex": 13, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "17508", - "name": "꽃보다남자남성커트", - "categoryName": "미용업", - "address": "울산광역시 남구 두왕로190번길 31 (선암동) 1층", - "phone": "0507-1315-4144", - "representativeMenu": "커트", - "price": 10000, - "latitude": 35.518683361146806, - "longitude": 129.31515922674268, - "pageIndex": 13, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "15094", - "name": "나일57", - "categoryName": "베이커리", - "address": "울산광역시 남구 삼산로83번길 35 (달동) 1층 101호", - "phone": "0507-1346-4157", - "representativeMenu": "아메리카노", - "price": 3000, - "latitude": 35.53775574203502, - "longitude": 129.3154140122934, - "pageIndex": 13, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "15102", - "name": "내고향추어탕", - "categoryName": "한식", - "address": "울산광역시 남구 산업로339번길 24-13 (선암동) 105호", - "phone": "052-256-7972", - "representativeMenu": "추어탕", - "price": 9000, - "latitude": 35.516428145861525, - "longitude": 129.33786343766934, - "pageIndex": 13, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "3398", - "name": "명품세탁 빨래터", - "categoryName": "세탁업", - "address": "경기도 수원시 영통구 동탄원천로 915번길 36 104호", - "phone": "031-216-8939", - "representativeMenu": "세탁료", - "price": 7500, - "latitude": 37.2569793706321, - "longitude": 127.043828501468, - "pageIndex": 13, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "11096", - "name": "모아헤어", - "categoryName": "미용업", - "address": "경기도 수원시 장안구 화산로 285번길 12 화남아파트상가 102호(율전동)", - "phone": "031-295-4005", - "representativeMenu": "커트", - "price": 9000, - "latitude": 37.3002864705875, - "longitude": 126.964407790648, - "pageIndex": 13, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "11689", - "name": "모이세 분식", - "categoryName": "한식", - "address": "경기도 수원시 팔달구 팔달문로3번길 5 (팔달로2가)", - "phone": "031-245-1189", - "representativeMenu": "돈까스", - "price": 8000, - "latitude": 37.2779056593256, - "longitude": 127.017591481138, - "pageIndex": 13, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "4343", - "name": "송혜진미용실", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 신흥길5번길 8-6 1층(우두동)", - "phone": "-", - "representativeMenu": "커트", - "price": 9000, - "latitude": 37.9005696948236, - "longitude": 127.727393589753, - "pageIndex": 13, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "13802", - "name": "수제돈가스", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 명동길 43 (죽림동)", - "phone": "033-254-5074", - "representativeMenu": "돈가스정식", - "price": 7000, - "latitude": 37.87732611130328, - "longitude": 127.72485363921628, - "pageIndex": 13, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "11113", - "name": "숙미용실", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 공지로 432-1 (근화동)", - "phone": "033-253-9217", - "representativeMenu": "커트", - "price": 5000, - "latitude": 37.8737216981244, - "longitude": 127.719469536522, - "pageIndex": 13, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4761", - "name": "도토리명가", - "categoryName": "한식", - "address": "충청북도 청주시 흥덕구 흥덕로162번길 13 (운천동)", - "phone": "-", - "representativeMenu": "도토리묵밥", - "price": 7000, - "latitude": 36.6476629164762, - "longitude": 127.477294311131, - "pageIndex": 13, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15760", - "name": "동의명가 뼈해장국,순대국,감자탕", - "categoryName": "한식", - "address": "충청북도 청주시 상당구 무심동로392번길 4 (서문동) 1층", - "phone": "-", - "representativeMenu": "순대국밥", - "price": 6900, - "latitude": 36.6354992792621, - "longitude": 127.48497460255712, - "pageIndex": 13, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4743", - "name": "돼풍이국내산생고기", - "categoryName": "한식", - "address": "충청북도 청주시 청원구 율봉로94번길 27 (율량동)", - "phone": "043-211-5959", - "representativeMenu": "삼겹살(150g)", - "price": 9000, - "latitude": 36.6654896584325, - "longitude": 127.480643814831, - "pageIndex": 13, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4915", - "name": "백미용실", - "categoryName": "미용업", - "address": "충청남도 천안시 동남구 우영1길 10 106호(봉명동)", - "phone": "041-572-5953", - "representativeMenu": "커트", - "price": 7000, - "latitude": 36.805213750612, - "longitude": 127.140789087028, - "pageIndex": 13, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4989", - "name": "별난생태나라", - "categoryName": "한식", - "address": "충청남도 천안시 서북구 봉서5길 10 104호(쌍용동)", - "phone": "041-575-3675", - "representativeMenu": "동태탕", - "price": 9000, - "latitude": 36.808266626223, - "longitude": 127.132230635153, - "pageIndex": 13, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "15998", - "name": "춘향골밥상", - "categoryName": "한식", - "address": "전북특별자치도 전주시 덕진구 벚꽃2길 5 (진북동)", - "phone": "063-255-8500", - "representativeMenu": "우렁된장찌개", - "price": 8000, - "latitude": 35.827911752494195, - "longitude": 127.1324721401412, - "pageIndex": 13, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "15995", - "name": "하루국수", - "categoryName": "한식", - "address": "전북특별자치도 전주시 완산구 메너머1길 30 (중화산동2가)", - "phone": "0507-1347-0031", - "representativeMenu": "물국수", - "price": 5000, - "latitude": 35.82106396957341, - "longitude": 127.11962562598723, - "pageIndex": 13, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5402", - "name": "하얀세탁나라", - "categoryName": "세탁업", - "address": "전북특별자치도 전주시 덕진구 시천로 29-30 (송천동1가, 한양아파트 상가 1층)", - "phone": "063-902-4555", - "representativeMenu": "양복", - "price": 6000, - "latitude": 35.8605364471238, - "longitude": 127.113373136028, - "pageIndex": 13, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "17489", - "name": "e쁘제헤어프리", - "categoryName": "미용업", - "address": "전라남도 여수시 허문정1길 52 (문수동) 1층", - "phone": "061-651-0612", - "representativeMenu": "성인여자커트", - "price": 10000, - "latitude": 34.74984276015307, - "longitude": 127.69462555986541, - "pageIndex": 13, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5747", - "name": "가든회관", - "categoryName": "한식", - "address": "전라남도 여수시 시청동1길 7 (학동) 가든회관", - "phone": "061-681-5940", - "representativeMenu": "백반", - "price": 9000, - "latitude": 34.76010930737318, - "longitude": 127.66429037149783, - "pageIndex": 13, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6433", - "name": "뉴현대미용실", - "categoryName": "미용업", - "address": "경상북도 포항시 북구 새마을로 2 뉴현대미용실", - "phone": "054-241-5678", - "representativeMenu": "커트", - "price": 5000, - "latitude": 36.0384567529592, - "longitude": 129.358106840482, - "pageIndex": 13, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6363", - "name": "다미손만두돈까스", - "categoryName": "한식", - "address": "경상북도 포항시 남구 구룡포읍 구룡포길 85-1 다미손만두돈까스", - "phone": "054-284-2291", - "representativeMenu": "냉면", - "price": 7000, - "latitude": 35.9912234274676, - "longitude": 129.555134254705, - "pageIndex": 13, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6828", - "name": "미가칼국수", - "categoryName": "한식", - "address": "경상남도 창원시 진해구 벚꽃로60번길 19-6 832(화천동)", - "phone": "055-543-5200", - "representativeMenu": "보리밥", - "price": 4000, - "latitude": 35.1512659472656, - "longitude": 128.665285213057, - "pageIndex": 13, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "6825", - "name": "미진과자점", - "categoryName": "기타요식업", - "address": "경상남도 창원시 진해구 충장로130번길 4 (충무동)", - "phone": "055-545-3133", - "representativeMenu": "벚꽃크림치즈타르트", - "price": 3500, - "latitude": 35.151815090165, - "longitude": 128.66605694706, - "pageIndex": 13, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "16321", - "name": "바름카페공방", - "categoryName": "기타요식업", - "address": "경상남도 창원시 마산회원구 구암동정길 63 (구암동) 101호 바름카페공방", - "phone": "010-6878-7075", - "representativeMenu": "커피(아메리카노)", - "price": 2000, - "latitude": 35.253547999427646, - "longitude": 128.6004429633202, - "pageIndex": 13, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "14254", - "name": "도넛킹", - "categoryName": "기타요식업", - "address": "제주특별자치도 제주시 구남로6길 25 (이도이동) 1층", - "phone": "010-7443-1282", - "representativeMenu": "오리지널 글레이즈", - "price": 1500, - "latitude": 33.48841844009604, - "longitude": 126.53559021440631, - "pageIndex": 13, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "11363", - "name": "청정바지락칼국수", - "categoryName": "한식", - "address": "서울특별시 종로구 창신길 11 1층", - "phone": "02-743-6557", - "representativeMenu": "칼국수", - "price": 7000, - "latitude": 37.5722071295158, - "longitude": 127.010524084538, - "pageIndex": 14, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "19060", - "name": "체부동잔치집", - "categoryName": "한식", - "address": "서울특별시 종로구 자하문로1길 16 (체부동) 1층", - "phone": "02-730-5420", - "representativeMenu": "잔치국수", - "price": 5000, - "latitude": 37.57655121434925, - "longitude": 126.97150085198783, - "pageIndex": 14, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "16867", - "name": "카츠연", - "categoryName": "일식", - "address": "서울특별시 종로구 삼봉로 81 (수송동) 지하1층 136호", - "phone": "010-4015-1318", - "representativeMenu": "등심돈카츠정식", - "price": 9500, - "latitude": 37.572557012406925, - "longitude": 126.98181439015927, - "pageIndex": 14, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "13949", - "name": "토리베이커리", - "categoryName": "베이커리", - "address": "서울특별시 종로구 옥인길 30-3 (옥인동) 1층", - "phone": "010-5330-0771", - "representativeMenu": "막걸리식빵", - "price": 4000, - "latitude": 37.58107428102593, - "longitude": 126.96708919813716, - "pageIndex": 14, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "1410", - "name": "남강숯불갈비", - "categoryName": "한식", - "address": "부산광역시 서구 충무대로 255번길 9 (남부민동)", - "phone": "051-254-8108", - "representativeMenu": "된장찌개", - "price": 8000, - "latitude": 35.0930541909753, - "longitude": 129.023262189766, - "pageIndex": 14, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "19202", - "name": "대신 벚꽃길 빙수", - "categoryName": "기타요식업", - "address": "부산광역시 서구 대영로73번길 60 (동대신동3가) 1층", - "phone": "051-991-3610", - "representativeMenu": "팥빙수", - "price": 8500, - "latitude": 35.11309551348351, - "longitude": 129.0178920843254, - "pageIndex": 14, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1388", - "name": "대영탕", - "categoryName": "목욕업", - "address": "부산광역시 서구 구덕로 132번길 9 (토성동5가)", - "phone": "051-254-9515", - "representativeMenu": "대인", - "price": 8000, - "latitude": 35.0972775635676, - "longitude": 129.022430372656, - "pageIndex": 14, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "17930", - "name": "길목식당", - "categoryName": "한식", - "address": "대구광역시 동구 평화로 58 (신암동)", - "phone": "053-957-9711", - "representativeMenu": "청국장 찌개", - "price": 7500, - "latitude": 35.88437674353279, - "longitude": 128.62015239131767, - "pageIndex": 14, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "14954", - "name": "날마다좋은집1호점", - "categoryName": "한식", - "address": "대구광역시 동구 아양로11길 10 (신암동)", - "phone": "053-426-3531", - "representativeMenu": "고딧국(2~3인용)", - "price": 6000, - "latitude": 35.88346970782011, - "longitude": 128.62034336657473, - "pageIndex": 14, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "1882", - "name": "다모아식당", - "categoryName": "한식", - "address": "대구광역시 동구 파계로 54 (지묘동)", - "phone": "053-986-2929", - "representativeMenu": "해물칼국수", - "price": 5000, - "latitude": 35.9386980766118, - "longitude": 128.638782921677, - "pageIndex": 14, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "17599", - "name": "만석골", - "categoryName": "한식", - "address": "인천 동구 화도진로192번길 2 1층 101호(만석동, 계성빌라)", - "phone": "032-766-8080", - "representativeMenu": "육개장", - "price": 10000, - "latitude": 37.4859697544878, - "longitude": 126.622682978871, - "pageIndex": 14, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "19034", - "name": "명가순대", - "categoryName": "한식", - "address": "인천광역시 동구 화수로 18 (송현동) 명가순대", - "phone": "032-765-8833", - "representativeMenu": "설렁탕", - "price": 9000, - "latitude": 37.48123968414481, - "longitude": 126.6356097358181, - "pageIndex": 14, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "17593", - "name": "모모식당", - "categoryName": "양식", - "address": "인천 동구 화수로 7 1층 102호 (송현동, 센타빌딩)", - "phone": "032-213-2434", - "representativeMenu": "모모등심돈까스", - "price": 10000, - "latitude": 37.4803199313529, - "longitude": 126.636012820597, - "pageIndex": 14, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2094", - "name": "문성각", - "categoryName": "중식", - "address": "인천광역시 동구 송미로 35 (송림동) 1층", - "phone": "032-777-0400", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 37.482903570468814, - "longitude": 126.6497277170181, - "pageIndex": 14, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2304", - "name": "금강식당", - "categoryName": "한식", - "address": "광주광역시 서구 천변우하로 373 (동천동)", - "phone": "062-514-9111", - "representativeMenu": "생고기비빔밥", - "price": 8000, - "latitude": 35.1689145192112, - "longitude": 126.861118425373, - "pageIndex": 14, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "14921", - "name": "금룡", - "categoryName": "중식", - "address": "광주광역시 서구 염화로 115 (화정동) 1층", - "phone": "062-681-2500", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 35.1430601138362, - "longitude": 126.87725557866646, - "pageIndex": 14, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2535", - "name": "은성미용실", - "categoryName": "미용업", - "address": "대전광역시 동구 새터2길 26 (신흥동)", - "phone": "042-283-9633", - "representativeMenu": "미용료(커트)", - "price": 8000, - "latitude": 36.3227027931205, - "longitude": 127.443901827716, - "pageIndex": 14, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "14916", - "name": "인동왕만두", - "categoryName": "베이커리", - "address": "대전광역시 동구 대전로 697 (인동) 인동", - "phone": "042-285-5060", - "representativeMenu": "왕만두(고기만두)", - "price": 6000, - "latitude": 36.32247820088637, - "longitude": 127.43724722008199, - "pageIndex": 14, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "16532", - "name": "장가네대구왕뽈데기", - "categoryName": "한식", - "address": "대전광역시 동구 계족로 309-1 (성남동) 1층", - "phone": "042-623-0750", - "representativeMenu": "대구탕(점심)", - "price": 10000, - "latitude": 36.3400092088714, - "longitude": 127.43610509783201, - "pageIndex": 14, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2541", - "name": "장성", - "categoryName": "중식", - "address": "대전광역시 동구 우암로 85번길 14 (삼성동)", - "phone": "042-622-8494", - "representativeMenu": "짜장면", - "price": 6000, - "latitude": 36.3380538647397, - "longitude": 127.427767366719, - "pageIndex": 14, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "15118", - "name": "대박분식", - "categoryName": "한식", - "address": "울산광역시 남구 월평로171번길 26 (신정동, 신정 지웰) 119호", - "phone": "052-269-8845", - "representativeMenu": "김밥", - "price": 3500, - "latitude": 35.54739693327833, - "longitude": 129.32322710623595, - "pageIndex": 14, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "18786", - "name": "더짬뽕", - "categoryName": "중식", - "address": "울산광역시 남구 달삼로23번길 12 (달동) 1층", - "phone": "0507-1356-8941", - "representativeMenu": "짜장면", - "price": 6000, - "latitude": 35.53660268642255, - "longitude": 129.33148195611733, - "pageIndex": 14, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "2899", - "name": "덤", - "categoryName": "한식", - "address": "울산광역시 남구 대학로84번길 5-5", - "phone": "052-247-1217", - "representativeMenu": "냉칼국수", - "price": 8000, - "latitude": 35.5426013606551, - "longitude": 129.260284008748, - "pageIndex": 14, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "3377", - "name": "못골해장국", - "categoryName": "한식", - "address": "경기도 수원시 권선구 금호로246번길 15-4 1층", - "phone": "031-278-3493", - "representativeMenu": "선지해장국", - "price": 6000, - "latitude": 37.2749502849126, - "longitude": 126.977331077535, - "pageIndex": 14, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "16346", - "name": "몽뻬르베이커리카페", - "categoryName": "베이커리", - "address": "경기도 수원시 장안구 파장로 70 (파장동)", - "phone": "031-246-5474", - "representativeMenu": "아메리카노", - "price": 2900, - "latitude": 37.30605816813522, - "longitude": 126.9931791203893, - "pageIndex": 14, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "3403", - "name": "문화미용실", - "categoryName": "미용업", - "address": "경기도 수원시 장안구 정조로 934번길 29-18 (영화동)", - "phone": "031-256-1463", - "representativeMenu": "커트", - "price": 8000, - "latitude": 37.2923701800345, - "longitude": 127.013797271773, - "pageIndex": 14, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "16643", - "name": "실비아미용실", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 춘천로296번길 18 (후평동)", - "phone": "033-253-5746", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.879961550470746, - "longitude": 127.74662200640537, - "pageIndex": 14, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "10306", - "name": "쌍다리이용소", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 춘천순환로 42 상가동 101호 (석사동)", - "phone": "033-262-5087", - "representativeMenu": "커트", - "price": 5000, - "latitude": 37.8546857141914, - "longitude": 127.748703975697, - "pageIndex": 14, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "15784", - "name": "또또와식당", - "categoryName": "한식", - "address": "충청북도 청주시 서원구 내수동로108번길 43 (사창동) 1층", - "phone": "-", - "representativeMenu": "순두부찌개", - "price": 6000, - "latitude": 36.63225988198158, - "longitude": 127.45773160968325, - "pageIndex": 14, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15782", - "name": "럭키마라탕 양꼬치", - "categoryName": "중식", - "address": "충청북도 청주시 서원구 서원남로 27-1 (모충동) 1층", - "phone": "-", - "representativeMenu": "마라탕(100g)", - "price": 1800, - "latitude": 36.622339731999546, - "longitude": 127.4846288209598, - "pageIndex": 14, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "19234", - "name": "부흥만두", - "categoryName": "한식", - "address": "충청남도 천안시 동남구 사직로 30 (사직동) 부흥만두", - "phone": "0507-1412-5388", - "representativeMenu": "고기만두 10개", - "price": 6000, - "latitude": 36.802733785154345, - "longitude": 127.14941788531904, - "pageIndex": 14, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4926", - "name": "북경중화요리", - "categoryName": "중식", - "address": "충청남도 천안시 동남구 신부1길 6 (신부동)", - "phone": "041-554-1585", - "representativeMenu": "짜장면", - "price": 6500, - "latitude": 36.8141759551811, - "longitude": 127.158996108759, - "pageIndex": 14, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4965", - "name": "비비헤어샵", - "categoryName": "미용업", - "address": "충청남도 천안시 서북구 미라2길 26-1 (쌍용동)", - "phone": "041-571-1666", - "representativeMenu": "커트", - "price": 5000, - "latitude": 36.8018297147943, - "longitude": 127.129696210405, - "pageIndex": 14, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "16875", - "name": "빵미당", - "categoryName": "기타요식업", - "address": "충청남도 천안시 동남구 충절로 407 (삼룡동) 1층", - "phone": "0507-1387-9046", - "representativeMenu": "단팥빵", - "price": 1700, - "latitude": 36.78497963691765, - "longitude": 127.16873525335542, - "pageIndex": 14, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "5424", - "name": "한들각중화요리", - "categoryName": "중식", - "address": "전북특별자치도 전주시 완산구 안행로 112 1층", - "phone": "063-232-0317", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 35.8062940498025, - "longitude": 127.134355429754, - "pageIndex": 14, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5447", - "name": "한일옥", - "categoryName": "한식", - "address": "전북특별자치도 전주시 완산구 중산중앙로 29", - "phone": "063-222-3118", - "representativeMenu": "한우육회비빔밥", - "price": 9000, - "latitude": 35.8166803897759, - "longitude": 127.121458191969, - "pageIndex": 14, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "15997", - "name": "향촌", - "categoryName": "한식", - "address": "전북특별자치도 전주시 덕진구 숲정이4길 3 (진북동, 다세대주택)", - "phone": "063-252-5733", - "representativeMenu": "김치찌개", - "price": 8000, - "latitude": 35.82908945757786, - "longitude": 127.13270073754536, - "pageIndex": 14, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "11766", - "name": "훈희국수", - "categoryName": "한식", - "address": "전북특별자치도 전주시 덕진구 우아8길 8", - "phone": "063-247-1275", - "representativeMenu": "백반(청국장 육개장 뼈다귀탕)", - "price": 8000, - "latitude": 35.8506326095344, - "longitude": 127.156849553268, - "pageIndex": 14, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5711", - "name": "개성미용실", - "categoryName": "미용업", - "address": "전라남도 여수시 율촌면 당머리길3-1", - "phone": "061-684-7114", - "representativeMenu": "커트", - "price": 10000, - "latitude": 34.882586423451, - "longitude": 127.579141600752, - "pageIndex": 14, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "11806", - "name": "광장서대회", - "categoryName": "한식", - "address": "전라남도 여수시 이순신광장로 196 (종화동) A동 1층", - "phone": "061-666-2013", - "representativeMenu": "서대회(1인)", - "price": 10000, - "latitude": 34.73862390148165, - "longitude": 127.74443243353089, - "pageIndex": 14, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "11807", - "name": "광장서대회(이순신광장점)", - "categoryName": "한식", - "address": "전라남도 여수시 이순신광장로 129 (중앙동) 1층(교동)", - "phone": "0507-1384-2782", - "representativeMenu": "서대회(1인)", - "price": 10000, - "latitude": 34.738245805249676, - "longitude": 127.73846543180578, - "pageIndex": 14, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "16128", - "name": "다정한정식", - "categoryName": "한식", - "address": "경상북도 포항시 남구 장기면 동해안로 3273 다정한정식", - "phone": "054-284-9005", - "representativeMenu": "한정식", - "price": 7000, - "latitude": 35.87919614059732, - "longitude": 129.5172000677791, - "pageIndex": 14, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6423", - "name": "닥터크리닝", - "categoryName": "세탁업", - "address": "경상북도 포항시 북구 삼호로253번길 14-1", - "phone": "054-249-4519", - "representativeMenu": "세탁료 (상의)", - "price": 4000, - "latitude": 36.0612792841722, - "longitude": 129.378003776355, - "pageIndex": 14, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "18356", - "name": "달전밀면", - "categoryName": "한식", - "address": "경상북도 포항시 북구 흥해읍 도음로917번길 12 달전밀면", - "phone": "054-261-6468", - "representativeMenu": "밀면", - "price": 7000, - "latitude": 36.07939354295344, - "longitude": 129.33344894912452, - "pageIndex": 14, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6424", - "name": "대명세탁소", - "categoryName": "세탁업", - "address": "경상북도 포항시 북구 중흥로213번길 18-1", - "phone": "054-275-9579", - "representativeMenu": "와이셔츠", - "price": 2500, - "latitude": 36.0236667659089, - "longitude": 129.356179134247, - "pageIndex": 14, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "18617", - "name": "바보엄마칼국수 진해석동점", - "categoryName": "한식", - "address": "경상남도 창원시 진해구 석동로59번길 6-9 (석동) 1층", - "phone": "055-547-5255", - "representativeMenu": "사골칼국수", - "price": 5500, - "latitude": 35.15643049996103, - "longitude": 128.7056441225601, - "pageIndex": 14, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "18612", - "name": "바보엄마칼국수 창원점", - "categoryName": "한식", - "address": "경상남도 창원시 의창구 의창대로247번길 33 (소답동) 1층", - "phone": "055-299-0094", - "representativeMenu": "사골칼국수", - "price": 5500, - "latitude": 35.26473140031365, - "longitude": 128.625169764524, - "pageIndex": 14, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "15989", - "name": "바삭왕돈까스", - "categoryName": "한식", - "address": "경상남도 창원시 성산구 중앙대로 111 (중앙동) 205호", - "phone": "055-268-5008", - "representativeMenu": "바삭돈까스", - "price": 8500, - "latitude": 35.22477010317151, - "longitude": 128.67987955499908, - "pageIndex": 14, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "15406", - "name": "박하헤어", - "categoryName": "미용업", - "address": "경상남도 창원시 진해구 충장로 397-1 (이동) 1층", - "phone": "055-542-5894", - "representativeMenu": "컷트", - "price": 10000, - "latitude": 35.15259896527641, - "longitude": 128.69534269679198, - "pageIndex": 14, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "18050", - "name": "돌하루방방", - "categoryName": "기타비요식업", - "address": "제주특별자치도 제주시 화삼북로 43 (화북일동) 돌하루방방", - "phone": "010-9487-4132", - "representativeMenu": "트램펄린(30분)", - "price": 3000, - "latitude": 33.517489993448145, - "longitude": 126.57772441179883, - "pageIndex": 14, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "953", - "name": "파고다이용원", - "categoryName": "이용업", - "address": "서울특별시 종로구 종로17길 12 (종로2가)", - "phone": "-", - "representativeMenu": "커트", - "price": 6000, - "latitude": 37.5709410977686, - "longitude": 126.988999535085, - "pageIndex": 15, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "19241", - "name": "현궁", - "categoryName": "한식", - "address": "서울특별시 종로구 종로1길 42 (수송동) 지하1층", - "phone": "02-736-3369", - "representativeMenu": "철판제육쌈밥", - "price": 10000, - "latitude": 37.57390412787066, - "longitude": 126.97898519648197, - "pageIndex": 15, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "1423", - "name": "뚜레박", - "categoryName": "한식", - "address": "부산광역시 서구 엄광산로 32 (서대신동3가)", - "phone": "051-246-5233", - "representativeMenu": "청국장", - "price": 8000, - "latitude": 35.1283242912417, - "longitude": 129.008759677418, - "pageIndex": 15, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1390", - "name": "류박사종합세탁", - "categoryName": "세탁업", - "address": "부산광역시 서구 대영로 40 (서대신동1가)", - "phone": "051-253-0972", - "representativeMenu": "양복", - "price": 7000, - "latitude": 35.1092342130678, - "longitude": 129.015966141997, - "pageIndex": 15, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1404", - "name": "마산손팥칼국수", - "categoryName": "한식", - "address": "부산광역시 서구 자갈치로 10 (충무동1가)", - "phone": "051-243-7226", - "representativeMenu": "팥칼국수", - "price": 6000, - "latitude": 35.0960483857352, - "longitude": 129.025418401842, - "pageIndex": 15, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "17711", - "name": "다반트", - "categoryName": "기타요식업", - "address": "대구광역시 동구 용진길 4 (중대동)", - "phone": "010-9774-7888", - "representativeMenu": "아메리카노", - "price": 4500, - "latitude": 35.97887295843366, - "longitude": 128.6327864396004, - "pageIndex": 15, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "17929", - "name": "다온가야밀면", - "categoryName": "한식", - "address": "대구광역시 동구 반야월로 311-11 (신서동)", - "phone": "053-269-7771", - "representativeMenu": "물밀면", - "price": 7000, - "latitude": 35.872498143444936, - "longitude": 128.7226197105274, - "pageIndex": 15, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "17932", - "name": "다옴한식뷔페", - "categoryName": "한식", - "address": "대구광역시 동구 동대구로83길 18 (신천동, 동림아파트) 상가동 101호(신천동, 동림아파트)", - "phone": "053-755-4446", - "representativeMenu": "한식뷔페(일반)", - "price": 8000, - "latitude": 35.869577777820616, - "longitude": 128.62410506814535, - "pageIndex": 15, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "13035", - "name": "밥심", - "categoryName": "한식", - "address": "인천광역시 동구 샛골로 129 (송림동) 1층", - "phone": "032-766-5648", - "representativeMenu": "한식부페", - "price": 8000, - "latitude": 37.473936489089034, - "longitude": 126.6440676374549, - "pageIndex": 15, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2099", - "name": "벽란식당", - "categoryName": "한식", - "address": "인천광역시 동구 화도진로 102-4 (화수동) 1층", - "phone": "032-766-7022", - "representativeMenu": "벤뎅이덮밥", - "price": 9000, - "latitude": 37.48049836555108, - "longitude": 126.6292399056602, - "pageIndex": 15, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "17584", - "name": "브레드 오뉴", - "categoryName": "기타요식업", - "address": "인천 동구 송미로 50 1층, 2층 일부호 (송림동)", - "phone": "032-777-4997", - "representativeMenu": "단팥빵", - "price": 2000, - "latitude": 37.4826357598258, - "longitude": 126.650995645435, - "pageIndex": 15, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2302", - "name": "김강심 칼국수", - "categoryName": "한식", - "address": "광주광역시 서구 회재로 841 (매월동)", - "phone": "062-682-8801", - "representativeMenu": "바지락칼국수", - "price": 9000, - "latitude": 35.1193464844953, - "longitude": 126.857831988453, - "pageIndex": 15, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "11081", - "name": "꺳잎머리", - "categoryName": "미용업", - "address": "광주광역시 서구 경열로76번길 6 (농성동)", - "phone": "062-361-1781", - "representativeMenu": "성인커트", - "price": 10000, - "latitude": 35.151028051239, - "longitude": 126.894249830137, - "pageIndex": 15, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "14467", - "name": "나주곰탕 노안집", - "categoryName": "한식", - "address": "광주광역시 서구 서광주로 171 (마륵동) 101호", - "phone": "062-382-0525", - "representativeMenu": "곰탕", - "price": 9000, - "latitude": 35.1424008219587, - "longitude": 126.84867047979041, - "pageIndex": 15, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2542", - "name": "정통짜장", - "categoryName": "중식", - "address": "대전광역시 동구 동대전로 102 (대동)", - "phone": "042-631-3535", - "representativeMenu": "짜장면", - "price": 7500, - "latitude": 36.3313112531177, - "longitude": 127.444394046485, - "pageIndex": 15, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "18133", - "name": "제일국수", - "categoryName": "한식", - "address": "대전광역시 동구 계족로 398 (성남동) (성남동)", - "phone": "042-626-7467", - "representativeMenu": "잔치국수", - "price": 5000, - "latitude": 36.34716116444066, - "longitude": 127.43251503519676, - "pageIndex": 15, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "18134", - "name": "제일짜장", - "categoryName": "중식", - "address": "대전광역시 동구 옥천로176번길 15-17 (판암동) (판암동)", - "phone": "042-322-9999", - "representativeMenu": "짜장면", - "price": 3900, - "latitude": 36.316651760925616, - "longitude": 127.46034281277733, - "pageIndex": 15, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "16820", - "name": "동호손칼국수", - "categoryName": "한식", - "address": "울산광역시 남구 월평로37번길 8 (신정동) 1층", - "phone": "0507-1348-4813", - "representativeMenu": "손칼국수", - "price": 6000, - "latitude": 35.542081300176, - "longitude": 129.3095258019906, - "pageIndex": 15, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "15119", - "name": "만리장성", - "categoryName": "중식", - "address": "울산광역시 남구 번영로233번길 2 (신정동) 1층", - "phone": "052-256-1325", - "representativeMenu": "유니짜장", - "price": 6000, - "latitude": 35.5456689671537, - "longitude": 129.32345313112896, - "pageIndex": 15, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "2900", - "name": "만추", - "categoryName": "한식", - "address": "울산광역시 남구 돋질로239번길 4-4", - "phone": "052-260-0123", - "representativeMenu": "낙지볶음", - "price": 9000, - "latitude": 35.5434956538115, - "longitude": 129.331253640737, - "pageIndex": 15, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "14019", - "name": "미랑", - "categoryName": "한식", - "address": "경기도 수원시 장안구 만석로 181 (송죽동) 1층", - "phone": "031-255-7200", - "representativeMenu": "소고기국밥", - "price": 5900, - "latitude": 37.30303778554212, - "longitude": 126.99929045467675, - "pageIndex": 15, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "3444", - "name": "미소레", - "categoryName": "기타요식업", - "address": "경기도 수원시 팔달구 덕영대로 지하911 (매산로1가) 64호", - "phone": "031-247-9449", - "representativeMenu": "아메리카노", - "price": 3400, - "latitude": 37.2674076594333, - "longitude": 127.00066634836122, - "pageIndex": 15, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "11033", - "name": "미영목욕탕", - "categoryName": "목욕업", - "address": "경기도 수원시 권선구 정조로 432 (세류동)", - "phone": "031-236-5038", - "representativeMenu": "목욕료", - "price": 9000, - "latitude": 37.2474693136438, - "longitude": 127.014533989176, - "pageIndex": 15, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "16810", - "name": "민속왕순대", - "categoryName": "한식", - "address": "경기도 수원시 영통구 매탄로 61 (매탄동) 1층", - "phone": "031-238-5862", - "representativeMenu": "순대국밥", - "price": 9000, - "latitude": 37.25670557506686, - "longitude": 127.04114285158384, - "pageIndex": 15, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "4392", - "name": "안가네밥집", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 남춘로25번길 4-1 1층(퇴계동)", - "phone": "033-255-0528", - "representativeMenu": "두부전골(2인이상)", - "price": 7000, - "latitude": 37.863683071761, - "longitude": 127.730587479698, - "pageIndex": 15, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4393", - "name": "양지뜨락", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 동면 만천양지길 114 양지뜨락", - "phone": "033-244-6690", - "representativeMenu": "손두부전골", - "price": 8000, - "latitude": 37.88764975508379, - "longitude": 127.7665243763595, - "pageIndex": 15, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "16986", - "name": "로얄생고기", - "categoryName": "한식", - "address": "충청북도 청주시 서원구 봉명로 238-1 (사창동) (사창동)", - "phone": "043-262-9233", - "representativeMenu": "점심특선(짜글이)", - "price": 9000, - "latitude": 36.63972616939694, - "longitude": 127.46810353853678, - "pageIndex": 15, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15780", - "name": "마신네제육볶음짜장", - "categoryName": "중식", - "address": "충청북도 청주시 흥덕구 1순환로594번길 48 (봉명동) 1층", - "phone": "043-262-0789", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 36.640964119481026, - "longitude": 127.45784060326959, - "pageIndex": 15, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4966", - "name": "사라헤어라인", - "categoryName": "미용업", - "address": "충청남도 천안시 서북구 양지21길 25 (성정동)", - "phone": "041-575-5093", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.8127160425691, - "longitude": 127.138482517182, - "pageIndex": 15, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4967", - "name": "사천냥클럽", - "categoryName": "미용업", - "address": "충청남도 천안시 서북구 두정로 271 (두정동)", - "phone": "041-564-5283", - "representativeMenu": "커트", - "price": 5000, - "latitude": 36.8332567599608, - "longitude": 127.147007440446, - "pageIndex": 15, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4943", - "name": "삼양순대", - "categoryName": "한식", - "address": "충청남도 천안시 동남구 공설시장1길 9 (대흥동)", - "phone": "041-562-3980", - "representativeMenu": "순대국밥", - "price": 8000, - "latitude": 36.8099075703016, - "longitude": 127.148908259385, - "pageIndex": 15, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4944", - "name": "서산순대집", - "categoryName": "한식", - "address": "충청남도 천안시 동남구 큰시장길 17 (사직동)", - "phone": "041-555-3723", - "representativeMenu": "순대국밥", - "price": 8000, - "latitude": 36.8018424794039, - "longitude": 127.148521406806, - "pageIndex": 15, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "5183", - "name": "가야장", - "categoryName": "중식", - "address": "전북특별자치도 군산시 경암4길 4 경암동", - "phone": "063-442-2760", - "representativeMenu": "짜장면", - "price": 6000, - "latitude": 35.9758848350524, - "longitude": 126.731277098377, - "pageIndex": 15, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "14783", - "name": "건행사", - "categoryName": "한식", - "address": "전북특별자치도 군산시 문화로 194 (미장동) 미장동", - "phone": "063-452-3880", - "representativeMenu": "양념 제육(600g)", - "price": 3500, - "latitude": 35.96975827182978, - "longitude": 126.72713182040677, - "pageIndex": 15, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "13060", - "name": "국일식당", - "categoryName": "한식", - "address": "전북특별자치도 군산시 평화길 99-4 (죽성동) 국일식당", - "phone": "063-445-2716", - "representativeMenu": "생선탕", - "price": 10000, - "latitude": 35.98618129717657, - "longitude": 126.71664597988809, - "pageIndex": 15, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5737", - "name": "구봉국수", - "categoryName": "한식", - "address": "전라남도 여수시 좌수영로 18-4 (서교동)", - "phone": "061-641-0389", - "representativeMenu": "잔치국수", - "price": 6000, - "latitude": 34.7420171629949, - "longitude": 127.728259892105, - "pageIndex": 15, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5750", - "name": "구이구이식당", - "categoryName": "한식", - "address": "전라남도 여수시 공화남 2길 19 (공화동)", - "phone": "061-666-6567", - "representativeMenu": "생선구이백반", - "price": 10000, - "latitude": 34.7446444430853, - "longitude": 127.742681652413, - "pageIndex": 15, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5738", - "name": "국수가 맛있는 집", - "categoryName": "한식", - "address": "전라남도 여수시 거북선공원2길 11 (학동)", - "phone": "061-686-6640", - "representativeMenu": "잔치국수", - "price": 6000, - "latitude": 34.7606101451048, - "longitude": 127.66632099815, - "pageIndex": 15, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6391", - "name": "대왕한정식", - "categoryName": "한식", - "address": "경상북도 포항시 남구 상도로26번길 10 대왕한정식", - "phone": "054-277-8570", - "representativeMenu": "된장찌개", - "price": 9000, - "latitude": 36.0112042608931, - "longitude": 129.353700089153, - "pageIndex": 15, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "14877", - "name": "더(the) 공감", - "categoryName": "미용업", - "address": "경상북도 포항시 북구 환호공원길 17-4 (환호동) 1층", - "phone": "054-615-9097", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.06810739171294, - "longitude": 129.39160852450493, - "pageIndex": 15, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6785", - "name": "발리불소사우나", - "categoryName": "목욕업", - "address": "경상남도 창원시 마산회원구 석전동16길 28 (석전동)", - "phone": "055-292-3588", - "representativeMenu": "목욕(대인)", - "price": 7000, - "latitude": 35.2368615089355, - "longitude": 128.579505619476, - "pageIndex": 15, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "7130", - "name": "동문시장고기국수금복식당", - "categoryName": "한식", - "address": "제주특별자치도 제주시 동문로 16", - "phone": "064-757-6055", - "representativeMenu": "고기국수", - "price": 8000, - "latitude": 33.5127966491588, - "longitude": 126.5283196783, - "pageIndex": 15, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "7198", - "name": "동진", - "categoryName": "한식", - "address": "제주특별자치도 제주시 동문로4길 9 (일도일동)", - "phone": "-", - "representativeMenu": "멸치국수", - "price": 6000, - "latitude": 33.5120874337174, - "longitude": 126.528242265925, - "pageIndex": 15, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "15821", - "name": "디벨롭(주식회사 마켓로스팅)", - "categoryName": "기타요식업", - "address": "제주특별자치도 제주시 고산동산5길 4 (이도이동) 1층", - "phone": "1800-6816", - "representativeMenu": "플렛 화이트", - "price": 3000, - "latitude": 33.49553210244031, - "longitude": 126.53372036725969, - "pageIndex": 15, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "11580", - "name": "홍순두부", - "categoryName": "한식", - "address": "서울특별시 종로구 명륜길 50 1층", - "phone": "-", - "representativeMenu": "홍순두부", - "price": 5500, - "latitude": 37.5892935619767, - "longitude": 126.994629871047, - "pageIndex": 16, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "13929", - "name": "효자왕족발", - "categoryName": "한식", - "address": "서울특별시 종로구 자하문로 31-2 (통인동) 1층", - "phone": "02-735-7601", - "representativeMenu": "보쌈정식(점심)", - "price": 9000, - "latitude": 37.578801957623014, - "longitude": 126.9712764779437, - "pageIndex": 16, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "19242", - "name": "흥진옥", - "categoryName": "한식", - "address": "서울특별시 종로구 종로5길 19-12 (청진동) 1층", - "phone": "02-732-2214", - "representativeMenu": "뼈해장국", - "price": 10000, - "latitude": 37.571396433403386, - "longitude": 126.98027437148129, - "pageIndex": 16, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "1424", - "name": "마을식당", - "categoryName": "한식", - "address": "부산광역시 서구 구덕로148번길 37 (토성동1가)", - "phone": "051-231-7877", - "representativeMenu": "순두부찌개", - "price": 7000, - "latitude": 35.098196151826, - "longitude": 129.022780265053, - "pageIndex": 16, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "16518", - "name": "만두우", - "categoryName": "한식", - "address": "부산광역시 서구 충무대로255번길 5-39 (남부민동) 1층", - "phone": "051-244-1719", - "representativeMenu": "고기만두", - "price": 4500, - "latitude": 35.09250331554456, - "longitude": 129.02367538034923, - "pageIndex": 16, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1425", - "name": "명문김밥", - "categoryName": "한식", - "address": "부산광역시 서구 구덕로 124번길 16-1 (토성동4가)", - "phone": "051-254-9295", - "representativeMenu": "원조김밥", - "price": 2500, - "latitude": 35.097384071594, - "longitude": 129.022711843754, - "pageIndex": 16, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1866", - "name": "도심속바닷가식당", - "categoryName": "일식", - "address": "대구광역시 동구 화랑로 508 (용계동)", - "phone": "053-962-5444", - "representativeMenu": "회덮밥", - "price": 7000, - "latitude": 35.8746900465407, - "longitude": 128.67940877344, - "pageIndex": 16, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "17588", - "name": "브레드나눔터", - "categoryName": "베이커리", - "address": "인천 동구 화도진로 36 1층(송현동)", - "phone": "010-6435-2786", - "representativeMenu": "꽈배기 12개", - "price": 5000, - "latitude": 37.4759668751201, - "longitude": 126.634280823838, - "pageIndex": 16, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "13023", - "name": "석이네분식", - "categoryName": "한식", - "address": "인천광역시 동구 샛골로162번길 17 (송림동) 1층 (현대시장 내)", - "phone": "010-2307-9215", - "representativeMenu": "백반", - "price": 7000, - "latitude": 37.47696074463108, - "longitude": 126.64588420994905, - "pageIndex": 16, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "17597", - "name": "선이네생선구이", - "categoryName": "한식", - "address": "인천 동구 샛골로 128-1 1층(송림동)", - "phone": "032-762-4358", - "representativeMenu": "생선구이", - "price": 10000, - "latitude": 37.4737972412671, - "longitude": 126.64440141639, - "pageIndex": 16, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "17610", - "name": "송학남원추어탕", - "categoryName": "한식", - "address": "인천 동구 수문통로 15 1층(송현동)", - "phone": "032-765-5256", - "representativeMenu": "추어탕", - "price": 10000, - "latitude": 37.4779829436, - "longitude": 126.632329265245, - "pageIndex": 16, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2288", - "name": "남진컴퓨터", - "categoryName": "세탁업", - "address": "광주광역시 서구 구성로 109-3 (양동)", - "phone": "062-368-3931", - "representativeMenu": "정장1벌드라이", - "price": 6000, - "latitude": 35.1488007460721, - "longitude": 126.907060175109, - "pageIndex": 16, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "14036", - "name": "담양통추어탕", - "categoryName": "한식", - "address": "광주광역시 서구 월드컵4강로229번길 47 (쌍촌동) 1층", - "phone": "062-384-9980", - "representativeMenu": "추어탕", - "price": 10000, - "latitude": 35.154919778981, - "longitude": 126.86578570780239, - "pageIndex": 16, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "14736", - "name": "대성떡방앗간", - "categoryName": "기타비요식업", - "address": "광주광역시 서구 상무대로1005번길 46 (내방동) 1층", - "phone": "062-365-0059", - "representativeMenu": "참기름 350ml", - "price": 10000, - "latitude": 35.155975871786964, - "longitude": 126.87179971307111, - "pageIndex": 16, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2548", - "name": "주연칼국수", - "categoryName": "한식", - "address": "대전광역시 동구 흥룡로 29-1 (가양동)", - "phone": "042-626-3838", - "representativeMenu": "바지락 칼국수", - "price": 5500, - "latitude": 36.3488890741268, - "longitude": 127.447085109324, - "pageIndex": 16, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "16082", - "name": "중국집", - "categoryName": "중식", - "address": "대전광역시 동구 대전로791번길 44 (중동) 1층 중국집", - "phone": "042-226-0648", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 36.32950860974082, - "longitude": 127.43082628893573, - "pageIndex": 16, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2536", - "name": "지선미용타운", - "categoryName": "미용업", - "address": "대전광역시 동구 솔랑시울길 87 (소제동)", - "phone": "-", - "representativeMenu": "미용료(커트)", - "price": 5000, - "latitude": 36.3353609397276, - "longitude": 127.434496484742, - "pageIndex": 16, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "15108", - "name": "명문칼국수", - "categoryName": "한식", - "address": "울산광역시 남구 월평로37번길 5 (신정동) 1층", - "phone": "052-274-2719", - "representativeMenu": "손칼국수", - "price": 6000, - "latitude": 35.541808785746284, - "longitude": 129.30930615922028, - "pageIndex": 16, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "11681", - "name": "모두랑국수먹는날", - "categoryName": "한식", - "address": "울산광역시 남구 수암로 54번길 17 1층", - "phone": "052-260-2411", - "representativeMenu": "국수", - "price": 5000, - "latitude": 35.5292661959496, - "longitude": 129.313833538665, - "pageIndex": 16, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "17495", - "name": "무교동갈비", - "categoryName": "한식", - "address": "울산광역시 남구 북부순환도로13번길 6-3 (무거동) 1층", - "phone": "052-221-0472", - "representativeMenu": "뷔페정식", - "price": 8000, - "latitude": 35.55177936582806, - "longitude": 129.26483586878214, - "pageIndex": 16, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "3440", - "name": "백천홍두깨칼국수", - "categoryName": "한식", - "address": "경기도 수원시 팔달구 수원천로 264번길 21-11", - "phone": "070-7559-1261", - "representativeMenu": "칼국수(보통)", - "price": 5000, - "latitude": 37.2774167510803, - "longitude": 127.019892600036, - "pageIndex": 16, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "13686", - "name": "벽산세탁소", - "categoryName": "세탁업", - "address": "경기도 수원시 장안구 파장로 53 (정자동, 정자 벽산블루밍) 108호", - "phone": "031-245-1269", - "representativeMenu": "드라이클리닝", - "price": 6000, - "latitude": 37.3054993333515, - "longitude": 126.99475365985273, - "pageIndex": 16, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "4394", - "name": "언덕집", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 금강로83번길 6 (운교동)", - "phone": "033-256-2220", - "representativeMenu": "보리밥뷔페", - "price": 7000, - "latitude": 37.8783065745038, - "longitude": 127.730392278353, - "pageIndex": 16, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4357", - "name": "연화각", - "categoryName": "중식", - "address": "강원특별자치도 춘천시 충혼길52번길 20-23 (온의동)", - "phone": "033-256-5863", - "representativeMenu": "짜장면", - "price": 6000, - "latitude": 37.8617817124155, - "longitude": 127.71898650725, - "pageIndex": 16, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "16640", - "name": "예대미용실", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 후만로 69-1 (후평동) 1층", - "phone": "033-241-2937", - "representativeMenu": "커트", - "price": 8000, - "latitude": 37.87612733597792, - "longitude": 127.75221288287008, - "pageIndex": 16, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4395", - "name": "옛촌", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 향교앞길 4 (교동)", - "phone": "033-254-1511", - "representativeMenu": "백반", - "price": 8000, - "latitude": 37.8810059576535, - "longitude": 127.734270783857, - "pageIndex": 16, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "14740", - "name": "만나김치식당", - "categoryName": "한식", - "address": "충청북도 청주시 서원구 남이면 양촌2길 12 (남이면)", - "phone": "043-295-2366", - "representativeMenu": "백반", - "price": 6000, - "latitude": 36.59132784293651, - "longitude": 127.46831535088468, - "pageIndex": 16, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "14764", - "name": "만리장성", - "categoryName": "중식", - "address": "충청북도 청주시 흥덕구 덕암로 2 (봉명동) 봉명동 2803", - "phone": "0507-1440-7787", - "representativeMenu": "짬뽕", - "price": 8000, - "latitude": 36.6525501290308, - "longitude": 127.45432666746878, - "pageIndex": 16, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "14755", - "name": "맘이가", - "categoryName": "한식", - "address": "충청북도 청주시 청원구 팔결로 170 (외남동)", - "phone": "043-225-0033", - "representativeMenu": "백반", - "price": 6000, - "latitude": 36.69825806579632, - "longitude": 127.48090489420618, - "pageIndex": 16, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "16991", - "name": "메르토스트", - "categoryName": "기타요식업", - "address": "충청북도 청주시 서원구 창신로26번길 4 (사창동) (사창동)", - "phone": "0507-1411-1253", - "representativeMenu": "계란햄치즈토스트", - "price": 3000, - "latitude": 36.633121740098396, - "longitude": 127.46456147717325, - "pageIndex": 16, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4945", - "name": "서산집", - "categoryName": "한식", - "address": "충청남도 천안시 동남구 사직로 18 (사직동)", - "phone": "041-552-6650", - "representativeMenu": "순대국밥", - "price": 8000, - "latitude": 36.8017540145744, - "longitude": 127.149508884078, - "pageIndex": 16, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "11164", - "name": "선경세탁소", - "categoryName": "세탁업", - "address": "충청남도 천안시 동남구 양지4길 15 (봉명동)", - "phone": "041-574-7001", - "representativeMenu": "신사복드라이", - "price": 9000, - "latitude": 36.8084580969342, - "longitude": 127.137098587523, - "pageIndex": 16, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "14780", - "name": "군산꽁보리", - "categoryName": "한식", - "address": "전북특별자치도 군산시 신금길 18 (신영동) 2층, 414호(공설시장)", - "phone": "063-732-6065", - "representativeMenu": "보리비빔밥", - "price": 5500, - "latitude": 35.98317108726744, - "longitude": 126.72032453610362, - "pageIndex": 16, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5187", - "name": "꼬꼬꽥꽥", - "categoryName": "한식", - "address": "전북특별자치도 군산시 백릉로 35 경암동", - "phone": "063-464-4943", - "representativeMenu": "닭곰탕", - "price": 8000, - "latitude": 35.9750863927652, - "longitude": 126.729895097495, - "pageIndex": 16, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5188", - "name": "나라식당", - "categoryName": "한식", - "address": "전북특별자치도 군산시 서흥안2길 30 문화동", - "phone": "063-462-0673", - "representativeMenu": "백반", - "price": 8000, - "latitude": 35.9722769459747, - "longitude": 126.708026322198, - "pageIndex": 16, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "16455", - "name": "김연선 헤어뷰", - "categoryName": "미용업", - "address": "전라남도 여수시 돌산읍 강남동로 46-19 1층 104호(청솔상가)", - "phone": "061-643-0669", - "representativeMenu": "소아 커트", - "price": 8000, - "latitude": 34.71784643561729, - "longitude": 127.75728889294511, - "pageIndex": 16, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5712", - "name": "남성커트클럽 블루가이", - "categoryName": "이용업", - "address": "전라남도 여수시 여문2로 97 (문수동)", - "phone": "061-653-0317", - "representativeMenu": "커트", - "price": 10000, - "latitude": 34.7547925562527, - "longitude": 127.695461279732, - "pageIndex": 16, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5751", - "name": "남촌식당", - "categoryName": "한식", - "address": "전라남도 여수시 신기남길 33 (신기동)", - "phone": "061-682-1619", - "representativeMenu": "삼겹살", - "price": 10000, - "latitude": 34.7607366293679, - "longitude": 127.672645842488, - "pageIndex": 16, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "13340", - "name": "내고향식당", - "categoryName": "한식", - "address": "전라남도 여수시 어항로 13-1 (봉산동) 내고향식당", - "phone": "061-642-9032", - "representativeMenu": "비빔밥(점심)", - "price": 7000, - "latitude": 34.732507178346495, - "longitude": 127.72016163447275, - "pageIndex": 16, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6435", - "name": "더헤어", - "categoryName": "미용업", - "address": "경상북도 포항시 북구 흥해읍 중성로32번길 14 (1층)", - "phone": "054-261-6785", - "representativeMenu": "여성커트", - "price": 8000, - "latitude": 36.1074175340788, - "longitude": 129.346453745514, - "pageIndex": 16, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6484", - "name": "돈부야", - "categoryName": "일식", - "address": "경상북도 포항시 북구 삼호로8번길 1 1층", - "phone": "054-246-0771", - "representativeMenu": "우동", - "price": 7500, - "latitude": 36.0418016819054, - "longitude": 129.36741065867, - "pageIndex": 16, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6436", - "name": "동동이네시니어펌전문점", - "categoryName": "미용업", - "address": "경상북도 포항시 북구 월막길 2", - "phone": "054-247-6989", - "representativeMenu": "커트", - "price": 7000, - "latitude": 36.049135177781, - "longitude": 129.367187661289, - "pageIndex": 16, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6812", - "name": "보리밥집", - "categoryName": "한식", - "address": "경상남도 창원시 성산구 마디미로28 D동 203호 (상남동, 상남재래시장)", - "phone": "055-263-7298", - "representativeMenu": "보리밥", - "price": 7000, - "latitude": 35.2222148675498, - "longitude": 128.683379990696, - "pageIndex": 16, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "6772", - "name": "복가득뚱보갈비", - "categoryName": "한식", - "address": "경상남도 창원시 마산합포구 노산서18길 114 (교방동)", - "phone": "055-243-0172", - "representativeMenu": "물냉면", - "price": 6000, - "latitude": 35.2148634483788, - "longitude": 128.564078372768, - "pageIndex": 16, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "6835", - "name": "복개천감자탕", - "categoryName": "한식", - "address": "경상남도 창원시 진해구 중원로79번길 13-1 (송학동)", - "phone": "055-546-5580", - "representativeMenu": "뼈해장국", - "price": 8000, - "latitude": 35.1513509347336, - "longitude": 128.65847962579, - "pageIndex": 16, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "14091", - "name": "복자네뼈해장국", - "categoryName": "한식", - "address": "경상남도 창원시 진해구 이동로38번길 8 (이동) 1층", - "phone": "0507-1404-5766", - "representativeMenu": "뼈해장국(1인분)", - "price": 8500, - "latitude": 35.15045351250758, - "longitude": 128.6957928158142, - "pageIndex": 16, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "11864", - "name": "또옵서식당", - "categoryName": "한식", - "address": "제주특별자치도 제주시 번영로 459", - "phone": "064-794-0051", - "representativeMenu": "된장찌개", - "price": 6000, - "latitude": 33.4922578901329, - "longitude": 126.591494992712, - "pageIndex": 16, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "7216", - "name": "또와헤어샾", - "categoryName": "미용업", - "address": "제주특별자치도 제주시 지석6길 9 또와헤어샾", - "phone": "064-756-6528", - "representativeMenu": "커트", - "price": 10000, - "latitude": 33.5203409285847, - "longitude": 126.581100037461, - "pageIndex": 16, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "18037", - "name": "뛰니뛰니", - "categoryName": "기타비요식업", - "address": "제주특별자치도 제주시 연신로 76 (이도이동) 뛰니뛰니", - "phone": "064-727-0369", - "representativeMenu": "어린이입장료", - "price": 6000, - "latitude": 33.4946894705016, - "longitude": 126.54802422292092, - "pageIndex": 16, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "968", - "name": "345국수", - "categoryName": "한식", - "address": "서울특별시 중구 청구로 83-9 1층", - "phone": "02-223-5257", - "representativeMenu": "손수제비", - "price": 8000, - "latitude": 37.560172073734, - "longitude": 127.013228537389, - "pageIndex": 17, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "979", - "name": "거목식당", - "categoryName": "한식", - "address": "서울특별시 중구 을지로36길 18 (을지로5가)", - "phone": "02-226-0010", - "representativeMenu": "된장찌개", - "price": 7000, - "latitude": 37.5659767545803, - "longitude": 127.001477572948, - "pageIndex": 17, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "16085", - "name": "공화춘", - "categoryName": "중식", - "address": "서울특별시 중구 청파로 457-1 (중림동) 2층", - "phone": "02-723-4038", - "representativeMenu": "짜장면", - "price": 6000, - "latitude": 37.56020605082971, - "longitude": 126.96781059246393, - "pageIndex": 17, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "1426", - "name": "미소정 멸치국수", - "categoryName": "한식", - "address": "부산광역시 서구 대영로 85번길 24-1 (동대신동2가)", - "phone": "051-242-8531", - "representativeMenu": "멸치국수", - "price": 4000, - "latitude": 35.1121156286607, - "longitude": 129.020062894885, - "pageIndex": 17, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1427", - "name": "바보면가", - "categoryName": "한식", - "address": "부산광역시 서구 임시수도기념로 21-10 (부민동3가)", - "phone": "051-255-8336", - "representativeMenu": "손칼국수+돈까스", - "price": 7000, - "latitude": 35.1030261158569, - "longitude": 129.018574291429, - "pageIndex": 17, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "17740", - "name": "동림식당", - "categoryName": "한식", - "address": "대구광역시 동구 파계로116길 49 (중대동)", - "phone": "053-982-2860", - "representativeMenu": "칼국수", - "price": 4000, - "latitude": 35.98617130128156, - "longitude": 128.6374302331672, - "pageIndex": 17, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "1871", - "name": "만보칼국수", - "categoryName": "한식", - "address": "대구광역시 동구 팔공로209길 15 (백안동)", - "phone": "053-982-7524", - "representativeMenu": "칼국수", - "price": 6000, - "latitude": 35.9539345412516, - "longitude": 128.693850133799, - "pageIndex": 17, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "14063", - "name": "머리쟁이", - "categoryName": "미용업", - "address": "대구광역시 동구 아양로 117 (신암동)", - "phone": "053-957-0050", - "representativeMenu": "커트", - "price": 8000, - "latitude": 35.88476589784557, - "longitude": 128.62608730053938, - "pageIndex": 17, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "13034", - "name": "시온이네집밥", - "categoryName": "한식", - "address": "인천광역시 동구 샛골로 168-3 (송림동) 1층 (현대시장 내)", - "phone": "032-710-9274", - "representativeMenu": "청국장", - "price": 6000, - "latitude": 37.47735018760701, - "longitude": 126.6452386553363, - "pageIndex": 17, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2101", - "name": "신대청마루", - "categoryName": "한식", - "address": "인천광역시 동구 방축로 105 (송림동, 산업용품유통센타 편익 C동 지하 21호)", - "phone": "032-589-2355", - "representativeMenu": "백반", - "price": 7000, - "latitude": 37.4841229128464, - "longitude": 126.656111822612, - "pageIndex": 17, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2311", - "name": "대정회관", - "categoryName": "한식", - "address": "광주광역시 서구 대남대로462번길 3 (농성동)", - "phone": "062-364-7999", - "representativeMenu": "청국장", - "price": 8000, - "latitude": 35.1515316175609, - "longitude": 126.88645436957, - "pageIndex": 17, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "14042", - "name": "대흥민속목욕탕", - "categoryName": "목욕업", - "address": "광주광역시 서구 운천로 34 (금호동) 금호1동", - "phone": "062-374-7079", - "representativeMenu": "성인", - "price": 7000, - "latitude": 35.13576588266793, - "longitude": 126.85944266692678, - "pageIndex": 17, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "13667", - "name": "동해계절맛집", - "categoryName": "한식", - "address": "광주광역시 서구 계수로 56 (쌍촌동) 1층", - "phone": "062-385-6363", - "representativeMenu": "김치찌개", - "price": 9000, - "latitude": 35.16026802456817, - "longitude": 126.8567005862501, - "pageIndex": 17, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2312", - "name": "동해회바다", - "categoryName": "한식", - "address": "광주광역시 서구 경열로26번길 3 (농성동)", - "phone": "062-367-1023", - "representativeMenu": "생선초밥", - "price": 10000, - "latitude": 35.1514604680169, - "longitude": 126.88894822121, - "pageIndex": 17, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "16084", - "name": "진심만두", - "categoryName": "한식", - "address": "대전광역시 동구 대전로785번길 41-3 (원동) 119호", - "phone": "0507-1378-0210", - "representativeMenu": "고기교자만두", - "price": 5000, - "latitude": 36.32895512036512, - "longitude": 127.4312023578623, - "pageIndex": 17, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2549", - "name": "진짜손칼국수", - "categoryName": "한식", - "address": "대전광역시 동구 우암로 341-2 (가양동)", - "phone": "042-622-0109", - "representativeMenu": "칼국수", - "price": 6000, - "latitude": 36.3496914492847, - "longitude": 127.451550689252, - "pageIndex": 17, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2537", - "name": "착한미용실", - "categoryName": "미용업", - "address": "대전광역시 동구 중앙로204번길 6 (중동)", - "phone": "042-222-0594", - "representativeMenu": "미용료(커트)", - "price": 9000, - "latitude": 36.3305464456764, - "longitude": 127.431800535141, - "pageIndex": 17, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "18135", - "name": "커피언니", - "categoryName": "기타요식업", - "address": "대전광역시 동구 중앙로203번길 36 (중동) (중동)", - "phone": "010-2254-7813", - "representativeMenu": "아메리카노", - "price": 3000, - "latitude": 36.33236086267619, - "longitude": 127.43077262275567, - "pageIndex": 17, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "15095", - "name": "미송", - "categoryName": "한식", - "address": "울산광역시 남구 수암로 171 (야음동) 1층", - "phone": "052-276-5445", - "representativeMenu": "김밥", - "price": 4000, - "latitude": 35.52698514192849, - "longitude": 129.3255895227967, - "pageIndex": 17, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "2890", - "name": "산동만두", - "categoryName": "중식", - "address": "울산광역시 남구 월평로37번길 8", - "phone": "052-226-7459", - "representativeMenu": "자장면", - "price": 5000, - "latitude": 35.5421330808182, - "longitude": 129.309578534087, - "pageIndex": 17, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "13862", - "name": "삼산국수", - "categoryName": "한식", - "address": "울산광역시 남구 삼산중로 41 (달동) 1층", - "phone": "052-256-3998", - "representativeMenu": "손칼국수", - "price": 6000, - "latitude": 35.53723577488518, - "longitude": 129.3356157418434, - "pageIndex": 17, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "11692", - "name": "분식나라 김밥마을", - "categoryName": "한식", - "address": "경기도 수원시 영통구 덕영대로 1699 (영통동)", - "phone": "031-206-0599", - "representativeMenu": "비빔밥", - "price": 7500, - "latitude": 37.2479713166815, - "longitude": 127.077097970377, - "pageIndex": 17, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "3395", - "name": "붕붕샐러드", - "categoryName": "기타요식업", - "address": "경기도 수원시 영통구 신원로 146 .", - "phone": "031-206-9891", - "representativeMenu": "아메리카노", - "price": 3000, - "latitude": 37.2494809372827, - "longitude": 127.057033352061, - "pageIndex": 17, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "14021", - "name": "블랙남성컷", - "categoryName": "미용업", - "address": "경기도 수원시 권선구 세권로 76 (세류동, 경일아파트) 105호", - "phone": "031-234-7585", - "representativeMenu": "커트", - "price": 9000, - "latitude": 37.25844888657563, - "longitude": 127.01243796592051, - "pageIndex": 17, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "13803", - "name": "오믈하우스", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 서부대성로227번길 24 (효자동) 2층", - "phone": "0507-1363-1331", - "representativeMenu": "오므라이스", - "price": 5000, - "latitude": 37.873367758817224, - "longitude": 127.74517942757676, - "pageIndex": 17, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4364", - "name": "와송칼국수", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 명동길 46-1 (중앙로3가)", - "phone": "033-255-7600", - "representativeMenu": "칼국수", - "price": 7000, - "latitude": 37.8772319253533, - "longitude": 127.724402610449, - "pageIndex": 17, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4396", - "name": "왕가", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 석사길 15 (석사동)", - "phone": "033-261-0559", - "representativeMenu": "한식뷔페", - "price": 6000, - "latitude": 37.8579328322032, - "longitude": 127.744971856148, - "pageIndex": 17, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4762", - "name": "명동식당", - "categoryName": "한식", - "address": "충청북도 청주시 흥덕구 천석로 56 (봉명동)", - "phone": "043-268-8320", - "representativeMenu": "청국장", - "price": 7000, - "latitude": 36.6403799754467, - "longitude": 127.465551511862, - "pageIndex": 17, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15524", - "name": "몽키만두", - "categoryName": "한식", - "address": "충청북도 청주시 흥덕구 사직대로 62 (복대동) 101호(몽키만두)", - "phone": "043-260-9132", - "representativeMenu": "고기만두", - "price": 5000, - "latitude": 36.634284271568625, - "longitude": 127.45416055015329, - "pageIndex": 17, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "18723", - "name": "성환반점", - "categoryName": "중식", - "address": "충청남도 천안시 서북구 성환읍 성진로 27 성환반점", - "phone": "041-581-3353", - "representativeMenu": "짬뽕", - "price": 9000, - "latitude": 36.91213733151647, - "longitude": 127.13855017469305, - "pageIndex": 17, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4968", - "name": "세븐데이남성커트", - "categoryName": "이용업", - "address": "충청남도 천안시 서북구 두정로 212 107호 (두정동)", - "phone": "041-568-6808", - "representativeMenu": "커트", - "price": 9000, - "latitude": 36.8333285541934, - "longitude": 127.140544198528, - "pageIndex": 17, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "14668", - "name": "셀프밥집", - "categoryName": "한식", - "address": "충청남도 천안시 서북구 나사렛대길 22-4 (쌍용동) .", - "phone": "041-575-1213", - "representativeMenu": "고추장불고기", - "price": 8000, - "latitude": 36.79863752371899, - "longitude": 127.11896536809991, - "pageIndex": 17, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "17033", - "name": "담다한식뷔페", - "categoryName": "한식", - "address": "전북특별자치도 군산시 문화로 151 (수송동) 1층", - "phone": "0507-1495-1228", - "representativeMenu": "한식(초등학생)", - "price": 7000, - "latitude": 35.9701627176277, - "longitude": 126.72247350070346, - "pageIndex": 17, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "17032", - "name": "돔베초밥", - "categoryName": "일식", - "address": "전북특별자치도 군산시 수송남로 2 (수송동) 1층", - "phone": "063-471-8884", - "representativeMenu": "모듬초밥(10p)", - "price": 10000, - "latitude": 35.95970510152752, - "longitude": 126.71457201468164, - "pageIndex": 17, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "13056", - "name": "동신미용실", - "categoryName": "미용업", - "address": "전북특별자치도 군산시 창성3길 13 (개복동) 동신미용실", - "phone": "-", - "representativeMenu": "커트(여)", - "price": 8000, - "latitude": 35.984326824789925, - "longitude": 126.71266844987171, - "pageIndex": 17, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5713", - "name": "뉴미인", - "categoryName": "미용업", - "address": "전라남도 여수시 구봉산길 11-2 (국동)", - "phone": "061-642-7885", - "representativeMenu": "여성 커트", - "price": 10000, - "latitude": 34.7344828301154, - "longitude": 127.718486920101, - "pageIndex": 17, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5714", - "name": "늘고운 미용실", - "categoryName": "미용업", - "address": "전라남도 여수시 서교 6길 5 (서교동)", - "phone": "-", - "representativeMenu": "커트", - "price": 7000, - "latitude": 34.7423213814819, - "longitude": 127.728456280602, - "pageIndex": 17, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5753", - "name": "대명한우소머리곰탕", - "categoryName": "한식", - "address": "전라남도 여수시 시청서5길 8 (학동)", - "phone": "061-666-9988", - "representativeMenu": "한우설렁탕", - "price": 9000, - "latitude": 34.7567070697685, - "longitude": 127.657703549652, - "pageIndex": 17, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5754", - "name": "대성국밥", - "categoryName": "한식", - "address": "전라남도 여수시 좌수영로 42 (서교동)", - "phone": "-", - "representativeMenu": "소머리국밥", - "price": 6000, - "latitude": 34.7440040528689, - "longitude": 127.728555791744, - "pageIndex": 17, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6328", - "name": "동진이용소", - "categoryName": "이용업", - "address": "경상북도 포항시 남구 대해로 114", - "phone": "-", - "representativeMenu": "성인조발", - "price": 10000, - "latitude": 36.0208157469306, - "longitude": 129.364260018145, - "pageIndex": 17, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "18349", - "name": "두꺼비컷트", - "categoryName": "미용업", - "address": "경상북도 포항시 북구 문화로13번길 4 (덕수동) 두꺼비컷트", - "phone": "010-4538-8845", - "representativeMenu": "성인커트", - "price": 10000, - "latitude": 36.04313828411014, - "longitude": 129.36688103561735, - "pageIndex": 17, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "14090", - "name": "본가냉면", - "categoryName": "한식", - "address": "경상남도 창원시 진해구 이동로40번길 5 (이동) 1층, 이동 화이트광장 뒷골목", - "phone": "010-6664-3402", - "representativeMenu": "물냉면", - "price": 8000, - "latitude": 35.150346456545456, - "longitude": 128.69686429984836, - "pageIndex": 17, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "15394", - "name": "블랙맨", - "categoryName": "미용업", - "address": "경상남도 창원시 성산구 안민안길 17 (안민동) 103호, 블랙맨", - "phone": "070-4065-4802", - "representativeMenu": "컷트", - "price": 9000, - "latitude": 35.186564515371245, - "longitude": 128.69139110245138, - "pageIndex": 17, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "19281", - "name": "블루남성컷트", - "categoryName": "이용업", - "address": "경상남도 창원시 성산구 창이대로901번길 4 (대방동) 상가 112동 109호", - "phone": "010-4551-0848", - "representativeMenu": "컷트", - "price": 8000, - "latitude": 35.2047363655845, - "longitude": 128.70762132136215, - "pageIndex": 17, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "7046", - "name": "라영헤어숍", - "categoryName": "미용업", - "address": "제주특별자치도 제주시 다랑곶4길 18", - "phone": "064-744-3340", - "representativeMenu": "커트", - "price": 10000, - "latitude": 33.4883543798046, - "longitude": 126.480241062992, - "pageIndex": 17, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "7135", - "name": "마라톤식당", - "categoryName": "한식", - "address": "제주특별자치도 제주시 서광로2길 15", - "phone": "064-757-1945", - "representativeMenu": "김치찌개", - "price": 7000, - "latitude": 33.498788985127, - "longitude": 126.512962697004, - "pageIndex": 17, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "980", - "name": "광희식당", - "categoryName": "한식", - "address": "서울특별시 중구 장충단로 212-2 (광희동2가)", - "phone": "02-226-1555", - "representativeMenu": "된장찌개", - "price": 7000, - "latitude": 37.5636366550507, - "longitude": 127.007233814214, - "pageIndex": 18, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "16087", - "name": "뉴욕스넥", - "categoryName": "한식", - "address": "서울특별시 중구 을지로 지하131 (을지로3가) 56호", - "phone": "02-2274-1110", - "representativeMenu": "야채김밥", - "price": 3500, - "latitude": 37.566442970950895, - "longitude": 126.99419916729464, - "pageIndex": 18, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "15373", - "name": "대박물갈비", - "categoryName": "한식", - "address": "서울특별시 중구 퇴계로4길 7 (남창동) 1층", - "phone": "02-755-6974", - "representativeMenu": "제육볶음", - "price": 9000, - "latitude": 37.557537858746215, - "longitude": 126.97773067463572, - "pageIndex": 18, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "981", - "name": "돈우가식당", - "categoryName": "한식", - "address": "서울특별시 중구 남대문로 25-17 1층(북창동)", - "phone": "02-378-1313", - "representativeMenu": "김치찌개", - "price": 7000, - "latitude": 37.5620306338518, - "longitude": 126.97816807023, - "pageIndex": 18, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "16515", - "name": "베이커리 루마카", - "categoryName": "기타요식업", - "address": "부산광역시 서구 구덕로265번길 34 (서대신동1가) 1층", - "phone": "051-243-4874", - "representativeMenu": "소금빵", - "price": 2200, - "latitude": 35.10824564582161, - "longitude": 129.0177444252452, - "pageIndex": 18, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1428", - "name": "별미집", - "categoryName": "한식", - "address": "부산광역시 서구 구덕로333번길 14 (서대신동3가)", - "phone": "051-254-9891", - "representativeMenu": "추어탕", - "price": 8000, - "latitude": 35.1133251923336, - "longitude": 129.015381162663, - "pageIndex": 18, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "15507", - "name": "보리정", - "categoryName": "한식", - "address": "부산광역시 서구 대영로74번길 27-7 (동대신동1가) 1층", - "phone": "051-248-8703", - "representativeMenu": "집밥정식", - "price": 7000, - "latitude": 35.109533954678874, - "longitude": 129.02014367187397, - "pageIndex": 18, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "17744", - "name": "면만드는사람들 팔공산점", - "categoryName": "한식", - "address": "대구광역시 동구 팔공로197길 39 (백안동)", - "phone": "053-982-3511", - "representativeMenu": "온메밀국수", - "price": 8000, - "latitude": 35.955968687471895, - "longitude": 128.69084189551475, - "pageIndex": 18, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "1872", - "name": "면사랑칼국수", - "categoryName": "한식", - "address": "대구광역시 동구 효동로 126 2층(효목동)", - "phone": "053-954-2001", - "representativeMenu": "칼국수", - "price": 7000, - "latitude": 35.8872864225781, - "longitude": 128.64111680973, - "pageIndex": 18, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "18130", - "name": "미도반점", - "categoryName": "중식", - "address": "대구광역시 동구 송라로12길 29 (신천동)", - "phone": "053-755-7524", - "representativeMenu": "짜장면", - "price": 4000, - "latitude": 35.874262579029114, - "longitude": 128.62137941519185, - "pageIndex": 18, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "1864", - "name": "미미미용실", - "categoryName": "미용업", - "address": "대구광역시 동구 동촌로346 백자맨션상가9동 103호(용계동)", - "phone": "010-5689-8867", - "representativeMenu": "컷(어린이)", - "price": 7000, - "latitude": 35.8767267035582, - "longitude": 128.677260687309, - "pageIndex": 18, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "2102", - "name": "아구군갈비양", - "categoryName": "한식", - "address": "인천광역시 동구 샛골로 117-1 (송림동)", - "phone": "032-766-5002", - "representativeMenu": "백반", - "price": 6000, - "latitude": 37.472961619829, - "longitude": 126.643853360434, - "pageIndex": 18, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "13021", - "name": "어도(魚島)", - "categoryName": "한식", - "address": "인천광역시 동구 금곡로 56-1 (금곡동) 1층", - "phone": "032-761-8887", - "representativeMenu": "순두부", - "price": 8000, - "latitude": 37.47325445087663, - "longitude": 126.6418035282525, - "pageIndex": 18, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "13026", - "name": "에불바리 떡볶이", - "categoryName": "기타요식업", - "address": "인천광역시 동구 중앙로 15 (금곡동) 1층", - "phone": "070-8818-1919", - "representativeMenu": "아메리카노", - "price": 1500, - "latitude": 37.4734332394039, - "longitude": 126.63504718718686, - "pageIndex": 18, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "14300", - "name": "와글와글 맛있는 국수집", - "categoryName": "한식", - "address": "인천광역시 동구 솔빛로 87-1 (송림동) 1층", - "phone": "032-764-3959", - "representativeMenu": "잔치국수", - "price": 5000, - "latitude": 37.47626291093436, - "longitude": 126.64329789059067, - "pageIndex": 18, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2289", - "name": "럭키세탁소", - "categoryName": "세탁업", - "address": "광주광역시 서구 염화로40번길 20 (화정동)", - "phone": "062-372-6901", - "representativeMenu": "양복1벌드라이", - "price": 7000, - "latitude": 35.1366373980231, - "longitude": 126.87488624762, - "pageIndex": 18, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2315", - "name": "모리화", - "categoryName": "중식", - "address": "광주광역시 서구 풍금로 31-1 (풍암동)", - "phone": "062-652-8552", - "representativeMenu": "짜장면", - "price": 5500, - "latitude": 35.122275201315, - "longitude": 126.863800531773, - "pageIndex": 18, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2316", - "name": "무등회관", - "categoryName": "한식", - "address": "광주광역시 서구 죽봉대로111번길 12 (광천동)", - "phone": "062-364-2746", - "representativeMenu": "돌솥비빔밥", - "price": 9000, - "latitude": 35.1635482674685, - "longitude": 126.882202724351, - "pageIndex": 18, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2573", - "name": "평양숨두부", - "categoryName": "한식", - "address": "대전광역시 동구 대전로 387 (가오동) (대성동)", - "phone": "042-284-4141", - "representativeMenu": "숨두부백반", - "price": 7000, - "latitude": 36.30147395225034, - "longitude": 127.45595934984647, - "pageIndex": 18, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "14917", - "name": "하늘이용원", - "categoryName": "이용업", - "address": "대전광역시 동구 비래서로42번길 89 (가양동) 가양동", - "phone": "-", - "representativeMenu": "컷트", - "price": 6000, - "latitude": 36.3502938694925, - "longitude": 127.44709305501448, - "pageIndex": 18, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2578", - "name": "한성짜장", - "categoryName": "중식", - "address": "대전광역시 동구 흥룡로74 (가양동)", - "phone": "042-635-2160", - "representativeMenu": "갈비탕", - "price": 8500, - "latitude": 36.3505650431666, - "longitude": 127.45145602789, - "pageIndex": 18, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "16814", - "name": "삼산국수전문점", - "categoryName": "한식", - "address": "울산광역시 남구 돋질로251번길 14-1 (삼산동) 1층", - "phone": "052-258-3998", - "representativeMenu": "칼국수", - "price": 7000, - "latitude": 35.544723940575366, - "longitude": 129.3321969935939, - "pageIndex": 18, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "11682", - "name": "삼시세끼만포장", - "categoryName": "한식", - "address": "울산광역시 남구 대학로 145번길 25", - "phone": "052-223-7847", - "representativeMenu": "정식", - "price": 9000, - "latitude": 35.5491127108744, - "longitude": 129.25926425639, - "pageIndex": 18, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "15101", - "name": "삼호밀면", - "categoryName": "한식", - "address": "울산광역시 남구 삼호로37번길 13 (무거동) 1층", - "phone": "052-277-6933", - "representativeMenu": "밀면", - "price": 7000, - "latitude": 35.551037197714315, - "longitude": 129.26826664991606, - "pageIndex": 18, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "18124", - "name": "블럭앤키즈 화서점", - "categoryName": "기타비요식업", - "address": "경기도 수원시 팔달구 일월로22번길 22-5 (화서동) 301호", - "phone": "031-292-9265", - "representativeMenu": "블럭방(1시간)", - "price": 7000, - "latitude": 37.28583154659394, - "longitude": 126.98139721057959, - "pageIndex": 18, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "14527", - "name": "빵마루", - "categoryName": "베이커리", - "address": "경기도 수원시 팔달구 세지로174번길 33 (인계동) 1층", - "phone": "031-225-4507", - "representativeMenu": "팥빵", - "price": 1700, - "latitude": 37.26651280121945, - "longitude": 127.02379082579587, - "pageIndex": 18, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "15307", - "name": "사랑이네 베트남쌀국수", - "categoryName": "기타요식업", - "address": "경기도 수원시 장안구 조원로89번길 44-2 (조원동) 1층", - "phone": "010-3122-7457", - "representativeMenu": "쌀국수", - "price": 5000, - "latitude": 37.29972174575287, - "longitude": 127.0138643281873, - "pageIndex": 18, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "4347", - "name": "왕언니네미장원", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 중앙로 77-2 (중앙로2가)", - "phone": "-", - "representativeMenu": "커트", - "price": 8000, - "latitude": 37.8786098574848, - "longitude": 127.72562344249, - "pageIndex": 18, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "13804", - "name": "왕짱구", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 춘천로 195 (효자동) 1층", - "phone": "033-254-4862", - "representativeMenu": "꼬마김밥(8줄)", - "price": 3500, - "latitude": 37.87691958683272, - "longitude": 127.7358144650472, - "pageIndex": 18, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "10311", - "name": "우두동밥집", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 벌말길 54-1 (석사동)", - "phone": "033-255-5999", - "representativeMenu": "한식뷔페", - "price": 8000, - "latitude": 37.859382765949, - "longitude": 127.742351389083, - "pageIndex": 18, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4397", - "name": "우리순대국", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 후석로45번길 15 (석사동)", - "phone": "033-252-9545", - "representativeMenu": "순대국", - "price": 8000, - "latitude": 37.8593067249022, - "longitude": 127.740549073063, - "pageIndex": 18, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4710", - "name": "미소국밥", - "categoryName": "한식", - "address": "충청북도 청주시 상당구 상당로 135 (북문로2가)", - "phone": "043-223-8848", - "representativeMenu": "바지락순두부", - "price": 7000, - "latitude": 36.6403948654709, - "longitude": 127.48970770266, - "pageIndex": 18, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15848", - "name": "미소수제돈까스", - "categoryName": "양식", - "address": "충청북도 청주시 흥덕구 강내면 태성탑연로 441", - "phone": "043-234-5789", - "representativeMenu": "등심돈까스", - "price": 9500, - "latitude": 36.62173390753512, - "longitude": 127.35834796838594, - "pageIndex": 18, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4917", - "name": "소망미용실", - "categoryName": "미용업", - "address": "충청남도 천안시 동남구 구성5길 31 (구성동)", - "phone": "041-556-8816", - "representativeMenu": "커트", - "price": 6000, - "latitude": 36.7972975969191, - "longitude": 127.162734320004, - "pageIndex": 18, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "13652", - "name": "송원떡집", - "categoryName": "한식", - "address": "충청남도 천안시 서북구 봉서5길 10 (쌍용동)", - "phone": "041-578-6753", - "representativeMenu": "인절미 1팩", - "price": 2500, - "latitude": 36.80825811514656, - "longitude": 127.13224341449542, - "pageIndex": 18, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4918", - "name": "스타미용실", - "categoryName": "미용업", - "address": "충청남도 천안시 동남구 대흥로 271 (대흥동)", - "phone": "041-562-0155", - "representativeMenu": "커트(어르신)", - "price": 5000, - "latitude": 36.8123236063302, - "longitude": 127.148852869095, - "pageIndex": 18, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "5176", - "name": "두꺼비탕", - "categoryName": "목욕업", - "address": "전북특별자치도 군산시 동팔마길 31 장재동", - "phone": "063-442-8985", - "representativeMenu": "성인", - "price": 8000, - "latitude": 35.9769871090007, - "longitude": 126.721038103437, - "pageIndex": 18, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "14778", - "name": "두리식당", - "categoryName": "한식", - "address": "전북특별자치도 군산시 미원안길 8 (미원동) 미원동", - "phone": "063-445-3417", - "representativeMenu": "청국장", - "price": 8000, - "latitude": 35.98047012095301, - "longitude": 126.71553829446381, - "pageIndex": 18, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "15533", - "name": "디어왁싱", - "categoryName": "미용업", - "address": "전북특별자치도 군산시 궁포1로 24-3 (조촌동) 1층, 109호", - "phone": "0507-1437-1061", - "representativeMenu": "왁싱(인중)", - "price": 6000, - "latitude": 35.9768524162065, - "longitude": 126.74059066427611, - "pageIndex": 18, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5756", - "name": "대수식당", - "categoryName": "한식", - "address": "전라남도 여수시 성산6길 32 (화장동)", - "phone": "061-681-2292", - "representativeMenu": "백반", - "price": 6000, - "latitude": 34.7724434221449, - "longitude": 127.641942601437, - "pageIndex": 18, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "11801", - "name": "덕충식당", - "categoryName": "한식", - "address": "전라남도 여수시 공화남3길 9 (공화동)", - "phone": "061-664-7838", - "representativeMenu": "백반", - "price": 7000, - "latitude": 34.7468001047787, - "longitude": 127.744235818224, - "pageIndex": 18, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5759", - "name": "도담식당", - "categoryName": "한식", - "address": "전라남도 여수시 충무로 54-9 (충무동)", - "phone": "-", - "representativeMenu": "백반", - "price": 9000, - "latitude": 34.7414865862163, - "longitude": 127.731736351422, - "pageIndex": 18, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "14725", - "name": "또또분식", - "categoryName": "한식", - "address": "경상북도 포항시 남구 장기면 양포항길 21-1 -", - "phone": "054-276-1052", - "representativeMenu": "손칼국수", - "price": 6000, - "latitude": 35.87917402242877, - "longitude": 129.51773492819117, - "pageIndex": 18, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6795", - "name": "빅보이분식", - "categoryName": "한식", - "address": "경상남도 창원시 마산회원구 봉암북4길 58 (봉암동)", - "phone": "055-297-9292", - "representativeMenu": "김치찌개", - "price": 6000, - "latitude": 35.2232485628643, - "longitude": 128.597549978846, - "pageIndex": 18, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "14351", - "name": "사철밀면", - "categoryName": "한식", - "address": "경상남도 창원시 의창구 사림로130번길 5-5 (사림동) 주택 1층", - "phone": "055-287-8307", - "representativeMenu": "물밀면", - "price": 7000, - "latitude": 35.24312887541039, - "longitude": 128.68505183829419, - "pageIndex": 18, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "13735", - "name": "산장국수", - "categoryName": "한식", - "address": "경상남도 창원시 마산합포구 고운로 22 (평화동, 평화아파트) 12호", - "phone": "010-5550-2460", - "representativeMenu": "잔치국수", - "price": 4000, - "latitude": 35.186161057327695, - "longitude": 128.55869543926426, - "pageIndex": 18, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "6816", - "name": "삼구반점", - "categoryName": "중식", - "address": "경상남도 창원시 의창구 대산면 유등로 170-15", - "phone": "055-291-4373", - "representativeMenu": "짬뽕", - "price": 7000, - "latitude": 35.3363515087417, - "longitude": 128.726725367192, - "pageIndex": 18, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "7136", - "name": "마모루", - "categoryName": "일식", - "address": "제주특별자치도 제주시 광양13길 10-1 1층", - "phone": "0507-1404-4303", - "representativeMenu": "돈코츠라멘", - "price": 8500, - "latitude": 33.4988561334146, - "longitude": 126.531499520634, - "pageIndex": 18, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "18751", - "name": "마시쭈", - "categoryName": "한식", - "address": "제주특별자치도 제주시 서사로 97 (삼도일동, 레미안빌) 마시쭈", - "phone": "064-702-3544", - "representativeMenu": "쭈꾸미 덮밥", - "price": 10000, - "latitude": 33.503675132111844, - "longitude": 126.52012010252068, - "pageIndex": 18, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "10623", - "name": "만강촌옛날칼국수", - "categoryName": "한식", - "address": "제주특별자치도 제주시 월랑로 42 (노형동)", - "phone": "064-744-4780", - "representativeMenu": "닭칼국수", - "price": 7900, - "latitude": 33.4893502595565, - "longitude": 126.476040481369, - "pageIndex": 18, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "18573", - "name": "동경우동(2호점)", - "categoryName": "한식", - "address": "서울특별시 중구 퇴계로27길 16 (필동1가) 1층 105호", - "phone": "02-2277-3223", - "representativeMenu": "우동", - "price": 5000, - "latitude": 37.56195219030635, - "longitude": 126.99184490399296, - "pageIndex": 19, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "18572", - "name": "동경우동집", - "categoryName": "한식", - "address": "서울특별시 중구 충무로 48 (초동) 1층 1호", - "phone": "02-2274-3440", - "representativeMenu": "우동", - "price": 5000, - "latitude": 37.56537537416687, - "longitude": 126.99296134367208, - "pageIndex": 19, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "10673", - "name": "명동얼큰수제비", - "categoryName": "한식", - "address": "서울특별시 중구 남대문로 64 1층", - "phone": "02-752-7649", - "representativeMenu": "김치찌개", - "price": 8000, - "latitude": 37.5627658956023, - "longitude": 126.982216802182, - "pageIndex": 19, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "1405", - "name": "부산밀면", - "categoryName": "한식", - "address": "부산광역시 서구 대영로 18번길 13 (서대신동2가)", - "phone": "010-4017-4082", - "representativeMenu": "물밀면", - "price": 7000, - "latitude": 35.1094771001795, - "longitude": 129.013487853455, - "pageIndex": 19, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "18715", - "name": "부산식당", - "categoryName": "한식", - "address": "부산광역시 서구 대청로6번길 43 (토성동3가) 부산식당", - "phone": "051-241-5080", - "representativeMenu": "명태탕", - "price": 8000, - "latitude": 35.101316967405765, - "longitude": 129.02048922780577, - "pageIndex": 19, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1861", - "name": "미소띤하루", - "categoryName": "베이커리", - "address": "대구광역시 동구 이노밸리로 168 103호(각산동, 안심빌딩)", - "phone": "053-965-9794", - "representativeMenu": "소보로빵", - "price": 1500, - "latitude": 35.8784451966479, - "longitude": 128.715684288524, - "pageIndex": 19, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "1873", - "name": "미진손칼국수", - "categoryName": "한식", - "address": "대구광역시 동구 아양로50길 119-1 (효목동)", - "phone": "053-941-4664", - "representativeMenu": "손칼국수", - "price": 6000, - "latitude": 35.8824649802755, - "longitude": 128.642824663592, - "pageIndex": 19, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "14952", - "name": "불로회 수산", - "categoryName": "일식", - "address": "대구광역시 동구 팔공로30길 9 (불로동)", - "phone": "053-983-8070", - "representativeMenu": "회덮밥", - "price": 8000, - "latitude": 35.91179442743553, - "longitude": 128.64211388427978, - "pageIndex": 19, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "13032", - "name": "유풍반점", - "categoryName": "중식", - "address": "인천광역시 동구 샛골로194번길 16 (송림동) 1층", - "phone": "032-772-5119", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 37.47926076663097, - "longitude": 126.64636358766377, - "pageIndex": 19, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "17608", - "name": "잘된정", - "categoryName": "중식", - "address": "인천광역시 동구 샛골로171번길 5 (송림동) 1층(송림동)", - "phone": "032-761-0038", - "representativeMenu": "짜장면", - "price": 5000, - "latitude": 37.477691922823226, - "longitude": 126.64454299959506, - "pageIndex": 19, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2105", - "name": "청해물텀벙", - "categoryName": "한식", - "address": "인천광역시 동구 수문통로 5-1 (화평동) 1층", - "phone": "032-761-4140", - "representativeMenu": "점심아구뚝배기", - "price": 10000, - "latitude": 37.477346435473336, - "longitude": 126.63159719785347, - "pageIndex": 19, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "17602", - "name": "친친", - "categoryName": "중식", - "address": "인천 동구 샛골로210번길 9 1층 107호(송림동)", - "phone": "032-766-5533", - "representativeMenu": "중화제육덮밥", - "price": 10000, - "latitude": 37.4809530287519, - "longitude": 126.646384617566, - "pageIndex": 19, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "13665", - "name": "별천지", - "categoryName": "한식", - "address": "광주광역시 서구 상무대로695번길 8 (마륵동) 1층", - "phone": "062-375-2795", - "representativeMenu": "생선구이백반", - "price": 9500, - "latitude": 35.143450019964995, - "longitude": 126.84034418110387, - "pageIndex": 19, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2574", - "name": "한우농장30년", - "categoryName": "한식", - "address": "대전광역시 동구 동부로 13 (판암동)", - "phone": "042-274-9393", - "representativeMenu": "냉면", - "price": 7000, - "latitude": 36.3182694180623, - "longitude": 127.456048288873, - "pageIndex": 19, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2550", - "name": "행복칼국수", - "categoryName": "한식", - "address": "대전광역시 동구 대전로 815번길 15 (정동)", - "phone": "042-222-9632", - "representativeMenu": "칼국수", - "price": 7000, - "latitude": 36.3326785842423, - "longitude": 127.43143840488, - "pageIndex": 19, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2538", - "name": "헤어코리아미용실", - "categoryName": "미용업", - "address": "대전광역시 동구 한남로 7번길 87 (홍도동)", - "phone": "0507-1376-0694", - "representativeMenu": "미용료(커트)", - "price": 9000, - "latitude": 36.3477117403251, - "longitude": 127.429378780645, - "pageIndex": 19, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "13383", - "name": "헤어코리아착한나눔", - "categoryName": "미용업", - "address": "대전광역시 동구 대전로797번길 38 (중동) 중동 27-33", - "phone": "042-274-2221", - "representativeMenu": "미용료(커트)", - "price": 6000, - "latitude": 36.33006491325828, - "longitude": 127.43082686518471, - "pageIndex": 19, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "17496", - "name": "샤브리브", - "categoryName": "일식", - "address": "울산광역시 남구 대공원입구로21번길 27 (옥동) 1층", - "phone": "0507-1377-2688", - "representativeMenu": "얼큰육수샤브", - "price": 9000, - "latitude": 35.5341764411374, - "longitude": 129.29127740367105, - "pageIndex": 19, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "2905", - "name": "서울식당", - "categoryName": "한식", - "address": "울산광역시 남구 중앙로258번길 7", - "phone": "052-271-5103", - "representativeMenu": "김치,된장,순두부찌개", - "price": 7000, - "latitude": 35.5440882982423, - "longitude": 129.311623070929, - "pageIndex": 19, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "18787", - "name": "선경기사식당", - "categoryName": "한식", - "address": "울산광역시 남구 삼산로402번길 31 (삼산동) 1층", - "phone": "052-267-8487", - "representativeMenu": "순두부", - "price": 9000, - "latitude": 35.53656890072942, - "longitude": 129.35102283113696, - "pageIndex": 19, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "14532", - "name": "샐러디치오도씨 수원성대점", - "categoryName": "양식", - "address": "경기도 수원시 장안구 서부로2106번길 21 (율전동) 1층 4호", - "phone": "031-205-5636", - "representativeMenu": "햄치즈샌드위치", - "price": 6200, - "latitude": 37.29725954060872, - "longitude": 126.97136033632337, - "pageIndex": 19, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "17115", - "name": "서서김밥", - "categoryName": "한식", - "address": "경기도 수원시 영통구 매영로 33 (매탄동) 1층", - "phone": "031-214-6330", - "representativeMenu": "야채김밥", - "price": 3000, - "latitude": 37.26960250984764, - "longitude": 127.04648154679711, - "pageIndex": 19, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "16798", - "name": "서울한우 홈플러스 북수원점", - "categoryName": "한식", - "address": "경기도 수원시 장안구 경수대로 930 (조원동) 1층 X3YC호", - "phone": "031-241-9680", - "representativeMenu": "얼큰한우국밥", - "price": 9900, - "latitude": 37.30276736285418, - "longitude": 127.00880909013584, - "pageIndex": 19, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "3368", - "name": "서현대미용실", - "categoryName": "미용업", - "address": "경기도 수원시 권선구 정조로576번길 3 (세류동)", - "phone": "031-232-6686", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.2604055446764, - "longitude": 127.013461026266, - "pageIndex": 19, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "13805", - "name": "원식이네손칼국수", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 후석로 591 (소양로1가) 원식이네손칼국수", - "phone": "033-257-5652", - "representativeMenu": "해물칼국수", - "price": 8000, - "latitude": 37.89357805500181, - "longitude": 127.7279325507315, - "pageIndex": 19, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "16647", - "name": "이레미용실", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 효석로67번길 18-1 (석사동)", - "phone": "-", - "representativeMenu": "커트", - "price": 8000, - "latitude": 37.86191645758754, - "longitude": 127.73930830005943, - "pageIndex": 19, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "15518", - "name": "민들레식당", - "categoryName": "한식", - "address": "충청북도 청주시 상당구 대성로 57 (서운동) (민들레식당)", - "phone": "043-255-3028", - "representativeMenu": "된장찌개(백반)", - "price": 7000, - "latitude": 36.63047211931871, - "longitude": 127.49290793289809, - "pageIndex": 19, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "4733", - "name": "박현순헤어", - "categoryName": "미용업", - "address": "충청북도 청주시 청원구 율봉로159번길 48-20 1층(율량동)", - "phone": "043-211-7623", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.6705031580318, - "longitude": 127.486655068416, - "pageIndex": 19, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "14743", - "name": "백합미용실", - "categoryName": "미용업", - "address": "충청북도 청주시 상당구 당산로 10-1 (대성동)", - "phone": "043-224-8890", - "representativeMenu": "커트(남성)", - "price": 7000, - "latitude": 36.6330216282411, - "longitude": 127.4969961822045, - "pageIndex": 19, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15577", - "name": "스탠바이커피", - "categoryName": "기타요식업", - "address": "충청남도 천안시 서북구 불당21로 67-18 (불당동) 114호", - "phone": "0507-1384-6480", - "representativeMenu": "아메리카노", - "price": 2000, - "latitude": 36.81404962232316, - "longitude": 127.10850447130197, - "pageIndex": 19, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "18725", - "name": "시골손칼국수", - "categoryName": "한식", - "address": "충청남도 천안시 동남구 사직로 28-1 (사직동) 시골손칼국수", - "phone": "041-556-6181", - "representativeMenu": "칼국수", - "price": 5000, - "latitude": 36.802628752680896, - "longitude": 127.14939807826286, - "pageIndex": 19, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "4954", - "name": "쌍용동사진관", - "categoryName": "기타비요식업", - "address": "충청남도 천안시 서북구 미라3길 27 (쌍용동)", - "phone": "041-571-9182", - "representativeMenu": "반명함", - "price": 10000, - "latitude": 36.8021171826636, - "longitude": 127.130754046358, - "pageIndex": 19, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "5177", - "name": "머리박사", - "categoryName": "미용업", - "address": "전북특별자치도 군산시 문화로36 203호", - "phone": "063-462-9680", - "representativeMenu": "남성커트", - "price": 9000, - "latitude": 35.9694641851937, - "longitude": 126.709955551767, - "pageIndex": 19, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5191", - "name": "명산칼국수", - "categoryName": "한식", - "address": "전북특별자치도 군산시 오룡로 57-2 명산동", - "phone": "063-468-1470", - "representativeMenu": "바지락칼국수", - "price": 6000, - "latitude": 35.9825246812404, - "longitude": 126.709954003925, - "pageIndex": 19, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5707", - "name": "돈까스천국", - "categoryName": "양식", - "address": "전라남도 여수시 통제영3길 14 (교동)", - "phone": "061-662-0239", - "representativeMenu": "돈까스", - "price": 10000, - "latitude": 34.7413896058147, - "longitude": 127.734325663512, - "pageIndex": 19, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5708", - "name": "돈뗄", - "categoryName": "양식", - "address": "전라남도 여수시 양지1길 30 1층(미평동)", - "phone": "061-652-2760", - "representativeMenu": "수제돈가스", - "price": 9000, - "latitude": 34.7727185677749, - "longitude": 127.702281894777, - "pageIndex": 19, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5760", - "name": "돈사랑", - "categoryName": "한식", - "address": "전라남도 여수시 중앙로 93-2 (중앙동)", - "phone": "061-663-0866", - "representativeMenu": "백반", - "price": 10000, - "latitude": 34.7393455980908, - "longitude": 127.737831078851, - "pageIndex": 19, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6439", - "name": "롯데이용소", - "categoryName": "이용업", - "address": "경상북도 포항시 북구 두호로 19-11", - "phone": "054-247-8775", - "representativeMenu": "남자커트", - "price": 8000, - "latitude": 36.0594247293204, - "longitude": 129.376181188119, - "pageIndex": 19, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6311", - "name": "루머팡", - "categoryName": "기타요식업", - "address": "경상북도 포항시 남구 오천읍 장기로1690번길 5 다동 5호", - "phone": "-", - "representativeMenu": "아메리카노", - "price": 3000, - "latitude": 35.9660455313984, - "longitude": 129.417540251313, - "pageIndex": 19, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6803", - "name": "삼포복집", - "categoryName": "한식", - "address": "경상남도 창원시 성산구 용지로 78 2층 5호(중앙동,남선상가)", - "phone": "055-281-3535", - "representativeMenu": "지리", - "price": 9000, - "latitude": 35.2227526441192, - "longitude": 128.676906326096, - "pageIndex": 19, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "10582", - "name": "새마을찌개나라", - "categoryName": "한식", - "address": "경상남도 창원시 진해구 중원로85번길 13 103호(화천동, 평화빌라)", - "phone": "055-545-1134", - "representativeMenu": "불고기정식", - "price": 10000, - "latitude": 35.1518273238499, - "longitude": 128.658677263667, - "pageIndex": 19, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "18613", - "name": "새맛정 한식뷔페", - "categoryName": "한식", - "address": "경상남도 창원시 마산회원구 봉암공단로 26 (봉암동) 1층", - "phone": "0507-1459-0857", - "representativeMenu": "한식뷔페", - "price": 6500, - "latitude": 35.21671451783592, - "longitude": 128.60004187399605, - "pageIndex": 19, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "16569", - "name": "서민갈비", - "categoryName": "한식", - "address": "경상남도 창원시 마산합포구 산호북18길 21 (산호동) 서민갈비", - "phone": "055-243-7171", - "representativeMenu": "돼지갈비(200g)", - "price": 10000, - "latitude": 35.220823467615624, - "longitude": 128.58465602110726, - "pageIndex": 19, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "14242", - "name": "만나빵집", - "categoryName": "베이커리", - "address": "제주특별자치도 제주시 구좌읍 종달로5길 5-1 1층", - "phone": "010-6701-1885", - "representativeMenu": "반미바게트", - "price": 2500, - "latitude": 33.49324369426974, - "longitude": 126.89703211799348, - "pageIndex": 19, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "7139", - "name": "맛소", - "categoryName": "한식", - "address": "제주특별자치도 제주시 원노형5길 5 1층", - "phone": "064-742-0455", - "representativeMenu": "콩국수", - "price": 9000, - "latitude": 33.4882010292329, - "longitude": 126.484560727674, - "pageIndex": 19, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "11266", - "name": "맠(makk)", - "categoryName": "기타요식업", - "address": "제주특별자치도 제주시 진남로 6길 3 (주소변경)", - "phone": "-", - "representativeMenu": "마카롱", - "price": 2000, - "latitude": 33.5192267759866, - "longitude": 126.565536590436, - "pageIndex": 19, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "7140", - "name": "매콤명태촌", - "categoryName": "한식", - "address": "제주특별자치도 제주시 절물3길 7 1층", - "phone": "064-743-6868", - "representativeMenu": "황태해장국", - "price": 8000, - "latitude": 33.4918593353103, - "longitude": 126.433805337832, - "pageIndex": 19, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "983", - "name": "민정이네", - "categoryName": "한식", - "address": "서울특별시 중구 만리재로 37길 21 (만리동1가)", - "phone": "02-312-1420", - "representativeMenu": "점심백반", - "price": 7000, - "latitude": 37.5565915616197, - "longitude": 126.967168586088, - "pageIndex": 20, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "16086", - "name": "바재커피", - "categoryName": "기타요식업", - "address": "서울특별시 중구 남대문시장8길 25 (남창동) 1층", - "phone": "02-776-5577", - "representativeMenu": "아메리카노(핫)", - "price": 2000, - "latitude": 37.55934272418682, - "longitude": 126.97870933285441, - "pageIndex": 20, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "15377", - "name": "산과들그리고바다", - "categoryName": "한식", - "address": "서울특별시 중구 을지로14길 22 (을지로3가) 1층", - "phone": "02-2277-7887", - "representativeMenu": "모듬돌솥비빔밥", - "price": 10000, - "latitude": 37.56523732282778, - "longitude": 126.99202506646904, - "pageIndex": 20, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "1402", - "name": "부원", - "categoryName": "중식", - "address": "부산광역시 서구 구덕로157번길 6 (토성동3가)", - "phone": "051-256-0061", - "representativeMenu": "짜장면", - "price": 4000, - "latitude": 35.0987972600376, - "longitude": 129.01970425062, - "pageIndex": 20, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "18716", - "name": "북경반점", - "categoryName": "중식", - "address": "부산광역시 서구 충무대로 64 (암남동, 송도삼정비치) 북경반점", - "phone": "051-244-8454", - "representativeMenu": "간짜장", - "price": 7000, - "latitude": 35.07836072507977, - "longitude": 129.01969618711593, - "pageIndex": 20, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1429", - "name": "뷔페청", - "categoryName": "한식", - "address": "부산광역시 서구 흑교로109번길 43 (부용동1가)", - "phone": "051-242-4311", - "representativeMenu": "성인", - "price": 8000, - "latitude": 35.1056136879459, - "longitude": 129.02082234077, - "pageIndex": 20, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1394", - "name": "사랑방미용실", - "categoryName": "미용업", - "address": "부산광역시 서구 대티로 131 (서대신동3가)", - "phone": "051-242-8977", - "representativeMenu": "커트", - "price": 5000, - "latitude": 35.1109554946482, - "longitude": 129.009654362478, - "pageIndex": 20, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "17766", - "name": "삼보식당", - "categoryName": "한식", - "address": "대구광역시 동구 큰고개로 33 (신암동)", - "phone": "010-3530-0133", - "representativeMenu": "한식뷔페", - "price": 7000, - "latitude": 35.88761259935702, - "longitude": 128.6247276701282, - "pageIndex": 20, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "1862", - "name": "삼일라사세탁소", - "categoryName": "세탁업", - "address": "대구광역시 동구 효목로5길 7 (효목동)", - "phone": "053-755-1276", - "representativeMenu": "티셔츠드라이", - "price": 4000, - "latitude": 35.8750480007903, - "longitude": 128.63888107243, - "pageIndex": 20, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "17703", - "name": "생선엔밥", - "categoryName": "한식", - "address": "대구광역시 동구 경대로 48 (신암동)", - "phone": "053-262-4197", - "representativeMenu": "생선구이정식", - "price": 8000, - "latitude": 35.88509005641053, - "longitude": 128.6149836033377, - "pageIndex": 20, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "17604", - "name": "카페립", - "categoryName": "기타요식업", - "address": "인천 동구 박문로 1 교구청, 청소년센터3층(송림동)", - "phone": "070-4443-1726", - "representativeMenu": "휘낭시에 플레인", - "price": 2000, - "latitude": 37.4706891169897, - "longitude": 126.651839572554, - "pageIndex": 20, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "14301", - "name": "하루도넛", - "categoryName": "기타요식업", - "address": "인천광역시 동구 송림로 106-1 (송림동) 1,2층", - "phone": "032-777-1648", - "representativeMenu": "꽈배기", - "price": 800, - "latitude": 37.47620674347315, - "longitude": 126.64651702408199, - "pageIndex": 20, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2106", - "name": "한울타리", - "categoryName": "한식", - "address": "인천광역시 동구 석수로 47-1 (만석동)", - "phone": "032-221-8887", - "representativeMenu": "청국장", - "price": 8000, - "latitude": 37.4812201279796, - "longitude": 126.626544029841, - "pageIndex": 20, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "2107", - "name": "해주식당", - "categoryName": "한식", - "address": "인천광역시 동구 화도진로44번길 3 (송현동) 1층 송현시장 내", - "phone": "032-888-4009", - "representativeMenu": "백반", - "price": 8000, - "latitude": 37.47650336140443, - "longitude": 126.6339042004762, - "pageIndex": 20, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "13670", - "name": "상무본가장어", - "categoryName": "한식", - "address": "광주광역시 서구 시청서편로4번길 16-1 (치평동) 1층", - "phone": "062-372-9293", - "representativeMenu": "장어탕", - "price": 10000, - "latitude": 35.15909682794521, - "longitude": 126.84738486591091, - "pageIndex": 20, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "18043", - "name": "서울족발보쌈", - "categoryName": "한식", - "address": "광주광역시 서구 상무화원로32번길 13-18 (치평동) 1층", - "phone": "062-373-7211", - "representativeMenu": "족발정식", - "price": 10000, - "latitude": 35.14598060035197, - "longitude": 126.84439065995004, - "pageIndex": 20, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2285", - "name": "세븐노래연습장", - "categoryName": "기타비요식업", - "address": "광주광역시 서구 시청로56번길 8 지하1층(치평동)", - "phone": "062-372-8331", - "representativeMenu": "30분", - "price": 4000, - "latitude": 35.1532792040005, - "longitude": 126.852731376864, - "pageIndex": 20, - "regionCode": "29", - "regionName": "광주광역시" - }, - { - "bsshSn": "2551", - "name": "홍가네칼국수", - "categoryName": "한식", - "address": "대전광역시 동구 대전로 807번길 40 (중동)", - "phone": "042-254-5945", - "representativeMenu": "칼국수", - "price": 7000, - "latitude": 36.3309478641562, - "longitude": 127.430241597664, - "pageIndex": 20, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2543", - "name": "홍가짜장", - "categoryName": "중식", - "address": "대전광역시 동구 동대전로 278 (가양동)", - "phone": "042-365-3323", - "representativeMenu": "홍가짜장", - "price": 4000, - "latitude": 36.3459230781175, - "longitude": 127.445797225616, - "pageIndex": 20, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2558", - "name": "희원숯불갈비식당", - "categoryName": "한식", - "address": "대전광역시 동구 가양로 56번길 19 (가양동)", - "phone": "042-627-5329", - "representativeMenu": "돼지갈비(250g)", - "price": 10000, - "latitude": 36.3418094483622, - "longitude": 127.443094601499, - "pageIndex": 20, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2857", - "name": "0시50분", - "categoryName": "한식", - "address": "대전광역시 중구 대종로 504 1층(은행동)", - "phone": "042-524-5816", - "representativeMenu": "우거지해장국", - "price": 7000, - "latitude": 36.3293358176833, - "longitude": 127.425489899251, - "pageIndex": 20, - "regionCode": "30", - "regionName": "대전광역시" - }, - { - "bsshSn": "2906", - "name": "소문난 고추장불고기 국밥", - "categoryName": "한식", - "address": "울산광역시 남구 월평로37번길 3", - "phone": "052-273-6661", - "representativeMenu": "돼지,섞어,순대,선지국밥", - "price": 7000, - "latitude": 35.5416195196528, - "longitude": 129.309458628481, - "pageIndex": 20, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "2908", - "name": "솟대", - "categoryName": "한식", - "address": "울산광역시 남구 대학로47번길 10 1층", - "phone": "052-223-4346", - "representativeMenu": "순두부찌개", - "price": 9000, - "latitude": 35.5407837447282, - "longitude": 129.255862186774, - "pageIndex": 20, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "17504", - "name": "수지미용실", - "categoryName": "미용업", - "address": "울산광역시 남구 번영로107번길 17 (달동) 205호", - "phone": "052-269-3868", - "representativeMenu": "커트", - "price": 10000, - "latitude": 35.53427924703676, - "longitude": 129.32685098572432, - "pageIndex": 20, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "18785", - "name": "순복식당", - "categoryName": "한식", - "address": "울산광역시 남구 월평로85번길 20 (신정동) 1층", - "phone": "052-266-9347", - "representativeMenu": "김치찌개", - "price": 8000, - "latitude": 35.54457488092627, - "longitude": 129.3142706641577, - "pageIndex": 20, - "regionCode": "31", - "regionName": "울산광역시" - }, - { - "bsshSn": "3399", - "name": "성일사우나", - "categoryName": "목욕업", - "address": "경기도 수원시 장안구 경수대로973번길 13-20 (송죽동)", - "phone": "031-246-6489", - "representativeMenu": "대인", - "price": 9000, - "latitude": 37.3031115091404, - "longitude": 127.005025091289, - "pageIndex": 20, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "16205", - "name": "세븐힐여성사우나", - "categoryName": "목욕업", - "address": "경기도 수원시 팔달구 중부대로 47 (지동) 지하1층", - "phone": "031-244-0071", - "representativeMenu": "일반", - "price": 9000, - "latitude": 37.27569315113086, - "longitude": 127.0220900432593, - "pageIndex": 20, - "regionCode": "41", - "regionName": "경기도" - }, - { - "bsshSn": "13806", - "name": "이미경헤어클릭", - "categoryName": "미용업", - "address": "강원특별자치도 춘천시 충열로 10-5 (우두동) 이미경헤어클릭", - "phone": "033-253-0028", - "representativeMenu": "커트", - "price": 10000, - "latitude": 37.900210305145734, - "longitude": 127.72949847551419, - "pageIndex": 20, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "13807", - "name": "이서냉면", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 우석로 14-1 (석사동) 1층", - "phone": "0507-1487-4040", - "representativeMenu": "냉면", - "price": 7000, - "latitude": 37.86193728705492, - "longitude": 127.74766638895937, - "pageIndex": 20, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "15475", - "name": "일리터", - "categoryName": "기타요식업", - "address": "강원특별자치도 춘천시 중앙로68번길 3 (중앙로2가) 1, 2층(중앙로2가)", - "phone": "033-241-7778", - "representativeMenu": "아메리카노", - "price": 1000, - "latitude": 37.87936544046061, - "longitude": 127.72610245830614, - "pageIndex": 20, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "10309", - "name": "임가네", - "categoryName": "한식", - "address": "강원특별자치도 춘천시 새롬공원길 25 (석사동)", - "phone": "033-262-5245", - "representativeMenu": "소고기뭇국", - "price": 8000, - "latitude": 37.8544088335552, - "longitude": 127.747076544582, - "pageIndex": 20, - "regionCode": "51", - "regionName": "강원특별자치도" - }, - { - "bsshSn": "4712", - "name": "보글보글식당", - "categoryName": "한식", - "address": "충청북도 청주시 상당구 영운로11번길 23 (영운동)", - "phone": "043-250-0012", - "representativeMenu": "가정식백반", - "price": 6000, - "latitude": 36.6166130893195, - "longitude": 127.497059927318, - "pageIndex": 20, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15838", - "name": "보라매 미용타운", - "categoryName": "미용업", - "address": "충청북도 청주시 청원구 1순환로342번길 16-1 (내덕동)", - "phone": "043-223-3044", - "representativeMenu": "커트", - "price": 10000, - "latitude": 36.65914920998362, - "longitude": 127.47618218928218, - "pageIndex": 20, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "15772", - "name": "복실이 식당", - "categoryName": "한식", - "address": "충청북도 청주시 서원구 매봉로2번길 40 (분평동) 1층", - "phone": "043-294-3667", - "representativeMenu": "칼국수", - "price": 6000, - "latitude": 36.61043494588689, - "longitude": 127.47990007377227, - "pageIndex": 20, - "regionCode": "43", - "regionName": "충청북도" - }, - { - "bsshSn": "16876", - "name": "안골식당", - "categoryName": "한식", - "address": "충청남도 천안시 동남구 먹거리2길 6-1 (신부동) 2층", - "phone": "0507-1348-2664", - "representativeMenu": "만두전골", - "price": 10000, - "latitude": 36.81768377259163, - "longitude": 127.15402963313205, - "pageIndex": 20, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "17020", - "name": "엄마밥상 한식뷔페", - "categoryName": "한식", - "address": "충청남도 천안시 서북구 오성9길 5 (두정동) 1층", - "phone": "041-554-8335", - "representativeMenu": "한식뷔페", - "price": 9000, - "latitude": 36.833566400988474, - "longitude": 127.12808573112298, - "pageIndex": 20, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "11410", - "name": "옛김포식당", - "categoryName": "한식", - "address": "충청남도 천안시 동남구 영성로 25-19 (사직동)", - "phone": "041-554-3029", - "representativeMenu": "칼국수", - "price": 6000, - "latitude": 36.8004524284923, - "longitude": 127.150097319368, - "pageIndex": 20, - "regionCode": "44", - "regionName": "충청남도" - }, - { - "bsshSn": "17041", - "name": "모정식당", - "categoryName": "한식", - "address": "전북특별자치도 군산시 조촌4길 34-4 (조촌동) 1층", - "phone": "063-461-0102", - "representativeMenu": "김치찌개", - "price": 9000, - "latitude": 35.96943678402732, - "longitude": 126.73620476668584, - "pageIndex": 20, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "15532", - "name": "묵은지삼겹살", - "categoryName": "한식", - "address": "전북특별자치도 군산시 경암로 56 (경암동) 묵은지삼겹살", - "phone": "063-442-3055", - "representativeMenu": "된장찌개", - "price": 7000, - "latitude": 35.97555034978496, - "longitude": 126.73025962030721, - "pageIndex": 20, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5192", - "name": "미주옥", - "categoryName": "한식", - "address": "전북특별자치도 군산시 구영7길 133-4 영화동", - "phone": "063-442-5505", - "representativeMenu": "아욱국", - "price": 8000, - "latitude": 35.9893754831364, - "longitude": 126.712272232213, - "pageIndex": 20, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "15530", - "name": "베테랑돈까스", - "categoryName": "양식", - "address": "전북특별자치도 군산시 양안로 103-1 (조촌동) 조촌동", - "phone": "063-452-5582", - "representativeMenu": "베테랑 생돈까스", - "price": 6000, - "latitude": 35.971740241807225, - "longitude": 126.74345325965865, - "pageIndex": 20, - "regionCode": "52", - "regionName": "전북특별자치도" - }, - { - "bsshSn": "5705", - "name": "동광탕", - "categoryName": "목욕업", - "address": "전라남도 여수시 동문로 101 2층(공화동)", - "phone": "061-662-4272", - "representativeMenu": "목욕비", - "price": 8000, - "latitude": 34.7456605198534, - "longitude": 127.742352326201, - "pageIndex": 20, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "5762", - "name": "두레", - "categoryName": "한식", - "address": "전라남도 여수시 학동1길 12-7 (학동) 1층", - "phone": "061-684-1808", - "representativeMenu": "백반", - "price": 7000, - "latitude": 34.76449978425705, - "longitude": 127.66474470490957, - "pageIndex": 20, - "regionCode": "46", - "regionName": "전라남도" - }, - { - "bsshSn": "6412", - "name": "리클라스", - "categoryName": "기타요식업", - "address": "경상북도 포항시 북구 대신로7번길 7 리클라스", - "phone": "054-248-3742", - "representativeMenu": "카페라떼", - "price": 4800, - "latitude": 36.0448115361729, - "longitude": 129.367277819827, - "pageIndex": 20, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "6312", - "name": "마실카페", - "categoryName": "기타요식업", - "address": "경상북도 포항시 남구 동해면 일월로81번길 9 마실카페", - "phone": "-", - "representativeMenu": "아메리카노", - "price": 3000, - "latitude": 35.989400103331, - "longitude": 129.44204186305, - "pageIndex": 20, - "regionCode": "47", - "regionName": "경상북도" - }, - { - "bsshSn": "14603", - "name": "선백면옥", - "categoryName": "한식", - "address": "경상남도 창원시 진해구 자은로28번길 8 (자은동) 선백면옥", - "phone": "055-542-9969", - "representativeMenu": "물밀면", - "price": 7000, - "latitude": 35.14906570208649, - "longitude": 128.7052270170308, - "pageIndex": 20, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "11516", - "name": "성안식당", - "categoryName": "한식", - "address": "경상남도 창원시 마산회원구 합성서5길 18 (합성동)", - "phone": "055-256-6696", - "representativeMenu": "갈비탕", - "price": 8000, - "latitude": 35.2412291831889, - "longitude": 128.583488769265, - "pageIndex": 20, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "15415", - "name": "소금깎이 창원진해본점", - "categoryName": "한식", - "address": "경상남도 창원시 진해구 동진로61번길 6 (석동) 소금깎이 창원진해본점", - "phone": "055-547-0062", - "representativeMenu": "토마호크(100g)", - "price": 9000, - "latitude": 35.15181122430042, - "longitude": 128.70271441863437, - "pageIndex": 20, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "18615", - "name": "소문난김밥", - "categoryName": "한식", - "address": "경상남도 창원시 마산회원구 내서읍 중리상곡로 129 소문난김밥", - "phone": "055-231-4893", - "representativeMenu": "소문난김밥", - "price": 3000, - "latitude": 35.25181139457977, - "longitude": 128.51144426255615, - "pageIndex": 20, - "regionCode": "48", - "regionName": "경상남도" - }, - { - "bsshSn": "11154", - "name": "머리하기좋은날", - "categoryName": "미용업", - "address": "제주특별자치도 제주시 신대로6길 11 ()", - "phone": "064-713-6667", - "representativeMenu": "커트(샴푸 미포함)", - "price": 10000, - "latitude": 33.4922364704893, - "longitude": 126.495273237818, - "pageIndex": 20, - "regionCode": "50", - "regionName": "제주특별자치도" - }, - { - "bsshSn": "18570", - "name": "신라미용실", - "categoryName": "미용업", - "address": "서울특별시 중구 퇴계로 217 (충무로4가, 진양상가, 진양아파트) 1층 36호, 37호", - "phone": "010-9264-3072", - "representativeMenu": "남성컷", - "price": 10000, - "latitude": 37.562423982135904, - "longitude": 126.99593553115459, - "pageIndex": 21, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "967", - "name": "신빙고", - "categoryName": "기타요식업", - "address": "서울특별시 중구 동호로12길 93 1층(신당동)", - "phone": "02-223-8819", - "representativeMenu": "아메리카노", - "price": 2300, - "latitude": 37.559329134852, - "longitude": 127.012071243923, - "pageIndex": 21, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "984", - "name": "영자씨우동김밥", - "categoryName": "한식", - "address": "서울특별시 중구 마른내로 15-1 (저동2가)", - "phone": "02-227-9791", - "representativeMenu": "김치찌개", - "price": 7000, - "latitude": 37.5649541262687, - "longitude": 126.989606762221, - "pageIndex": 21, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "969", - "name": "옛날홍두깨손칼국수", - "categoryName": "한식", - "address": "서울특별시 중구 동호로7길 32 1층", - "phone": "02-223-1458", - "representativeMenu": "손수제비", - "price": 6000, - "latitude": 37.5525136777809, - "longitude": 127.010624637953, - "pageIndex": 21, - "regionCode": "11", - "regionName": "서울특별시" - }, - { - "bsshSn": "1430", - "name": "산바다", - "categoryName": "한식", - "address": "부산광역시 서구 엄광산로 6 (서대신동3가)", - "phone": "051-241-2976", - "representativeMenu": "메기매운탕", - "price": 8000, - "latitude": 35.1277404417829, - "longitude": 129.007513285213, - "pageIndex": 21, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1431", - "name": "삼원두루치기", - "categoryName": "한식", - "address": "부산광역시 서구 구덕로193번길 12-17 (부민동2가)", - "phone": "051-231-5452", - "representativeMenu": "두루치기", - "price": 8000, - "latitude": 35.1024534581686, - "longitude": 129.019112839039, - "pageIndex": 21, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1406", - "name": "성일칼국수", - "categoryName": "한식", - "address": "부산광역시 서구 해안새벽시장길 8 (충무동1가)", - "phone": "051-244-1547", - "representativeMenu": "칼국수", - "price": 5000, - "latitude": 35.0958892269302, - "longitude": 129.025392096138, - "pageIndex": 21, - "regionCode": "26", - "regionName": "부산광역시" - }, - { - "bsshSn": "1874", - "name": "시장냉면", - "categoryName": "한식", - "address": "대구광역시 동구 팔공로30길 10-3 (불로동)", - "phone": "053-981-4044", - "representativeMenu": "얼큰냉면", - "price": 6000, - "latitude": 35.9113533839705, - "longitude": 128.642338260752, - "pageIndex": 21, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "1885", - "name": "신산홍", - "categoryName": "한식", - "address": "대구광역시 동구 아양로7길 12 가상가동 지하1층 108호(신암동, 신암뜨란채)", - "phone": "053-944-5650", - "representativeMenu": "양념닭목살(130g)", - "price": 9000, - "latitude": 35.8823321773353, - "longitude": 128.61768521709, - "pageIndex": 21, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "17768", - "name": "엄마솥밥상", - "categoryName": "한식", - "address": "대구광역시 동구 동대구로 423 (신천동)", - "phone": "053-753-2030", - "representativeMenu": "된장정식", - "price": 8000, - "latitude": 35.86819851346647, - "longitude": 128.6259527502153, - "pageIndex": 21, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "1868", - "name": "영남루반점", - "categoryName": "중식", - "address": "대구광역시 동구 해동로 18 (지저동)", - "phone": "053-981-9881", - "representativeMenu": "자장면", - "price": 5000, - "latitude": 35.896627045467, - "longitude": 128.637690520629, - "pageIndex": 21, - "regionCode": "27", - "regionName": "대구광역시" - }, - { - "bsshSn": "2108", - "name": "화도진순대국", - "categoryName": "한식", - "address": "인천 동구 화도진로 101 1층(화평동)", - "phone": "032-777-1289", - "representativeMenu": "순대국", - "price": 9000, - "latitude": 37.4801807743095, - "longitude": 126.628989131469, - "pageIndex": 21, - "regionCode": "28", - "regionName": "인천광역시" - }, - { - "bsshSn": "17895", - "name": "가족이발관", - "categoryName": "미용업", - "address": "인천광역시 미추홀구 석정로 372 (주안동) 1층", - "phone": "-", - "representativeMenu": "염색", - "price": 7000, - "latitude": 37.467045636101226, - "longitude": 126.67678399359703, - "pageIndex": 21, - "regionCode": "28", - "regionName": "인천광역시" } ] } diff --git a/drizzle/0007_true_carmella_unuscione.sql b/drizzle/0007_true_carmella_unuscione.sql new file mode 100644 index 0000000..007bfe1 --- /dev/null +++ b/drizzle/0007_true_carmella_unuscione.sql @@ -0,0 +1,32 @@ +ALTER TABLE "places" ADD COLUMN "primary_category_slug" varchar(80);--> statement-breakpoint +ALTER TABLE "places" ADD COLUMN "like_count" integer DEFAULT 0 NOT NULL;--> statement-breakpoint +ALTER TABLE "places" ADD COLUMN "dislike_count" integer DEFAULT 0 NOT NULL;--> statement-breakpoint +UPDATE "places" AS "p" +SET "primary_category_slug" = "derived"."category_slug" +FROM ( + SELECT + "pc"."place_id", + "c"."slug" AS "category_slug", + row_number() OVER ( + PARTITION BY "pc"."place_id" + ORDER BY "pc"."is_primary" DESC, "c"."sort_order" ASC, "c"."slug" ASC + ) AS "row_number" + FROM "place_categories" AS "pc" + INNER JOIN "categories" AS "c" ON "c"."id" = "pc"."category_id" +) AS "derived" +WHERE "p"."id" = "derived"."place_id" + AND "derived"."row_number" = 1;--> statement-breakpoint +UPDATE "places" AS "p" +SET + "like_count" = "derived"."like_count", + "dislike_count" = "derived"."dislike_count" +FROM ( + SELECT + "place_id", + count(*) FILTER (WHERE "reaction_type" = 'like')::integer AS "like_count", + count(*) FILTER (WHERE "reaction_type" = 'dislike')::integer AS "dislike_count" + FROM "place_reactions" + GROUP BY "place_id" +) AS "derived" +WHERE "p"."id" = "derived"."place_id";--> statement-breakpoint +CREATE INDEX "places_status_primary_category_idx" ON "places" USING btree ("status","primary_category_slug"); diff --git a/drizzle/meta/0007_snapshot.json b/drizzle/meta/0007_snapshot.json new file mode 100644 index 0000000..501240f --- /dev/null +++ b/drizzle/meta/0007_snapshot.json @@ -0,0 +1,1833 @@ +{ + "id": "33616200-9ae4-4c2b-8167-cf423d4416c2", + "prevId": "c50daa91-5709-4408-b9c7-42f9aa4d57da", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.admin_actions": { + "name": "admin_actions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "admin_user_id": { + "name": "admin_user_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "action_type": { + "name": "action_type", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "target_type": { + "name": "target_type", + "type": "varchar(40)", + "primaryKey": false, + "notNull": true + }, + "target_id": { + "name": "target_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "metadata_json": { + "name": "metadata_json", + "type": "jsonb", + "primaryKey": false, + "notNull": true, + "default": "'{}'::jsonb" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "admin_actions_admin_created_at_idx": { + "name": "admin_actions_admin_created_at_idx", + "columns": [ + { + "expression": "admin_user_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "admin_actions_admin_user_id_users_id_fk": { + "name": "admin_actions_admin_user_id_users_id_fk", + "tableFrom": "admin_actions", + "tableTo": "users", + "columnsFrom": [ + "admin_user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.auth_accounts": { + "name": "auth_accounts", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "provider": { + "name": "provider", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "provider_account_id": { + "name": "provider_account_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "password_hash": { + "name": "password_hash", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "access_token": { + "name": "access_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "refresh_token": { + "name": "refresh_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "expires_at": { + "name": "expires_at", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "token_type": { + "name": "token_type", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "scope": { + "name": "scope", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "id_token": { + "name": "id_token", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "session_state": { + "name": "session_state", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "auth_accounts_provider_account_unique": { + "name": "auth_accounts_provider_account_unique", + "columns": [ + { + "expression": "provider", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "provider_account_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "auth_accounts_user_id_idx": { + "name": "auth_accounts_user_id_idx", + "columns": [ + { + "expression": "user_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "auth_accounts_user_id_users_id_fk": { + "name": "auth_accounts_user_id_users_id_fk", + "tableFrom": "auth_accounts", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.auth_sessions": { + "name": "auth_sessions", + "schema": "", + "columns": { + "session_token": { + "name": "session_token", + "type": "varchar(255)", + "primaryKey": true, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "expires": { + "name": "expires", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "auth_sessions_user_id_idx": { + "name": "auth_sessions_user_id_idx", + "columns": [ + { + "expression": "user_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "auth_sessions_user_id_users_id_fk": { + "name": "auth_sessions_user_id_users_id_fk", + "tableFrom": "auth_sessions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.auth_verification_tokens": { + "name": "auth_verification_tokens", + "schema": "", + "columns": { + "identifier": { + "name": "identifier", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "token": { + "name": "token", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "expires": { + "name": "expires", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": { + "auth_verification_tokens_pk": { + "name": "auth_verification_tokens_pk", + "columns": [ + "identifier", + "token" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.bookmarks": { + "name": "bookmarks", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "place_id": { + "name": "place_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "bookmarks_user_id_users_id_fk": { + "name": "bookmarks_user_id_users_id_fk", + "tableFrom": "bookmarks", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "bookmarks_place_id_places_id_fk": { + "name": "bookmarks_place_id_places_id_fk", + "tableFrom": "bookmarks", + "tableTo": "places", + "columnsFrom": [ + "place_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "bookmarks_pk": { + "name": "bookmarks_pk", + "columns": [ + "user_id", + "place_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.categories": { + "name": "categories", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "slug": { + "name": "slug", + "type": "varchar(80)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(80)", + "primaryKey": false, + "notNull": true + }, + "sort_order": { + "name": "sort_order", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "is_active": { + "name": "is_active", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + } + }, + "indexes": { + "categories_slug_unique": { + "name": "categories_slug_unique", + "columns": [ + { + "expression": "slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "categories_parent_id_idx": { + "name": "categories_parent_id_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "categories_parent_id_categories_id_fk": { + "name": "categories_parent_id_categories_id_fk", + "tableFrom": "categories", + "tableTo": "categories", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.comments": { + "name": "comments", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "place_id": { + "name": "place_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "visitor_id": { + "name": "visitor_id", + "type": "varchar(64)", + "primaryKey": false, + "notNull": false + }, + "body": { + "name": "body", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "comment_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'visible'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "comments_place_status_idx": { + "name": "comments_place_status_idx", + "columns": [ + { + "expression": "place_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "comments_place_id_places_id_fk": { + "name": "comments_place_id_places_id_fk", + "tableFrom": "comments", + "tableTo": "places", + "columnsFrom": [ + "place_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "comments_user_id_users_id_fk": { + "name": "comments_user_id_users_id_fk", + "tableFrom": "comments", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.content_reports": { + "name": "content_reports", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "reporter_user_id": { + "name": "reporter_user_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "target_type": { + "name": "target_type", + "type": "content_report_target_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "target_id": { + "name": "target_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "reason_type": { + "name": "reason_type", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "detail": { + "name": "detail", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "content_report_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'open'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "resolved_at": { + "name": "resolved_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "content_reports_status_created_at_idx": { + "name": "content_reports_status_created_at_idx", + "columns": [ + { + "expression": "status", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "content_reports_reporter_user_id_users_id_fk": { + "name": "content_reports_reporter_user_id_users_id_fk", + "tableFrom": "content_reports", + "tableTo": "users", + "columnsFrom": [ + "reporter_user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.place_categories": { + "name": "place_categories", + "schema": "", + "columns": { + "place_id": { + "name": "place_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "category_id": { + "name": "category_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "is_primary": { + "name": "is_primary", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + } + }, + "indexes": { + "place_categories_category_place_idx": { + "name": "place_categories_category_place_idx", + "columns": [ + { + "expression": "category_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "place_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "place_categories_place_id_places_id_fk": { + "name": "place_categories_place_id_places_id_fk", + "tableFrom": "place_categories", + "tableTo": "places", + "columnsFrom": [ + "place_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "place_categories_category_id_categories_id_fk": { + "name": "place_categories_category_id_categories_id_fk", + "tableFrom": "place_categories", + "tableTo": "categories", + "columnsFrom": [ + "category_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "place_categories_pk": { + "name": "place_categories_pk", + "columns": [ + "place_id", + "category_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.place_reactions": { + "name": "place_reactions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "visitor_id": { + "name": "visitor_id", + "type": "varchar(64)", + "primaryKey": false, + "notNull": false + }, + "place_id": { + "name": "place_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "reaction_type": { + "name": "reaction_type", + "type": "place_reaction_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "place_reactions_user_place_unique": { + "name": "place_reactions_user_place_unique", + "columns": [ + { + "expression": "user_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "place_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "place_reactions_visitor_place_unique": { + "name": "place_reactions_visitor_place_unique", + "columns": [ + { + "expression": "visitor_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "place_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "place_reactions_place_type_idx": { + "name": "place_reactions_place_type_idx", + "columns": [ + { + "expression": "place_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "reaction_type", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "place_reactions_user_updated_at_idx": { + "name": "place_reactions_user_updated_at_idx", + "columns": [ + { + "expression": "user_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "place_reactions_visitor_updated_at_idx": { + "name": "place_reactions_visitor_updated_at_idx", + "columns": [ + { + "expression": "visitor_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "place_reactions_user_id_users_id_fk": { + "name": "place_reactions_user_id_users_id_fk", + "tableFrom": "place_reactions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "place_reactions_place_id_places_id_fk": { + "name": "place_reactions_place_id_places_id_fk", + "tableFrom": "place_reactions", + "tableTo": "places", + "columnsFrom": [ + "place_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.places": { + "name": "places", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "slug": { + "name": "slug", + "type": "varchar(160)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(120)", + "primaryKey": false, + "notNull": true + }, + "business_name": { + "name": "business_name", + "type": "varchar(120)", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "note": { + "name": "note", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "road_address": { + "name": "road_address", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "lot_address": { + "name": "lot_address", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "district": { + "name": "district", + "type": "varchar(80)", + "primaryKey": false, + "notNull": true + }, + "latitude": { + "name": "latitude", + "type": "double precision", + "primaryKey": false, + "notNull": false + }, + "longitude": { + "name": "longitude", + "type": "double precision", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "place_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'active'" + }, + "primary_category_slug": { + "name": "primary_category_slug", + "type": "varchar(80)", + "primaryKey": false, + "notNull": false + }, + "representative_price_amount": { + "name": "representative_price_amount", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "representative_price_label": { + "name": "representative_price_label", + "type": "varchar(120)", + "primaryKey": false, + "notNull": false + }, + "like_count": { + "name": "like_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dislike_count": { + "name": "dislike_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "verified_price_item_count": { + "name": "verified_price_item_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_price_updated_at": { + "name": "last_price_updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + }, + "created_by_user_id": { + "name": "created_by_user_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "places_slug_unique": { + "name": "places_slug_unique", + "columns": [ + { + "expression": "slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "places_status_updated_at_idx": { + "name": "places_status_updated_at_idx", + "columns": [ + { + "expression": "status", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "places_status_primary_category_idx": { + "name": "places_status_primary_category_idx", + "columns": [ + { + "expression": "status", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "primary_category_slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "places_representative_price_idx": { + "name": "places_representative_price_idx", + "columns": [ + { + "expression": "representative_price_amount", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "places_creator_idx": { + "name": "places_creator_idx", + "columns": [ + { + "expression": "created_by_user_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "places_created_by_user_id_users_id_fk": { + "name": "places_created_by_user_id_users_id_fk", + "tableFrom": "places", + "tableTo": "users", + "columnsFrom": [ + "created_by_user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.price_items": { + "name": "price_items", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "place_id": { + "name": "place_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "label": { + "name": "label", + "type": "varchar(120)", + "primaryKey": false, + "notNull": true + }, + "normalized_label": { + "name": "normalized_label", + "type": "varchar(120)", + "primaryKey": false, + "notNull": true + }, + "amount": { + "name": "amount", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "currency": { + "name": "currency", + "type": "varchar(3)", + "primaryKey": false, + "notNull": true, + "default": "'KRW'" + }, + "unit_label": { + "name": "unit_label", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "is_active": { + "name": "is_active", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "is_representative": { + "name": "is_representative", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "verification_status": { + "name": "verification_status", + "type": "verification_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'unverified'" + }, + "verified_report_count": { + "name": "verified_report_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "latest_reported_at": { + "name": "latest_reported_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + }, + "created_by_user_id": { + "name": "created_by_user_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "price_items_place_label_unique": { + "name": "price_items_place_label_unique", + "columns": [ + { + "expression": "place_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "normalized_label", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "price_items_place_active_idx": { + "name": "price_items_place_active_idx", + "columns": [ + { + "expression": "place_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "is_active", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "price_items_place_representative_idx": { + "name": "price_items_place_representative_idx", + "columns": [ + { + "expression": "place_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "is_representative", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "price_items_place_id_places_id_fk": { + "name": "price_items_place_id_places_id_fk", + "tableFrom": "price_items", + "tableTo": "places", + "columnsFrom": [ + "place_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "price_items_created_by_user_id_users_id_fk": { + "name": "price_items_created_by_user_id_users_id_fk", + "tableFrom": "price_items", + "tableTo": "users", + "columnsFrom": [ + "created_by_user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.price_reports": { + "name": "price_reports", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "place_id": { + "name": "place_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "price_item_id": { + "name": "price_item_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "reporter_user_id": { + "name": "reporter_user_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "label": { + "name": "label", + "type": "varchar(120)", + "primaryKey": false, + "notNull": true + }, + "normalized_label": { + "name": "normalized_label", + "type": "varchar(120)", + "primaryKey": false, + "notNull": true + }, + "amount": { + "name": "amount", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "currency": { + "name": "currency", + "type": "varchar(3)", + "primaryKey": false, + "notNull": true, + "default": "'KRW'" + }, + "unit_label": { + "name": "unit_label", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "comment": { + "name": "comment", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "report_status": { + "name": "report_status", + "type": "price_report_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'accepted'" + }, + "snapshot_verification_status": { + "name": "snapshot_verification_status", + "type": "verification_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'unverified'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "price_reports_place_label_amount_idx": { + "name": "price_reports_place_label_amount_idx", + "columns": [ + { + "expression": "place_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "normalized_label", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "amount", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "price_reports_created_at_idx": { + "name": "price_reports_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "price_reports_place_id_places_id_fk": { + "name": "price_reports_place_id_places_id_fk", + "tableFrom": "price_reports", + "tableTo": "places", + "columnsFrom": [ + "place_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "price_reports_price_item_id_price_items_id_fk": { + "name": "price_reports_price_item_id_price_items_id_fk", + "tableFrom": "price_reports", + "tableTo": "price_items", + "columnsFrom": [ + "price_item_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "price_reports_reporter_user_id_users_id_fk": { + "name": "price_reports_reporter_user_id_users_id_fk", + "tableFrom": "price_reports", + "tableTo": "users", + "columnsFrom": [ + "reporter_user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.users": { + "name": "users", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "email": { + "name": "email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "nickname": { + "name": "nickname", + "type": "varchar(60)", + "primaryKey": false, + "notNull": false + }, + "role": { + "name": "role", + "type": "user_role", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'user'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "users_email_unique": { + "name": "users_email_unique", + "columns": [ + { + "expression": "email", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "users_role_idx": { + "name": "users_role_idx", + "columns": [ + { + "expression": "role", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.comment_status": { + "name": "comment_status", + "schema": "public", + "values": [ + "visible", + "hidden" + ] + }, + "public.content_report_status": { + "name": "content_report_status", + "schema": "public", + "values": [ + "open", + "reviewing", + "resolved", + "dismissed" + ] + }, + "public.content_report_target_type": { + "name": "content_report_target_type", + "schema": "public", + "values": [ + "place", + "price_item", + "comment" + ] + }, + "public.place_reaction_type": { + "name": "place_reaction_type", + "schema": "public", + "values": [ + "like", + "dislike" + ] + }, + "public.place_status": { + "name": "place_status", + "schema": "public", + "values": [ + "active", + "hidden", + "closed", + "pending_review" + ] + }, + "public.price_report_status": { + "name": "price_report_status", + "schema": "public", + "values": [ + "accepted", + "rejected", + "pending_review" + ] + }, + "public.user_role": { + "name": "user_role", + "schema": "public", + "values": [ + "user", + "admin" + ] + }, + "public.verification_status": { + "name": "verification_status", + "schema": "public", + "values": [ + "unverified", + "verified" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/drizzle/meta/_journal.json b/drizzle/meta/_journal.json index 1e37e05..c9c65e0 100644 --- a/drizzle/meta/_journal.json +++ b/drizzle/meta/_journal.json @@ -50,6 +50,13 @@ "when": 1775052090538, "tag": "0006_boring_titania", "breakpoints": true + }, + { + "idx": 7, + "version": "7", + "when": 1775091519251, + "tag": "0007_true_carmella_unuscione", + "breakpoints": true } ] } \ No newline at end of file diff --git a/package.json b/package.json index f8b1d52..2c96d92 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "scripts": { "build": "npm run admin:sync && rm -rf .next .next-dev && next build --webpack", "dev": "ALTTEULMAP_ADMIN_MODE=embedded npm run admin:sync && rm -rf .next-dev && next dev --webpack", + "dev:clean": "rm -rf .next-dev", "admin:sync": "node scripts/sync-admin-entrypoints.mjs", "admin:build": "npm_config_workspaces=false npm --prefix apps/admin run build", "admin:dev": "npm_config_workspaces=false npm --prefix apps/admin run dev", diff --git a/scripts/import-goodprice.ts b/scripts/import-goodprice.ts index 1c08bea..3142778 100644 --- a/scripts/import-goodprice.ts +++ b/scripts/import-goodprice.ts @@ -5,6 +5,8 @@ import path from "node:path"; type CliOptions = { limit: number; maxPrice: number; + seoulLimit: number; + foodRatio: number; delayMs: number; timeoutMs: number; includeDetail: boolean; @@ -87,9 +89,26 @@ type PlaceRecord = { }>; }; +type BucketKey = + | "seoulFood" + | "seoulNonFood" + | "nonSeoulFood" + | "nonSeoulNonFood"; + +type QuotaTargets = Record; +type BucketCollections = Record; + const GOODPRICE_BASE_URL = "https://goodprice.go.kr"; const LIST_PATH = "/bssh/bsshList.do"; const DETAIL_PATH = "/bssh/bsshInfo.json"; +const FOOD_CATEGORY_NAMES = new Set([ + "한식", + "일식", + "양식", + "중식", + "베이커리", + "기타요식업", +]); function getKstDateStamp() { return new Intl.DateTimeFormat("sv-SE", { @@ -103,6 +122,8 @@ function parseArgs(argv: string[]): CliOptions { const options: CliOptions = { limit: 1000, maxPrice: 10000, + seoulLimit: -1, + foodRatio: 0.7, delayMs: 120, timeoutMs: 15000, includeDetail: true, @@ -117,19 +138,38 @@ function parseArgs(argv: string[]): CliOptions { const [flag, rawValue] = arg.slice(2).split("=", 2); const value = rawValue ?? ""; + const numericValue = Number(value); switch (flag) { case "limit": - options.limit = Number(value) || options.limit; + if (Number.isFinite(numericValue) && numericValue > 0) { + options.limit = numericValue; + } break; case "max-price": - options.maxPrice = Number(value) || options.maxPrice; + if (Number.isFinite(numericValue) && numericValue > 0) { + options.maxPrice = numericValue; + } + break; + case "seoul-limit": + if (Number.isFinite(numericValue) && numericValue >= 0) { + options.seoulLimit = numericValue; + } + break; + case "food-ratio": + if (Number.isFinite(numericValue)) { + options.foodRatio = numericValue; + } break; case "delay-ms": - options.delayMs = Number(value) || options.delayMs; + if (Number.isFinite(numericValue) && numericValue >= 0) { + options.delayMs = numericValue; + } break; case "timeout-ms": - options.timeoutMs = Number(value) || options.timeoutMs; + if (Number.isFinite(numericValue) && numericValue > 0) { + options.timeoutMs = numericValue; + } break; case "include-detail": options.includeDetail = value !== "false"; @@ -145,6 +185,10 @@ function parseArgs(argv: string[]): CliOptions { } } + if (options.seoulLimit < 0) { + options.seoulLimit = Math.min(500, Math.floor(options.limit / 2)); + } + return options; } @@ -176,6 +220,10 @@ function cleanText(value: string | undefined) { .trim(); } +function normalizePriceLabel(label: string) { + return label.trim().replace(/\s+/g, " ").toLowerCase(); +} + function parsePrice(value: string) { const digits = value.replace(/[^\d]/g, ""); return digits.length > 0 ? Number(digits) : Number.NaN; @@ -194,6 +242,10 @@ function getDistrict(address: string) { return tokens.slice(0, 2).join(" "); } +function isFoodCategory(categoryName: string) { + return FOOD_CATEGORY_NAMES.has(categoryName); +} + function mapCategorySlug(categoryName: string) { switch (categoryName) { case "한식": @@ -455,34 +507,73 @@ function buildPriceItems( }, ]; - const deduped = new Map(); - - for (const menu of sourceMenus) { - const key = `${menu.label}-${menu.amount}`; - - if (deduped.has(key)) { - continue; + const deduped = new Map< + string, + PlacePriceItem & { + isDesignated: boolean; + matchesRepresentativeMenu: boolean; + matchesRepresentativeAmount: boolean; } + >(); - deduped.set(key, { + for (const menu of sourceMenus) { + const normalizedLabel = normalizePriceLabel(menu.label); + const nextItem = { id: createStableId(item.bsshSn, menu.label, String(menu.amount)), label: menu.label, amount: menu.amount, verificationStatus: "verified", reportedAt: IMPORTED_AT, - }); + isDesignated: menu.isDesignated, + matchesRepresentativeMenu: menu.label === item.representativeMenu, + matchesRepresentativeAmount: + menu.label === item.representativeMenu && menu.amount === item.price, + } satisfies PlacePriceItem & { + isDesignated: boolean; + matchesRepresentativeMenu: boolean; + matchesRepresentativeAmount: boolean; + }; + const currentItem = deduped.get(normalizedLabel); + + if (!currentItem) { + deduped.set(normalizedLabel, nextItem); + continue; + } + + const shouldReplace = + (!currentItem.isDesignated && nextItem.isDesignated) || + (!currentItem.matchesRepresentativeAmount && + nextItem.matchesRepresentativeAmount) || + (!currentItem.matchesRepresentativeMenu && + nextItem.matchesRepresentativeMenu) || + (currentItem.amount > nextItem.amount && + currentItem.isDesignated === nextItem.isDesignated && + currentItem.matchesRepresentativeAmount === + nextItem.matchesRepresentativeAmount && + currentItem.matchesRepresentativeMenu === + nextItem.matchesRepresentativeMenu); + + if (shouldReplace) { + deduped.set(normalizedLabel, nextItem); + } } - return Array.from(deduped.values()); + return Array.from(deduped.values()).map((item) => ({ + id: item.id, + label: item.label, + amount: item.amount, + verificationStatus: item.verificationStatus, + reportedAt: item.reportedAt, + })); } -function toPlaceRecord( +function findRepresentativePrice( item: GoodpriceListItem, detail: GoodpriceDetail, + priceItems: PlacePriceItem[], maxPrice: number, -): PlaceRecord { - const priceItems = buildPriceItems(item, detail, maxPrice); - const representativePrice = +) { + const representativeCandidate = detail.menus.find( (menu) => menu.isDesignated && menu.amount <= maxPrice, ) ?? @@ -494,6 +585,33 @@ function toPlaceRecord( amount: item.price, isDesignated: true, }; + const normalizedRepresentativeLabel = normalizePriceLabel( + representativeCandidate.label, + ); + + return ( + priceItems.find( + (priceItem) => + normalizePriceLabel(priceItem.label) === normalizedRepresentativeLabel, + ) ?? { + label: representativeCandidate.label, + amount: representativeCandidate.amount, + } + ); +} + +function toPlaceRecord( + item: GoodpriceListItem, + detail: GoodpriceDetail, + maxPrice: number, +): PlaceRecord { + const priceItems = buildPriceItems(item, detail, maxPrice); + const representativePrice = findRepresentativePrice( + item, + detail, + priceItems, + maxPrice, + ); return { id: createSlug(item.bsshSn), @@ -525,70 +643,220 @@ function toPlaceRecord( }; } +function buildQuotaTargets(options: CliOptions): QuotaTargets { + if (options.limit <= 0) { + throw new Error("`limit` must be greater than 0."); + } + + if (options.seoulLimit < 0 || options.seoulLimit > options.limit) { + throw new Error("`seoul-limit` must be between 0 and `limit`."); + } + + if (options.foodRatio < 0 || options.foodRatio > 1) { + throw new Error("`food-ratio` must be between 0 and 1."); + } + + const nonSeoulLimit = options.limit - options.seoulLimit; + const seoulFood = Math.round(options.seoulLimit * options.foodRatio); + const nonSeoulFood = Math.round(nonSeoulLimit * options.foodRatio); + + return { + seoulFood, + seoulNonFood: options.seoulLimit - seoulFood, + nonSeoulFood, + nonSeoulNonFood: nonSeoulLimit - nonSeoulFood, + }; +} + +function createBucketCollections(): BucketCollections { + return { + seoulFood: [], + seoulNonFood: [], + nonSeoulFood: [], + nonSeoulNonFood: [], + }; +} + +function getBucketCounts(collections: BucketCollections) { + return { + seoulFood: collections.seoulFood.length, + seoulNonFood: collections.seoulNonFood.length, + nonSeoulFood: collections.nonSeoulFood.length, + nonSeoulNonFood: collections.nonSeoulNonFood.length, + }; +} + +function getTotalCollected(collections: BucketCollections) { + return Object.values(collections).reduce((sum, items) => sum + items.length, 0); +} + +function isQuotaSatisfied( + collections: BucketCollections, + targets: QuotaTargets, + bucket: BucketKey, +) { + return collections[bucket].length >= targets[bucket]; +} + +function areAllQuotasSatisfied( + collections: BucketCollections, + targets: QuotaTargets, +) { + return (Object.keys(targets) as BucketKey[]).every((bucket) => + isQuotaSatisfied(collections, targets, bucket), + ); +} + +function getBucketKey(item: GoodpriceListItem) { + const isSeoul = item.regionName.includes("서울"); + const isFood = isFoodCategory(item.categoryName); + + if (isSeoul) { + return isFood ? "seoulFood" : "seoulNonFood"; + } + + return isFood ? "nonSeoulFood" : "nonSeoulNonFood"; +} + +function formatBucketProgress( + collections: BucketCollections, + targets: QuotaTargets, +) { + const counts = getBucketCounts(collections); + + return [ + `서울 음식 ${counts.seoulFood}/${targets.seoulFood}`, + `서울 비음식 ${counts.seoulNonFood}/${targets.seoulNonFood}`, + `비서울 음식 ${counts.nonSeoulFood}/${targets.nonSeoulFood}`, + `비서울 비음식 ${counts.nonSeoulNonFood}/${targets.nonSeoulNonFood}`, + ].join(", "); +} + +function buildSelectedItems(collections: BucketCollections) { + const buckets = [ + collections.seoulFood, + collections.seoulNonFood, + collections.nonSeoulFood, + collections.nonSeoulNonFood, + ]; + const selected: GoodpriceListItem[] = []; + let remaining = true; + let index = 0; + + while (remaining) { + remaining = false; + + for (const bucket of buckets) { + if (index < bucket.length) { + selected.push(bucket[index]); + remaining = true; + } + } + + index += 1; + } + + return selected; +} + async function main() { const options = parseArgs(process.argv.slice(2)); + const quotaTargets = buildQuotaTargets(options); const firstPageHtml = (await fetchText(LIST_PATH, { pageIndex: "1", menuId: "MN-0103", }, options.timeoutMs)) as string; const regions = extractRegionOptions(firstPageHtml); + const seoulRegion = regions.find((region) => region.name.includes("서울")); + + if (!seoulRegion) { + throw new Error("Failed to find the Seoul region option."); + } + + const nonSeoulRegions = regions.filter((region) => region.code !== seoulRegion.code); const seenAddresses = new Set(); - const collected: GoodpriceListItem[] = []; + const collected = createBucketCollections(); const pageState = new Map( regions.map((region) => [region.code, { nextPage: 1, done: false }]), ); + let nonSeoulCursor = 0; - while (collected.length < options.limit) { - let progressed = false; + const collectFromRegion = async (region: RegionOption) => { + const state = pageState.get(region.code); - for (const region of regions) { - if (collected.length >= options.limit) { - break; - } + if (!state || state.done) { + return false; + } - const state = pageState.get(region.code); + const html = + ((await fetchText(LIST_PATH, { + pageIndex: String(state.nextPage), + menuId: "MN-0103", + srchCtpvCd: region.code, + }, options.timeoutMs)) as string); - if (!state || state.done) { + const pageItems = parseListPage(html, state.nextPage, region); + state.nextPage += 1; + + if (pageItems.length === 0) { + state.done = true; + return true; + } + + const affordableItems = pageItems.filter( + (item) => + item.price <= options.maxPrice && + !seenAddresses.has(`${item.name}@@${item.address}`), + ); + + for (const item of affordableItems) { + const bucket = getBucketKey(item); + + if (isQuotaSatisfied(collected, quotaTargets, bucket)) { continue; } - const html = - ((await fetchText(LIST_PATH, { - pageIndex: String(state.nextPage), - menuId: "MN-0103", - srchCtpvCd: region.code, - }, options.timeoutMs)) as string); + collected[bucket].push(item); + seenAddresses.add(`${item.name}@@${item.address}`); - const pageItems = parseListPage(html, state.nextPage, region); - state.nextPage += 1; - progressed = true; + const totalCollected = getTotalCollected(collected); - if (pageItems.length === 0) { - state.done = true; - continue; + if (totalCollected > 0 && totalCollected % 100 === 0) { + console.log( + `Collected ${totalCollected}/${options.limit} places... (${formatBucketProgress(collected, quotaTargets)})`, + ); } + } - const affordableItems = pageItems.filter( - (item) => - item.price <= options.maxPrice && - !seenAddresses.has(`${item.name}@@${item.address}`), - ); + await sleep(options.delayMs); + return true; + }; + + while (!areAllQuotasSatisfied(collected, quotaTargets)) { + let progressed = false; + + if (collected.seoulFood.length < quotaTargets.seoulFood || collected.seoulNonFood.length < quotaTargets.seoulNonFood) { + progressed = (await collectFromRegion(seoulRegion)) || progressed; + } + + if (collected.nonSeoulFood.length < quotaTargets.nonSeoulFood || collected.nonSeoulNonFood.length < quotaTargets.nonSeoulNonFood) { + let attempts = 0; - for (const item of affordableItems) { - collected.push(item); - seenAddresses.add(`${item.name}@@${item.address}`); + while (attempts < nonSeoulRegions.length) { + const region = nonSeoulRegions[nonSeoulCursor % nonSeoulRegions.length]; + nonSeoulCursor += 1; + attempts += 1; - if (collected.length >= options.limit) { - break; + const state = pageState.get(region.code); + + if (!state || state.done) { + continue; } - } - if (collected.length > 0 && collected.length % 100 === 0) { - console.log(`Collected ${collected.length}/${options.limit} places...`); + progressed = (await collectFromRegion(region)) || progressed; + break; } - - await sleep(options.delayMs); } if (!progressed) { @@ -596,7 +864,13 @@ async function main() { } } - const selected = collected.slice(0, options.limit); + if (!areAllQuotasSatisfied(collected, quotaTargets)) { + throw new Error( + `Failed to satisfy quota targets. ${formatBucketProgress(collected, quotaTargets)}`, + ); + } + + const selected = buildSelectedItems(collected); const detailMap = new Map(); if (options.includeDetail) { @@ -630,6 +904,13 @@ async function main() { importedAt: new Date().toISOString(), options, selectedCount: selected.length, + quotas: { + seoulLimit: options.seoulLimit, + nonSeoulLimit: options.limit - options.seoulLimit, + foodRatio: options.foodRatio, + targets: quotaTargets, + actual: getBucketCounts(collected), + }, regions: Array.from( selected.reduce((map, item) => { map.set(item.regionName, (map.get(item.regionName) ?? 0) + 1); diff --git a/src/app/api/auth/[...nextauth]/route.ts b/src/app/api/auth/[...nextauth]/route.ts index fd22bbd..343e799 100644 --- a/src/app/api/auth/[...nextauth]/route.ts +++ b/src/app/api/auth/[...nextauth]/route.ts @@ -4,8 +4,14 @@ import { getAuthOptions } from "@/auth"; export const runtime = "nodejs"; -async function handler(request: Request) { - return NextAuth(getAuthOptions())(request); +type AuthRouteContext = { + params: Promise<{ + nextauth?: string[]; + }>; +}; + +async function handler(request: Request, context: AuthRouteContext) { + return NextAuth(getAuthOptions())(request, context); } export { handler as GET, handler as POST }; diff --git a/src/app/api/places/map/route.ts b/src/app/api/places/map/route.ts index e2f64e7..d04ba5a 100644 --- a/src/app/api/places/map/route.ts +++ b/src/app/api/places/map/route.ts @@ -1,4 +1,4 @@ -import { listPlaces } from "@/features/places/repository"; +import { listMapPlaces } from "@/features/places/repository"; export const dynamic = "force-dynamic"; @@ -37,6 +37,7 @@ export async function GET(request: Request) { const maxLat = parseFiniteNumber(searchParams.get("maxLat")); const minLng = parseFiniteNumber(searchParams.get("minLng")); const maxLng = parseFiniteNumber(searchParams.get("maxLng")); + const zoom = parseFiniteNumber(searchParams.get("zoom")); const bounds = minLat !== null && maxLat !== null && minLng !== null && maxLng !== null ? { @@ -47,17 +48,22 @@ export async function GET(request: Request) { } : null; - const result = await listPlaces({ + const result = await listMapPlaces({ category, maxPrice, query, bounds: searchScope === "viewport" ? bounds : null, + zoom: searchScope === "viewport" ? zoom : null, }); return Response.json( { items: result.items, - count: result.items.length, + mapMarkers: result.mapMarkers, + count: result.count, + returnedCount: result.items.length, + mapMarkerCount: result.mapMarkers.length, + truncated: result.items.length < result.count, bounds: result.bounds, filters: { category, @@ -65,6 +71,7 @@ export async function GET(request: Request) { query, searchScope, bounds: searchScope === "viewport" ? bounds : null, + zoom: searchScope === "viewport" ? zoom : null, }, source: result.source, mock: result.source === "mock", diff --git a/src/app/bookmarks/page.tsx b/src/app/bookmarks/page.tsx index ce76269..8447455 100644 --- a/src/app/bookmarks/page.tsx +++ b/src/app/bookmarks/page.tsx @@ -1,12 +1,10 @@ import Link from "next/link"; import { redirect } from "next/navigation"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { BookmarkToggleButton } from "@/features/bookmarks/bookmark-toggle-button"; -import { listBookmarks } from "@/features/bookmarks/repository"; +import { listBookmarkedPlaces } from "@/features/bookmarks/repository"; import { getCategoryBySlug } from "@/features/categories/catalog"; import { formatKrw } from "@/features/places/queries"; -import { listPlaces } from "@/features/places/repository"; import { createLoginHref, getSessionUser } from "@/lib/session"; export const dynamic = "force-dynamic"; @@ -18,44 +16,23 @@ export default async function BookmarksPage() { redirect(createLoginHref("/bookmarks")); } - const [bookmarkResult, placeResult] = await Promise.all([ - listBookmarks(user), - listPlaces({ sort: "recent" }), - ]); - - const placeById = new Map(placeResult.items.map((place) => [place.id, place])); - const bookmarkedPlaces = bookmarkResult.items - .map((bookmark) => ({ - bookmark, - place: placeById.get(bookmark.placeId) ?? null, - })) - .filter( - ( - entry, - ): entry is { - bookmark: (typeof bookmarkResult.items)[number]; - place: NonNullable<(typeof entry)["place"]>; - } => entry.place !== null, - ); + const bookmarkedPlaces = await listBookmarkedPlaces(user); return (
-
-
-

- 북마크 -

-

- 북마크한 장소 -

-
- +
+

+ 북마크 +

+

+ 북마크한 장소 +

{bookmarkedPlaces.length > 0 ? (
- {bookmarkedPlaces.map(({ bookmark, place }) => { + {bookmarkedPlaces.map((place) => { const category = getCategoryBySlug(place.categorySlug); return ( @@ -67,7 +44,7 @@ export default async function BookmarksPage() {

- 북마크 {bookmark.createdAt} + 북마크 {place.createdAt}

{place.name} @@ -94,6 +71,7 @@ export default async function BookmarksPage() {
) { + const user = await getSessionUser(); + return ( + {children} diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index dc9b10f..0ead136 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -1,7 +1,6 @@ import type { Metadata } from "next"; import { redirect } from "next/navigation"; -import { BrandMark } from "@/components/brand-mark"; import { listSocialAuthProviders } from "@/features/auth/repository"; import { LoginForm } from "@/features/auth/login-form"; import { @@ -39,8 +38,7 @@ export default async function LoginPage({ searchParams }: LoginPageProps) { return (
-
- +
bookmark.placeId === place.id, ); - const placePath = `/place/${place.id}`; const bookmarkLoginHref = createLoginHref(`/place/${place.id}`); - const loginHref = createLoginHref(placePath); const reportPath = `/report?placeId=${place.id}&placeName=${encodeURIComponent(place.name)}`; const reportHref = reportPath; return (
-
+
목록으로 돌아가기 -
@@ -162,6 +154,7 @@ export default async function PlacePage({ params }: PlacePageProps) {

(
-
+

{item.label}

마지막 제보 {item.reportedAt}

-
+

{formatKrw(item.amount)}원 {item.unitLabel ? ` / ${item.unitLabel}` : ""} diff --git a/src/app/report/page.tsx b/src/app/report/page.tsx index 06a64c4..e690ee4 100644 --- a/src/app/report/page.tsx +++ b/src/app/report/page.tsx @@ -1,10 +1,4 @@ -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { ReportSubmitForm } from "@/features/reports/report-submit-form"; -import { - createLoginHref, - getSessionUser, -} from "@/lib/session"; - type ReportPageProps = { searchParams: Promise>; }; @@ -17,27 +11,17 @@ export default async function ReportPage({ searchParams }: ReportPageProps) { const params = await searchParams; const placeId = getFirstValue(params.placeId, "unknown-place"); const placeName = getFirstValue(params.placeName, "이름 없는 장소"); - const user = await getSessionUser(); - const reportPath = `/report?placeId=${encodeURIComponent(placeId)}&placeName=${encodeURIComponent(placeName)}`; - const loginHref = createLoginHref(reportPath); return (

-
-
-

- 장소 신고 -

-

- 정보 수정 요청 -

-
- +
+

+ 장소 신고 +

+

+ 정보 수정 요청 +

diff --git a/src/app/signup/page.tsx b/src/app/signup/page.tsx index 2e4cef6..d542689 100644 --- a/src/app/signup/page.tsx +++ b/src/app/signup/page.tsx @@ -1,7 +1,6 @@ import type { Metadata } from "next"; import { redirect } from "next/navigation"; -import { BrandMark } from "@/components/brand-mark"; import { isCredentialsSignupAvailable, listSocialAuthProviders, @@ -42,8 +41,7 @@ export default async function SignupPage({ searchParams }: SignupPageProps) { return (
-
- +
-
-
-

- 장소 등록 -

-

- 새 장소 등록 -

-
- +
+

+ 장소 등록 +

+

+ 새 장소 등록 +

diff --git a/src/components/global-header.tsx b/src/components/global-header.tsx new file mode 100644 index 0000000..5203ef2 --- /dev/null +++ b/src/components/global-header.tsx @@ -0,0 +1,80 @@ +"use client"; + +import Link from "next/link"; +import { usePathname, useSearchParams } from "next/navigation"; + +import { BrandMark } from "@/components/brand-mark"; +import { SignOutButton } from "@/features/auth/sign-out-button"; +import { createLoginHref } from "@/lib/auth-navigation"; + +type HeaderUser = { + id: string; + email: string; + name: string | null; + role: "user" | "admin"; +} | null; + +type GlobalHeaderProps = { + adminHref: string; + homeHref?: string; + user: HeaderUser; +}; + +function isActive(pathname: string, href: string) { + if (href === "/") { + return pathname === "/"; + } + + if (href === "/admin") { + return pathname === "/admin" || pathname.startsWith("/admin/"); + } + + return pathname === href; +} + +function getNavClassName(active: boolean) { + return active + ? "altteulmap-accent-ghost altteulmap-button inline-flex items-center justify-center whitespace-nowrap border px-4 py-2 text-sm font-medium transition" + : "altteulmap-button inline-flex items-center justify-center whitespace-nowrap border border-stone-300 bg-white px-4 py-2 text-sm font-medium text-stone-700 transition hover:bg-stone-100"; +} + +export function GlobalHeader({ + adminHref, + homeHref = "/", + user, +}: GlobalHeaderProps) { + const pathname = usePathname() ?? "/"; + const searchParams = useSearchParams(); + const query = searchParams.toString(); + const currentHref = query ? `${pathname}?${query}` : pathname; + const loginHref = createLoginHref(currentHref); + const bookmarksHref = user ? "/bookmarks" : createLoginHref("/bookmarks"); + const submitHref = "/submit"; + + return ( +
+
+ + + +
+
+ ); +} diff --git a/src/db/schema.ts b/src/db/schema.ts index 6beccf5..f0f5dd5 100644 --- a/src/db/schema.ts +++ b/src/db/schema.ts @@ -166,10 +166,13 @@ export const places = pgTable( latitude: doublePrecision("latitude"), longitude: doublePrecision("longitude"), status: placeStatusEnum("status").default("active").notNull(), + primaryCategorySlug: varchar("primary_category_slug", { length: 80 }), representativePriceAmount: integer("representative_price_amount"), representativePriceLabel: varchar("representative_price_label", { length: 120, }), + likeCount: integer("like_count").default(0).notNull(), + dislikeCount: integer("dislike_count").default(0).notNull(), verifiedPriceItemCount: integer("verified_price_item_count") .default(0) .notNull(), @@ -184,6 +187,10 @@ export const places = pgTable( (table) => [ uniqueIndex("places_slug_unique").on(table.slug), index("places_status_updated_at_idx").on(table.status, table.updatedAt), + index("places_status_primary_category_idx").on( + table.status, + table.primaryCategorySlug, + ), index("places_representative_price_idx").on( table.representativePriceAmount, ), diff --git a/src/db/seed.ts b/src/db/seed.ts index 3406f12..2bb12df 100644 --- a/src/db/seed.ts +++ b/src/db/seed.ts @@ -136,8 +136,11 @@ async function main() { latitude: place.latitude, longitude: place.longitude, status: "active", + primaryCategorySlug: place.categorySlug, representativePriceAmount: place.representativePriceAmount, representativePriceLabel: place.representativePriceLabel, + likeCount: place.likeCount, + dislikeCount: place.dislikeCount, verifiedPriceItemCount: place.priceItems.filter( (item) => item.verificationStatus === "verified", ).length, diff --git a/src/features/admin/entrypoints/pages/dashboard-page.tsx b/src/features/admin/entrypoints/pages/dashboard-page.tsx index 447e3df..f8c168e 100644 --- a/src/features/admin/entrypoints/pages/dashboard-page.tsx +++ b/src/features/admin/entrypoints/pages/dashboard-page.tsx @@ -3,7 +3,6 @@ import { redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; import { getAdminOverview } from "@/features/admin/repository"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { listPendingPlaces, listPendingPriceReports, @@ -53,20 +52,17 @@ export default async function AdminPage() { return (
-
-
-

- 운영 -

-

- 운영 대시보드 -

-

- 승인 대기 목록, 신고 큐, 사용자 현황을 한 화면에서 보고 바로 - 운영 액션으로 넘어갈 수 있게 정리했습니다. -

-
- +
+

+ 운영 +

+

+ 운영 대시보드 +

+

+ 승인 대기 목록, 신고 큐, 사용자 현황을 한 화면에서 보고 바로 + 운영 액션으로 넘어갈 수 있게 정리했습니다. +

diff --git a/src/features/admin/entrypoints/pages/place-prices-page.tsx b/src/features/admin/entrypoints/pages/place-prices-page.tsx index a1884cf..8c00c6e 100644 --- a/src/features/admin/entrypoints/pages/place-prices-page.tsx +++ b/src/features/admin/entrypoints/pages/place-prices-page.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { notFound, redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { AdminPriceItemForm } from "@/features/places/admin-price-item-form"; import { formatKrw } from "@/features/places/queries"; import { getAdminPlacePriceDetail } from "@/features/places/repository"; @@ -81,7 +80,6 @@ export default async function AdminPlacePricesDetailPage({ > 장소 보기 -
diff --git a/src/features/admin/entrypoints/pages/places-page.tsx b/src/features/admin/entrypoints/pages/places-page.tsx index 9a3e7fb..14c9aaf 100644 --- a/src/features/admin/entrypoints/pages/places-page.tsx +++ b/src/features/admin/entrypoints/pages/places-page.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { getCategoryBySlug } from "@/features/categories/catalog"; import { AdminPlaceReviewForm } from "@/features/places/admin-place-review-form"; import { formatKrw } from "@/features/places/queries"; @@ -74,7 +73,6 @@ export default async function AdminPlacesPage() { > 가격 제보 큐 -
diff --git a/src/features/admin/entrypoints/pages/prices-page.tsx b/src/features/admin/entrypoints/pages/prices-page.tsx index 87a5bd9..410e9a3 100644 --- a/src/features/admin/entrypoints/pages/prices-page.tsx +++ b/src/features/admin/entrypoints/pages/prices-page.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { AdminPriceReportReviewForm } from "@/features/places/admin-price-report-review-form"; import { formatKrw } from "@/features/places/queries"; import { @@ -84,7 +83,6 @@ export default async function AdminPricesPage() { > 응답 보기 -
diff --git a/src/features/admin/entrypoints/pages/reports-page.tsx b/src/features/admin/entrypoints/pages/reports-page.tsx index a062ca5..20041ab 100644 --- a/src/features/admin/entrypoints/pages/reports-page.tsx +++ b/src/features/admin/entrypoints/pages/reports-page.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { AdminReportStatusForm } from "@/features/reports/admin-report-status-form"; import { listReports } from "@/features/reports/repository"; import { @@ -89,7 +88,6 @@ export default async function AdminReportsPage() { > 응답 보기 -
diff --git a/src/features/admin/pages/dashboard-page.tsx b/src/features/admin/pages/dashboard-page.tsx index 447e3df..f8c168e 100644 --- a/src/features/admin/pages/dashboard-page.tsx +++ b/src/features/admin/pages/dashboard-page.tsx @@ -3,7 +3,6 @@ import { redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; import { getAdminOverview } from "@/features/admin/repository"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { listPendingPlaces, listPendingPriceReports, @@ -53,20 +52,17 @@ export default async function AdminPage() { return (
-
-
-

- 운영 -

-

- 운영 대시보드 -

-

- 승인 대기 목록, 신고 큐, 사용자 현황을 한 화면에서 보고 바로 - 운영 액션으로 넘어갈 수 있게 정리했습니다. -

-
- +
+

+ 운영 +

+

+ 운영 대시보드 +

+

+ 승인 대기 목록, 신고 큐, 사용자 현황을 한 화면에서 보고 바로 + 운영 액션으로 넘어갈 수 있게 정리했습니다. +

diff --git a/src/features/admin/pages/place-prices-page.tsx b/src/features/admin/pages/place-prices-page.tsx index a1884cf..8c00c6e 100644 --- a/src/features/admin/pages/place-prices-page.tsx +++ b/src/features/admin/pages/place-prices-page.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { notFound, redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { AdminPriceItemForm } from "@/features/places/admin-price-item-form"; import { formatKrw } from "@/features/places/queries"; import { getAdminPlacePriceDetail } from "@/features/places/repository"; @@ -81,7 +80,6 @@ export default async function AdminPlacePricesDetailPage({ > 장소 보기 -
diff --git a/src/features/admin/pages/places-page.tsx b/src/features/admin/pages/places-page.tsx index 9a3e7fb..14c9aaf 100644 --- a/src/features/admin/pages/places-page.tsx +++ b/src/features/admin/pages/places-page.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { getCategoryBySlug } from "@/features/categories/catalog"; import { AdminPlaceReviewForm } from "@/features/places/admin-place-review-form"; import { formatKrw } from "@/features/places/queries"; @@ -74,7 +73,6 @@ export default async function AdminPlacesPage() { > 가격 제보 큐 -
diff --git a/src/features/admin/pages/prices-page.tsx b/src/features/admin/pages/prices-page.tsx index 87a5bd9..410e9a3 100644 --- a/src/features/admin/pages/prices-page.tsx +++ b/src/features/admin/pages/prices-page.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { AdminPriceReportReviewForm } from "@/features/places/admin-price-report-review-form"; import { formatKrw } from "@/features/places/queries"; import { @@ -84,7 +83,6 @@ export default async function AdminPricesPage() { > 응답 보기 -
diff --git a/src/features/admin/pages/reports-page.tsx b/src/features/admin/pages/reports-page.tsx index a062ca5..20041ab 100644 --- a/src/features/admin/pages/reports-page.tsx +++ b/src/features/admin/pages/reports-page.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { redirect } from "next/navigation"; import { AccessDeniedPanel } from "@/components/access-denied-panel"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { AdminReportStatusForm } from "@/features/reports/admin-report-status-form"; import { listReports } from "@/features/reports/repository"; import { @@ -89,7 +88,6 @@ export default async function AdminReportsPage() { > 응답 보기 -
diff --git a/src/features/auth/login-form.tsx b/src/features/auth/login-form.tsx index 96a94f2..b96f0a7 100644 --- a/src/features/auth/login-form.tsx +++ b/src/features/auth/login-form.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { signIn } from "next-auth/react"; -import { useRouter } from "next/navigation"; import { useState, useTransition } from "react"; import { type SocialAuthProviderAvailability } from "@/features/auth/constants"; @@ -32,7 +31,6 @@ export function LoginForm({ signupHref, socialProviders, }: LoginFormProps) { - const router = useRouter(); const [email, setEmail] = useState(""); const [password, setPassword] = useState(""); const [message, setMessage] = useState( @@ -72,8 +70,7 @@ export function LoginForm({ return; } - router.replace(callbackUrl); - router.refresh(); + window.location.assign(result.url ?? callbackUrl); }); }} data-testid="login-form" diff --git a/src/features/auth/session-action-group.tsx b/src/features/auth/session-action-group.tsx deleted file mode 100644 index 190ec76..0000000 --- a/src/features/auth/session-action-group.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import Link from "next/link"; - -import { appUserRoleLabelMap } from "@/features/auth/constants"; -import { SignOutButton } from "@/features/auth/sign-out-button"; -import { getAdminAppHref } from "@/lib/admin-app"; -import { - getSessionUserLabel, - type SessionUser, -} from "@/lib/session"; - -type SessionActionGroupProps = { - user: SessionUser | null; - loginHref?: string; - signOutCallbackUrl?: string; - compact?: boolean; -}; - -function getBadgeLabel(user: SessionUser) { - const userLabel = getSessionUserLabel(user); - const roleLabel = appUserRoleLabelMap[user.role]; - - return userLabel === roleLabel ? userLabel : `${userLabel} · ${roleLabel}`; -} - -export function SessionActionGroup({ - user, - loginHref, - signOutCallbackUrl = "/", - compact = false, -}: SessionActionGroupProps) { - const badgeClassName = compact - ? "altteulmap-badge whitespace-nowrap border border-stone-200 bg-stone-50 px-3 py-1.5 text-xs text-stone-700" - : "altteulmap-badge whitespace-nowrap border border-stone-200 bg-stone-50 px-4 py-3 text-sm text-stone-700"; - const linkClassName = compact - ? "altteulmap-button whitespace-nowrap border border-stone-300 bg-white px-3 py-1.5 text-xs text-stone-700 transition hover:bg-stone-100" - : "altteulmap-button whitespace-nowrap border border-stone-300 bg-white px-4 py-2 text-sm text-stone-700 transition hover:bg-stone-100"; - - if (!user) { - if (!loginHref) { - return null; - } - - return ( - - 로그인 - - ); - } - - return ( -
- - {getBadgeLabel(user)} - - {user.role === "admin" ? ( - - 관리 - - ) : null} - -
- ); -} diff --git a/src/features/auth/signup-form.tsx b/src/features/auth/signup-form.tsx index faa3658..ac16423 100644 --- a/src/features/auth/signup-form.tsx +++ b/src/features/auth/signup-form.tsx @@ -2,7 +2,6 @@ import Link from "next/link"; import { signIn } from "next-auth/react"; -import { useRouter } from "next/navigation"; import { useState, useTransition } from "react"; import { type SocialAuthProviderAvailability } from "@/features/auth/constants"; @@ -26,7 +25,6 @@ export function SignupForm({ socialProviders, credentialsSignupEnabled, }: SignupFormProps) { - const router = useRouter(); const [nickname, setNickname] = useState(""); const [email, setEmail] = useState(""); const [password, setPassword] = useState(""); @@ -85,8 +83,7 @@ export function SignupForm({ return; } - router.replace(callbackUrl); - router.refresh(); + window.location.assign(loginResult.url ?? callbackUrl); }); }} data-testid="signup-form" diff --git a/src/features/bookmarks/bookmark-toggle-button.tsx b/src/features/bookmarks/bookmark-toggle-button.tsx index a5295d5..2f8cf72 100644 --- a/src/features/bookmarks/bookmark-toggle-button.tsx +++ b/src/features/bookmarks/bookmark-toggle-button.tsx @@ -25,40 +25,50 @@ export function BookmarkToggleButton({ const toggleBookmark = () => { startTransition(async () => { - const nextBookmarked = !bookmarked; - const response = await fetch(`/api/bookmarks/${encodeURIComponent(placeId)}`, { - method: "PUT", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - bookmarked: nextBookmarked, - }), - }); + try { + const nextBookmarked = !bookmarked; + const response = await fetch( + `/api/bookmarks/${encodeURIComponent(placeId)}`, + { + method: "PUT", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + bookmarked: nextBookmarked, + }), + }, + ); - const result = (await response.json()) as { - ok: boolean; - bookmarked: boolean; - message: string; - requiresAuth?: boolean; - }; + const result = (await response.json()) as { + ok: boolean; + bookmarked: boolean; + message: string; + requiresAuth?: boolean; + }; - if (response.status === 401 || result.requiresAuth) { - if (loginHref) { - router.push(loginHref); + if (response.status === 401 || result.requiresAuth) { + if (loginHref) { + router.push(loginHref); + return; + } + + setMessage(result.message); return; } - setMessage(result.message); - return; - } + if (result.ok) { + setBookmarked(result.bookmarked); + setMessage(null); + router.refresh(); + return; + } - if (result.ok) { - setBookmarked(result.bookmarked); - router.refresh(); + setMessage(result.message); + } catch (error) { + console.error("Failed to toggle bookmark.", error); + setMessage("북마크 업데이트에 실패했습니다."); } - - setMessage(result.message); }); }; diff --git a/src/features/bookmarks/repository.ts b/src/features/bookmarks/repository.ts index a9dccaa..9d9d8b3 100644 --- a/src/features/bookmarks/repository.ts +++ b/src/features/bookmarks/repository.ts @@ -4,6 +4,7 @@ import { and, desc, eq } from "drizzle-orm"; import { getDb, isDatabaseEnabled } from "@/db/client"; import { bookmarks, places } from "@/db/schema"; +import { mockPlaces } from "@/features/places/catalog-data"; type DataSource = "mock" | "database"; @@ -18,6 +19,16 @@ type BookmarkRecord = { createdAt: string; }; +export type BookmarkedPlaceRecord = { + id: string; + name: string; + district: string; + categorySlug: string; + representativePriceAmount: number; + representativePriceLabel: string; + createdAt: string; +}; + export type BookmarkListResult = { items: BookmarkRecord[]; source: DataSource; @@ -67,6 +78,32 @@ function getMockBookmarks(actor: BookmarkActor | null): BookmarkListResult { }; } +function getMockBookmarkedPlaces( + actor: BookmarkActor | null, +): BookmarkedPlaceRecord[] { + const bookmarks = getMockBookmarks(actor).items; + + return bookmarks + .map((bookmark) => { + const place = mockPlaces.find((item) => item.id === bookmark.placeId); + + if (!place) { + return null; + } + + return { + id: place.id, + name: place.name, + district: place.district, + categorySlug: place.categorySlug, + representativePriceAmount: place.representativePriceAmount, + representativePriceLabel: place.representativePriceLabel, + createdAt: bookmark.createdAt, + } satisfies BookmarkedPlaceRecord; + }) + .filter((item): item is BookmarkedPlaceRecord => item !== null); +} + async function listDatabaseBookmarks( actor: BookmarkActor | null, ): Promise { @@ -101,6 +138,40 @@ async function listDatabaseBookmarks( }; } +async function listDatabaseBookmarkedPlaces( + actor: BookmarkActor | null, +): Promise { + if (!actor) { + return []; + } + + const db = getDb(); + const rows = await db + .select({ + id: places.slug, + name: places.name, + district: places.district, + categorySlug: places.primaryCategorySlug, + representativePriceAmount: places.representativePriceAmount, + representativePriceLabel: places.representativePriceLabel, + createdAt: bookmarks.createdAt, + }) + .from(bookmarks) + .innerJoin(places, eq(bookmarks.placeId, places.id)) + .where(and(eq(bookmarks.userId, actor.id), eq(places.status, "active"))) + .orderBy(desc(bookmarks.createdAt)); + + return rows.map((row) => ({ + id: row.id, + name: row.name, + district: row.district, + categorySlug: row.categorySlug ?? "other-service", + representativePriceAmount: row.representativePriceAmount ?? 0, + representativePriceLabel: row.representativePriceLabel ?? "대표 가격 준비 중", + createdAt: formatDate(row.createdAt), + })); +} + async function setDatabaseBookmark( placeSlug: string, bookmarked: boolean, @@ -232,3 +303,19 @@ export async function setBookmark( }; } } + +export async function listBookmarkedPlaces(actor: BookmarkActor | null) { + if (!isDatabaseEnabled()) { + return getMockBookmarkedPlaces(actor); + } + + try { + return await listDatabaseBookmarkedPlaces(actor); + } catch (error) { + console.error( + "Failed to load bookmarked places. Falling back to mock data.", + error, + ); + return getMockBookmarkedPlaces(actor); + } +} diff --git a/src/features/map/map-page.tsx b/src/features/map/map-page.tsx index 258583c..5d89920 100644 --- a/src/features/map/map-page.tsx +++ b/src/features/map/map-page.tsx @@ -1,16 +1,17 @@ import type { Metadata } from "next"; import Link from "next/link"; -import { BrandMark } from "@/components/brand-mark"; import { listBookmarks } from "@/features/bookmarks/repository"; -import { SessionActionGroup } from "@/features/auth/session-action-group"; import { categoryGroups, getCategoryBySlug, } from "@/features/categories/catalog"; import { MapExplorer } from "@/features/places/map-explorer"; -import { listPlaces } from "@/features/places/repository"; -import type { PlaceSearchScope } from "@/features/places/types"; +import { listMapPlaces } from "@/features/places/repository"; +import type { + PlaceBounds, + PlaceSearchScope, +} from "@/features/places/types"; import { createLoginHref, getSessionUser } from "@/lib/session"; type MapPageProps = { @@ -44,6 +45,12 @@ const mobileScopeChipClass = "altteulmap-chip altteulmap-scope-chip inline-flex whitespace-nowrap px-3 py-2 text-xs transition"; const desktopScopeChipClass = "altteulmap-chip altteulmap-scope-chip inline-flex whitespace-nowrap px-4 py-2 text-sm transition"; +const SEOUL_BOOTSTRAP_BOUNDS: PlaceBounds = { + minLat: 37.4133, + maxLat: 37.7151, + minLng: 126.7341, + maxLng: 127.2693, +}; function getFirstValue(value: string | string[] | undefined) { return Array.isArray(value) ? value[0] : value; @@ -86,13 +93,22 @@ export default async function MapPage({ searchParams }: MapPageProps) { ? "global" : "viewport"; const user = await getSessionUser(); + const shouldPrefetchPlaces = activeSearchScope === "global"; const [result, bookmarkResult] = await Promise.all([ - listPlaces({ - category: activeCategory, - maxPrice: activeMaxPrice, - query: activeQuery, - }), + shouldPrefetchPlaces + ? listMapPlaces({ + category: activeCategory, + maxPrice: activeMaxPrice, + query: activeQuery, + }) + : Promise.resolve({ + items: [], + mapMarkers: [], + bounds: SEOUL_BOOTSTRAP_BOUNDS, + count: 0, + source: "database" as const, + }), listBookmarks(user), ]); const currentMapHref = createHref({ @@ -101,9 +117,7 @@ export default async function MapPage({ searchParams }: MapPageProps) { query: activeQuery, searchScope: activeSearchScope, }); - const loginHref = createLoginHref(currentMapHref); const bookmarkLoginHref = createLoginHref(currentMapHref); - const submitHref = "/submit"; const places = result.items; const bookmarkedIds = new Set( bookmarkResult.items.map((bookmark) => bookmark.placeId), @@ -119,33 +133,31 @@ export default async function MapPage({ searchParams }: MapPageProps) { ].filter((item): item is string => Boolean(item)); return ( -
-
-
-
- -
- - 장소 등록하기 - - - 북마크 - - +
+
+
+
+
+

+ 지도 탐색 +

+

+ 동네 알뜰 장소를 한 번에 보기 +

+
+
+ {mobileSummaryItems.map((item) => ( + + {item} + + ))}
-
+
diff --git a/src/features/map/naver-map-panel.tsx b/src/features/map/naver-map-panel.tsx index fd82929..4a99e34 100644 --- a/src/features/map/naver-map-panel.tsx +++ b/src/features/map/naver-map-panel.tsx @@ -13,50 +13,73 @@ import { type NaverMapInstance, type NaverMarkerInstance, } from "@/features/map/naver-map-sdk"; -import type { PlaceBounds, PlaceRecord } from "@/features/places/types"; +import type { + PlaceBounds, + PlaceMapClusterMarkerRecord, + PlaceMapMarkerRecord, + PlaceMapPlaceMarkerRecord, + PlacePreviewRecord, +} from "@/features/places/types"; type NaverMapPanelProps = { initialBounds?: PlaceBounds | null; - places: PlaceRecord[]; + isLoading?: boolean; + mapMarkers: PlaceMapMarkerRecord[]; + placeCount?: number; selectedCategoryLabel: string | null; activePlaceId?: string | null; focusPlacesKey?: string | null; - onSelectPlace?: (placeId: string) => void; + onSelectPlace?: (place: PlacePreviewRecord) => void; onViewportChange?: (viewport: MapViewport) => void; }; +type PlaceDisplayMarker = { + kind: "place"; + id: string; + latitude: number; + longitude: number; + isActive: boolean; + place: PlacePreviewRecord; +}; + +type ClusterDisplayMarker = PlaceMapClusterMarkerRecord; + +type MapDisplayMarker = PlaceDisplayMarker | ClusterDisplayMarker; + function getMapZoom(placeCount: number) { return placeCount > 1 ? 13 : 15; } -function getMapCenter(places: PlaceRecord[]) { - if (places.length === 0) { +function getCenterFromBounds(bounds: PlaceBounds) { + return { + lat: (bounds.minLat + bounds.maxLat) / 2, + lng: (bounds.minLng + bounds.maxLng) / 2, + }; +} + +function getMapCenter(items: Array<{ latitude: number; longitude: number }>) { + if (items.length === 0) { return DEFAULT_MAP_CENTER; } - const totals = places.reduce( - (accumulator, place) => ({ - lat: accumulator.lat + place.latitude, - lng: accumulator.lng + place.longitude, + const totals = items.reduce( + (accumulator, item) => ({ + lat: accumulator.lat + item.latitude, + lng: accumulator.lng + item.longitude, }), { lat: 0, lng: 0 }, ); return { - lat: totals.lat / places.length, - lng: totals.lng / places.length, - }; -} - -function getCenterFromBounds(bounds: PlaceBounds) { - return { - lat: (bounds.minLat + bounds.maxLat) / 2, - lng: (bounds.minLng + bounds.maxLng) / 2, + lat: totals.lat / items.length, + lng: totals.lng / items.length, }; } -function getPreviewBounds(places: PlaceRecord[]) { - if (places.length === 0) { +function getPreviewBounds( + items: Array<{ latitude: number; longitude: number }>, +) { + if (items.length === 0) { return { minLat: DEFAULT_MAP_CENTER.lat, maxLat: DEFAULT_MAP_CENTER.lat, @@ -65,8 +88,8 @@ function getPreviewBounds(places: PlaceRecord[]) { }; } - const latitudes = places.map((place) => place.latitude); - const longitudes = places.map((place) => place.longitude); + const latitudes = items.map((item) => item.latitude); + const longitudes = items.map((item) => item.longitude); return { minLat: Math.min(...latitudes), @@ -76,6 +99,31 @@ function getPreviewBounds(places: PlaceRecord[]) { }; } +function createPlaceDisplayMarker( + place: PlaceMapPlaceMarkerRecord, + isActive: boolean, +): PlaceDisplayMarker { + return { + kind: "place", + id: place.id, + latitude: place.latitude, + longitude: place.longitude, + isActive, + place, + }; +} + +function getDisplayMarkers( + mapMarkers: PlaceMapMarkerRecord[], + activePlaceId: string | null, +) { + return mapMarkers.map((marker) => + marker.kind === "cluster" + ? marker + : createPlaceDisplayMarker(marker, marker.id === activePlaceId), + ) satisfies MapDisplayMarker[]; +} + function serializeViewport(viewport: MapViewport) { return [ viewport.center.lat.toFixed(4), @@ -89,7 +137,7 @@ function serializeViewport(viewport: MapViewport) { } function isPlaceInsideViewport( - place: PlaceRecord, + place: Pick, viewport: MapViewport | null, padding = 0.0003, ) { @@ -145,20 +193,47 @@ function createMapMarkerIcon( }; } +function createClusterIconHtml(placeCount: number) { + return ` +
+ ${formatLikeCount(placeCount)} +
+ `; +} + +function createClusterMarkerIcon( + placeCount: number, + naver: ReturnType, +) { + const Point = naver?.maps.Point; + const Size = naver?.maps.Size; + + if (!Point || !Size) { + return undefined; + } + + return { + content: createClusterIconHtml(placeCount), + size: new Size(64, 44), + anchor: new Point(32, 22), + }; +} + function PreviewMap({ - places, + markers, selectedCategoryLabel, - activePlaceId, onSelectPlace, + onActivateCluster, }: { - places: PlaceRecord[]; + markers: MapDisplayMarker[]; selectedCategoryLabel: string | null; - activePlaceId: string | null; - onSelectPlace: (placeId: string) => void; + onSelectPlace: (place: PlacePreviewRecord) => void; + onActivateCluster?: (marker: ClusterDisplayMarker) => void; }) { - const bounds = getPreviewBounds(places); + const bounds = getPreviewBounds(markers); const latRange = Math.max(bounds.maxLat - bounds.minLat, 0.01); const lngRange = Math.max(bounds.maxLng - bounds.minLng, 0.01); + const hasClusterMarkers = markers.some((marker) => marker.kind === "cluster"); return (
- {places.map((place) => { - const top = ((bounds.maxLat - place.latitude) / latRange) * 70 + 10; - const left = ((place.longitude - bounds.minLng) / lngRange) * 72 + 8; - const isActive = activePlaceId === place.id; + {markers.map((marker) => { + const top = ((bounds.maxLat - marker.latitude) / latRange) * 70 + 10; + const left = ((marker.longitude - bounds.minLng) / lngRange) * 72 + 8; + + if (marker.kind === "cluster") { + return ( + + ); + } return ( ); @@ -202,22 +296,32 @@ function PreviewMap({ {selectedCategoryLabel ? `${selectedCategoryLabel} 카테고리만 표시 중` : "전체 카테고리 표시 중"} + {hasClusterMarkers ? " · 가까운 장소는 묶어 표시합니다" : ""}
); } function NaverMapFallback({ - places, + isLoading = false, + mapMarkers, + placeCount, selectedCategoryLabel, activePlaceId, onSelectPlace, }: { - places: PlaceRecord[]; + isLoading?: boolean; + mapMarkers: PlaceMapMarkerRecord[]; + placeCount?: number; selectedCategoryLabel: string | null; - activePlaceId: string | null; - onSelectPlace: (placeId: string) => void; + activePlaceId?: string | null; + onSelectPlace: (place: PlacePreviewRecord) => void; }) { + const displayMarkers = useMemo( + () => getDisplayMarkers(mapMarkers, activePlaceId ?? null), + [activePlaceId, mapMarkers], + ); + return (

주변 지도

- {places.length}곳 + {isLoading && mapMarkers.length === 0 + ? "불러오는 중" + : `${placeCount ?? mapMarkers.length}곳`}
@@ -271,7 +376,9 @@ class NaverMapPanelBoundary extends Component< if (this.state.hasError) { return ( {})} @@ -289,7 +396,9 @@ export function NaverMapPanel(props: NaverMapPanelProps) { function NaverMapPanelContent({ initialBounds, - places, + isLoading = false, + mapMarkers, + placeCount, selectedCategoryLabel, activePlaceId: controlledActivePlaceId, focusPlacesKey, @@ -310,7 +419,7 @@ function NaverMapPanelContent({ const [isLocating, setIsLocating] = useState(false); const [locationMessage, setLocationMessage] = useState(null); const [internalActivePlaceId, setInternalActivePlaceId] = useState( - places[0]?.id ?? null, + mapMarkers.find((marker) => marker.kind === "place")?.id ?? null, ); const naverMapKeyId = getNaverMapKeyId(); const activePlaceId = @@ -318,24 +427,32 @@ function NaverMapPanelContent({ ? internalActivePlaceId : controlledActivePlaceId; const activePlace = useMemo( - () => places.find((place) => place.id === activePlaceId) ?? null, - [activePlaceId, places], + () => + mapMarkers.find( + (marker): marker is PlaceMapPlaceMarkerRecord => + marker.kind === "place" && marker.id === activePlaceId, + ) ?? null, + [activePlaceId, mapMarkers], + ); + const displayMarkers = useMemo( + () => getDisplayMarkers(mapMarkers, activePlaceId ?? null), + [activePlaceId, mapMarkers], ); const showPreview = status !== "ready" || !hasVisibleMap; const selectPlace = useCallback( - (placeId: string) => { + (place: PlacePreviewRecord) => { if (controlledActivePlaceId === undefined) { - setInternalActivePlaceId(placeId); + setInternalActivePlaceId(place.id); } - onSelectPlace?.(placeId); + onSelectPlace?.(place); }, [controlledActivePlaceId, onSelectPlace], ); const emitPlaceSelect = useCallback( - (placeId: string) => { - selectPlace(placeId); + (place: PlacePreviewRecord) => { + selectPlace(place); }, [selectPlace], ); @@ -374,6 +491,51 @@ function NaverMapPanelContent({ lastViewportKeyRef.current = nextKey; onViewportChange?.(viewport); }, [onViewportChange]); + const focusCluster = useCallback( + (marker: ClusterDisplayMarker) => { + if (status !== "ready" || !mapInstanceRef.current) { + return; + } + + const maps = getLoadedNaverMapSdk()?.maps; + + if (!maps?.LatLng || !maps?.LatLngBounds) { + failMap("NAVER Maps LatLng API is unavailable."); + return; + } + + try { + const southWest = new maps.LatLng( + marker.bounds.minLat, + marker.bounds.minLng, + ); + const northEast = new maps.LatLng( + marker.bounds.maxLat, + marker.bounds.maxLng, + ); + const clusterBounds = new maps.LatLngBounds(southWest, northEast); + const nextCenter = new maps.LatLng(marker.latitude, marker.longitude); + const latSpan = Math.abs(marker.bounds.maxLat - marker.bounds.minLat); + const lngSpan = Math.abs(marker.bounds.maxLng - marker.bounds.minLng); + + if (latSpan < 0.0004 && lngSpan < 0.0004) { + const currentZoom = mapInstanceRef.current.getZoom?.() ?? 13; + mapInstanceRef.current.setCenter?.(nextCenter); + mapInstanceRef.current.setZoom?.(Math.min(currentZoom + 2, 17)); + mapInstanceRef.current.panTo?.(nextCenter); + } else { + mapInstanceRef.current.fitBounds?.(clusterBounds); + } + + window.setTimeout(() => { + emitViewportChange(); + }, 100); + } catch (error) { + failMap("Failed to focus the NAVER map cluster.", error); + } + }, + [emitViewportChange, failMap, status], + ); const locateCurrentPosition = () => { if (status !== "ready" || !mapInstanceRef.current) { @@ -522,9 +684,9 @@ function NaverMapPanelContent({ const center = initialBounds ? getCenterFromBounds(initialBounds) - : getMapCenter(places); + : getMapCenter(mapMarkers); const centerLatLng = new maps.LatLng(center.lat, center.lng); - const nextZoom = getMapZoom(places.length); + const nextZoom = getMapZoom(mapMarkers.length); const map = new maps.Map(mapContainerRef.current, { center: centerLatLng, zoom: nextZoom, @@ -535,7 +697,7 @@ function NaverMapPanelContent({ mapInstanceRef.current = map; - if (initialBounds && places.length > 1) { + if (initialBounds) { const southWest = new maps.LatLng( initialBounds.minLat, initialBounds.minLng, @@ -587,8 +749,8 @@ function NaverMapPanelContent({ emitViewportChange, failMap, initialBounds, + mapMarkers, naverMapKeyId, - places, ]); useEffect(() => { @@ -661,7 +823,7 @@ function NaverMapPanelContent({ window.clearTimeout(visibilityTimeoutId); mutationObserver.disconnect(); }; - }, [containerSize.height, containerSize.width, places, status]); + }, [containerSize.height, containerSize.width, mapMarkers, status]); useEffect(() => { if (status !== "ready" || !mapInstanceRef.current) { @@ -677,17 +839,32 @@ function NaverMapPanelContent({ try { markerInstancesRef.current.forEach((marker) => marker.setMap?.(null)); - markerInstancesRef.current = places.map((place) => { - const isActive = activePlaceId === place.id; + markerInstancesRef.current = displayMarkers.map((markerItem) => { + const title = + markerItem.kind === "cluster" + ? `${formatLikeCount(markerItem.placeCount)}곳` + : markerItem.place.name; const marker = new maps.Marker({ map: mapInstanceRef.current, - position: new maps.LatLng(place.latitude, place.longitude), - title: place.name, - icon: createMapMarkerIcon(place.likeCount, isActive, { maps }), + position: new maps.LatLng(markerItem.latitude, markerItem.longitude), + title, + icon: + markerItem.kind === "cluster" + ? createClusterMarkerIcon(markerItem.placeCount, { maps }) + : createMapMarkerIcon( + markerItem.place.likeCount, + markerItem.isActive, + { maps }, + ), }); maps.Event.addListener(marker, "click", () => { - emitPlaceSelect(place.id); + if (markerItem.kind === "cluster") { + focusCluster(markerItem); + return; + } + + emitPlaceSelect(markerItem.place); }); return marker; @@ -695,7 +872,7 @@ function NaverMapPanelContent({ } catch (error) { failMap("Failed to render NAVER map markers.", error); } - }, [activePlaceId, emitPlaceSelect, failMap, places, status]); + }, [displayMarkers, emitPlaceSelect, failMap, focusCluster, status]); useEffect(() => { if (status !== "ready" || !activePlace || !mapInstanceRef.current) { @@ -729,7 +906,7 @@ function NaverMapPanelContent({ status !== "ready" || !mapInstanceRef.current || !focusPlacesKey || - places.length === 0 + mapMarkers.length === 0 ) { return; } @@ -746,12 +923,12 @@ function NaverMapPanelContent({ } try { - const focusCenter = getMapCenter(places); + const focusCenter = getMapCenter(mapMarkers); const point = new LatLng(focusCenter.lat, focusCenter.lng); lastFocusPlacesKeyRef.current = focusPlacesKey; mapInstanceRef.current.setCenter?.(point); - mapInstanceRef.current.setZoom?.(getMapZoom(places.length)); + mapInstanceRef.current.setZoom?.(getMapZoom(mapMarkers.length)); mapInstanceRef.current.panTo?.(point); window.setTimeout(() => { emitViewportChange(); @@ -759,7 +936,7 @@ function NaverMapPanelContent({ } catch (error) { failMap("Failed to focus the NAVER map viewport.", error); } - }, [emitViewportChange, failMap, focusPlacesKey, places, status]); + }, [emitViewportChange, failMap, focusPlacesKey, mapMarkers, status]); useEffect(() => { if (status !== "ready" || !mapInstanceRef.current) { @@ -816,7 +993,9 @@ function NaverMapPanelContent({

주변 지도

- {places.length}곳 + {isLoading && mapMarkers.length === 0 + ? "불러오는 중" + : `${placeCount ?? mapMarkers.length}곳`}
@@ -830,10 +1009,10 @@ function NaverMapPanelContent({ {showPreview ? (
) : null} diff --git a/src/features/places/imported-goodprice.json b/src/features/places/imported-goodprice.json index 749bcf1..08613a3 100644 --- a/src/features/places/imported-goodprice.json +++ b/src/features/places/imported-goodprice.json @@ -1,42 +1,4 @@ [ - { - "id": "goodprice-11005", - "name": "㈜추억을 파는 극장 (허리우드클래식)", - "businessName": "㈜추억을 파는 극장 (허리우드클래식)", - "categorySlug": "other-service", - "address": "서울특별시 종로구 삼일대로 428 (낙원동, 4층)", - "district": "서울특별시 종로구", - "latitude": 37.5727635233966, - "longitude": 126.987902476529, - "representativePriceAmount": 2000, - "representativePriceLabel": "영화입장권(경로)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 영화입장권(경로) 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3672-4235", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "2368ab480eae129e277b", - "label": "영화입장권(경로)", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "2368ab480eae129e277b-history", - "label": "영화입장권(경로)", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, { "id": "goodprice-16045", "name": "국수전문점", @@ -89,6 +51,44 @@ ], "comments": [] }, + { + "id": "goodprice-11005", + "name": "㈜추억을 파는 극장 (허리우드클래식)", + "businessName": "㈜추억을 파는 극장 (허리우드클래식)", + "categorySlug": "other-service", + "address": "서울특별시 종로구 삼일대로 428 (낙원동, 4층)", + "district": "서울특별시 종로구", + "latitude": 37.5727635233966, + "longitude": 126.987902476529, + "representativePriceAmount": 2000, + "representativePriceLabel": "영화입장권(경로)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 영화입장권(경로) 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3672-4235", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "2368ab480eae129e277b", + "label": "영화입장권(경로)", + "amount": 2000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "2368ab480eae129e277b-history", + "label": "영화입장권(경로)", + "amount": 2000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, { "id": "goodprice-1643", "name": "고등어구이정식", @@ -142,51 +142,51 @@ "comments": [] }, { - "id": "goodprice-1640", - "name": "구포밀면", - "businessName": "구포밀면", - "categorySlug": "korean", - "address": "부산광역시 중구 대청로141 (중앙동)", - "district": "부산광역시 중구", - "latitude": 35.1030494036287, - "longitude": 129.035366385151, - "representativePriceAmount": 7000, - "representativePriceLabel": "손칼국수", + "id": "goodprice-2987", + "name": "뉴강남탕", + "businessName": "뉴강남탕", + "categorySlug": "bath", + "address": "울산광역시 중구 당산4길 15 (우정동)", + "district": "울산광역시 중구", + "latitude": 35.5540646829463, + "longitude": 129.310128409134, + "representativePriceAmount": 7500, + "representativePriceLabel": "대인", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-466-6112 / 영업시간: 10:00~20:00 매주 토요일만 3시 이후 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 대인 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-211-4873 / 영업시간: 정기휴무(매주 수요일) 05:30 ~ 17:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bafa59e1bbeddf3019f6", - "label": "손칼국수", - "amount": 7000, + "id": "81b5524f16c4f0bbd3a1", + "label": "대인", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "96f6745a5a5caf531f9f", - "label": "해물칼국수", - "amount": 8000, + "id": "d2d6fbe109f29cc0fe67", + "label": "소인", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bafa59e1bbeddf3019f6-history", - "label": "손칼국수", - "amount": 7000, + "id": "81b5524f16c4f0bbd3a1-history", + "label": "대인", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "96f6745a5a5caf531f9f-history", - "label": "해물칼국수", - "amount": 8000, + "id": "d2d6fbe109f29cc0fe67-history", + "label": "소인", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -194,51 +194,65 @@ "comments": [] }, { - "id": "goodprice-1644", - "name": "급행", - "businessName": "급행", - "categorySlug": "korean", - "address": "부산광역시 중구 중앙대로41번길 11-2 (중앙동1가)", - "district": "부산광역시 중구", - "latitude": 35.101031137809, - "longitude": 129.035081756288, - "representativePriceAmount": 7000, - "representativePriceLabel": "밀면", + "id": "goodprice-16639", + "name": "남도식당", + "businessName": "남도식당", + "categorySlug": "chinese", + "address": "서울특별시 종로구 종로 374-1 (숭인동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.5737068376897, + "longitude": 127.01922365532883, + "representativePriceAmount": 3500, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 밀면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-6970 / 영업시간: 10:00 - 18:00 일요일 휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 3,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2234-5544 / 영업시간: 매일 10:00 - 21:30 (명절 당일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3df807afbc739e1bdaab", - "label": "밀면", - "amount": 7000, + "id": "5fa694c0c7efd2c74cc6", + "label": "짜장면", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "270f6f96fcde00989e94", - "label": "짬뽕", - "amount": 7000, + "id": "ca9234c7e96562216df5", + "label": "우동", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "70fce31d335253c3f16c", + "label": "탕수육", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3df807afbc739e1bdaab-history", - "label": "밀면", - "amount": 7000, + "id": "5fa694c0c7efd2c74cc6-history", + "label": "짜장면", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "270f6f96fcde00989e94-history", - "label": "짬뽕", - "amount": 7000, + "id": "ca9234c7e96562216df5-history", + "label": "우동", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "70fce31d335253c3f16c-history", + "label": "탕수육", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -246,65 +260,37 @@ "comments": [] }, { - "id": "goodprice-1645", - "name": "기와집", - "businessName": "기와집", - "categorySlug": "korean", - "address": "부산광역시 중구 대청로 137번길 7-2 (중앙동3가)", - "district": "부산광역시 중구", - "latitude": 35.1035458476205, - "longitude": 129.034884173445, - "representativePriceAmount": 10000, - "representativePriceLabel": "자연산송이밥", + "id": "goodprice-11063", + "name": "믿음미용실", + "businessName": "믿음미용실", + "categorySlug": "beauty", + "address": "서울특별시 종로구 계동길 91 1층", + "district": "서울특별시 종로구", + "latitude": 37.5814377145875, + "longitude": 126.986679281786, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 자연산송이밥 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-961-8851 / 영업시간: 10:00 - 21:30, 휴무일 없음", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "334440224171292d652d", - "label": "자연산송이밥", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "cc9bc80207ae187134e4", - "label": "자연산송이전골", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "404af1b2f74fbda03ba0", - "label": "된장찌개", - "amount": 9000, + "id": "a49be5b0b7a61e894c60", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "334440224171292d652d-history", - "label": "자연산송이밥", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "cc9bc80207ae187134e4-history", - "label": "자연산송이전골", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "404af1b2f74fbda03ba0-history", - "label": "된장찌개", - "amount": 9000, + "id": "a49be5b0b7a61e894c60-history", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -312,51 +298,51 @@ "comments": [] }, { - "id": "goodprice-17985", - "name": "갑석이네", - "businessName": "갑석이네", + "id": "goodprice-1640", + "name": "구포밀면", + "businessName": "구포밀면", "categorySlug": "korean", - "address": "대구광역시 중구 큰장로26안길 66 (대신동) 대신동", - "district": "대구광역시 중구", - "latitude": 35.86637337234426, - "longitude": 128.57702787483387, - "representativePriceAmount": 7500, - "representativePriceLabel": "소갈비살(120g)", + "address": "부산광역시 중구 대청로141 (중앙동)", + "district": "부산광역시 중구", + "latitude": 35.1030494036287, + "longitude": 129.035366385151, + "representativePriceAmount": 7000, + "representativePriceLabel": "손칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소갈비살(120g) 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-252-3307 / 영업시간: 월~토 16:30~24:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-466-6112 / 영업시간: 10:00~20:00 매주 토요일만 3시 이후 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "06810c2ee0df4632e8fa", - "label": "소갈비살(120g)", - "amount": 7500, + "id": "bafa59e1bbeddf3019f6", + "label": "손칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5d8f97725559dc73d99b", - "label": "안창살(120g)", - "amount": 8500, + "id": "96f6745a5a5caf531f9f", + "label": "해물칼국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "06810c2ee0df4632e8fa-history", - "label": "소갈비살(120g)", - "amount": 7500, + "id": "bafa59e1bbeddf3019f6-history", + "label": "손칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5d8f97725559dc73d99b-history", - "label": "안창살(120g)", - "amount": 8500, + "id": "96f6745a5a5caf531f9f-history", + "label": "해물칼국수", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -364,51 +350,51 @@ "comments": [] }, { - "id": "goodprice-17983", - "name": "교동생선구이비빔밥", - "businessName": "교동생선구이비빔밥", - "categorySlug": "korean", - "address": "대구광역시 중구 교동길 48-1 (교동) 교동", - "district": "대구광역시 중구", - "latitude": 35.87327790566105, - "longitude": 128.5972021600524, + "id": "goodprice-16371", + "name": "(권선)컷트클럽", + "businessName": "(권선)컷트클럽", + "categorySlug": "beauty", + "address": "경기도 수원시 권선구 금곡로 46 (금곡동, 호매실역 서희 스타힐스) 나동 103호", + "district": "경기도 수원시", + "latitude": 37.27181301997054, + "longitude": 126.938271063389, "representativePriceAmount": 9000, - "representativePriceLabel": "교동생선구이정식", + "representativePriceLabel": "남성커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 교동생선구이정식 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-257-0778 / 영업시간: 월~토 11:00~19:30 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-297-2979 / 영업시간: 10:00~20:00 첫째,셋째주 화요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "591572cfa5aaf2105ba2", - "label": "교동생선구이정식", + "id": "9a977b0c6b18c9d56d14", + "label": "남성커트", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "db6e49bf5bd13d740bcc", - "label": "고등어가자미구이정식", - "amount": 9000, + "id": "349c4044f54ea0c836f4", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "591572cfa5aaf2105ba2-history", - "label": "교동생선구이정식", + "id": "9a977b0c6b18c9d56d14-history", + "label": "남성커트", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "db6e49bf5bd13d740bcc-history", - "label": "고등어가자미구이정식", - "amount": 9000, + "id": "349c4044f54ea0c836f4-history", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -416,93 +402,89 @@ "comments": [] }, { - "id": "goodprice-2011", - "name": "낙동강반점", - "businessName": "낙동강반점", - "categorySlug": "chinese", - "address": "대구광역시 중구 서성로14길 115 (향촌동)", - "district": "대구광역시 중구", - "latitude": 35.8732438953014, - "longitude": 128.593902587658, - "representativePriceAmount": 4000, - "representativePriceLabel": "짜장면", + "id": "goodprice-11579", + "name": "눈나무집", + "businessName": "눈나무집", + "categorySlug": "korean", + "address": "서울특별시 종로구 삼청로 136-1 1층", + "district": "서울특별시 종로구", + "latitude": 37.5874798577018, + "longitude": 126.981887109774, + "representativePriceAmount": 6500, + "representativePriceLabel": "김치말이국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-252-7866 / 영업시간: 11:00~19:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치말이국수 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-739-6742", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cf9b58242a1c8a658e3e", - "label": "짜장면", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "407b99b9e234ef5eca97", - "label": "짬뽕", - "amount": 6500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8f5a4945c8a36ac68842", - "label": "간짜장", + "id": "b8c116b0d27e0665b6d5", + "label": "김치말이국수", "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "50b57bcaa7e994f8540c", - "label": "우동", + "id": "9cb869347bd6a1506cf8", + "label": "김치볶음밥", "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "419c9fe860ee9996a241", - "label": "울면", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "cf9b58242a1c8a658e3e-history", - "label": "짜장면", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "407b99b9e234ef5eca97-history", - "label": "짬뽕", + "id": "b8c116b0d27e0665b6d5-history", + "label": "김치말이국수", "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8f5a4945c8a36ac68842-history", - "label": "간짜장", + "id": "9cb869347bd6a1506cf8-history", + "label": "김치볶음밥", "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-947", + "name": "영미용실", + "businessName": "영미용실", + "categorySlug": "beauty", + "address": "서울특별시 종로구 지봉로 62 (숭인동)", + "district": "서울특별시 종로구", + "latitude": 37.5755618391963, + "longitude": 127.015850681862, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-743-6052 / 영업시간: 10:00~19:00(동네장사로 유동적)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "50b57bcaa7e994f8540c-history", - "label": "우동", - "amount": 6500, + "id": "bce0c66c28633940fff5", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "419c9fe860ee9996a241-history", - "label": "울면", - "amount": 7000, + "id": "bce0c66c28633940fff5-history", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -510,65 +492,51 @@ "comments": [] }, { - "id": "goodprice-2230", - "name": "골목집", - "businessName": "골목집", + "id": "goodprice-1644", + "name": "급행", + "businessName": "급행", "categorySlug": "korean", - "address": "인천광역시 중구 신포로 32-22 (신포동)", - "district": "인천광역시 중구", - "latitude": 37.4714816686167, - "longitude": 126.625847852578, + "address": "부산광역시 중구 중앙대로41번길 11-2 (중앙동1가)", + "district": "부산광역시 중구", + "latitude": 35.101031137809, + "longitude": 129.035081756288, "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "representativePriceLabel": "밀면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-3149 / 영업시간: 09:00~20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 밀면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-6970 / 영업시간: 10:00 - 18:00 일요일 휴일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1109a18fce1baf9fa3ea", - "label": "칼국수", + "id": "3df807afbc739e1bdaab", + "label": "밀면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "99c1841a0aca4d86a084", - "label": "수제비", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "586bb4fd1cf7e792100d", - "label": "쫄면", - "amount": 7500, + "id": "270f6f96fcde00989e94", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1109a18fce1baf9fa3ea-history", - "label": "칼국수", + "id": "3df807afbc739e1bdaab-history", + "label": "밀면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "99c1841a0aca4d86a084-history", - "label": "수제비", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "586bb4fd1cf7e792100d-history", - "label": "쫄면", - "amount": 7500, + "id": "270f6f96fcde00989e94-history", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -576,37 +544,37 @@ "comments": [] }, { - "id": "goodprice-13183", - "name": "계림동나주곰탕", - "businessName": "계림동나주곰탕", - "categorySlug": "korean", - "address": "광주광역시 동구 구성로 262-9 (계림동) 1층", - "district": "광주광역시 동구", - "latitude": 35.15717956808311, - "longitude": 126.91948612900808, - "representativePriceAmount": 10000, - "representativePriceLabel": "곰탕", + "id": "goodprice-3406", + "name": "(장안)컷트클럽", + "businessName": "(장안)컷트클럽", + "categorySlug": "beauty", + "address": "경기도 수원시 장안구 조원로 100 .", + "district": "경기도 수원시", + "latitude": 37.301600598246, + "longitude": 127.015159002188, + "representativePriceAmount": 8000, + "representativePriceLabel": "남성커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 곰탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-225-0970", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-246-6306 / 영업시간: 10:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "45b441a27c25f96066af", - "label": "곰탕", - "amount": 10000, + "id": "500ebdcebe9a75361eb5", + "label": "남성커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "45b441a27c25f96066af-history", - "label": "곰탕", - "amount": 10000, + "id": "500ebdcebe9a75361eb5-history", + "label": "남성커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -614,327 +582,291 @@ "comments": [] }, { - "id": "goodprice-10150", - "name": "24시서울식당", - "businessName": "24시서울식당", - "categorySlug": "korean", - "address": "대전광역시 동구 동서대로 1695번길 53 (용전동)", - "district": "대전광역시 동구", - "latitude": 36.3518040236434, - "longitude": 127.436526849885, + "id": "goodprice-946", + "name": "돈까스보라", + "businessName": "돈까스보라", + "categorySlug": "western", + "address": "서울특별시 종로구 대학로5길 5 (연건동)", + "district": "서울특별시 종로구", + "latitude": 37.5781982996716, + "longitude": 127.001695852612, "representativePriceAmount": 7000, - "representativePriceLabel": "김치찌개 백반", + "representativePriceLabel": "수제 돈까스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 백반 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-626-1969 / 영업시간: 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 수제 돈까스 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-741-3455 / 영업시간: 10:00~19:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "df97b62fd4855f03d45f", - "label": "김치찌개 백반", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ca4a6e18cd21fb4c1c17", - "label": "우렁된장 백반", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "10f6d85f58205baa42e3", - "label": "설렁탕", + "id": "161f06011a9c632033da", + "label": "수제 돈까스", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "97ca271ec531cda817e3", - "label": "갈비탕", + "id": "52385f46e7f987997c56", + "label": "돈까스정식", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "241cebfb5d95f2402f79", - "label": "콩나물해장국", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "42d99941401c900adfeb", - "label": "순두부 백반", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8123b0ac7d0d29408f6d", - "label": "청국장 백반", - "amount": 6000, + "id": "f82184cd6efa27098bbc", + "label": "생선까스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8fa540578e4d3e670dcb", - "label": "전주비빔밥", - "amount": 6000, + "id": "89edba03d99da739e832", + "label": "생선까스정식", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f8c644b5f169ea1dcfc7", - "label": "돌솥비빔밥", - "amount": 7000, + "id": "b7dcb1baa972a47a5e3f", + "label": "치즈돈까스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fd927ba1e7a25f824f7a", - "label": "육개장", - "amount": 8000, + "id": "247ec5a88e49e063cd3c", + "label": "치즈돈까스정식", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fa2196d03c5bbcfa45ec", - "label": "물냉면", + "id": "7f5036f7fb2ab997bf9d", + "label": "치킨까스정식", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "68f721783aeac01b0f0b", - "label": "비빔냉면", + "id": "d48fbcb4818de62f6bd0", + "label": "치킨돈까스", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "6c771d7082b6fd5dadf1", - "label": "만둣국", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "df97b62fd4855f03d45f-history", - "label": "김치찌개 백반", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ca4a6e18cd21fb4c1c17-history", - "label": "우렁된장 백반", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "10f6d85f58205baa42e3-history", - "label": "설렁탕", + "id": "161f06011a9c632033da-history", + "label": "수제 돈까스", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "97ca271ec531cda817e3-history", - "label": "갈비탕", + "id": "52385f46e7f987997c56-history", + "label": "돈까스정식", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "241cebfb5d95f2402f79-history", - "label": "콩나물해장국", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "42d99941401c900adfeb-history", - "label": "순두부 백반", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8123b0ac7d0d29408f6d-history", - "label": "청국장 백반", - "amount": 6000, + "id": "f82184cd6efa27098bbc-history", + "label": "생선까스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8fa540578e4d3e670dcb-history", - "label": "전주비빔밥", - "amount": 6000, + "id": "89edba03d99da739e832-history", + "label": "생선까스정식", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f8c644b5f169ea1dcfc7-history", - "label": "돌솥비빔밥", - "amount": 7000, + "id": "b7dcb1baa972a47a5e3f-history", + "label": "치즈돈까스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fd927ba1e7a25f824f7a-history", - "label": "육개장", - "amount": 8000, + "id": "247ec5a88e49e063cd3c-history", + "label": "치즈돈까스정식", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fa2196d03c5bbcfa45ec-history", - "label": "물냉면", + "id": "7f5036f7fb2ab997bf9d-history", + "label": "치킨까스정식", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "68f721783aeac01b0f0b-history", - "label": "비빔냉면", + "id": "d48fbcb4818de62f6bd0-history", + "label": "치킨돈까스", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "6c771d7082b6fd5dadf1-history", - "label": "만둣국", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-10151", - "name": "2900냥식당", - "businessName": "2900냥식당", - "categorySlug": "korean", - "address": "대전광역시 동구 대전로 815번길 5 (정동)", - "district": "대전광역시 동구", - "latitude": 36.3322630706726, - "longitude": 127.431757660701, - "representativePriceAmount": 6000, - "representativePriceLabel": "선지해장국", + "id": "goodprice-948", + "name": "은미용실", + "businessName": "은미용실", + "categorySlug": "beauty", + "address": "서울특별시 종로구 사직로 108-6 (내자동)", + "district": "서울특별시 종로구", + "latitude": 37.5757821511679, + "longitude": 126.970611077009, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "SBS생방송 투데이 명품맛집 출연", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-256-8686 / 영업시간: 07:00~22:00 / 매주 월요일 정기 휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-738-1882 / 영업시간: 09:00~14:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a7991d596eb91c0d3bdc", - "label": "선지해장국", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c4c978111dab726e679f", - "label": "콩나물해장국", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d3206eb0e0ca51a4bd7b", - "label": "비빔국수", - "amount": 7000, + "id": "450c14e54f2a3bb2dc7d", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "bf6ade39616a62674085", - "label": "콩나물비빔밥", + "id": "450c14e54f2a3bb2dc7d-history", + "label": "커트", "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-1645", + "name": "기와집", + "businessName": "기와집", + "categorySlug": "korean", + "address": "부산광역시 중구 대청로 137번길 7-2 (중앙동3가)", + "district": "부산광역시 중구", + "latitude": 35.1035458476205, + "longitude": 129.034884173445, + "representativePriceAmount": 10000, + "representativePriceLabel": "자연산송이밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 자연산송이밥 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-961-8851 / 영업시간: 10:00 - 21:30, 휴무일 없음", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "403f4cceedc11c3b5352", - "label": "콩국수(여름)", - "amount": 7000, + "id": "334440224171292d652d", + "label": "자연산송이밥", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f436d23c9f252cc3a788", - "label": "냉국수(여름)", - "amount": 5000, + "id": "cc9bc80207ae187134e4", + "label": "자연산송이전골", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fdfb1167b37b65c2109c", - "label": "잔치국수", - "amount": 5000, + "id": "404af1b2f74fbda03ba0", + "label": "된장찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a7991d596eb91c0d3bdc-history", - "label": "선지해장국", - "amount": 6000, + "id": "334440224171292d652d-history", + "label": "자연산송이밥", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c4c978111dab726e679f-history", - "label": "콩나물해장국", - "amount": 6000, + "id": "cc9bc80207ae187134e4-history", + "label": "자연산송이전골", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d3206eb0e0ca51a4bd7b-history", - "label": "비빔국수", - "amount": 7000, + "id": "404af1b2f74fbda03ba0-history", + "label": "된장찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-4336", + "name": "가고파미용실", + "businessName": "가고파미용실", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 안마산로 216 (퇴계동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8495302656251, + "longitude": 127.737647046448, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-9488 / 영업시간: 첫째, 셋째 화요일 휴무 여름 08;30-19:30 겨울 09:00-19:30", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "bf6ade39616a62674085-history", - "label": "콩나물비빔밥", + "id": "e2ac7533fec6c035ecaa", + "label": "커트", "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "403f4cceedc11c3b5352-history", - "label": "콩국수(여름)", - "amount": 7000, + "id": "4a1c547a4de6094510b4", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "f436d23c9f252cc3a788-history", - "label": "냉국수(여름)", + "id": "e2ac7533fec6c035ecaa-history", + "label": "커트", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fdfb1167b37b65c2109c-history", - "label": "잔치국수", - "amount": 5000, + "id": "4a1c547a4de6094510b4-history", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -942,79 +874,103 @@ "comments": [] }, { - "id": "goodprice-2561", - "name": "강청골순대국밥", - "businessName": "강청골순대국밥", + "id": "goodprice-16864", + "name": "동대문 한국통닭", + "businessName": "동대문 한국통닭", "categorySlug": "korean", - "address": "대전광역시 동구 동대전로 229 (가양동)", - "district": "대전광역시 동구", - "latitude": 36.3419614517988, - "longitude": 127.447983980001, - "representativePriceAmount": 8000, - "representativePriceLabel": "순대국밥", + "address": "서울특별시 종로구 종로 304 (창신동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.571667373066134, + "longitude": 127.01153873736409, + "representativePriceAmount": 4500, + "representativePriceLabel": "통닭 1마리", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-635-8181 / 영업시간: 09:30 ~ 22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 통닭 1마리 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-747-2443 / 영업시간: 24시간 연중무휴", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "81177c1ed8033f658e8f", - "label": "순대국밥", - "amount": 8000, + "id": "60e767ae63295d2180ce", + "label": "통닭 1마리", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "149ff55a0f3908c520c5", - "label": "감투국밥", - "amount": 9500, + "id": "f78665c740c41d61b60e", + "label": "통닭 2마리", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "67676e6f2da3f3f8be70", - "label": "고기감자만두", - "amount": 6000, + "id": "60e767ae63295d2180ce-history", + "label": "통닭 1마리", + "amount": 4500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "0f44f308fe881207211f", - "label": "수육국밥", - "amount": 8500, + "id": "f78665c740c41d61b60e-history", + "label": "통닭 2마리", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" } ], - "history": [ + "comments": [] + }, + { + "id": "goodprice-11182", + "name": "이레이발관", + "businessName": "이레이발관", + "categorySlug": "barber", + "address": "서울특별시 종로구 수표로 115 (낙원동)", + "district": "서울특별시 종로구", + "latitude": 37.5715425171338, + "longitude": 126.989053894726, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-7192-6413", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "81177c1ed8033f658e8f-history", - "label": "순대국밥", - "amount": 8000, + "id": "bf2fc652e47245678158", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "149ff55a0f3908c520c5-history", - "label": "감투국밥", - "amount": 9500, + "id": "4b68b122e7ae32510251", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "67676e6f2da3f3f8be70-history", - "label": "고기감자만두", - "amount": 6000, + "id": "bf2fc652e47245678158-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0f44f308fe881207211f-history", - "label": "수육국밥", - "amount": 8500, + "id": "4b68b122e7ae32510251-history", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1022,135 +978,51 @@ "comments": [] }, { - "id": "goodprice-14317", - "name": "개천식당", - "businessName": "개천식당", + "id": "goodprice-17985", + "name": "갑석이네", + "businessName": "갑석이네", "categorySlug": "korean", - "address": "대전광역시 동구 대전로779번길 41 (원동) 중앙시장 내 위치", - "district": "대전광역시 동구", - "latitude": 36.32850763956439, - "longitude": 127.43158384633288, - "representativePriceAmount": 9000, - "representativePriceLabel": "만둣국", + "address": "대구광역시 중구 큰장로26안길 66 (대신동) 대신동", + "district": "대구광역시 중구", + "latitude": 35.86637337234426, + "longitude": 128.57702787483387, + "representativePriceAmount": 7500, + "representativePriceLabel": "소갈비살(120g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 만둣국 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-256-1003 / 영업시간: 11:00~20:00 / 둘째, 넷째주 월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소갈비살(120g) 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-252-3307 / 영업시간: 월~토 16:30~24:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b5e7a7cc751575e66fff", - "label": "만둣국", - "amount": 9000, + "id": "06810c2ee0df4632e8fa", + "label": "소갈비살(120g)", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0d6a10ca0a7d28a2ae90", - "label": "떡만둣국", - "amount": 9000, + "id": "5d8f97725559dc73d99b", + "label": "안창살(120g)", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "8269f3357eea70e01e03", - "label": "떡국", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3f0f3b58c72596edd55b", - "label": "물냉면", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f1ce28094c460677f79d", - "label": "소머리국밥", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "89cab6923a1e2b09472d", - "label": "부추만두튀김", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d572293f547483a02696", - "label": "개천김치만두", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1d44046fe77b92d0c815", - "label": "부추고기만두", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "b5e7a7cc751575e66fff-history", - "label": "만둣국", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0d6a10ca0a7d28a2ae90-history", - "label": "떡만둣국", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8269f3357eea70e01e03-history", - "label": "떡국", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3f0f3b58c72596edd55b-history", - "label": "물냉면", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f1ce28094c460677f79d-history", - "label": "소머리국밥", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "89cab6923a1e2b09472d-history", - "label": "부추만두튀김", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d572293f547483a02696-history", - "label": "개천김치만두", - "amount": 8000, + "id": "06810c2ee0df4632e8fa-history", + "label": "소갈비살(120g)", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1d44046fe77b92d0c815-history", - "label": "부추고기만두", - "amount": 8000, + "id": "5d8f97725559dc73d99b-history", + "label": "안창살(120g)", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1158,51 +1030,37 @@ "comments": [] }, { - "id": "goodprice-2986", - "name": "노르쇠핑", - "businessName": "노르쇠핑", - "categorySlug": "bakery", - "address": "울산광역시 중구 태화로 136 (태화동)", - "district": "울산광역시 중구", - "latitude": 35.5531564921762, - "longitude": 129.290936456527, - "representativePriceAmount": 1500, - "representativePriceLabel": "단팥빵", + "id": "goodprice-4909", + "name": "9000냥프로헤어", + "businessName": "9000냥프로헤어", + "categorySlug": "beauty", + "address": "충청남도 천안시 동남구 충무로 412-27 2층(영성동)", + "district": "충청남도 천안시", + "latitude": 36.7971238482422, + "longitude": 127.151205811449, + "representativePriceAmount": 9000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵 1,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-267-5873 / 영업시간: 설 연휴 3일 외 연중무휴 09:00~22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 09:30~19:00 정기휴무(매주 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "176cf145a2a97f7ef7a9", - "label": "단팥빵", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d2f140054a89f3268c73", - "label": "슈크림빵", - "amount": 1500, + "id": "c610564b7ba9ddf10570", + "label": "커트", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "176cf145a2a97f7ef7a9-history", - "label": "단팥빵", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d2f140054a89f3268c73-history", - "label": "슈크림빵", - "amount": 1500, + "id": "c610564b7ba9ddf10570-history", + "label": "커트", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1210,51 +1068,51 @@ "comments": [] }, { - "id": "goodprice-2987", - "name": "뉴강남탕", - "businessName": "뉴강남탕", - "categorySlug": "bath", - "address": "울산광역시 중구 당산4길 15 (우정동)", - "district": "울산광역시 중구", - "latitude": 35.5540646829463, - "longitude": 129.310128409134, - "representativePriceAmount": 7500, - "representativePriceLabel": "대인", + "id": "goodprice-18196", + "name": "동문식당", + "businessName": "동문식당", + "categorySlug": "korean", + "address": "서울특별시 종로구 종로 300-1 (창신동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.57159249625645, + "longitude": 127.01124193717713, + "representativePriceAmount": 5000, + "representativePriceLabel": "콩나물비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 대인 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-211-4873 / 영업시간: 정기휴무(매주 수요일) 05:30 ~ 17:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물비빔밥 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "81b5524f16c4f0bbd3a1", - "label": "대인", - "amount": 7500, + "id": "f638b225b0cd7383e1bb", + "label": "콩나물비빔밥", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d2d6fbe109f29cc0fe67", - "label": "소인", - "amount": 4500, + "id": "4325c924996e2b4442a2", + "label": "소고기콩나물밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "81b5524f16c4f0bbd3a1-history", - "label": "대인", - "amount": 7500, + "id": "f638b225b0cd7383e1bb-history", + "label": "콩나물비빔밥", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d2d6fbe109f29cc0fe67-history", - "label": "소인", - "amount": 4500, + "id": "4325c924996e2b4442a2-history", + "label": "소고기콩나물밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1262,51 +1120,37 @@ "comments": [] }, { - "id": "goodprice-10200", - "name": "6000냥돌솥추어탕", - "businessName": "6000냥돌솥추어탕", - "categorySlug": "korean", - "address": "세종특별자치시 조치원읍 새내10길 61", - "district": "세종특별자치시 조치원읍", - "latitude": 36.6008005980251, - "longitude": 127.301683744225, - "representativePriceAmount": 7000, - "representativePriceLabel": "돌솥추어탕", + "id": "goodprice-950", + "name": "이소빈 머리나라", + "businessName": "이소빈 머리나라", + "categorySlug": "beauty", + "address": "서울특별시 종로구 명륜길 9 (명륜3가)", + "district": "서울특별시 종로구", + "latitude": 37.5879678107949, + "longitude": 126.996150319087, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥추어탕 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-2133", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-766-0545 / 영업시간: 17:00에17시0분에 금 09:00-17:00 토 09:00-17:00 일 정기휴무(매주일요일) 월 09:00-17:00 화 09:00-17:00 수 09:00-17:00 목 09:00-17:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8caee87a41b8d7569d17", - "label": "돌솥추어탕", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "df13da9bfacdc2a6196d", - "label": "돈가스", - "amount": 7000, + "id": "fe56a992178eae02d730", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8caee87a41b8d7569d17-history", - "label": "돌솥추어탕", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "df13da9bfacdc2a6196d-history", - "label": "돈가스", - "amount": 7000, + "id": "fe56a992178eae02d730-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1314,51 +1158,51 @@ "comments": [] }, { - "id": "goodprice-19179", - "name": "광진손짜장", - "businessName": "광진손짜장", - "categorySlug": "chinese", - "address": "세종특별자치시 조치원읍 새내10길 27 1층", - "district": "세종특별자치시 조치원읍", - "latitude": 36.60059049054393, - "longitude": 127.29972619189017, - "representativePriceAmount": 3000, - "representativePriceLabel": "짜장면", + "id": "goodprice-17983", + "name": "교동생선구이비빔밥", + "businessName": "교동생선구이비빔밥", + "categorySlug": "korean", + "address": "대구광역시 중구 교동길 48-1 (교동) 교동", + "district": "대구광역시 중구", + "latitude": 35.87327790566105, + "longitude": 128.5972021600524, + "representativePriceAmount": 9000, + "representativePriceLabel": "교동생선구이정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-865-3657", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 교동생선구이정식 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-257-0778 / 영업시간: 월~토 11:00~19:30 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7eb87fba685d5dc64049", - "label": "짜장면", - "amount": 3000, + "id": "591572cfa5aaf2105ba2", + "label": "교동생선구이정식", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "207dd0c797e556814196", - "label": "짬뽕", - "amount": 5000, + "id": "db6e49bf5bd13d740bcc", + "label": "고등어가자미구이정식", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7eb87fba685d5dc64049-history", - "label": "짜장면", - "amount": 3000, + "id": "591572cfa5aaf2105ba2-history", + "label": "교동생선구이정식", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "207dd0c797e556814196-history", - "label": "짬뽕", - "amount": 5000, + "id": "db6e49bf5bd13d740bcc-history", + "label": "고등어가자미구이정식", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1366,37 +1210,37 @@ "comments": [] }, { - "id": "goodprice-10192", - "name": "꼬막짬뽕", - "businessName": "꼬막짬뽕", - "categorySlug": "chinese", - "address": "세종특별자치시 도움3로 105-6 2층", - "district": "세종특별자치시 도움3로", - "latitude": 36.5045900450719, - "longitude": 127.249051704513, - "representativePriceAmount": 5500, - "representativePriceLabel": "유니자장", + "id": "goodprice-7012", + "name": "JJ노블휘트니스클럽", + "businessName": "JJ노블휘트니스클럽", + "categorySlug": "other-service", + "address": "제주특별자치도 제주시 성신로 1길 34 3층(연동, 신동부삼무3차아파트)", + "district": "제주특별자치도 제주시", + "latitude": 33.4922271525915, + "longitude": 126.48897408179, + "representativePriceAmount": 10000, + "representativePriceLabel": "1일", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 유니자장 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-865-0655", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 1일 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-743-1515 / 영업시간: 금 06:00-23:00 토 09:00-17:00 일 정기휴무(매주일요일) 월(12/25) 성탄절휴무 화 06:00-23:00 수 06:00-23:00 목 06:00-23:00 01/01새해첫날휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1d8570cb6f7cf7ae659f", - "label": "유니자장", - "amount": 5500, + "id": "37459ec7ac4cc2983b05", + "label": "1일", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1d8570cb6f7cf7ae659f-history", - "label": "유니자장", - "amount": 5500, + "id": "37459ec7ac4cc2983b05-history", + "label": "1일", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1404,51 +1248,65 @@ "comments": [] }, { - "id": "goodprice-16371", - "name": "(권선)컷트클럽", - "businessName": "(권선)컷트클럽", - "categorySlug": "beauty", - "address": "경기도 수원시 권선구 금곡로 46 (금곡동, 호매실역 서희 스타힐스) 나동 103호", - "district": "경기도 수원시", - "latitude": 37.27181301997054, - "longitude": 126.938271063389, - "representativePriceAmount": 9000, - "representativePriceLabel": "남성커트", + "id": "goodprice-19249", + "name": "둘리분식", + "businessName": "둘리분식", + "categorySlug": "korean", + "address": "서울특별시 종로구 창경궁로34길 15 (혜화동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.584324897003846, + "longitude": 127.0011787060946, + "representativePriceAmount": 4000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-297-2979 / 영업시간: 10:00~20:00 첫째,셋째주 화요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-744-8626", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9a977b0c6b18c9d56d14", - "label": "남성커트", - "amount": 9000, + "id": "f2a45b6501b4f06b43a4", + "label": "된장찌개", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "349c4044f54ea0c836f4", - "label": "여성커트", - "amount": 10000, + "id": "2a1c7a9c1192f4dae37c", + "label": "제육덮밥", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "7662b80088e954e58acd", + "label": "비빔밥", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9a977b0c6b18c9d56d14-history", - "label": "남성커트", - "amount": 9000, + "id": "f2a45b6501b4f06b43a4-history", + "label": "된장찌개", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "349c4044f54ea0c836f4-history", - "label": "여성커트", - "amount": 10000, + "id": "2a1c7a9c1192f4dae37c-history", + "label": "제육덮밥", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7662b80088e954e58acd-history", + "label": "비빔밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1456,37 +1314,51 @@ "comments": [] }, { - "id": "goodprice-3406", - "name": "(장안)컷트클럽", - "businessName": "(장안)컷트클럽", - "categorySlug": "beauty", - "address": "경기도 수원시 장안구 조원로 100 .", - "district": "경기도 수원시", - "latitude": 37.301600598246, - "longitude": 127.015159002188, - "representativePriceAmount": 8000, - "representativePriceLabel": "남성커트", + "id": "goodprice-952", + "name": "종묘이용원", + "businessName": "종묘이용원", + "categorySlug": "barber", + "address": "서울특별시 종로구 종로 146 (종로3가) (종로4가)", + "district": "서울특별시 종로구", + "latitude": 37.57022814518435, + "longitude": 126.99369870159373, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-246-6306 / 영업시간: 10:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "500ebdcebe9a75361eb5", - "label": "남성커트", - "amount": 8000, + "id": "1b85f27b1437d203ac50", + "label": "커트", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "05e7d5a67b77f4a893bd", + "label": "염색", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "500ebdcebe9a75361eb5-history", - "label": "남성커트", - "amount": 8000, + "id": "1b85f27b1437d203ac50-history", + "label": "커트", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "05e7d5a67b77f4a893bd-history", + "label": "염색", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1494,48 +1366,55 @@ "comments": [] }, { - "id": "goodprice-14932", - "name": "24시 전주국밥(콩마루)", - "businessName": "24시 전주국밥(콩마루)", - "categorySlug": "korean", - "address": "경기도 수원시 영통구 청명남로 46 (영통동) 1층", - "district": "경기도 수원시", - "latitude": 37.25344290305785, - "longitude": 127.0765394153501, - "representativePriceAmount": 6000, - "representativePriceLabel": "콩나물국밥", + "id": "goodprice-2011", + "name": "낙동강반점", + "businessName": "낙동강반점", + "categorySlug": "chinese", + "address": "대구광역시 중구 서성로14길 115 (향촌동)", + "district": "대구광역시 중구", + "latitude": 35.8732438953014, + "longitude": 128.593902587658, + "representativePriceAmount": 4000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-202-3324 / 영업시간: 06:30~22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-252-7866 / 영업시간: 11:00~19:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5d12ac001cdb365a29d6", - "label": "콩나물국밥", - "amount": 6000, + "id": "cf9b58242a1c8a658e3e", + "label": "짜장면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1f1a95d628d95c907349", - "label": "콩나물비빔밥", - "amount": 7500, + "id": "407b99b9e234ef5eca97", + "label": "짬뽕", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f1d408248dc704abc628", - "label": "돌솥밥", - "amount": 8000, + "id": "8f5a4945c8a36ac68842", + "label": "간짜장", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "53302cdfb9883c71c963", - "label": "김치콩나물국밥", + "id": "50b57bcaa7e994f8540c", + "label": "우동", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "419c9fe860ee9996a241", + "label": "울면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -1543,29 +1422,36 @@ ], "history": [ { - "id": "5d12ac001cdb365a29d6-history", - "label": "콩나물국밥", - "amount": 6000, + "id": "cf9b58242a1c8a658e3e-history", + "label": "짜장면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1f1a95d628d95c907349-history", - "label": "콩나물비빔밥", - "amount": 7500, + "id": "407b99b9e234ef5eca97-history", + "label": "짬뽕", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f1d408248dc704abc628-history", - "label": "돌솥밥", - "amount": 8000, + "id": "8f5a4945c8a36ac68842-history", + "label": "간짜장", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "53302cdfb9883c71c963-history", - "label": "김치콩나물국밥", + "id": "50b57bcaa7e994f8540c-history", + "label": "우동", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "419c9fe860ee9996a241-history", + "label": "울면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -1574,37 +1460,37 @@ "comments": [] }, { - "id": "goodprice-16372", - "name": "Bestie(카페베스티)", - "businessName": "Bestie(카페베스티)", - "categorySlug": "other-food", - "address": "경기도 수원시 권선구 권광로 87 (권선동) 2층", - "district": "경기도 수원시", - "latitude": 37.255736139357296, - "longitude": 127.02931494445001, - "representativePriceAmount": 2500, - "representativePriceLabel": "아메리카노", + "id": "goodprice-2527", + "name": "곽은아미용실", + "businessName": "곽은아미용실", + "categorySlug": "beauty", + "address": "대전광역시 동구 새울로 100 (용운동)", + "district": "대전광역시 동구", + "latitude": 36.3271167002537, + "longitude": 127.461826711325, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트(여성 일반)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-221-2034 / 영업시간: 10:00~19:00 매주일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(여성 일반) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-272-4478 / 영업시간: 09:00 ~ 19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "95bb42015d456e08b7ed", - "label": "아메리카노", - "amount": 2500, + "id": "c7f90b0f60740869361a", + "label": "커트(여성 일반)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "95bb42015d456e08b7ed-history", - "label": "아메리카노", - "amount": 2500, + "id": "c7f90b0f60740869361a-history", + "label": "커트(여성 일반)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1612,51 +1498,65 @@ "comments": [] }, { - "id": "goodprice-4336", - "name": "가고파미용실", - "businessName": "가고파미용실", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 안마산로 216 (퇴계동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8495302656251, - "longitude": 127.737647046448, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트", + "id": "goodprice-19250", + "name": "맛밥김밥전문점", + "businessName": "맛밥김밥전문점", + "categorySlug": "korean", + "address": "서울특별시 종로구 창경궁로 269 (혜화동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.585295075666664, + "longitude": 127.00073357977945, + "representativePriceAmount": 7500, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-9488 / 영업시간: 첫째, 셋째 화요일 휴무 여름 08;30-19:30 겨울 09:00-19:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-747-5425", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e2ac7533fec6c035ecaa", - "label": "커트", - "amount": 5000, + "id": "dc7ff9fedce2653ece09", + "label": "돈가스", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4a1c547a4de6094510b4", - "label": "염색", - "amount": 10000, + "id": "0b5d5dab9355115dac84", + "label": "떡만둣국", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1b0a0b72c6b4f59e5755", + "label": "라볶이", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e2ac7533fec6c035ecaa-history", - "label": "커트", - "amount": 5000, + "id": "dc7ff9fedce2653ece09-history", + "label": "돈가스", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4a1c547a4de6094510b4-history", - "label": "염색", - "amount": 10000, + "id": "0b5d5dab9355115dac84-history", + "label": "떡만둣국", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1b0a0b72c6b4f59e5755-history", + "label": "라볶이", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1664,37 +1564,51 @@ "comments": [] }, { - "id": "goodprice-15775", - "name": "2교시간식시간", - "businessName": "2교시간식시간", - "categorySlug": "korean", - "address": "충청북도 청주시 서원구 서원남로 62 (모충동) 1층", - "district": "충청북도 청주시", - "latitude": 36.622448560220946, - "longitude": 127.48123556595677, - "representativePriceAmount": 9000, - "representativePriceLabel": "돈가스", + "id": "goodprice-953", + "name": "파고다이용원", + "businessName": "파고다이용원", + "categorySlug": "barber", + "address": "서울특별시 종로구 종로17길 12 (종로2가)", + "district": "서울특별시 종로구", + "latitude": 37.5709410977686, + "longitude": 126.988999535085, + "representativePriceAmount": 6000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-288-7473", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "03afe48b29e4cbc95127", - "label": "돈가스", - "amount": 9000, + "id": "d430dcd5cab5c8e23a58", + "label": "커트", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9ff38b3fb86e70204d14", + "label": "염색", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "03afe48b29e4cbc95127-history", - "label": "돈가스", - "amount": 9000, + "id": "d430dcd5cab5c8e23a58-history", + "label": "커트", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9ff38b3fb86e70204d14-history", + "label": "염색", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1702,65 +1616,65 @@ "comments": [] }, { - "id": "goodprice-4736", - "name": "357짜장 짬뽕", - "businessName": "357짜장 짬뽕", - "categorySlug": "chinese", - "address": "충청북도 청주시 청원구 내덕로 19 1층(내덕동)", - "district": "충청북도 청주시", - "latitude": 36.6565710804677, - "longitude": 127.482796815455, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "id": "goodprice-2230", + "name": "골목집", + "businessName": "골목집", + "categorySlug": "korean", + "address": "인천광역시 중구 신포로 32-22 (신포동)", + "district": "인천광역시 중구", + "latitude": 37.4714816686167, + "longitude": 126.625847852578, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-225-3357 / 영업시간: 매일 17:00-05:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-3149 / 영업시간: 09:00~20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fbb8fd31377f5efb6683", - "label": "짜장면", - "amount": 5000, + "id": "1109a18fce1baf9fa3ea", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c8364329a9f59fa313d3", - "label": "짬뽕", - "amount": 7000, + "id": "99c1841a0aca4d86a084", + "label": "수제비", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bf34a6fe2a9ec1834f76", - "label": "짬 뽕", - "amount": 7000, + "id": "586bb4fd1cf7e792100d", + "label": "쫄면", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fbb8fd31377f5efb6683-history", - "label": "짜장면", - "amount": 5000, + "id": "1109a18fce1baf9fa3ea-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c8364329a9f59fa313d3-history", - "label": "짬뽕", - "amount": 7000, + "id": "99c1841a0aca4d86a084-history", + "label": "수제비", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bf34a6fe2a9ec1834f76-history", - "label": "짬 뽕", - "amount": 7000, + "id": "586bb4fd1cf7e792100d-history", + "label": "쫄면", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1768,37 +1682,37 @@ "comments": [] }, { - "id": "goodprice-17000", - "name": "86카츠", - "businessName": "86카츠", - "categorySlug": "western", - "address": "충청북도 청주시 청원구 상당로302번길 117-1 (내덕동) 1층(내덕동)", - "district": "충청북도 청주시", - "latitude": 36.65322329929266, - "longitude": 127.49392991767124, - "representativePriceAmount": 9500, - "representativePriceLabel": "돈카츠", + "id": "goodprice-4338", + "name": "개성시대미용실", + "businessName": "개성시대미용실", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 춘천로68번길 10 (효자동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8700600426461, + "longitude": 127.725474230628, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈카츠 9,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 11:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-256-9304", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dd6ca8cc10c7a0d9243c", - "label": "돈카츠", - "amount": 9500, + "id": "617566df0d93ea81d80a", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dd6ca8cc10c7a0d9243c-history", - "label": "돈카츠", - "amount": 9500, + "id": "617566df0d93ea81d80a-history", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1806,37 +1720,65 @@ "comments": [] }, { - "id": "goodprice-16062", - "name": "9.9추어탕", - "businessName": "9.9추어탕", + "id": "goodprice-16044", + "name": "복코돼지", + "businessName": "복코돼지", "categorySlug": "korean", - "address": "충청북도 청주시 상당구 남사로140번길 33 (남문로1가) 1층", - "district": "충청북도 청주시", - "latitude": 36.63060364132639, - "longitude": 127.49034759503, - "representativePriceAmount": 10000, - "representativePriceLabel": "추어탕", + "address": "서울특별시 종로구 종로 232 (종로5가) 1층", + "district": "서울특별시 종로구", + "latitude": 37.570761508765074, + "longitude": 127.00353272937728, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개(점심)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-256-9900", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개(점심) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2271-5989 / 영업시간: 10:00~22:00(일요일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9a066c6e02ff8cec2425", - "label": "추어탕", - "amount": 10000, + "id": "90b8964717454311b3c1", + "label": "김치찌개(점심)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e681d716facfe8474855", + "label": "황태해장국(점심)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1308d2d6a76ac72e96d5", + "label": "제육볶음(점심)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9a066c6e02ff8cec2425-history", - "label": "추어탕", - "amount": 10000, + "id": "90b8964717454311b3c1-history", + "label": "김치찌개(점심)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e681d716facfe8474855-history", + "label": "황태해장국(점심)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1308d2d6a76ac72e96d5-history", + "label": "제육볶음(점심)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1844,37 +1786,37 @@ "comments": [] }, { - "id": "goodprice-4909", - "name": "9000냥프로헤어", - "businessName": "9000냥프로헤어", + "id": "goodprice-18570", + "name": "신라미용실", + "businessName": "신라미용실", "categorySlug": "beauty", - "address": "충청남도 천안시 동남구 충무로 412-27 2층(영성동)", - "district": "충청남도 천안시", - "latitude": 36.7971238482422, - "longitude": 127.151205811449, - "representativePriceAmount": 9000, - "representativePriceLabel": "커트", + "address": "서울특별시 중구 퇴계로 217 (충무로4가, 진양상가, 진양아파트) 1층 36호, 37호", + "district": "서울특별시 중구", + "latitude": 37.562423982135904, + "longitude": 126.99593553115459, + "representativePriceAmount": 10000, + "representativePriceLabel": "남성컷", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 09:30~19:00 정기휴무(매주 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성컷 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-9264-3072", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c610564b7ba9ddf10570", - "label": "커트", - "amount": 9000, + "id": "8c0637355b74f0520c01", + "label": "남성컷", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c610564b7ba9ddf10570-history", - "label": "커트", - "amount": 9000, + "id": "8c0637355b74f0520c01-history", + "label": "남성컷", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1882,37 +1824,37 @@ "comments": [] }, { - "id": "goodprice-4935", - "name": "가마솥 선지국밥", - "businessName": "가마솥 선지국밥", + "id": "goodprice-13183", + "name": "계림동나주곰탕", + "businessName": "계림동나주곰탕", "categorySlug": "korean", - "address": "충청남도 천안시 동남구 사직로 2-2 1층(사직동)", - "district": "충청남도 천안시", - "latitude": 36.8003866595724, - "longitude": 127.149801708648, - "representativePriceAmount": 5000, - "representativePriceLabel": "선지국밥", + "address": "광주광역시 동구 구성로 262-9 (계림동) 1층", + "district": "광주광역시 동구", + "latitude": 35.15717956808311, + "longitude": 126.91948612900808, + "representativePriceAmount": 10000, + "representativePriceLabel": "곰탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 선지국밥 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-574-5665 / 영업시간: 07:00~19:00 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 곰탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-225-0970", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "10bfc424eaaaed18b6df", - "label": "선지국밥", - "amount": 5000, + "id": "45b441a27c25f96066af", + "label": "곰탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "10bfc424eaaaed18b6df-history", - "label": "선지국밥", - "amount": 5000, + "id": "45b441a27c25f96066af-history", + "label": "곰탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1920,65 +1862,65 @@ "comments": [] }, { - "id": "goodprice-11752", - "name": "가화손만두 옛날통닭", - "businessName": "가화손만두 옛날통닭", - "categorySlug": "korean", - "address": "충청남도 천안시 동남구 큰재빼기길 28 (오룡동)", - "district": "충청남도 천안시", - "latitude": 36.8039869569013, - "longitude": 127.149159570599, - "representativePriceAmount": 8000, - "representativePriceLabel": "옛날통닭", + "id": "goodprice-4679", + "name": "가든미용실", + "businessName": "가든미용실", + "categorySlug": "beauty", + "address": "충청북도 청주시 상당구 청남로2197번길 12 (석교동)", + "district": "충청북도 청주시", + "latitude": 36.6278271128724, + "longitude": 127.490164264559, + "representativePriceAmount": 6000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 옛날통닭 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-558-0863 / 영업시간: 08:00~20:00 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-223-8097 / 영업시간: 매일 08:00-20:00 ※ 매주 셋째주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2cb8d8343457d3a854e6", - "label": "옛날통닭", - "amount": 8000, + "id": "4d68936f48655a532de8", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fa7f4c44011e8f5fb4f3", - "label": "손만두", - "amount": 4000, + "id": "fcccfbd8443bf06caee3", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8668dbc202a9fba6872c", - "label": "찐빵", - "amount": 3000, + "id": "c59347fc470a4c1daa6f", + "label": "염색 염색", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2cb8d8343457d3a854e6-history", - "label": "옛날통닭", - "amount": 8000, + "id": "4d68936f48655a532de8-history", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fa7f4c44011e8f5fb4f3-history", - "label": "손만두", - "amount": 4000, + "id": "fcccfbd8443bf06caee3-history", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8668dbc202a9fba6872c-history", - "label": "찐빵", - "amount": 3000, + "id": "c59347fc470a4c1daa6f-history", + "label": "염색 염색", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -1986,51 +1928,65 @@ "comments": [] }, { - "id": "goodprice-16879", - "name": "강짬뽕", - "businessName": "강짬뽕", - "categorySlug": "chinese", - "address": "충청남도 천안시 동남구 신부12길 12 (신부동) 1층", - "district": "충청남도 천안시", - "latitude": 36.81807192926583, - "longitude": 127.15946515907602, - "representativePriceAmount": 6000, - "representativePriceLabel": "자장면", + "id": "goodprice-17542", + "name": "불백당", + "businessName": "불백당", + "categorySlug": "korean", + "address": "서울특별시 종로구 우정국로2길 34 (관철동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.56946019643439, + "longitude": 126.98494601675547, + "representativePriceAmount": 5500, + "representativePriceLabel": "고추장불백", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1357-6142 / 영업시간: 영업시간 10:30~20:00 휴무일 매주 월요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고추장불백 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-722-0086", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "27e8a45f07882ea086db", - "label": "자장면", - "amount": 6000, + "id": "98d9c05fee2aa79a4a0d", + "label": "고추장불백", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f951b96a01afae6625f6", - "label": "짬뽕", - "amount": 8000, + "id": "c508865947f43112feb1", + "label": "갈비양념불백", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b7b9eca4f669fa51c1ea", + "label": "오삼불백", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "27e8a45f07882ea086db-history", - "label": "자장면", - "amount": 6000, + "id": "98d9c05fee2aa79a4a0d-history", + "label": "고추장불백", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f951b96a01afae6625f6-history", - "label": "짬뽕", - "amount": 8000, + "id": "c508865947f43112feb1-history", + "label": "갈비양념불백", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b7b9eca4f669fa51c1ea-history", + "label": "오삼불백", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -2038,65 +1994,51 @@ "comments": [] }, { - "id": "goodprice-5413", - "name": "나눔공정카페", - "businessName": "나눔공정카페", - "categorySlug": "other-food", - "address": "전북특별자치도 전주시 완산구 전룡4길 8 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.8258068254203, - "longitude": 127.119654841458, - "representativePriceAmount": 1800, - "representativePriceLabel": "아메리카노", + "id": "goodprice-963", + "name": "일광사", + "businessName": "일광사", + "categorySlug": "laundry", + "address": "서울특별시 중구 다산로 33다길 29 (신당동)", + "district": "서울특별시 중구", + "latitude": 37.5640829919161, + "longitude": 127.013561996977, + "representativePriceAmount": 10000, + "representativePriceLabel": "드라이크리닝(양복 상하의)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 1,800원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-278-9799", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 드라이크리닝(양복 상하의) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-6492 / 영업시간: 월~토 08:00~21:00 일요일 휴무 둘째,넷째 토요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0542ea396478a8472b1b", - "label": "아메리카노", - "amount": 1800, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "99aad9fdd1f6494a549a", - "label": "카페라떼", - "amount": 3000, + "id": "547ad69dea6ababfcbfd", + "label": "드라이크리닝(양복 상하의)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "22c7f585bd12c29b5191", - "label": "(수제)자몽차, 레몬차", - "amount": 3500, + "id": "77e426cf00b6946839ee", + "label": "하의 수선", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0542ea396478a8472b1b-history", - "label": "아메리카노", - "amount": 1800, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "99aad9fdd1f6494a549a-history", - "label": "카페라떼", - "amount": 3000, + "id": "547ad69dea6ababfcbfd-history", + "label": "드라이크리닝(양복 상하의)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "22c7f585bd12c29b5191-history", - "label": "(수제)자몽차, 레몬차", - "amount": 3500, + "id": "77e426cf00b6946839ee-history", + "label": "하의 수선", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -2104,311 +2046,257 @@ "comments": [] }, { - "id": "goodprice-11329", - "name": "경남식당", - "businessName": "경남식당", - "categorySlug": "chinese", - "address": "전라남도 목포시 산대로2번길 3-2 (산정동)", - "district": "전라남도 목포시", - "latitude": 34.8024474268616, - "longitude": 126.391838705576, - "representativePriceAmount": 5000, - "representativePriceLabel": "자장면", + "id": "goodprice-10150", + "name": "24시서울식당", + "businessName": "24시서울식당", + "categorySlug": "korean", + "address": "대전광역시 동구 동서대로 1695번길 53 (용전동)", + "district": "대전광역시 동구", + "latitude": 36.3518040236434, + "longitude": 127.436526849885, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개 백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-272-8111", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-626-1969 / 영업시간: 연중무휴", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "628a76247a4348727d95", - "label": "자장면", - "amount": 5000, + "id": "df97b62fd4855f03d45f", + "label": "김치찌개 백반", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d3e8dfe6f7fe8aa595fc", - "label": "짬뽕", - "amount": 7000, + "id": "ca4a6e18cd21fb4c1c17", + "label": "우렁된장 백반", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "40ccd46eaf04de17ea10", - "label": "볶음밥", + "id": "10f6d85f58205baa42e3", + "label": "설렁탕", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "628a76247a4348727d95-history", - "label": "자장면", - "amount": 5000, + "id": "97ca271ec531cda817e3", + "label": "갈비탕", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "d3e8dfe6f7fe8aa595fc-history", - "label": "짬뽕", - "amount": 7000, + "id": "241cebfb5d95f2402f79", + "label": "콩나물해장국", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "40ccd46eaf04de17ea10-history", - "label": "볶음밥", - "amount": 7000, + "id": "42d99941401c900adfeb", + "label": "순두부 백반", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15142", - "name": "경성회관", - "businessName": "경성회관", - "categorySlug": "korean", - "address": "전라남도 목포시 용당로 54 (산정동) 1층", - "district": "전라남도 목포시", - "latitude": 34.792331194754645, - "longitude": 126.4023009728321, - "representativePriceAmount": 10000, - "representativePriceLabel": "청국장 백반", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 백반 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-5993", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "df51362a43ce9e05d0ea", + "id": "8123b0ac7d0d29408f6d", "label": "청국장 백반", - "amount": 10000, + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d8b6852a2d7bca07901c", - "label": "김치찌개 백반", - "amount": 10000, + "id": "8fa540578e4d3e670dcb", + "label": "전주비빔밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "df51362a43ce9e05d0ea-history", - "label": "청국장 백반", - "amount": 10000, + "id": "f8c644b5f169ea1dcfc7", + "label": "돌솥비빔밥", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "d8b6852a2d7bca07901c-history", - "label": "김치찌개 백반", - "amount": 10000, + "id": "fd927ba1e7a25f824f7a", + "label": "육개장", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15158", - "name": "고향삼겹살", - "businessName": "고향삼겹살", - "categorySlug": "korean", - "address": "전라남도 목포시 영산로 691 (석현동) 고향삼겹살", - "district": "전라남도 목포시", - "latitude": 34.82641754948634, - "longitude": 126.42137100869118, - "representativePriceAmount": 9000, - "representativePriceLabel": "청국장", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-281-3931", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "57881a1dcd7f7fee2049", - "label": "청국장", - "amount": 9000, + "id": "fa2196d03c5bbcfa45ec", + "label": "물냉면", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "68f721783aeac01b0f0b", + "label": "비빔냉면", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6c771d7082b6fd5dadf1", + "label": "만둣국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "57881a1dcd7f7fee2049-history", - "label": "청국장", - "amount": 9000, + "id": "df97b62fd4855f03d45f-history", + "label": "김치찌개 백반", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-6367", - "name": "45번길국수", - "businessName": "45번길국수", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 대이로45번길 12-4 45번길국수", - "district": "경상북도 포항시", - "latitude": 36.019222777464, - "longitude": 129.340576077049, - "representativePriceAmount": 6000, - "representativePriceLabel": "잔치국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 07:30~19시30분 매주 일요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "e9d37e23106dbae83c25", - "label": "잔치국수", + "id": "ca4a6e18cd21fb4c1c17-history", + "label": "우렁된장 백반", "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "9b14ba5b4e426b9ed0a8", - "label": "콩국수", + "id": "10f6d85f58205baa42e3-history", + "label": "설렁탕", "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "980c8483067c1f551f07", - "label": "비빔국수", + "id": "97ca271ec531cda817e3-history", + "label": "갈비탕", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "241cebfb5d95f2402f79-history", + "label": "콩나물해장국", "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "e9d37e23106dbae83c25-history", - "label": "잔치국수", + "id": "42d99941401c900adfeb-history", + "label": "순두부 백반", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9b14ba5b4e426b9ed0a8-history", - "label": "콩국수", - "amount": 7000, + "id": "8123b0ac7d0d29408f6d-history", + "label": "청국장 백반", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "980c8483067c1f551f07-history", - "label": "비빔국수", + "id": "8fa540578e4d3e670dcb-history", + "label": "전주비빔밥", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-6384", - "name": "감자바위", - "businessName": "감자바위", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 연일읍 유강길9번길 32 감자바위", - "district": "경상북도 포항시", - "latitude": 36.0033909011122, - "longitude": 129.316527350566, - "representativePriceAmount": 8000, - "representativePriceLabel": "비빔밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-272-8877", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "41923ace59b89f149d63", - "label": "비빔밥", + "id": "f8c644b5f169ea1dcfc7-history", + "label": "돌솥비빔밥", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fd927ba1e7a25f824f7a-history", + "label": "육개장", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "41923ace59b89f149d63-history", - "label": "비빔밥", + "id": "fa2196d03c5bbcfa45ec-history", + "label": "물냉면", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "68f721783aeac01b0f0b-history", + "label": "비빔냉면", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "6c771d7082b6fd5dadf1-history", + "label": "만둣국", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-13952", - "name": "119찹쌀꽈배기", - "businessName": "119찹쌀꽈배기", - "categorySlug": "other-food", - "address": "경상남도 창원시 마산합포구 해안대로 11 (해운동) 1층 119호(해운동, 이화월드프라자)", - "district": "경상남도 창원시", - "latitude": 35.180646134171674, - "longitude": 128.560237476249, - "representativePriceAmount": 500, - "representativePriceLabel": "꽈배기", + "id": "goodprice-10020", + "name": "남포이발컷트", + "businessName": "남포이발컷트", + "categorySlug": "barber", + "address": "부산광역시 중구 중구로 2 2층(남포동5가)", + "district": "부산광역시 중구", + "latitude": 35.0979757736079, + "longitude": 129.028282683866, + "representativePriceAmount": 6000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "이화월드프라자상가 내 1층", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-245-7939", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c8f47db80be51eb49d16", - "label": "꽈배기", - "amount": 500, + "id": "68c18452d2019bc77658", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2ed6791c52b828305f40", - "label": "팥씨앗도너츠", - "amount": 1500, + "id": "b25a2b0f04850a64793a", + "label": "일반염색", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c8f47db80be51eb49d16-history", - "label": "꽈배기", - "amount": 500, + "id": "68c18452d2019bc77658-history", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2ed6791c52b828305f40-history", - "label": "팥씨앗도너츠", - "amount": 1500, + "id": "b25a2b0f04850a64793a-history", + "label": "일반염색", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -2416,145 +2304,163 @@ "comments": [] }, { - "id": "goodprice-19285", - "name": "강남추어탕", - "businessName": "강남추어탕", + "id": "goodprice-958", + "name": "삼삼 뚝배기", + "businessName": "삼삼 뚝배기", "categorySlug": "korean", - "address": "경상남도 창원시 진해구 중원로85번길 18 (화천동) 강남추어탕", - "district": "경상남도 창원시", - "latitude": 35.15213845076089, - "longitude": 128.65821162206046, - "representativePriceAmount": 9000, - "representativePriceLabel": "추어탕", + "address": "서울특별시 종로구 동숭길 51 (동숭동)", + "district": "서울특별시 종로구", + "latitude": 37.5805564090189, + "longitude": 127.004190744723, + "representativePriceAmount": 7000, + "representativePriceLabel": "된장뚝배기", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-541-5033", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장뚝배기 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-765-4683 / 영업시간: 매일(연중휴무) 06:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3640f861d8b74ede7232", - "label": "추어탕", - "amount": 9000, + "id": "2bb0c68db03d24cfb08c", + "label": "된장뚝배기", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9b7f34ec6e82a23746c9", - "label": "순두부 정식", - "amount": 8000, + "id": "b6fd9b9c9a5913724d73", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ee83be5bb2ed6dcfe054", - "label": "시래기 정식", - "amount": 8000, + "id": "e221d77ff5f21605419a", + "label": "순두부뚝배기", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "3640f861d8b74ede7232-history", - "label": "추어탕", - "amount": 9000, + "id": "24fbfa95674453c3c62c", + "label": "황기반계탕", + "amount": 7500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "9b7f34ec6e82a23746c9-history", - "label": "순두부 정식", - "amount": 8000, + "id": "e0808b8abe987072d2b4", + "label": "고추장 매운찌개", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "ee83be5bb2ed6dcfe054-history", - "label": "시래기 정식", - "amount": 8000, + "id": "18f03e73f70dc1a02d53", + "label": "돼지불고기뚝배기", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-17141", - "name": "고운프리티", - "businessName": "고운프리티", - "categorySlug": "other-food", - "address": "경상남도 창원시 진해구 돌리로9번길 10-1 (석동) 1층", - "district": "경상남도 창원시", - "latitude": 35.159411115795905, - "longitude": 128.69968744654085, - "representativePriceAmount": 1500, - "representativePriceLabel": "아메리카노 HOT(ICE +500원)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 HOT(ICE +500원) 1,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1428-2177", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "c5e10493f9ba8d5216eb", - "label": "아메리카노 HOT(ICE +500원)", - "amount": 1500, + "id": "c8df1ea7191cb9e76949", + "label": "소고기미역국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "37db1ec28219d84232a5", - "label": "수제청자 HOT(ICE +500원)", - "amount": 3000, + "id": "d8c42cc8525b67c45859", + "label": "고등어조림", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0e4885f25d5821129ebd", - "label": "생과일주스", - "amount": 3500, + "id": "787a33431a7139a3a5d3", + "label": "생선백반", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c1f1a2a27d9a0ff8f4b9", - "label": "한방차", - "amount": 3000, + "id": "2f505184b539a6f5e169", + "label": "사골곰탕", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c5e10493f9ba8d5216eb-history", - "label": "아메리카노 HOT(ICE +500원)", - "amount": 1500, + "id": "2bb0c68db03d24cfb08c-history", + "label": "된장뚝배기", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "37db1ec28219d84232a5-history", - "label": "수제청자 HOT(ICE +500원)", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "id": "b6fd9b9c9a5913724d73-history", + "label": "김치찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" }, { - "id": "0e4885f25d5821129ebd-history", - "label": "생과일주스", - "amount": 3500, + "id": "e221d77ff5f21605419a-history", + "label": "순두부뚝배기", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c1f1a2a27d9a0ff8f4b9-history", - "label": "한방차", - "amount": 3000, + "id": "24fbfa95674453c3c62c-history", + "label": "황기반계탕", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e0808b8abe987072d2b4-history", + "label": "고추장 매운찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "18f03e73f70dc1a02d53-history", + "label": "돼지불고기뚝배기", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c8df1ea7191cb9e76949-history", + "label": "소고기미역국", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d8c42cc8525b67c45859-history", + "label": "고등어조림", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "787a33431a7139a3a5d3-history", + "label": "생선백반", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2f505184b539a6f5e169-history", + "label": "사골곰탕", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -2562,51 +2468,51 @@ "comments": [] }, { - "id": "goodprice-10627", - "name": "24시국수회관", - "businessName": "24시국수회관", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 남성로 122-1", - "district": "제주특별자치도 제주시", - "latitude": 33.5087686026345, - "longitude": 126.518427788905, + "id": "goodprice-18569", + "name": "중림헤어", + "businessName": "중림헤어", + "categorySlug": "beauty", + "address": "서울특별시 중구 청파로 425-1 (중림동) 1층", + "district": "서울특별시 중구", + "latitude": 37.55760501038397, + "longitude": 126.96892243438135, "representativePriceAmount": 8000, - "representativePriceLabel": "순대국밥", + "representativePriceLabel": "남성커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-702-1162", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-365-2220", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7fb45907af5738af6d21", - "label": "순대국밥", + "id": "eb5fd1eb4c43b82146cd", + "label": "남성커트", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6464c7f6d87e3f3388a9", - "label": "고기국수", - "amount": 8000, + "id": "5274e2eca469108ab450", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7fb45907af5738af6d21-history", - "label": "순대국밥", + "id": "eb5fd1eb4c43b82146cd-history", + "label": "남성커트", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6464c7f6d87e3f3388a9-history", - "label": "고기국수", - "amount": 8000, + "id": "5274e2eca469108ab450-history", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -2614,131 +2520,121 @@ "comments": [] }, { - "id": "goodprice-7012", - "name": "JJ노블휘트니스클럽", - "businessName": "JJ노블휘트니스클럽", - "categorySlug": "other-service", - "address": "제주특별자치도 제주시 성신로 1길 34 3층(연동, 신동부삼무3차아파트)", - "district": "제주특별자치도 제주시", - "latitude": 33.4922271525915, - "longitude": 126.48897408179, - "representativePriceAmount": 10000, - "representativePriceLabel": "1일", + "id": "goodprice-10151", + "name": "2900냥식당", + "businessName": "2900냥식당", + "categorySlug": "korean", + "address": "대전광역시 동구 대전로 815번길 5 (정동)", + "district": "대전광역시 동구", + "latitude": 36.3322630706726, + "longitude": 127.431757660701, + "representativePriceAmount": 6000, + "representativePriceLabel": "선지해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 1일 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-743-1515 / 영업시간: 금 06:00-23:00 토 09:00-17:00 일 정기휴무(매주일요일) 월(12/25) 성탄절휴무 화 06:00-23:00 수 06:00-23:00 목 06:00-23:00 01/01새해첫날휴무", + "description": "SBS생방송 투데이 명품맛집 출연", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-256-8686 / 영업시간: 07:00~22:00 / 매주 월요일 정기 휴일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "37459ec7ac4cc2983b05", - "label": "1일", - "amount": 10000, + "id": "a7991d596eb91c0d3bdc", + "label": "선지해장국", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "37459ec7ac4cc2983b05-history", - "label": "1일", - "amount": 10000, + "id": "c4c978111dab726e679f", + "label": "콩나물해장국", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-7203", - "name": "가람", - "businessName": "가람", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 복지로북길 4 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.4888491368419, - "longitude": 126.520646841034, - "representativePriceAmount": 10000, - "representativePriceLabel": "추어탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-756-0012 / 영업시간: 매일 09:00-21:00 토요일 정기휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "d64795c2c718505cf336", - "label": "추어탕", - "amount": 10000, + "id": "d3206eb0e0ca51a4bd7b", + "label": "비빔국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d295198876104e99dab4", - "label": "고사리육개장", - "amount": 9000, + "id": "bf6ade39616a62674085", + "label": "콩나물비빔밥", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5459042df9035ef44fdb", - "label": "닭칼국수", - "amount": 8000, + "id": "403f4cceedc11c3b5352", + "label": "콩국수(여름)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bd4d62ae4cde0a46c8d7", - "label": "돌솥밥추어탕", - "amount": 10000, + "id": "f436d23c9f252cc3a788", + "label": "냉국수(여름)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "177eaa4addc85646657a", - "label": "일품닭칼국수", - "amount": 8000, + "id": "fdfb1167b37b65c2109c", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d64795c2c718505cf336-history", - "label": "추어탕", - "amount": 10000, + "id": "a7991d596eb91c0d3bdc-history", + "label": "선지해장국", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d295198876104e99dab4-history", - "label": "고사리육개장", - "amount": 9000, + "id": "c4c978111dab726e679f-history", + "label": "콩나물해장국", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5459042df9035ef44fdb-history", - "label": "닭칼국수", - "amount": 8000, + "id": "d3206eb0e0ca51a4bd7b-history", + "label": "비빔국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bd4d62ae4cde0a46c8d7-history", - "label": "돌솥밥추어탕", - "amount": 10000, + "id": "bf6ade39616a62674085-history", + "label": "콩나물비빔밥", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "177eaa4addc85646657a-history", - "label": "일품닭칼국수", - "amount": 8000, + "id": "403f4cceedc11c3b5352-history", + "label": "콩국수(여름)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f436d23c9f252cc3a788-history", + "label": "냉국수(여름)", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fdfb1167b37b65c2109c-history", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -2746,65 +2642,65 @@ "comments": [] }, { - "id": "goodprice-16639", - "name": "남도식당", - "businessName": "남도식당", - "categorySlug": "chinese", - "address": "서울특별시 종로구 종로 374-1 (숭인동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.5737068376897, - "longitude": 127.01922365532883, - "representativePriceAmount": 3500, - "representativePriceLabel": "짜장면", + "id": "goodprice-2528", + "name": "뉴모델이용원", + "businessName": "뉴모델이용원", + "categorySlug": "barber", + "address": "대전광역시 동구 계족로 103 (신흥동)", + "district": "대전광역시 동구", + "latitude": 36.3235977678715, + "longitude": 127.445302754, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2234-5544 / 영업시간: 매일 10:00 - 21:30 (명절 당일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-282-1933 / 영업시간: 06:00 ~ 19:00 / 매주 수요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5fa694c0c7efd2c74cc6", - "label": "짜장면", - "amount": 3500, + "id": "360b54a4464b7a97a3a4", + "label": "이용료", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ca9234c7e96562216df5", - "label": "우동", - "amount": 3500, + "id": "82c47b4c16a4a29e816d", + "label": "일반(남)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "70fce31d335253c3f16c", - "label": "탕수육", - "amount": 4000, + "id": "c03cc7b524a64cbbd09f", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5fa694c0c7efd2c74cc6-history", - "label": "짜장면", - "amount": 3500, + "id": "360b54a4464b7a97a3a4-history", + "label": "이용료", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ca9234c7e96562216df5-history", - "label": "우동", - "amount": 3500, + "id": "82c47b4c16a4a29e816d-history", + "label": "일반(남)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "70fce31d335253c3f16c-history", - "label": "탕수육", - "amount": 4000, + "id": "c03cc7b524a64cbbd09f-history", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -2812,34 +2708,41 @@ "comments": [] }, { - "id": "goodprice-11579", - "name": "눈나무집", - "businessName": "눈나무집", - "categorySlug": "korean", - "address": "서울특별시 종로구 삼청로 136-1 1층", + "id": "goodprice-16866", + "name": "샐러드하우스", + "businessName": "샐러드하우스", + "categorySlug": "other-food", + "address": "서울특별시 종로구 새문안로5가길 28 (적선동) 지하1층 119호", "district": "서울특별시 종로구", - "latitude": 37.5874798577018, - "longitude": 126.981887109774, - "representativePriceAmount": 6500, - "representativePriceLabel": "김치말이국수", + "latitude": 37.57446023473285, + "longitude": 126.97359705813241, + "representativePriceAmount": 4900, + "representativePriceLabel": "에그듬뿍샌드위치", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치말이국수 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-739-6742", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 에그듬뿍샌드위치 4,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-722-5891 / 영업시간: 10:00~19:30 토, 일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b8c116b0d27e0665b6d5", - "label": "김치말이국수", + "id": "572aae6e386976cd09db", + "label": "에그듬뿍샌드위치", + "amount": 4900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d19637cfa84a052c76c6", + "label": "그린샐러드", "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9cb869347bd6a1506cf8", - "label": "김치볶음밥", + "id": "a26d4fe5f1d8762b295c", + "label": "닭가슴살샐러드", "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -2847,15 +2750,22 @@ ], "history": [ { - "id": "b8c116b0d27e0665b6d5-history", - "label": "김치말이국수", + "id": "572aae6e386976cd09db-history", + "label": "에그듬뿍샌드위치", + "amount": 4900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d19637cfa84a052c76c6-history", + "label": "그린샐러드", "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9cb869347bd6a1506cf8-history", - "label": "김치볶음밥", + "id": "a26d4fe5f1d8762b295c-history", + "label": "닭가슴살샐러드", "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -2864,135 +2774,117 @@ "comments": [] }, { - "id": "goodprice-946", - "name": "돈까스보라", - "businessName": "돈까스보라", - "categorySlug": "western", - "address": "서울특별시 종로구 대학로5길 5 (연건동)", - "district": "서울특별시 종로구", - "latitude": 37.5781982996716, - "longitude": 127.001695852612, - "representativePriceAmount": 7000, - "representativePriceLabel": "수제 돈까스", + "id": "goodprice-11064", + "name": "채미미용실", + "businessName": "채미미용실", + "categorySlug": "beauty", + "address": "서울특별시 중구 다산로 101 (신당동)", + "district": "서울특별시 중구", + "latitude": 37.553274501935, + "longitude": 127.009303145852, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 수제 돈까스 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-741-3455 / 영업시간: 10:00~19:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-8339", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "161f06011a9c632033da", - "label": "수제 돈까스", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "52385f46e7f987997c56", - "label": "돈까스정식", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f82184cd6efa27098bbc", - "label": "생선까스", - "amount": 8000, + "id": "e8ddf317bea99f82eb83", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "89edba03d99da739e832", - "label": "생선까스정식", - "amount": 9000, + "id": "e8ddf317bea99f82eb83-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-2561", + "name": "강청골순대국밥", + "businessName": "강청골순대국밥", + "categorySlug": "korean", + "address": "대전광역시 동구 동대전로 229 (가양동)", + "district": "대전광역시 동구", + "latitude": 36.3419614517988, + "longitude": 127.447983980001, + "representativePriceAmount": 8000, + "representativePriceLabel": "순대국밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-635-8181 / 영업시간: 09:30 ~ 22:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "b7dcb1baa972a47a5e3f", - "label": "치즈돈까스", + "id": "81177c1ed8033f658e8f", + "label": "순대국밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "247ec5a88e49e063cd3c", - "label": "치즈돈까스정식", - "amount": 10000, + "id": "149ff55a0f3908c520c5", + "label": "감투국밥", + "amount": 9500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7f5036f7fb2ab997bf9d", - "label": "치킨까스정식", - "amount": 7000, + "id": "67676e6f2da3f3f8be70", + "label": "고기감자만두", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d48fbcb4818de62f6bd0", - "label": "치킨돈까스", - "amount": 8000, + "id": "0f44f308fe881207211f", + "label": "수육국밥", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "161f06011a9c632033da-history", - "label": "수제 돈까스", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "52385f46e7f987997c56-history", - "label": "돈까스정식", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f82184cd6efa27098bbc-history", - "label": "생선까스", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "89edba03d99da739e832-history", - "label": "생선까스정식", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b7dcb1baa972a47a5e3f-history", - "label": "치즈돈까스", + "id": "81177c1ed8033f658e8f-history", + "label": "순대국밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "247ec5a88e49e063cd3c-history", - "label": "치즈돈까스정식", - "amount": 10000, + "id": "149ff55a0f3908c520c5-history", + "label": "감투국밥", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7f5036f7fb2ab997bf9d-history", - "label": "치킨까스정식", - "amount": 7000, + "id": "67676e6f2da3f3f8be70-history", + "label": "고기감자만두", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d48fbcb4818de62f6bd0-history", - "label": "치킨돈까스", - "amount": 8000, + "id": "0f44f308fe881207211f-history", + "label": "수육국밥", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3000,51 +2892,89 @@ "comments": [] }, { - "id": "goodprice-16864", - "name": "동대문 한국통닭", - "businessName": "동대문 한국통닭", - "categorySlug": "korean", - "address": "서울특별시 종로구 종로 304 (창신동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.571667373066134, - "longitude": 127.01153873736409, - "representativePriceAmount": 4500, - "representativePriceLabel": "통닭 1마리", + "id": "goodprice-2529", + "name": "대광이용원", + "businessName": "대광이용원", + "categorySlug": "barber", + "address": "대전광역시 동구 계족로 73-2 (신흥동)", + "district": "대전광역시 동구", + "latitude": 36.3212528089861, + "longitude": 127.443947726738, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 통닭 1마리 4,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-747-2443 / 영업시간: 24시간 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-282-7720 / 영업시간: 09:00 ~ 19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "60e767ae63295d2180ce", - "label": "통닭 1마리", - "amount": 4500, + "id": "f4e0e20600dc3854997e", + "label": "이용료", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "f78665c740c41d61b60e", - "label": "통닭 2마리", + "id": "f4e0e20600dc3854997e-history", + "label": "이용료", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-14004", + "name": "서울식당", + "businessName": "서울식당", + "categorySlug": "korean", + "address": "서울특별시 종로구 창신길 50 (창신동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.57383386363352, + "longitude": 127.01070027218017, + "representativePriceAmount": 8000, + "representativePriceLabel": "백반", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-764-7587 / 영업시간: 10:00-20:00(일요일 휴무)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "830940aae72c16d83a2d", + "label": "백반", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "4e55d00ce953b9ddeb9f", + "label": "된장찌개", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "60e767ae63295d2180ce-history", - "label": "통닭 1마리", - "amount": 4500, + "id": "830940aae72c16d83a2d-history", + "label": "백반", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f78665c740c41d61b60e-history", - "label": "통닭 2마리", - "amount": 8000, + "id": "4e55d00ce953b9ddeb9f-history", + "label": "된장찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3052,65 +2982,51 @@ "comments": [] }, { - "id": "goodprice-10018", - "name": "깡통골목할매 유부전골 본점", - "businessName": "깡통골목할매 유부전골 본점", - "categorySlug": "korean", - "address": "부산광역시 중구 부평3길 29 (부평동1가)", - "district": "부산광역시 중구", - "latitude": 35.1020375328885, - "longitude": 129.027061206734, - "representativePriceAmount": 6800, - "representativePriceLabel": "유부전골", + "id": "goodprice-16631", + "name": "은혜미용실", + "businessName": "은혜미용실", + "categorySlug": "beauty", + "address": "서울특별시 용산구 효창원로42길 15 (용문동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53663989921478, + "longitude": 126.96015043866937, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 유부전골 6,800원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-245-1878", + "description": "용산구 착한가격업소(미용실)", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-713-3095 / 영업시간: 09:00~20:00 (평일,주말)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "063d5c815bd0710ed85d", - "label": "유부전골", - "amount": 6800, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f9f7f658ad66649404fd", - "label": "유부보따리우동", - "amount": 6800, + "id": "fc9ce4fb0a15b2148cb9", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1c46f9e2aa279483dfb2", - "label": "유부떡볶이", - "amount": 5000, + "id": "ffa0e315325dc76d863f", + "label": "드라이", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "063d5c815bd0710ed85d-history", - "label": "유부전골", - "amount": 6800, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f9f7f658ad66649404fd-history", - "label": "유부보따리우동", - "amount": 6800, + "id": "fc9ce4fb0a15b2148cb9-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1c46f9e2aa279483dfb2-history", - "label": "유부떡볶이", - "amount": 5000, + "id": "ffa0e315325dc76d863f-history", + "label": "드라이", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3118,131 +3034,187 @@ "comments": [] }, { - "id": "goodprice-15032", - "name": "꽃가람 남포직영점", - "businessName": "꽃가람 남포직영점", + "id": "goodprice-14317", + "name": "개천식당", + "businessName": "개천식당", "categorySlug": "korean", - "address": "부산광역시 중구 비프광장로 3 (부평동2가) 꽃가람 남포직영점", - "district": "부산광역시 중구", - "latitude": 35.09835574338491, - "longitude": 129.02574087593763, - "representativePriceAmount": 9500, - "representativePriceLabel": "고추장돼지불고기정식", + "address": "대전광역시 동구 대전로779번길 41 (원동) 중앙시장 내 위치", + "district": "대전광역시 동구", + "latitude": 36.32850763956439, + "longitude": 127.43158384633288, + "representativePriceAmount": 9000, + "representativePriceLabel": "만둣국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고추장돼지불고기정식 9,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1317-4600 / 영업시간: 영업시간 : 11시~21시(브레이크타임 :15시~17시)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 만둣국 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-256-1003 / 영업시간: 11:00~20:00 / 둘째, 넷째주 월요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "318786e64c63fa2df039", - "label": "고추장돼지불고기정식", - "amount": 9500, + "id": "b5e7a7cc751575e66fff", + "label": "만둣국", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a5965cb9425caef103f1", - "label": "쭈낙", - "amount": 10000, + "id": "0d6a10ca0a7d28a2ae90", + "label": "떡만둣국", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6fdd4c6739c30b2ada2c", - "label": "쭈낙곱새", - "amount": 10000, + "id": "8269f3357eea70e01e03", + "label": "떡국", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d20f9f4e80b26cf91310", - "label": "쭈불낙새", + "id": "3f0f3b58c72596edd55b", + "label": "물냉면", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "f1ce28094c460677f79d", + "label": "소머리국밥", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "89cab6923a1e2b09472d", + "label": "부추만두튀김", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d572293f547483a02696", + "label": "개천김치만두", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1d44046fe77b92d0c815", + "label": "부추고기만두", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "318786e64c63fa2df039-history", - "label": "고추장돼지불고기정식", - "amount": 9500, + "id": "b5e7a7cc751575e66fff-history", + "label": "만둣국", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a5965cb9425caef103f1-history", - "label": "쭈낙", - "amount": 10000, + "id": "0d6a10ca0a7d28a2ae90-history", + "label": "떡만둣국", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6fdd4c6739c30b2ada2c-history", - "label": "쭈낙곱새", - "amount": 10000, + "id": "8269f3357eea70e01e03-history", + "label": "떡국", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d20f9f4e80b26cf91310-history", - "label": "쭈불낙새", + "id": "3f0f3b58c72596edd55b-history", + "label": "물냉면", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "f1ce28094c460677f79d-history", + "label": "소머리국밥", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "89cab6923a1e2b09472d-history", + "label": "부추만두튀김", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d572293f547483a02696-history", + "label": "개천김치만두", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1d44046fe77b92d0c815-history", + "label": "부추고기만두", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-1646", - "name": "남선식당", - "businessName": "남선식당", - "categorySlug": "korean", - "address": "부산광역시 중구 충장대로4번길6 (중앙동4가)", - "district": "부산광역시 중구", - "latitude": 35.1046241396056, - "longitude": 129.03680238801, - "representativePriceAmount": 7000, - "representativePriceLabel": "순두부찌개", + "id": "goodprice-17111", + "name": "경희당구클럽", + "businessName": "경희당구클럽", + "categorySlug": "other-service", + "address": "경기도 수원시 영통구 덕영대로 1707 (영통동) 4층", + "district": "경기도 수원시", + "latitude": 37.24799357407884, + "longitude": 127.07820639116257, + "representativePriceAmount": 1000, + "representativePriceLabel": "10분", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-469-3828 / 영업시간: 11:00 - 18:00 매주 일요일 휴무(예약시 일요일 가능)", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 10분 1,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-5631-2323 / 영업시간: 10:00~03:00 / 연중무휴", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "feb9b64e11620b376937", - "label": "순두부찌개", - "amount": 7000, + "id": "805ed0c8d272513bf5a3", + "label": "10분", + "amount": 1000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "73748362c1678678be07", - "label": "된장찌개", - "amount": 7000, + "id": "572caa1f64e66b284464", + "label": "1시간", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "feb9b64e11620b376937-history", - "label": "순두부찌개", - "amount": 7000, + "id": "805ed0c8d272513bf5a3-history", + "label": "10분", + "amount": 1000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "73748362c1678678be07-history", - "label": "된장찌개", - "amount": 7000, + "id": "572caa1f64e66b284464-history", + "label": "1시간", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3250,51 +3222,65 @@ "comments": [] }, { - "id": "goodprice-1647", - "name": "남원원조추어탕", - "businessName": "남원원조추어탕", - "categorySlug": "korean", - "address": "부산광역시 중구 해관로 37-1 (중앙동)", - "district": "부산광역시 중구", - "latitude": 35.1022868055746, - "longitude": 129.035469797726, - "representativePriceAmount": 9000, - "representativePriceLabel": "추어탕", + "id": "goodprice-13892", + "name": "세종커피", + "businessName": "세종커피", + "categorySlug": "other-food", + "address": "서울특별시 종로구 세종대로23길 54 (당주동) 지하1층 26호", + "district": "서울특별시 종로구", + "latitude": 37.57183953065674, + "longitude": 126.97328450326039, + "representativePriceAmount": 2500, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-5636 / 영업시간: 월-금 09;00 - 20:00, 토요일 및 공휴일은 09:00 - 17:00 일요일 휴일", + "description": "테이크아웃 시 예쁜 캔에 실링하여 편하게 가지고 가실 수 있도록 포장해드립니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-5827-9542 / 영업시간: 영업시간 : 월~금 06:00 ~ 15:00 / 토 06:00 ~ 13:00 휴무일 : 일요일, 공휴일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3d8b26d06680e0c030ca", - "label": "추어탕", - "amount": 9000, + "id": "aebe8bb4831474a64dc6", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8fb9fb86945f335dd0df", - "label": "돌솥비빔밥", - "amount": 8000, + "id": "5b76cbc9342d19e56ac5", + "label": "카페라떼", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d75fa438dc234fc55a4b", + "label": "에이드/스무디", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3d8b26d06680e0c030ca-history", - "label": "추어탕", - "amount": 9000, + "id": "aebe8bb4831474a64dc6-history", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8fb9fb86945f335dd0df-history", - "label": "돌솥비빔밥", - "amount": 8000, + "id": "5b76cbc9342d19e56ac5-history", + "label": "카페라떼", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d75fa438dc234fc55a4b-history", + "label": "에이드/스무디", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3302,48 +3288,41 @@ "comments": [] }, { - "id": "goodprice-10075", - "name": "누렁소식당", - "businessName": "누렁소식당", - "categorySlug": "korean", - "address": "대구광역시 중구 국채보상로131길 24 (동인동2가) 누렁소식당", - "district": "대구광역시 중구", - "latitude": 35.87085460440117, - "longitude": 128.60218193488083, - "representativePriceAmount": 7000, - "representativePriceLabel": "한식뷔페", + "id": "goodprice-14105", + "name": "형한나미용실", + "businessName": "형한나미용실", + "categorySlug": "beauty", + "address": "서울특별시 용산구 청파로47길 17-5 (청파동3가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.54459136907398, + "longitude": 126.96927294830239, + "representativePriceAmount": 10000, + "representativePriceLabel": "여성커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-422-8327", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여성커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-704-3955", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "199c72ff3c9c007f83df", - "label": "한식뷔페", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2d69069fb639b3313249", - "label": "된장찌개", - "amount": 8000, + "id": "2a6806cfe6bdaa473094", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "834593138c60ccc553b0", - "label": "김치찌개", + "id": "dae61eb193097868a931", + "label": "남성커트", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "944c489bfd916641ff96", - "label": "불고기정식", + "id": "df71c1e95f69e5a712d6", + "label": "드라이", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -3351,29 +3330,22 @@ ], "history": [ { - "id": "199c72ff3c9c007f83df-history", - "label": "한식뷔페", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2d69069fb639b3313249-history", - "label": "된장찌개", - "amount": 8000, + "id": "2a6806cfe6bdaa473094-history", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "834593138c60ccc553b0-history", - "label": "김치찌개", + "id": "dae61eb193097868a931-history", + "label": "남성커트", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "944c489bfd916641ff96-history", - "label": "불고기정식", + "id": "df71c1e95f69e5a712d6-history", + "label": "드라이", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -3382,51 +3354,51 @@ "comments": [] }, { - "id": "goodprice-15357", - "name": "덕종국수", - "businessName": "덕종국수", - "categorySlug": "korean", - "address": "대구광역시 중구 약령길 53 (수동) 1층", - "district": "대구광역시 중구", - "latitude": 35.86868347395729, - "longitude": 128.5892390743561, - "representativePriceAmount": 8000, - "representativePriceLabel": "비빔밥", + "id": "goodprice-2986", + "name": "노르쇠핑", + "businessName": "노르쇠핑", + "categorySlug": "bakery", + "address": "울산광역시 중구 태화로 136 (태화동)", + "district": "울산광역시 중구", + "latitude": 35.5531564921762, + "longitude": 129.290936456527, + "representativePriceAmount": 1500, + "representativePriceLabel": "단팥빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-353-7971 / 영업시간: 월~토 11:00~21:00 정기휴무 매달 1번째 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵 1,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-267-5873 / 영업시간: 설 연휴 3일 외 연중무휴 09:00~22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "77acec879aa3eecca88e", - "label": "비빔밥", - "amount": 8000, + "id": "176cf145a2a97f7ef7a9", + "label": "단팥빵", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "12f0d028103646e50485", - "label": "오리들깨탕", - "amount": 8000, + "id": "d2f140054a89f3268c73", + "label": "슈크림빵", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "77acec879aa3eecca88e-history", - "label": "비빔밥", - "amount": 8000, + "id": "176cf145a2a97f7ef7a9-history", + "label": "단팥빵", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "12f0d028103646e50485-history", - "label": "오리들깨탕", - "amount": 8000, + "id": "d2f140054a89f3268c73-history", + "label": "슈크림빵", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3434,51 +3406,65 @@ "comments": [] }, { - "id": "goodprice-17975", - "name": "도리집", - "businessName": "도리집", - "categorySlug": "korean", - "address": "대구광역시 중구 달구벌대로 2109-34 (동성로3가) 1층", - "district": "대구광역시 중구", - "latitude": 35.86686640891391, - "longitude": 128.59398585931365, - "representativePriceAmount": 4900, - "representativePriceLabel": "까만도리밥(덮밥)", + "id": "goodprice-16650", + "name": "광명세탁", + "businessName": "광명세탁", + "categorySlug": "laundry", + "address": "강원특별자치도 춘천시 삭주로 27 (교동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.88154669495617, + "longitude": 127.73468581005257, + "representativePriceAmount": 6000, + "representativePriceLabel": "양복상의", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 까만도리밥(덮밥) 4,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-253-3062 / 영업시간: 월~금 11:30~20:00(14:50~16:30 브레이크타임) 매주 토, 일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복상의 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-252-6271", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f476dadcb2fd2aca1ed7", - "label": "까만도리밥(덮밥)", - "amount": 4900, + "id": "1a784509b2c55dc1ce18", + "label": "양복상의", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5a1b5911ed91d7aad70b", - "label": "빨간도리밥(덮밥)", - "amount": 5300, + "id": "8b2426d21428445f60cf", + "label": "양복하의", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "baa3c7b1c9cecf7fda97", + "label": "셔츠", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f476dadcb2fd2aca1ed7-history", - "label": "까만도리밥(덮밥)", - "amount": 4900, + "id": "1a784509b2c55dc1ce18-history", + "label": "양복상의", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5a1b5911ed91d7aad70b-history", - "label": "빨간도리밥(덮밥)", - "amount": 5300, + "id": "8b2426d21428445f60cf-history", + "label": "양복하의", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "baa3c7b1c9cecf7fda97-history", + "label": "셔츠", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3486,37 +3472,51 @@ "comments": [] }, { - "id": "goodprice-13117", - "name": "김윤식의 착한국수, 솥뚜껑삼겹살", - "businessName": "김윤식의 착한국수, 솥뚜껑삼겹살", + "id": "goodprice-15002", + "name": "스윗샐러드", + "businessName": "스윗샐러드", "categorySlug": "korean", - "address": "인천광역시 중구 운중로 8 (운남동) 2층", - "district": "인천광역시 중구", - "latitude": 37.49336872061384, - "longitude": 126.53441990901412, - "representativePriceAmount": 8000, - "representativePriceLabel": "국수+떡갈비", + "address": "서울특별시 종로구 종로1길 50 (중학동) 지하1층", + "district": "서울특별시 종로구", + "latitude": 37.57491239937121, + "longitude": 126.97896535083947, + "representativePriceAmount": 7900, + "representativePriceLabel": "버섯샐러드", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국수+떡갈비 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-255-9510", + "description": "구운 계란, 푸실리, 오이 피클, 할라피뇨, 통밀빵 등 매일 매일 다른 재료의 무료 토핑을 제공하고 있습니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-733-3225 / 영업시간: 영업시간 : 11:00-20:00 (휴게시간 14:30-16:30) 휴무일 : 주말 및 공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "166deb52fbf8bb762aaf", - "label": "국수+떡갈비", - "amount": 8000, + "id": "c1db80d47fa5fe7f6e16", + "label": "버섯샐러드", + "amount": 7900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f8cf42ca1c9bda7426b0", + "label": "닭가슴살샐러드", + "amount": 8900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "166deb52fbf8bb762aaf-history", - "label": "국수+떡갈비", - "amount": 8000, + "id": "c1db80d47fa5fe7f6e16-history", + "label": "버섯샐러드", + "amount": 7900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f8cf42ca1c9bda7426b0-history", + "label": "닭가슴살샐러드", + "amount": 8900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3524,37 +3524,51 @@ "comments": [] }, { - "id": "goodprice-14133", - "name": "다정가마솥순두부", - "businessName": "다정가마솥순두부", - "categorySlug": "korean", - "address": "인천광역시 중구 운중로 140-4 (중산동) 1층", - "district": "인천광역시 중구", - "latitude": 37.49373607272692, - "longitude": 126.54783653076029, - "representativePriceAmount": 9000, - "representativePriceLabel": "초당(백)순두부", + "id": "goodprice-740", + "name": "덤앤더머", + "businessName": "덤앤더머", + "categorySlug": "beauty", + "address": "서울특별시 성동구 사근동길 25-1 (사근동)", + "district": "서울특별시 성동구", + "latitude": 37.5611469523893, + "longitude": 127.043812856394, + "representativePriceAmount": 10000, + "representativePriceLabel": "미용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 초당(백)순두부 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1320-8254", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2292-9700 / 영업시간: 금 11:00-21:00 토 11:00-21:00 일 정기휴무(매주일요일) 월 정기휴무(매주월요일) 화 11:00-21:00 수 11:00-21:00 목 11:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0b45c52b799f7e195579", - "label": "초당(백)순두부", - "amount": 9000, + "id": "2b98d1fdafad7d1a284e", + "label": "미용료(커트)", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "65d84e60413bbe34d089", + "label": "컷 남성 컷", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0b45c52b799f7e195579-history", - "label": "초당(백)순두부", - "amount": 9000, + "id": "2b98d1fdafad7d1a284e-history", + "label": "미용료(커트)", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "65d84e60413bbe34d089-history", + "label": "컷 남성 컷", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3562,41 +3576,34 @@ "comments": [] }, { - "id": "goodprice-2223", - "name": "도래순", - "businessName": "도래순", - "categorySlug": "chinese", - "address": "인천광역시 중구 신포로15번길 68-1 1층(해안동2가)", - "district": "인천광역시 중구", - "latitude": 37.4724317342844, - "longitude": 126.621168040258, + "id": "goodprice-10200", + "name": "6000냥돌솥추어탕", + "businessName": "6000냥돌솥추어탕", + "categorySlug": "korean", + "address": "세종특별자치시 조치원읍 새내10길 61", + "district": "세종특별자치시 조치원읍", + "latitude": 36.6008005980251, + "longitude": 127.301683744225, "representativePriceAmount": 7000, - "representativePriceLabel": "짜장면", + "representativePriceLabel": "돌솥추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-766-3907 / 영업시간: 화~일 : 11:00~21:00 브레이크타임 : 15:00~17:00 정기휴무(월요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥추어탕 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-2133", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4e0f1c1c68dea7ed843a", - "label": "짜장면", + "id": "8caee87a41b8d7569d17", + "label": "돌솥추어탕", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "63f367f2dafd1d389dcc", - "label": "짬뽕", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "58eeb8364b1da73e2cdd", - "label": "오늘의 점심", + "id": "df13da9bfacdc2a6196d", + "label": "돈가스", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -3604,22 +3611,15 @@ ], "history": [ { - "id": "4e0f1c1c68dea7ed843a-history", - "label": "짜장면", + "id": "8caee87a41b8d7569d17-history", + "label": "돌솥추어탕", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "63f367f2dafd1d389dcc-history", - "label": "짬뽕", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "58eeb8364b1da73e2cdd-history", - "label": "오늘의 점심", + "id": "df13da9bfacdc2a6196d-history", + "label": "돈가스", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -3628,27 +3628,27 @@ "comments": [] }, { - "id": "goodprice-14638", - "name": "그냥집밥", - "businessName": "그냥집밥", - "categorySlug": "korean", - "address": "광주광역시 동구 서석로85번길 8-3 (대의동) 지하", - "district": "광주광역시 동구", - "latitude": 35.15002860036522, - "longitude": 126.9201698199041, + "id": "goodprice-4724", + "name": "고려미용실", + "businessName": "고려미용실", + "categorySlug": "beauty", + "address": "충청북도 청주시 서원구 모충로 98-1 (모충동)", + "district": "충청북도 청주시", + "latitude": 36.6277882283516, + "longitude": 127.474142701453, "representativePriceAmount": 8000, - "representativePriceLabel": "한식뷔페", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-2624 / 영업시간: 월-토 10:30~14:30 휴무일 : 일요일, 공휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-274-6207 / 영업시간: 09:00~15:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5c1fd68a2d19ba50b134", - "label": "한식뷔페", + "id": "d5a005a75f069902501b", + "label": "커트", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -3656,8 +3656,8 @@ ], "history": [ { - "id": "5c1fd68a2d19ba50b134-history", - "label": "한식뷔페", + "id": "d5a005a75f069902501b-history", + "label": "커트", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -3666,65 +3666,51 @@ "comments": [] }, { - "id": "goodprice-13743", - "name": "담양국수", - "businessName": "담양국수", - "categorySlug": "korean", - "address": "광주광역시 동구 증심사길30번길 28-3 (운림동) 1층", - "district": "광주광역시 동구", - "latitude": 35.132817322727675, - "longitude": 126.95774143856892, - "representativePriceAmount": 6000, - "representativePriceLabel": "멸치국수", + "id": "goodprice-943", + "name": "약속커피숍", + "businessName": "약속커피숍", + "categorySlug": "other-food", + "address": "서울특별시 종로구 종로 302 (창신동)", + "district": "서울특별시 종로구", + "latitude": 37.5716332944196, + "longitude": 127.01140072111, + "representativePriceAmount": 2000, + "representativePriceLabel": "맥심커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-226-1174 / 영업시간: 08:00-20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 맥심커피 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-764-1100", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c97ca460a18cc7d4bea2", - "label": "멸치국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "556e858b40484d9e0eef", - "label": "비빔국수", - "amount": 6000, + "id": "55f21ee37fad20742c81", + "label": "맥심커피", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d089b601fd9732f89d74", - "label": "파전", - "amount": 8000, + "id": "48f4faf835f12c5b1aca", + "label": "녹차", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c97ca460a18cc7d4bea2-history", - "label": "멸치국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "556e858b40484d9e0eef-history", - "label": "비빔국수", - "amount": 6000, + "id": "55f21ee37fad20742c81-history", + "label": "맥심커피", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d089b601fd9732f89d74-history", - "label": "파전", - "amount": 8000, + "id": "48f4faf835f12c5b1aca-history", + "label": "녹차", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3732,93 +3718,51 @@ "comments": [] }, { - "id": "goodprice-2258", - "name": "대왕김밥(대인동)", - "businessName": "대왕김밥(대인동)", - "categorySlug": "korean", - "address": "광주광역시 동구 구성로204번길 15-6 1층(대인동)", - "district": "광주광역시 동구", - "latitude": 35.1525929911284, - "longitude": 126.91613437943, - "representativePriceAmount": 3500, - "representativePriceLabel": "김밥", + "id": "goodprice-738", + "name": "백광컴퓨터크리닝", + "businessName": "백광컴퓨터크리닝", + "categorySlug": "laundry", + "address": "서울특별시 성동구 마조로 59 1층", + "district": "서울특별시 성동구", + "latitude": 37.5632719792507, + "longitude": 127.041494936359, + "representativePriceAmount": 6000, + "representativePriceLabel": "세탁료(정장한벌)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-529-3363 / 영업시간: 09:00-19:00 휴일 일요일, 명절", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 세탁료(정장한벌) 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2292-8310 / 영업시간: 일 : 정기휴무 월 ~ 금 : 8:30 ~20 :30 토 : 8:30 ~ 17:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "650638df6a128b277f01", - "label": "김밥", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "de42f31d1011f2b430fc", - "label": "라면", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0bb71c7ec045a64c6643", - "label": "햄야채볶음밥", + "id": "def170639373d610540c", + "label": "세탁료(정장한벌)", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "348116809e1e1ad778a4", - "label": "오므라이스", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e1b2077f665207815225", - "label": "제육덮밥", - "amount": 5000, + "id": "43295d36af51fc54b472", + "label": "와이셔츠", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "650638df6a128b277f01-history", - "label": "김밥", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "de42f31d1011f2b430fc-history", - "label": "라면", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0bb71c7ec045a64c6643-history", - "label": "햄야채볶음밥", + "id": "def170639373d610540c-history", + "label": "세탁료(정장한벌)", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "348116809e1e1ad778a4-history", - "label": "오므라이스", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e1b2077f665207815225-history", - "label": "제육덮밥", - "amount": 5000, + "id": "43295d36af51fc54b472-history", + "label": "와이셔츠", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -3826,177 +3770,51 @@ "comments": [] }, { - "id": "goodprice-2562", - "name": "경성화로", - "businessName": "경성화로", - "categorySlug": "korean", - "address": "대전광역시 동구 동서대로 1748번길 152 (가양동)", - "district": "대전광역시 동구", - "latitude": 36.3488134723206, - "longitude": 127.450323327516, - "representativePriceAmount": 7000, - "representativePriceLabel": "삼겹살(150g)", + "id": "goodprice-19179", + "name": "광진손짜장", + "businessName": "광진손짜장", + "categorySlug": "chinese", + "address": "세종특별자치시 조치원읍 새내10길 27 1층", + "district": "세종특별자치시 조치원읍", + "latitude": 36.60059049054393, + "longitude": 127.29972619189017, + "representativePriceAmount": 3000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살(150g) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-632-1087 / 영업시간: 16:00 ~ 23:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-865-3657", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "23c58d26998b6de36ccd", - "label": "삼겹살(150g)", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6677d6e7241b4f40c371", - "label": "갈매기살(150g)", - "amount": 7900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bea4c467b06a7eebc475", - "label": "김치말이국수(냉/온)", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5e869f27b14e5558b43d", - "label": "껍데기", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "37ab8c34ea0389c8587a", - "label": "꼬들살((150g)", - "amount": 8900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "705d66c7eba21f12fc8f", - "label": "두툼삼겹살(150g)", - "amount": 6500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "11b65af72596a6f64404", - "label": "목살(150g)", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1626153ab556d897affa", - "label": "물냉면", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "71f331f42ed424bf7aca", - "label": "비빔냉면", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "29de8b31534459d7077a", - "label": "새우롤", - "amount": 6800, + "id": "7eb87fba685d5dc64049", + "label": "짜장면", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "dfa28d1c5775f9f16721", - "label": "참숯초벌삼겹살(150g)", - "amount": 7000, + "id": "207dd0c797e556814196", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "23c58d26998b6de36ccd-history", - "label": "삼겹살(150g)", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6677d6e7241b4f40c371-history", - "label": "갈매기살(150g)", - "amount": 7900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bea4c467b06a7eebc475-history", - "label": "김치말이국수(냉/온)", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5e869f27b14e5558b43d-history", - "label": "껍데기", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "37ab8c34ea0389c8587a-history", - "label": "꼬들살((150g)", - "amount": 8900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "705d66c7eba21f12fc8f-history", - "label": "두툼삼겹살(150g)", - "amount": 6500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "11b65af72596a6f64404-history", - "label": "목살(150g)", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1626153ab556d897affa-history", - "label": "물냉면", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "71f331f42ed424bf7aca-history", - "label": "비빔냉면", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "29de8b31534459d7077a-history", - "label": "새우롤", - "amount": 6800, + "id": "7eb87fba685d5dc64049-history", + "label": "짜장면", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "dfa28d1c5775f9f16721-history", - "label": "참숯초벌삼겹살(150g)", - "amount": 7000, + "id": "207dd0c797e556814196-history", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4004,27 +3822,27 @@ "comments": [] }, { - "id": "goodprice-2527", - "name": "곽은아미용실", - "businessName": "곽은아미용실", + "id": "goodprice-15156", + "name": "까망헤어필", + "businessName": "까망헤어필", "categorySlug": "beauty", - "address": "대전광역시 동구 새울로 100 (용운동)", - "district": "대전광역시 동구", - "latitude": 36.3271167002537, - "longitude": 127.461826711325, + "address": "전라남도 목포시 산정로79번길 15-1 (산정동) 까망헤어필", + "district": "전라남도 목포시", + "latitude": 34.795406737074515, + "longitude": 126.39113623218255, "representativePriceAmount": 10000, - "representativePriceLabel": "커트(여성 일반)", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(여성 일반) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-272-4478 / 영업시간: 09:00 ~ 19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-277-3173", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c7f90b0f60740869361a", - "label": "커트(여성 일반)", + "id": "f05825a65b8f9b868b16", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -4032,8 +3850,8 @@ ], "history": [ { - "id": "c7f90b0f60740869361a-history", - "label": "커트(여성 일반)", + "id": "f05825a65b8f9b868b16-history", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -4042,37 +3860,51 @@ "comments": [] }, { - "id": "goodprice-18955", - "name": "국민추어탕", - "businessName": "국민추어탕", + "id": "goodprice-17558", + "name": "완판생국수", + "businessName": "완판생국수", "categorySlug": "korean", - "address": "대전광역시 동구 옥천로 52-2 (신흥동) 1층", - "district": "대전광역시 동구", - "latitude": 36.31971954491453, - "longitude": 127.44667251762813, - "representativePriceAmount": 9000, - "representativePriceLabel": "추어탕+돌솥밥", + "address": "서울특별시 종로구 종로 258 (종로6가) 1층", + "district": "서울특별시 종로구", + "latitude": 37.5706572089172, + "longitude": 127.00647971676864, + "representativePriceAmount": 5500, + "representativePriceLabel": "멸치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕+돌솥밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-282-1585 / 영업시간: 11:00~20:30 / 브레이크타임: 14:30~17:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2272-0066", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4c3af4162c248af5fe89", - "label": "추어탕+돌솥밥", - "amount": 9000, + "id": "eb2e7363c89139327d93", + "label": "멸치국수", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "883e38c7ef88f2392f15", + "label": "콩국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4c3af4162c248af5fe89-history", - "label": "추어탕+돌솥밥", - "amount": 9000, + "id": "eb2e7363c89139327d93-history", + "label": "멸치국수", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "883e38c7ef88f2392f15-history", + "label": "콩국수", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4080,93 +3912,89 @@ "comments": [] }, { - "id": "goodprice-2544", - "name": "김화칼국수", - "businessName": "김화칼국수", - "categorySlug": "korean", - "address": "대전광역시 동구 중앙로 203번길 28 (중동)", - "district": "대전광역시 동구", - "latitude": 36.332041975521, - "longitude": 127.431018789434, + "id": "goodprice-739", + "name": "벽산세탁", + "businessName": "벽산세탁", + "categorySlug": "laundry", + "address": "서울특별시 성동구 금호로 100 벽산 (아) 상가 6층", + "district": "서울특별시 성동구", + "latitude": 37.5545314695033, + "longitude": 127.026186636459, "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "representativePriceLabel": "세탁료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-221-7594 / 영업시간: 09:00 ~ 20:00 / 매주 일요일 정기 후뮤 / 브레이크타임 14:30 ~ 16:00 / 라스트오더 17:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 세탁료 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2298-6675 / 영업시간: 일 : 정기휴무 월 ~ 토 : 8:00 ~20 :00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7cb413361b5ab7c6b822", - "label": "칼국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8917affda81918473e5a", - "label": "선지국밥", + "id": "9e50a989ffcde394695d", + "label": "세탁료", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "51f3de5f30416fa27743", - "label": "콩국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "19f1878ff7a60db94f0d", - "label": "비빔국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e8e386a72ca492f41def", - "label": "수육(小)", - "amount": 10000, + "id": "c196b0e2961c58dff8ab", + "label": "와이셔츠", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7cb413361b5ab7c6b822-history", - "label": "칼국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8917affda81918473e5a-history", - "label": "선지국밥", + "id": "9e50a989ffcde394695d-history", + "label": "세탁료", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "51f3de5f30416fa27743-history", - "label": "콩국수", - "amount": 7000, + "id": "c196b0e2961c58dff8ab-history", + "label": "와이셔츠", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-10192", + "name": "꼬막짬뽕", + "businessName": "꼬막짬뽕", + "categorySlug": "chinese", + "address": "세종특별자치시 도움3로 105-6 2층", + "district": "세종특별자치시 도움3로", + "latitude": 36.5045900450719, + "longitude": 127.249051704513, + "representativePriceAmount": 5500, + "representativePriceLabel": "유니자장", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 유니자장 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-865-0655", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "19f1878ff7a60db94f0d-history", - "label": "비빔국수", - "amount": 7000, + "id": "1d8570cb6f7cf7ae659f", + "label": "유니자장", + "amount": 5500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "e8e386a72ca492f41def-history", - "label": "수육(小)", - "amount": 10000, + "id": "1d8570cb6f7cf7ae659f-history", + "label": "유니자장", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4174,34 +4002,27 @@ "comments": [] }, { - "id": "goodprice-11675", - "name": "다원식당", - "businessName": "다원식당", - "categorySlug": "korean", - "address": "울산광역시 중구 옥교6길 19 (옥교동)", - "district": "울산광역시 중구", - "latitude": 35.5541946842973, - "longitude": 129.327531124694, - "representativePriceAmount": 8000, - "representativePriceLabel": "비빔밥", + "id": "goodprice-6320", + "name": "걸앤맨", + "businessName": "걸앤맨", + "categorySlug": "beauty", + "address": "경상북도 포항시 남구 축항로72번길 14", + "district": "경상북도 포항시", + "latitude": 36.0285256046441, + "longitude": 129.376479161194, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-211-4068", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-272-1533 / 영업시간: 월~금", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "56f4cc2738e1a554420c", - "label": "비빔밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3398bddac217b7999209", - "label": "삼겹살(120g)", + "id": "5485b19bbdee1f16101a", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -4209,15 +4030,8 @@ ], "history": [ { - "id": "56f4cc2738e1a554420c-history", - "label": "비빔밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3398bddac217b7999209-history", - "label": "삼겹살(120g)", + "id": "5485b19bbdee1f16101a-history", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -4226,51 +4040,191 @@ "comments": [] }, { - "id": "goodprice-16555", - "name": "대가국밥", - "businessName": "대가국밥", - "categorySlug": "korean", - "address": "울산광역시 중구 화진길 11-4 (태화동) 1층", - "district": "울산광역시 중구", - "latitude": 35.55523350485414, - "longitude": 129.3085469323432, - "representativePriceAmount": 9000, - "representativePriceLabel": "돼지국밥", + "id": "goodprice-944", + "name": "왕관커피숍", + "businessName": "왕관커피숍", + "categorySlug": "other-food", + "address": "서울특별시 종로구 종로 222 (종로5가)", + "district": "서울특별시 종로구", + "latitude": 37.570760396587, + "longitude": 127.002357657235, + "representativePriceAmount": 2000, + "representativePriceLabel": "커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지국밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-212-2988", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2266-8365 / 영업시간: 09:00~18:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3353aeed703c363f87af", - "label": "돼지국밥", - "amount": 9000, + "id": "589b50ab85c3d3b1339b", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "488230157473ef834fb6", - "label": "내장국밥", - "amount": 9000, + "id": "a13c9d3d8da8bd238191", + "label": "국산차", + "amount": 2000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0da9e5fac80ae607b184", + "label": "냉커피", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4051288f2212f7110ff5", + "label": "대추차", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9681f1d0f0ab1e0a2686", + "label": "둥굴레차", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "288da99611c4d647cc83", + "label": "레몬차", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f36a175292c51d3eec5b", + "label": "마차", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "925a6a927ae2b424a2ca", + "label": "매실차", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ca29ecf06b2079fcab10", + "label": "쌍화차", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "7ad3a58569c8a7f9eae4", + "label": "오미자", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5ad15331f58b4136fcd8", + "label": "율무차", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d1e4f48f43afac440ec4", + "label": "칡차", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3353aeed703c363f87af-history", - "label": "돼지국밥", - "amount": 9000, + "id": "589b50ab85c3d3b1339b-history", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "488230157473ef834fb6-history", - "label": "내장국밥", - "amount": 9000, + "id": "a13c9d3d8da8bd238191-history", + "label": "국산차", + "amount": 2000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0da9e5fac80ae607b184-history", + "label": "냉커피", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4051288f2212f7110ff5-history", + "label": "대추차", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9681f1d0f0ab1e0a2686-history", + "label": "둥굴레차", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "288da99611c4d647cc83-history", + "label": "레몬차", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f36a175292c51d3eec5b-history", + "label": "마차", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "925a6a927ae2b424a2ca-history", + "label": "매실차", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ca29ecf06b2079fcab10-history", + "label": "쌍화차", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7ad3a58569c8a7f9eae4-history", + "label": "오미자", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "5ad15331f58b4136fcd8-history", + "label": "율무차", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d1e4f48f43afac440ec4-history", + "label": "칡차", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4278,51 +4232,37 @@ "comments": [] }, { - "id": "goodprice-19374", - "name": "돈대박 복산점", - "businessName": "돈대박 복산점", - "categorySlug": "korean", - "address": "울산광역시 중구 계변로 92-1 (복산동) 돈대박복산점", - "district": "울산광역시 중구", - "latitude": 35.563484990060665, - "longitude": 129.3294908791611, - "representativePriceAmount": 3500, - "representativePriceLabel": "대패삼겹살(100g)", + "id": "goodprice-741", + "name": "수주머리나라", + "businessName": "수주머리나라", + "categorySlug": "beauty", + "address": "서울특별시 성동구 광나루로 11길 9-1 (송정동)", + "district": "서울특별시 성동구", + "latitude": 37.5491222087025, + "longitude": 127.065809609058, + "representativePriceAmount": 10000, + "representativePriceLabel": "미용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 대패삼겹살(100g) 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-282-3313 / 영업시간: 16:00~24:00(매주 화요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-466-3882 / 영업시간: 정기휴무(매주일요일), 09:00~21:00 월~토", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "62794c4b1abdfb6fa747", - "label": "대패삼겹살(100g)", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a6c43cd15ddbbcd918b6", - "label": "생삼겹살(120g)", - "amount": 6900, + "id": "94049edb7ad26a23b5be", + "label": "미용료(커트)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "62794c4b1abdfb6fa747-history", - "label": "대패삼겹살(100g)", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a6c43cd15ddbbcd918b6-history", - "label": "생삼겹살(120g)", - "amount": 6900, + "id": "94049edb7ad26a23b5be-history", + "label": "미용료(커트)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4330,41 +4270,48 @@ "comments": [] }, { - "id": "goodprice-10182", - "name": "농부의한우", - "businessName": "농부의한우", + "id": "goodprice-14932", + "name": "24시 전주국밥(콩마루)", + "businessName": "24시 전주국밥(콩마루)", "categorySlug": "korean", - "address": "세종특별자치시 금남면 세종로 470 1층", - "district": "세종특별자치시 금남면", - "latitude": 36.4608221175864, - "longitude": 127.27888584, - "representativePriceAmount": 7000, - "representativePriceLabel": "국밥", + "address": "경기도 수원시 영통구 청명남로 46 (영통동) 1층", + "district": "경기도 수원시", + "latitude": 37.25344290305785, + "longitude": 127.0765394153501, + "representativePriceAmount": 6000, + "representativePriceLabel": "콩나물국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-866-1181", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-202-3324 / 영업시간: 06:30~22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f9a48487aba9bb17d13b", - "label": "국밥", - "amount": 7000, + "id": "5d12ac001cdb365a29d6", + "label": "콩나물국밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7b33ed6903d1c2a750bf", - "label": "선지국밥", - "amount": 7000, + "id": "1f1a95d628d95c907349", + "label": "콩나물비빔밥", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "96d800e86310b7ae4e36", - "label": "맑은탕", + "id": "f1d408248dc704abc628", + "label": "돌솥밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "53302cdfb9883c71c963", + "label": "김치콩나물국밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -4372,22 +4319,29 @@ ], "history": [ { - "id": "f9a48487aba9bb17d13b-history", - "label": "국밥", - "amount": 7000, + "id": "5d12ac001cdb365a29d6-history", + "label": "콩나물국밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7b33ed6903d1c2a750bf-history", - "label": "선지국밥", - "amount": 7000, + "id": "1f1a95d628d95c907349-history", + "label": "콩나물비빔밥", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "96d800e86310b7ae4e36-history", - "label": "맑은탕", + "id": "f1d408248dc704abc628-history", + "label": "돌솥밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "53302cdfb9883c71c963-history", + "label": "김치콩나물국밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -4396,34 +4350,34 @@ "comments": [] }, { - "id": "goodprice-10167", - "name": "대신식당", - "businessName": "대신식당", - "categorySlug": "korean", - "address": "세종특별자치시 연서면 당산로 349", - "district": "세종특별자치시 연서면", - "latitude": 36.562836822603, - "longitude": 127.282636054749, - "representativePriceAmount": 8000, - "representativePriceLabel": "김치찌개", + "id": "goodprice-6321", + "name": "경민헤어샵", + "businessName": "경민헤어샵", + "categorySlug": "beauty", + "address": "경상북도 포항시 남구 대해로79번길 27", + "district": "경상북도 포항시", + "latitude": 36.0254310711759, + "longitude": 129.36329181671, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-7127", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 일요일휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9bbb3b4aea0264105991", - "label": "김치찌개", - "amount": 8000, + "id": "700ad9548558ff2bafe2", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7bb96d9dae19066c425a", - "label": "동태찌개", + "id": "fca0f6b9f2a7589534df", + "label": "기타 여자커트", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -4431,15 +4385,15 @@ ], "history": [ { - "id": "9bbb3b4aea0264105991-history", - "label": "김치찌개", - "amount": 8000, + "id": "700ad9548558ff2bafe2-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7bb96d9dae19066c425a-history", - "label": "동태찌개", + "id": "fca0f6b9f2a7589534df-history", + "label": "기타 여자커트", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -4448,51 +4402,51 @@ "comments": [] }, { - "id": "goodprice-10185", - "name": "도담얼큰이 칼국수", - "businessName": "도담얼큰이 칼국수", - "categorySlug": "korean", - "address": "세종특별자치시 보듬4로 9 1동 2층 29호(도담동 카림애비뉴)", - "district": "세종특별자치시 보듬4로", - "latitude": 36.5131131389938, - "longitude": 127.260704077872, - "representativePriceAmount": 5900, - "representativePriceLabel": "칼국수", + "id": "goodprice-19246", + "name": "유로시안커피전문점", + "businessName": "유로시안커피전문점", + "categorySlug": "other-food", + "address": "서울특별시 종로구 종로40길 4 (종로6가) 1층", + "district": "서울특별시 종로구", + "latitude": 37.57075442433323, + "longitude": 127.00654859833715, + "representativePriceAmount": 1500, + "representativePriceLabel": "아메리카노(16oz) 포장", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 5,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-0309", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노(16oz) 포장 1,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2268-1007", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "93b6fab347968a6b99ee", - "label": "칼국수", - "amount": 5900, + "id": "2c591da9d2aa85636432", + "label": "아메리카노(16oz) 포장", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e3be1a0beb6e16c0ccba", - "label": "유부초밥", - "amount": 4500, + "id": "7b6b4b24806a785a4c65", + "label": "아메리카노(1L) 포장", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "93b6fab347968a6b99ee-history", - "label": "칼국수", - "amount": 5900, + "id": "2c591da9d2aa85636432-history", + "label": "아메리카노(16oz) 포장", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e3be1a0beb6e16c0ccba-history", - "label": "유부초밥", - "amount": 4500, + "id": "7b6b4b24806a785a4c65-history", + "label": "아메리카노(1L) 포장", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4500,51 +4454,37 @@ "comments": [] }, { - "id": "goodprice-17109", - "name": "가치있는밥상", - "businessName": "가치있는밥상", - "categorySlug": "korean", - "address": "경기도 수원시 영통구 월드컵로179번길 14-2 (원천동) 1층", - "district": "경기도 수원시", - "latitude": 37.27819928647353, - "longitude": 127.0453792190971, - "representativePriceAmount": 8000, - "representativePriceLabel": "김치찌개", + "id": "goodprice-742", + "name": "아씨머리방", + "businessName": "아씨머리방", + "categorySlug": "beauty", + "address": "서울특별시 성동구 고산자로8길 23-1 1층", + "district": "서울특별시 성동구", + "latitude": 37.5582910247082, + "longitude": 127.036506811635, + "representativePriceAmount": 5000, + "representativePriceLabel": "미용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-221-5581 / 영업시간: 월~금 06:0~21:00/토06:00~20:00/일09:00~20:00 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2291-2874 / 영업시간: 일 : 정기휴무 월 ~ 토 : 9:00 ~19 :00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b448ef56584d276c466b", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d4a5ff92cb826b567a96", - "label": "청국장", - "amount": 8000, + "id": "d087719efc3dd5952b0f", + "label": "미용료(커트)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b448ef56584d276c466b-history", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d4a5ff92cb826b567a96-history", - "label": "청국장", - "amount": 8000, + "id": "d087719efc3dd5952b0f-history", + "label": "미용료(커트)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4552,37 +4492,37 @@ "comments": [] }, { - "id": "goodprice-13884", - "name": "강릉장칼국수", - "businessName": "강릉장칼국수", - "categorySlug": "korean", - "address": "경기도 수원시 팔달구 수원천로 314 (남수동) 1층", + "id": "goodprice-16372", + "name": "Bestie(카페베스티)", + "businessName": "Bestie(카페베스티)", + "categorySlug": "other-food", + "address": "경기도 수원시 권선구 권광로 87 (권선동) 2층", "district": "경기도 수원시", - "latitude": 37.28145528956532, - "longitude": 127.01857508520432, - "representativePriceAmount": 8000, - "representativePriceLabel": "장칼국수", + "latitude": 37.255736139357296, + "longitude": 127.02931494445001, + "representativePriceAmount": 2500, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장칼국수 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-241-7959 / 영업시간: 11:00~20:00/월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-221-2034 / 영업시간: 10:00~19:00 매주일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "df9def7cafee662de23d", - "label": "장칼국수", - "amount": 8000, + "id": "95bb42015d456e08b7ed", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "df9def7cafee662de23d-history", - "label": "장칼국수", - "amount": 8000, + "id": "95bb42015d456e08b7ed-history", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4590,37 +4530,51 @@ "comments": [] }, { - "id": "goodprice-4338", - "name": "개성시대미용실", - "businessName": "개성시대미용실", + "id": "goodprice-6322", + "name": "경아미용실", + "businessName": "경아미용실", "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 춘천로68번길 10 (효자동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8700600426461, - "longitude": 127.725474230628, - "representativePriceAmount": 8000, + "address": "경상북도 포항시 남구 송림로 61", + "district": "경상북도 포항시", + "latitude": 36.0352517105272, + "longitude": 129.374922321202, + "representativePriceAmount": 7000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-256-9304", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-247-4573 / 영업시간: 09시~18시 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "617566df0d93ea81d80a", + "id": "31fe6dcc868ed7289379", "label": "커트", - "amount": 8000, + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9c20aefc22d461ac9c6d", + "label": "기타 성인여자커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "617566df0d93ea81d80a-history", + "id": "31fe6dcc868ed7289379-history", "label": "커트", - "amount": 8000, + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9c20aefc22d461ac9c6d-history", + "label": "기타 성인여자커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4628,64 +4582,74 @@ "comments": [] }, { - "id": "goodprice-4375", - "name": "골목손두부", - "businessName": "골목손두부", + "id": "goodprice-19244", + "name": "을밀대 (소문난국밥전문)", + "businessName": "을밀대 (소문난국밥전문)", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 공지로 439번길 16-4 (근화동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8726486894719, - "longitude": 127.719572641824, - "representativePriceAmount": 8000, - "representativePriceLabel": "순두부", + "address": "서울특별시 종로구 수표로 131 (낙원동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.572493575407705, + "longitude": 126.98826091182536, + "representativePriceAmount": 3000, + "representativePriceLabel": "우거지해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-256-6259 / 영업시간: 11:00 - 16:00 라스트오더 15:00 매주 일요일 정기휴뮤", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우거지해장국 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-742-1633 / 영업시간: 04:00-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "24c63ceed7b14d171816", - "label": "순두부", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f8dfeb360bfbc417291d", - "label": "비지찌개(2인이상)", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "330539baa060891944b0", - "label": "청국장", - "amount": 8000, + "id": "1127911d1e95b303ee81", + "label": "우거지해장국", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "24c63ceed7b14d171816-history", - "label": "순두부", - "amount": 8000, + "id": "1127911d1e95b303ee81-history", + "label": "우거지해장국", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-744", + "name": "주노헤어숍", + "businessName": "주노헤어숍", + "categorySlug": "beauty", + "address": "서울특별시 성동구 왕십리로24길 13-1 .", + "district": "서울특별시 성동구", + "latitude": 37.5637471846589, + "longitude": 127.034117063401, + "representativePriceAmount": 8000, + "representativePriceLabel": "미용료(커트)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2298-3546 / 영업시간: 매주목요일 휴무 09:30~20:30", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "f8dfeb360bfbc417291d-history", - "label": "비지찌개(2인이상)", + "id": "4dda7792e9e1b6927d88", + "label": "미용료(커트)", "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "330539baa060891944b0-history", - "label": "청국장", + "id": "4dda7792e9e1b6927d88-history", + "label": "미용료(커트)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -4694,51 +4658,37 @@ "comments": [] }, { - "id": "goodprice-4368", - "name": "곱돌생삼겹살", - "businessName": "곱돌생삼겹살", + "id": "goodprice-15775", + "name": "2교시간식시간", + "businessName": "2교시간식시간", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 백령로138번길 55 (효자동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8731172068198, - "longitude": 127.745471505129, - "representativePriceAmount": 10000, - "representativePriceLabel": "생삼겹살(캐나다)", + "address": "충청북도 청주시 서원구 서원남로 62 (모충동) 1층", + "district": "충청북도 청주시", + "latitude": 36.622448560220946, + "longitude": 127.48123556595677, + "representativePriceAmount": 9000, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생삼겹살(캐나다) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-4241 / 영업시간: 11:00-24:00 브레이크타임 14:00-16:00 매달 2,4번째 일요일 정기 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-288-7473", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2a17d71522c30fe71a0f", - "label": "생삼겹살(캐나다)", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ce00d6f3c6b61e86002f", - "label": "생목살(캐나다)", - "amount": 10000, + "id": "03afe48b29e4cbc95127", + "label": "돈가스", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2a17d71522c30fe71a0f-history", - "label": "생삼겹살(캐나다)", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ce00d6f3c6b61e86002f-history", - "label": "생목살(캐나다)", - "amount": 10000, + "id": "03afe48b29e4cbc95127-history", + "label": "돈가스", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4746,65 +4696,37 @@ "comments": [] }, { - "id": "goodprice-4679", - "name": "가든미용실", - "businessName": "가든미용실", + "id": "goodprice-6427", + "name": "경희미용실", + "businessName": "경희미용실", "categorySlug": "beauty", - "address": "충청북도 청주시 상당구 청남로2197번길 12 (석교동)", - "district": "충청북도 청주시", - "latitude": 36.6278271128724, - "longitude": 127.490164264559, - "representativePriceAmount": 6000, + "address": "경상북도 포항시 북구 서동로47번길 25-4 1층(덕수동)", + "district": "경상북도 포항시", + "latitude": 36.0433237553854, + "longitude": 129.364506666177, + "representativePriceAmount": 5000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-223-8097 / 영업시간: 매일 08:00-20:00 ※ 매주 셋째주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 9시30분~17시 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4d68936f48655a532de8", + "id": "29322a23a4fce53c70d1", "label": "커트", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "fcccfbd8443bf06caee3", - "label": "염색", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c59347fc470a4c1daa6f", - "label": "염색 염색", - "amount": 10000, + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4d68936f48655a532de8-history", + "id": "29322a23a4fce53c70d1-history", "label": "커트", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "fcccfbd8443bf06caee3-history", - "label": "염색", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c59347fc470a4c1daa6f-history", - "label": "염색 염색", - "amount": 10000, + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4812,37 +4734,37 @@ "comments": [] }, { - "id": "goodprice-15768", - "name": "가이오청년밥상", - "businessName": "가이오청년밥상", + "id": "goodprice-19061", + "name": "이모네감자탕", + "businessName": "이모네감자탕", "categorySlug": "korean", - "address": "충청북도 청주시 서원구 사직대로164번길 27 (사창동) 1층", - "district": "충청북도 청주시", - "latitude": 36.6339341047818, - "longitude": 127.46555600261848, - "representativePriceAmount": 3000, - "representativePriceLabel": "김치찌개", + "address": "서울특별시 종로구 새문안로9길 29-3 (당주동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.571272473253565, + "longitude": 126.97522954478573, + "representativePriceAmount": 9000, + "representativePriceLabel": "뼈해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-271-1009", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-733-7314", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dca331fc13a1e8cd89f3", - "label": "김치찌개", - "amount": 3000, + "id": "40a48551f039f2610793", + "label": "뼈해장국", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dca331fc13a1e8cd89f3-history", - "label": "김치찌개", - "amount": 3000, + "id": "40a48551f039f2610793-history", + "label": "뼈해장국", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4850,34 +4772,27 @@ "comments": [] }, { - "id": "goodprice-4742", - "name": "감촌삼겹살", - "businessName": "감촌삼겹살", - "categorySlug": "korean", - "address": "충청북도 청주시 청원구 안덕벌로39번길 43-1 (내덕동)", - "district": "충청북도 청주시", - "latitude": 36.6591837012203, - "longitude": 127.491676959315, + "id": "goodprice-745", + "name": "채미용실", + "businessName": "채미용실", + "categorySlug": "beauty", + "address": "서울특별시 성동구 용답중앙13길 14 .", + "district": "서울특별시 성동구", + "latitude": 37.565276022281, + "longitude": 127.053075089282, "representativePriceAmount": 10000, - "representativePriceLabel": "생삼겹살(180g)", + "representativePriceLabel": "미용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생삼겹살(180g) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-211-2472 / 영업시간: 매일 17:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2247-0471 / 영업시간: 특별한 시간없이 운영", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f158b74b2231eca7acf3", - "label": "생삼겹살(180g)", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5ad8f96978603127ec5c", - "label": "생목살(180g)", + "id": "5cb74df9557b299db844", + "label": "미용료(커트)", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -4885,15 +4800,8 @@ ], "history": [ { - "id": "f158b74b2231eca7acf3-history", - "label": "생삼겹살(180g)", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5ad8f96978603127ec5c-history", - "label": "생목살(180g)", + "id": "5cb74df9557b299db844-history", + "label": "미용료(커트)", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -4902,79 +4810,65 @@ "comments": [] }, { - "id": "goodprice-4708", - "name": "개미돈까스", - "businessName": "개미돈까스", - "categorySlug": "korean", - "address": "충청북도 청주시 상당구 사직대로361번길 54-11 (북문로2가)", + "id": "goodprice-4736", + "name": "357짜장 짬뽕", + "businessName": "357짜장 짬뽕", + "categorySlug": "chinese", + "address": "충청북도 청주시 청원구 내덕로 19 1층(내덕동)", "district": "충청북도 청주시", - "latitude": 36.6394461100471, - "longitude": 127.487984622146, - "representativePriceAmount": 8000, - "representativePriceLabel": "돈가스", + "latitude": 36.6565710804677, + "longitude": 127.482796815455, + "representativePriceAmount": 5000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-223-7456 / 영업시간: 매일 11:00-19:30 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-225-3357 / 영업시간: 매일 17:00-05:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bcb8c66bf0a1b5fe1b06", - "label": "돈가스", - "amount": 8000, + "id": "fbb8fd31377f5efb6683", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "28c0447ecc140114140c", - "label": "김치볶음밥", + "id": "c8364329a9f59fa313d3", + "label": "짬뽕", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "65844b4bf0ab980e4165", - "label": "셋트메뉴", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "581da7556f4a4ae89388", - "label": "돈까스", - "amount": 8000, + "id": "bf34a6fe2a9ec1834f76", + "label": "짬 뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bcb8c66bf0a1b5fe1b06-history", - "label": "돈가스", - "amount": 8000, + "id": "fbb8fd31377f5efb6683-history", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "28c0447ecc140114140c-history", - "label": "김치볶음밥", + "id": "c8364329a9f59fa313d3-history", + "label": "짬뽕", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "65844b4bf0ab980e4165-history", - "label": "셋트메뉴", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "581da7556f4a4ae89388-history", - "label": "돈까스", - "amount": 8000, + "id": "bf34a6fe2a9ec1834f76-history", + "label": "짬 뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -4982,65 +4876,51 @@ "comments": [] }, { - "id": "goodprice-11028", - "name": "겨자씨까페", - "businessName": "겨자씨까페", - "categorySlug": "other-food", - "address": "충청남도 천안시 동남구 사직로 10-6 (사직동)", - "district": "충청남도 천안시", - "latitude": 36.8006603819216, - "longitude": 127.150044275946, - "representativePriceAmount": 2000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-14292", + "name": "김영이헤어모드", + "businessName": "김영이헤어모드", + "categorySlug": "beauty", + "address": "경상남도 창원시 진해구 돌리로10번길 25 (석동, 유일수정빌라) 1층", + "district": "경상남도 창원시", + "latitude": 35.15791820070982, + "longitude": 128.7029593955796, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-555-0738 / 영업시간: 09:30~17:30 명절휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-543-4053", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "da0270c422e8f3e55436", - "label": "아메리카노", - "amount": 2000, + "id": "300aaa243e3de4332da2", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "81fc55ca88578e0a5d68", - "label": "카페라떼", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8eb4692b74d569b152bf", - "label": "카페모카", - "amount": 3500, + "id": "04456398c23e2c23c7be", + "label": "청소년커트", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "da0270c422e8f3e55436-history", - "label": "아메리카노", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "81fc55ca88578e0a5d68-history", - "label": "카페라떼", - "amount": 3000, + "id": "300aaa243e3de4332da2-history", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8eb4692b74d569b152bf-history", - "label": "카페모카", - "amount": 3500, + "id": "04456398c23e2c23c7be-history", + "label": "청소년커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5048,51 +4928,65 @@ "comments": [] }, { - "id": "goodprice-11409", - "name": "경북당", - "businessName": "경북당", + "id": "goodprice-955", + "name": "인사동칼국수", + "businessName": "인사동칼국수", "categorySlug": "korean", - "address": "충청남도 천안시 동남구 병천면 아우내장터2길 46", - "district": "충청남도 천안시", - "latitude": 36.7626220651971, - "longitude": 127.297917324637, - "representativePriceAmount": 7000, + "address": "서울특별시 종로구 인사동5길 25 1층", + "district": "서울특별시 종로구", + "latitude": 37.5720973140597, + "longitude": 126.985392406484, + "representativePriceAmount": 7500, "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-561-4133 / 영업시간: 10:00~15:00 일요일 휴무(병천장날 제외)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-737-1151 / 영업시간: 월~금 07:00-19:00 토, 10:00~15:00 일요일,공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2f7d99d7436e543b01e4", + "id": "db61cd965159e52c382c", "label": "칼국수", - "amount": 7000, + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "723ba712fff6f652776a", - "label": "콩국수", - "amount": 8000, + "id": "f79f357ac590e0446996", + "label": "된장찌개", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f686f6d5824171628bb7", + "label": "순두부", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2f7d99d7436e543b01e4-history", + "id": "db61cd965159e52c382c-history", "label": "칼국수", - "amount": 7000, + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "723ba712fff6f652776a-history", - "label": "콩국수", - "amount": 8000, + "id": "f79f357ac590e0446996-history", + "label": "된장찌개", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f686f6d5824171628bb7-history", + "label": "순두부", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5100,34 +4994,34 @@ "comments": [] }, { - "id": "goodprice-16877", - "name": "경자네칼국수", - "businessName": "경자네칼국수", - "categorySlug": "korean", - "address": "충청남도 천안시 서북구 월봉5길 7 (쌍용동) 102호", - "district": "충청남도 천안시", - "latitude": 36.790593294551826, - "longitude": 127.11713150353609, - "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "id": "goodprice-248", + "name": "그린세탁", + "businessName": "그린세탁", + "categorySlug": "laundry", + "address": "서울특별시 광진구 뚝섬로54길 57 (자양동)", + "district": "서울특별시 광진구", + "latitude": 37.5291163464876, + "longitude": 127.079923539429, + "representativePriceAmount": 4000, + "representativePriceLabel": "의복수선료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-578-7676 / 영업시간: 영업시간 10:00~22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 의복수선료 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-456-8301 / 영업시간: 월 ~ 토 10:00 ~ 19:00 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "61fb3c20b5d2ca027b2f", - "label": "칼국수", - "amount": 7000, + "id": "cbd69f19822ee58fad5f", + "label": "의복수선료", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bb39a76e50b3c1a6ea3d", - "label": "청국장", + "id": "4f90ff5033d286abe9bf", + "label": "양복세탁료", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -5135,15 +5029,15 @@ ], "history": [ { - "id": "61fb3c20b5d2ca027b2f-history", - "label": "칼국수", - "amount": 7000, + "id": "cbd69f19822ee58fad5f-history", + "label": "의복수선료", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bb39a76e50b3c1a6ea3d-history", - "label": "청국장", + "id": "4f90ff5033d286abe9bf-history", + "label": "양복세탁료", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -5152,51 +5046,75 @@ "comments": [] }, { - "id": "goodprice-13651", - "name": "고운육회방앗간", - "businessName": "고운육회방앗간", - "categorySlug": "korean", - "address": "충청남도 천안시 서북구 백석3로 25 (백석동) 1층", - "district": "충청남도 천안시", - "latitude": 36.821819579628574, - "longitude": 127.11424205567585, - "representativePriceAmount": 10000, - "representativePriceLabel": "한우육회비빔밥", + "id": "goodprice-17000", + "name": "86카츠", + "businessName": "86카츠", + "categorySlug": "western", + "address": "충청북도 청주시 청원구 상당로302번길 117-1 (내덕동) 1층(내덕동)", + "district": "충청북도 청주시", + "latitude": 36.65322329929266, + "longitude": 127.49392991767124, + "representativePriceAmount": 9500, + "representativePriceLabel": "돈카츠", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한우육회비빔밥 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-551-8890 / 영업시간: 10:30~21:00 (15:00~17:00 브레이크타임) 정기휴무 매주 월요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈카츠 9,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 11:00~21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1cc5d31be856fc54d2fb", - "label": "한우육회비빔밥", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "af4170b0538c07538f7a", - "label": "들기름막국수", - "amount": 10000, + "id": "dd6ca8cc10c7a0d9243c", + "label": "돈카츠", + "amount": 9500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1cc5d31be856fc54d2fb-history", - "label": "한우육회비빔밥", - "amount": 10000, + "id": "dd6ca8cc10c7a0d9243c-history", + "label": "돈카츠", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-2247", + "name": "명문목욕탕", + "businessName": "명문목욕탕", + "categorySlug": "bath", + "address": "광주광역시 동구 지원로 5 (소태동)", + "district": "광주광역시 동구", + "latitude": 35.1238630581617, + "longitude": 126.932939954425, + "representativePriceAmount": 6000, + "representativePriceLabel": "목욕", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-227-2459 / 영업시간: 5:00-22:00 연중무휴", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "af4170b0538c07538f7a-history", - "label": "들기름막국수", - "amount": 10000, + "id": "2ecce32d8db27ece1f28", + "label": "목욕", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "2ecce32d8db27ece1f28-history", + "label": "목욕", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5204,51 +5122,79 @@ "comments": [] }, { - "id": "goodprice-13856", - "name": "돈초야", - "businessName": "돈초야", - "categorySlug": "western", - "address": "전북특별자치도 전주시 완산구 송정로 43 (효자동1가)", - "district": "전북특별자치도 전주시", - "latitude": 35.802405949453835, - "longitude": 127.12153109657699, - "representativePriceAmount": 5900, - "representativePriceLabel": "돈가스 2장", + "id": "goodprice-16863", + "name": "장원식당", + "businessName": "장원식당", + "categorySlug": "korean", + "address": "서울특별시 종로구 창신5나길 3 (창신동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.573776039713145, + "longitude": 127.01117339129199, + "representativePriceAmount": 8000, + "representativePriceLabel": "우거지뼈해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈가스 2장 5,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-222-1983 / 영업시간: 매일 (AM)10:00~(AM)2:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우거지뼈해장국 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6777-1437 / 영업시간: 10:00~21:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "45e1ac4eb9dfd4168fbd", - "label": "돈가스 2장", - "amount": 5900, + "id": "882032c91f93e367ee41", + "label": "우거지뼈해장국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "cc0912107db70a36a783", - "label": "히레(안심)가스(미니우동 포함)", - "amount": 9000, + "id": "eef2fe875cf9225acbfd", + "label": "잔치국수", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ce003527662c73c29a0a", + "label": "비빔국수", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fefa8941b4cf9b0a986a", + "label": "회냉면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "45e1ac4eb9dfd4168fbd-history", - "label": "돈가스 2장", - "amount": 5900, + "id": "882032c91f93e367ee41-history", + "label": "우거지뼈해장국", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cc0912107db70a36a783-history", - "label": "히레(안심)가스(미니우동 포함)", - "amount": 9000, + "id": "eef2fe875cf9225acbfd-history", + "label": "잔치국수", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ce003527662c73c29a0a-history", + "label": "비빔국수", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fefa8941b4cf9b0a986a-history", + "label": "회냉면", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5256,51 +5202,51 @@ "comments": [] }, { - "id": "goodprice-5435", - "name": "동래분식", - "businessName": "동래분식", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 풍남문2길 39", - "district": "전북특별자치도 전주시", - "latitude": 35.8125817693067, - "longitude": 127.147152512312, + "id": "goodprice-249", + "name": "동현세탁", + "businessName": "동현세탁", + "categorySlug": "laundry", + "address": "서울특별시 광진구 뚝섬로52라길 65 (자양동)", + "district": "서울특별시 광진구", + "latitude": 37.5293850230579, + "longitude": 127.082158673972, "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "representativePriceLabel": "양복세탁료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-288-4607", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복세탁료 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-458-6268 / 영업시간: 월 ~ 토 10:00 ~ 19:00 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "429a300e8e475b4709d4", - "label": "칼국수", + "id": "88c54a2d9560e6d22bf8", + "label": "양복세탁료", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fd3c89c165e10ac4cf37", - "label": "손수제비", - "amount": 7000, + "id": "3b5dab6837a9b3576ba5", + "label": "의복수선료", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "429a300e8e475b4709d4-history", - "label": "칼국수", + "id": "88c54a2d9560e6d22bf8-history", + "label": "양복세탁료", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fd3c89c165e10ac4cf37-history", - "label": "손수제비", - "amount": 7000, + "id": "3b5dab6837a9b3576ba5-history", + "label": "의복수선료", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5308,37 +5254,37 @@ "comments": [] }, { - "id": "goodprice-16971", - "name": "곰순이식당", - "businessName": "곰순이식당", + "id": "goodprice-16062", + "name": "9.9추어탕", + "businessName": "9.9추어탕", "categorySlug": "korean", - "address": "전라남도 목포시 용당로216번길 21 (용당동) 곰순이식당", - "district": "전라남도 목포시", - "latitude": 34.80645255778166, - "longitude": 126.40056637892347, - "representativePriceAmount": 8000, - "representativePriceLabel": "백반", + "address": "충청북도 청주시 상당구 남사로140번길 33 (남문로1가) 1층", + "district": "충청북도 청주시", + "latitude": 36.63060364132639, + "longitude": 127.49034759503, + "representativePriceAmount": 10000, + "representativePriceLabel": "추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-279-4811", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-256-9900", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "42b2b68f744ccd902c28", - "label": "백반", - "amount": 8000, + "id": "9a066c6e02ff8cec2425", + "label": "추어탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "42b2b68f744ccd902c28-history", - "label": "백반", - "amount": 8000, + "id": "9a066c6e02ff8cec2425-history", + "label": "추어탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5346,65 +5292,65 @@ "comments": [] }, { - "id": "goodprice-5616", - "name": "광양숯불갈비", - "businessName": "광양숯불갈비", - "categorySlug": "korean", - "address": "전라남도 목포시 노적봉길 21 (죽동)", - "district": "전라남도 목포시", - "latitude": 34.7896123625075, - "longitude": 126.383187062276, - "representativePriceAmount": 7000, - "representativePriceLabel": "산채비빔밥", + "id": "goodprice-2519", + "name": "동양전자", + "businessName": "동양전자", + "categorySlug": "other-service", + "address": "대전광역시 동구 대전로 797번길 11 (중동)", + "district": "대전광역시 동구", + "latitude": 36.3304315762194, + "longitude": 127.432265782557, + "representativePriceAmount": 10000, + "representativePriceLabel": "전자장비 수리비", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 산채비빔밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-5282 / 영업시간: 10:30-21:00 정기휴무(매주 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 전자장비 수리비 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-254-3090 / 영업시간: 09:00 ~ 18:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7e8251d3688b8403561f", - "label": "산채비빔밥", - "amount": 7000, + "id": "15953e6ceaec90dbcc71", + "label": "전자장비 수리비", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "51a14b61f19fcb09c99e", - "label": "냉면", - "amount": 8000, + "id": "0774875f7c140289b664", + "label": "마이크", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7b9a909e7b05c9fcd91a", - "label": "육개장", - "amount": 9000, + "id": "beabaee99f23087f8b4c", + "label": "음향 케이블", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7e8251d3688b8403561f-history", - "label": "산채비빔밥", - "amount": 7000, + "id": "15953e6ceaec90dbcc71-history", + "label": "전자장비 수리비", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "51a14b61f19fcb09c99e-history", - "label": "냉면", - "amount": 8000, + "id": "0774875f7c140289b664-history", + "label": "마이크", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7b9a909e7b05c9fcd91a-history", - "label": "육개장", - "amount": 9000, + "id": "beabaee99f23087f8b4c-history", + "label": "음향 케이블", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5412,65 +5358,65 @@ "comments": [] }, { - "id": "goodprice-16974", - "name": "김밥나라(중앙병원점)", - "businessName": "김밥나라(중앙병원점)", + "id": "goodprice-959", + "name": "전주콩나물국밥", + "businessName": "전주콩나물국밥", "categorySlug": "korean", - "address": "전라남도 목포시 텃골로13번길 32 (석현동) 상가동 104호", - "district": "전라남도 목포시", - "latitude": 34.82007683022403, - "longitude": 126.41976655741243, - "representativePriceAmount": 6000, - "representativePriceLabel": "김치찌개", + "address": "서울특별시 종로구 자하문로 3 (내자동)", + "district": "서울특별시 종로구", + "latitude": 37.5764830744797, + "longitude": 126.972264842484, + "representativePriceAmount": 7000, + "representativePriceLabel": "콩나물국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-282-5888", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-738-8223 / 영업시간: 월~일 06:00-20:30 정기휴무(매달2,4번째일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d23ffa7c560042eab671", - "label": "김치찌개", - "amount": 6000, + "id": "e4912d2a2f1544e0852b", + "label": "콩나물국밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4e682284233580af54f8", - "label": "된장찌개", - "amount": 6000, + "id": "f9fbdd59e78be2f9830c", + "label": "순두부찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7e177f19c740209b565d", - "label": "순두부찌개", - "amount": 6000, + "id": "1d371c13efba55cd6ab9", + "label": "돌솥알밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d23ffa7c560042eab671-history", - "label": "김치찌개", - "amount": 6000, + "id": "e4912d2a2f1544e0852b-history", + "label": "콩나물국밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4e682284233580af54f8-history", - "label": "된장찌개", - "amount": 6000, + "id": "f9fbdd59e78be2f9830c-history", + "label": "순두부찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7e177f19c740209b565d-history", - "label": "순두부찌개", - "amount": 6000, + "id": "1d371c13efba55cd6ab9-history", + "label": "돌솥알밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5478,51 +5424,37 @@ "comments": [] }, { - "id": "goodprice-18284", - "name": "김밥마트(용당점)", - "businessName": "김밥마트(용당점)", - "categorySlug": "korean", - "address": "전라남도 목포시 영산로 260 (용당동) 김밥마트", - "district": "전라남도 목포시", - "latitude": 34.803356100920574, - "longitude": 126.3947727037926, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", + "id": "goodprice-17346", + "name": "쁘띠헤어", + "businessName": "쁘띠헤어", + "categorySlug": "beauty", + "address": "서울특별시 광진구 구의로 34 (구의동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.54090263497381, + "longitude": 127.08994445617238, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-272-4288", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월 10:00 - 19:00 화 10:00 - 19:00 수 10:00 - 19:00 목 10:00 - 19:00 금 10:00 - 19:00 토 10:00 - 19:00 일 정기휴무 (매주 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "68579e82250a6cf772b0", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5c2e1d6c901df49fef8f", - "label": "참치김밥", - "amount": 4000, + "id": "1ce52c711fd1c82c6d34", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "68579e82250a6cf772b0-history", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5c2e1d6c901df49fef8f-history", - "label": "참치김밥", - "amount": 4000, + "id": "1ce52c711fd1c82c6d34-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5530,41 +5462,72 @@ "comments": [] }, { - "id": "goodprice-6368", - "name": "강가박가92", - "businessName": "강가박가92", + "id": "goodprice-4935", + "name": "가마솥 선지국밥", + "businessName": "가마솥 선지국밥", "categorySlug": "korean", - "address": "경상북도 포항시 남구 중앙로134번길 3 강가박가92", - "district": "경상북도 포항시", - "latitude": 36.025206265541, - "longitude": 129.368486584177, + "address": "충청남도 천안시 동남구 사직로 2-2 1층(사직동)", + "district": "충청남도 천안시", + "latitude": 36.8003866595724, + "longitude": 127.149801708648, "representativePriceAmount": 5000, - "representativePriceLabel": "잔치국수", + "representativePriceLabel": "선지국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-281-7838 / 영업시간: 11시~19시", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 선지국밥 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-574-5665 / 영업시간: 07:00~19:00 연중무휴", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2aa404cc20ad510569e3", - "label": "잔치국수", + "id": "10bfc424eaaaed18b6df", + "label": "선지국밥", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "0cf225164971f21fbb33", - "label": "칼국수", + } + ], + "history": [ + { + "id": "10bfc424eaaaed18b6df-history", + "label": "선지국밥", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-2989", + "name": "선경이용원", + "businessName": "선경이용원", + "categorySlug": "barber", + "address": "울산광역시 중구 유곡로 10 (우정동)", + "district": "울산광역시 중구", + "latitude": 35.5582366838079, + "longitude": 129.30845466344, + "representativePriceAmount": 5000, + "representativePriceLabel": "컷트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 컷트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-246-1703 / 영업시간: 정기휴무(매주월요일) 화 06:00-18:00 수 06:00-18:00 목 06:00-18:00 금 06:00-18:00 토 06:00-18:00 일 06:00-18:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "02baad9c2ca802b6cfef", + "label": "컷트", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "35b929c3bcfe01b8428e", - "label": "수제비", + "id": "c850dce8fe7a02fc11a8", + "label": "염색", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -5572,22 +5535,15 @@ ], "history": [ { - "id": "2aa404cc20ad510569e3-history", - "label": "잔치국수", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0cf225164971f21fbb33-history", - "label": "칼국수", + "id": "02baad9c2ca802b6cfef-history", + "label": "컷트", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "35b929c3bcfe01b8428e-history", - "label": "수제비", + "id": "c850dce8fe7a02fc11a8-history", + "label": "염색", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -5596,65 +5552,89 @@ "comments": [] }, { - "id": "goodprice-14874", - "name": "강변식당", - "businessName": "강변식당", - "categorySlug": "korean", - "address": "경상북도 포항시 북구 죽도로40번길 44-2 (죽도동) 강변식당", - "district": "경상북도 포항시", - "latitude": 36.02997134258029, - "longitude": 129.36267202809643, - "representativePriceAmount": 8000, - "representativePriceLabel": "정식", + "id": "goodprice-16865", + "name": "중국", + "businessName": "중국", + "categorySlug": "chinese", + "address": "서울특별시 종로구 자하문로33길 2 (청운동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.58619403165867, + "longitude": 126.96972945340502, + "representativePriceAmount": 6000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-272-8328", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-737-8055 / 영업시간: 10:00~13:00 (재료 소진 시 마감) 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "982cff70193b7ded5e8b", - "label": "정식", - "amount": 8000, + "id": "84706cbcda12f6223668", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "43ada5360fbfb5898af8", - "label": "비빔밥", + "id": "40eb4b8cc82012abea1c", + "label": "짬뽕", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "72d036ac3ffd6bcacb88", - "label": "제육볶음", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "982cff70193b7ded5e8b-history", - "label": "정식", - "amount": 8000, + "id": "84706cbcda12f6223668-history", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "43ada5360fbfb5898af8-history", - "label": "비빔밥", + "id": "40eb4b8cc82012abea1c-history", + "label": "짬뽕", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-259", + "name": "서승미헤어", + "businessName": "서승미헤어", + "categorySlug": "beauty", + "address": "서울특별시 광진구 용마산로24길 6", + "district": "서울특별시 광진구", + "latitude": 37.5651369246202, + "longitude": 127.087177740735, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-456-0773 / 영업시간: 매일 09:00 ~ 21:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "72d036ac3ffd6bcacb88-history", - "label": "제육볶음", - "amount": 10000, + "id": "ae211543476432cc998e", + "label": "커트", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "ae211543476432cc998e-history", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5662,65 +5642,65 @@ "comments": [] }, { - "id": "goodprice-18324", - "name": "개나리분식", - "businessName": "개나리분식", + "id": "goodprice-11752", + "name": "가화손만두 옛날통닭", + "businessName": "가화손만두 옛날통닭", "categorySlug": "korean", - "address": "경상북도 포항시 남구 정몽주로879번길 8 (청림동) 개나리분식", - "district": "경상북도 포항시", - "latitude": 35.99320750163037, - "longitude": 129.40410586349998, - "representativePriceAmount": 7000, - "representativePriceLabel": "정식", + "address": "충청남도 천안시 동남구 큰재빼기길 28 (오룡동)", + "district": "충청남도 천안시", + "latitude": 36.8039869569013, + "longitude": 127.149159570599, + "representativePriceAmount": 8000, + "representativePriceLabel": "옛날통닭", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-292-9136", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 옛날통닭 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-558-0863 / 영업시간: 08:00~20:00 연중무휴", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b313422c175eef83653c", - "label": "정식", - "amount": 7000, + "id": "2cb8d8343457d3a854e6", + "label": "옛날통닭", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5fb4bb2106ef744eed21", - "label": "김치찌개", - "amount": 8000, + "id": "fa7f4c44011e8f5fb4f3", + "label": "손만두", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ef8eef3706fc890ab226", - "label": "된장찌개", - "amount": 8000, + "id": "8668dbc202a9fba6872c", + "label": "찐빵", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b313422c175eef83653c-history", - "label": "정식", - "amount": 7000, + "id": "2cb8d8343457d3a854e6-history", + "label": "옛날통닭", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5fb4bb2106ef744eed21-history", - "label": "김치찌개", - "amount": 8000, + "id": "fa7f4c44011e8f5fb4f3-history", + "label": "손만두", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ef8eef3706fc890ab226-history", - "label": "된장찌개", - "amount": 8000, + "id": "8668dbc202a9fba6872c-history", + "label": "찐빵", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5728,37 +5708,37 @@ "comments": [] }, { - "id": "goodprice-6380", - "name": "거성갈비살", - "businessName": "거성갈비살", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 대해로 134 거성갈비살", - "district": "경상북도 포항시", - "latitude": 36.0193468713474, - "longitude": 129.365579165755, - "representativePriceAmount": 9000, - "representativePriceLabel": "정식", + "id": "goodprice-15487", + "name": "금란미용실", + "businessName": "금란미용실", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 둥지길 7 (효자동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.874828386296336, + "longitude": 127.73569431782938, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 09:00-22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-257-4174", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2efb5e0350c8f3879de6", - "label": "정식", - "amount": 9000, + "id": "d2ba494aa16e2af56d92", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2efb5e0350c8f3879de6-history", - "label": "정식", - "amount": 9000, + "id": "d2ba494aa16e2af56d92-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5766,51 +5746,51 @@ "comments": [] }, { - "id": "goodprice-6792", - "name": "고인돌", - "businessName": "고인돌", + "id": "goodprice-14005", + "name": "진미김밥", + "businessName": "진미김밥", "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 합성옛길 309 (합성동)", - "district": "경상남도 창원시", - "latitude": 35.2443031085876, - "longitude": 128.588528120564, - "representativePriceAmount": 10000, - "representativePriceLabel": "흑돼지삼겹살", + "address": "서울특별시 종로구 종로46길 28 (창신동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.57045965794985, + "longitude": 127.01018731204245, + "representativePriceAmount": 4000, + "representativePriceLabel": "진미김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 흑돼지삼겹살 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-297-9070", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 진미김밥 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2268-0069 / 영업시간: 영업시간 : 월~금 08:00-21:30 / 토 08:00-19:00 휴무일 : 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "280e999dd17edbc4526c", - "label": "흑돼지삼겹살", - "amount": 10000, + "id": "5047c65c1b153c9f2849", + "label": "진미김밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "27ff3bd00c28f49bf118", - "label": "차돌박이", - "amount": 9000, + "id": "406572e26edfea186c2c", + "label": "물냉면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "280e999dd17edbc4526c-history", - "label": "흑돼지삼겹살", - "amount": 10000, + "id": "5047c65c1b153c9f2849-history", + "label": "진미김밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "27ff3bd00c28f49bf118-history", - "label": "차돌박이", - "amount": 9000, + "id": "406572e26edfea186c2c-history", + "label": "물냉면", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5818,65 +5798,89 @@ "comments": [] }, { - "id": "goodprice-6929", - "name": "곰내커피", - "businessName": "곰내커피", - "categorySlug": "other-food", - "address": "경상남도 창원시 진해구 웅천중로56번길 12-1 1,2층(성내동)", - "district": "경상남도 창원시", - "latitude": 35.1113597022546, - "longitude": 128.750465382937, - "representativePriceAmount": 2500, - "representativePriceLabel": "아메리카노(hot)", + "id": "goodprice-15557", + "name": "세실리아미용실", + "businessName": "세실리아미용실", + "categorySlug": "beauty", + "address": "서울특별시 광진구 긴고랑로13길 36 (중곡동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.564048368127175, + "longitude": 127.08257674824266, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노(hot) 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-544-3040", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-463-5282", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "465ae2659f21654d3d2f", - "label": "아메리카노(hot)", - "amount": 2500, + "id": "3fc7926fd77141b8c815", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "594e07abe92d3cfe5693", - "label": "생강차", - "amount": 4000, + "id": "3fc7926fd77141b8c815-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-16879", + "name": "강짬뽕", + "businessName": "강짬뽕", + "categorySlug": "chinese", + "address": "충청남도 천안시 동남구 신부12길 12 (신부동) 1층", + "district": "충청남도 천안시", + "latitude": 36.81807192926583, + "longitude": 127.15946515907602, + "representativePriceAmount": 6000, + "representativePriceLabel": "자장면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1357-6142 / 영업시간: 영업시간 10:30~20:00 휴무일 매주 월요일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "27e8a45f07882ea086db", + "label": "자장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1cb4935685a044c98c94", - "label": "팥빙수", - "amount": 6000, + "id": "f951b96a01afae6625f6", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "465ae2659f21654d3d2f-history", - "label": "아메리카노(hot)", - "amount": 2500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "594e07abe92d3cfe5693-history", - "label": "생강차", - "amount": 4000, + "id": "27e8a45f07882ea086db-history", + "label": "자장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1cb4935685a044c98c94-history", - "label": "팥빙수", - "amount": 6000, + "id": "f951b96a01afae6625f6-history", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5884,79 +5888,103 @@ "comments": [] }, { - "id": "goodprice-10635", - "name": "감나무집", - "businessName": "감나무집", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 오남로 12 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.4941885992074, - "longitude": 126.519518313018, - "representativePriceAmount": 10000, - "representativePriceLabel": "흑돼지두루치기정식", + "id": "goodprice-4910", + "name": "국빈4000냥미용실", + "businessName": "국빈4000냥미용실", + "categorySlug": "beauty", + "address": "충청남도 천안시 동남구 대흥로 132-2 (사직동)", + "district": "충청남도 천안시", + "latitude": 36.8008837521399, + "longitude": 127.148549025545, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 흑돼지두루치기정식 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-722-8292", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 08:00~17:30 정기휴무(매월 1일, 15일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7750b8f548a954e5a228", - "label": "흑돼지두루치기정식", - "amount": 10000, + "id": "799b3be66829861ba64b", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "db0dd97eb0a7a8d46fde", - "label": "돌솥갈비비빔밥", - "amount": 9000, + "id": "799b3be66829861ba64b-history", + "label": "커트", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-19059", + "name": "착한커피공장", + "businessName": "착한커피공장", + "categorySlug": "other-food", + "address": "서울특별시 종로구 자하문로7길 66 (누하동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.58019735852819, + "longitude": 126.9691947292228, + "representativePriceAmount": 2000, + "representativePriceLabel": "아메리카노", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-738-7774", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "0b4a0972a271bd57ea99", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1dbcf01fec338b056cf1", - "label": "차돌국밥", - "amount": 8000, + "id": "900c77cbb93c60360788", + "label": "카페라떼", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "af7b6113e108f84d8545", - "label": "차돌된장찌개", - "amount": 8000, + "id": "7441fe48e1aa31b47865", + "label": "허브티", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7750b8f548a954e5a228-history", - "label": "흑돼지두루치기정식", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "db0dd97eb0a7a8d46fde-history", - "label": "돌솥갈비비빔밥", - "amount": 9000, + "id": "0b4a0972a271bd57ea99-history", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1dbcf01fec338b056cf1-history", - "label": "차돌국밥", - "amount": 8000, + "id": "900c77cbb93c60360788-history", + "label": "카페라떼", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "af7b6113e108f84d8545-history", - "label": "차돌된장찌개", - "amount": 8000, + "id": "7441fe48e1aa31b47865-history", + "label": "허브티", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -5964,107 +5992,51 @@ "comments": [] }, { - "id": "goodprice-7114", - "name": "강김밥집", - "businessName": "강김밥집", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 애월읍 하귀9길 2 1층 114호", - "district": "제주특별자치도 제주시", - "latitude": 33.4864182898895, - "longitude": 126.414565502113, - "representativePriceAmount": 2900, - "representativePriceLabel": "강김밥", + "id": "goodprice-250", + "name": "으뜸크리닝", + "businessName": "으뜸크리닝", + "categorySlug": "laundry", + "address": "서울특별시 광진구 아차산로51길 74 (구의동)", + "district": "서울특별시 광진구", + "latitude": 37.5401684513294, + "longitude": 127.085108450352, + "representativePriceAmount": 5000, + "representativePriceLabel": "의복수선료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 강김밥 2,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-711-5096 / 영업시간: 목 08:00-19:30 금 08:00-19:30 토 08:00-19:30 일 정기휴무(매주일요일) 월 08:00-19:30 화 08:00-19:30 수 08:00-19:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 의복수선료 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-446-1756 / 영업시간: 월~금 09:00 ~ 21:00 토 09:00 ~ 16:00 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dfe290287c15985bedb0", - "label": "강김밥", - "amount": 2900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1f2df78ffce0c8fbb025", - "label": "멸치김밥", - "amount": 3800, + "id": "497687460fa6125cffba", + "label": "의복수선료", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "61b76b781caa4d861175", - "label": "우엉김밥", - "amount": 3800, + "id": "4da9474c4fbc4a94e8b8", + "label": "양복세탁료", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "c6a9b5a83d9d42a6764a", - "label": "치즈김밥", - "amount": 3800, + "id": "497687460fa6125cffba-history", + "label": "의복수선료", + "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "cfa78e45eb527f6a4d1d", - "label": "참치김밥", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4f51358c063e8f336627", - "label": "진미김밥", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "dfe290287c15985bedb0-history", - "label": "강김밥", - "amount": 2900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1f2df78ffce0c8fbb025-history", - "label": "멸치김밥", - "amount": 3800, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "61b76b781caa4d861175-history", - "label": "우엉김밥", - "amount": 3800, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c6a9b5a83d9d42a6764a-history", - "label": "치즈김밥", - "amount": 3800, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "cfa78e45eb527f6a4d1d-history", - "label": "참치김밥", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4f51358c063e8f336627-history", - "label": "진미김밥", - "amount": 3500, + "id": "4da9474c4fbc4a94e8b8-history", + "label": "양복세탁료", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6072,107 +6044,65 @@ "comments": [] }, { - "id": "goodprice-7202", - "name": "고기서맛나(하몽이네)", - "businessName": "고기서맛나(하몽이네)", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 중앙로21길 4 1층(이도일동)", - "district": "제주특별자치도 제주시", - "latitude": 33.5078471486649, - "longitude": 126.524747667261, - "representativePriceAmount": 5000, - "representativePriceLabel": "제주산 생뒷고기", + "id": "goodprice-5413", + "name": "나눔공정카페", + "businessName": "나눔공정카페", + "categorySlug": "other-food", + "address": "전북특별자치도 전주시 완산구 전룡4길 8 1층", + "district": "전북특별자치도 전주시", + "latitude": 35.8258068254203, + "longitude": 127.119654841458, + "representativePriceAmount": 1800, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제주산 생뒷고기 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1322-1011 / 영업시간: 매일 11:00-22:00 브레이크다임 15:00`17:00 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 1,800원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-278-9799", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a0bbd0f2f8179f57b983", - "label": "제주산 생뒷고기", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0a647ed4f4747f9a4c40", - "label": "흑돼지 제육백반", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "231fef98c1476ca30bb4", - "label": "추억의 냉동삼겹", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "80034990534affe1f1c4", - "label": "해물된장찌개", - "amount": 9000, + "id": "0542ea396478a8472b1b", + "label": "아메리카노", + "amount": 1800, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6745f9907878d060dbf2", - "label": "흑돈 제육밴반", - "amount": 9000, + "id": "99aad9fdd1f6494a549a", + "label": "카페라떼", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "20f9c35838639a01c16f", - "label": "흑돈김치찌개", - "amount": 9000, + "id": "22c7f585bd12c29b5191", + "label": "(수제)자몽차, 레몬차", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a0bbd0f2f8179f57b983-history", - "label": "제주산 생뒷고기", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0a647ed4f4747f9a4c40-history", - "label": "흑돼지 제육백반", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "231fef98c1476ca30bb4-history", - "label": "추억의 냉동삼겹", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "80034990534affe1f1c4-history", - "label": "해물된장찌개", - "amount": 9000, + "id": "0542ea396478a8472b1b-history", + "label": "아메리카노", + "amount": 1800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6745f9907878d060dbf2-history", - "label": "흑돈 제육밴반", - "amount": 9000, + "id": "99aad9fdd1f6494a549a-history", + "label": "카페라떼", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "20f9c35838639a01c16f-history", - "label": "흑돈김치찌개", - "amount": 9000, + "id": "22c7f585bd12c29b5191-history", + "label": "(수제)자몽차, 레몬차", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6180,51 +6110,37 @@ "comments": [] }, { - "id": "goodprice-18196", - "name": "동문식당", - "businessName": "동문식당", - "categorySlug": "korean", - "address": "서울특별시 종로구 종로 300-1 (창신동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.57159249625645, - "longitude": 127.01124193717713, - "representativePriceAmount": 5000, - "representativePriceLabel": "콩나물비빔밥", + "id": "goodprice-18214", + "name": "란미용실", + "businessName": "란미용실", + "categorySlug": "beauty", + "address": "전북특별자치도 전주시 완산구 공수내1길 7-2 (서서학동) 1층", + "district": "전북특별자치도 전주시", + "latitude": 35.805287710386786, + "longitude": 127.14763371176575, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물비빔밥 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-4007-3960 / 영업시간: 06:00~19:00 / 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f638b225b0cd7383e1bb", - "label": "콩나물비빔밥", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4325c924996e2b4442a2", - "label": "소고기콩나물밥", - "amount": 7000, + "id": "cfa171665a12ca64d48c", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f638b225b0cd7383e1bb-history", - "label": "콩나물비빔밥", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4325c924996e2b4442a2-history", - "label": "소고기콩나물밥", - "amount": 7000, + "id": "cfa171665a12ca64d48c-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6232,65 +6148,51 @@ "comments": [] }, { - "id": "goodprice-19249", - "name": "둘리분식", - "businessName": "둘리분식", + "id": "goodprice-18198", + "name": "창신숯불돼지갈비", + "businessName": "창신숯불돼지갈비", "categorySlug": "korean", - "address": "서울특별시 종로구 창경궁로34길 15 (혜화동) 1층", + "address": "서울특별시 종로구 종로 322-11 (창신동) 1층", "district": "서울특별시 종로구", - "latitude": 37.584324897003846, - "longitude": 127.0011787060946, - "representativePriceAmount": 4000, - "representativePriceLabel": "된장찌개", + "latitude": 37.5716697926823, + "longitude": 127.01361493727262, + "representativePriceAmount": 10000, + "representativePriceLabel": "돼지갈비정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-744-8626", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지갈비정식 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-766-5861", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f2a45b6501b4f06b43a4", - "label": "된장찌개", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2a1c7a9c1192f4dae37c", - "label": "제육덮밥", - "amount": 4000, + "id": "db72755398ff12364a07", + "label": "돼지갈비정식", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7662b80088e954e58acd", - "label": "비빔밥", - "amount": 3500, + "id": "b102df77847429f1c2c1", + "label": "생선구이정식", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f2a45b6501b4f06b43a4-history", - "label": "된장찌개", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2a1c7a9c1192f4dae37c-history", - "label": "제육덮밥", - "amount": 4000, + "id": "db72755398ff12364a07-history", + "label": "돼지갈비정식", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7662b80088e954e58acd-history", - "label": "비빔밥", - "amount": 3500, + "id": "b102df77847429f1c2c1-history", + "label": "생선구이정식", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6298,34 +6200,27 @@ "comments": [] }, { - "id": "goodprice-19006", - "name": "남포설렁탕", - "businessName": "남포설렁탕", - "categorySlug": "korean", - "address": "부산광역시 중구 구덕로34번길 5 (남포동2가) 1층", - "district": "부산광역시 중구", - "latitude": 35.098466691867394, - "longitude": 129.03204192140768, + "id": "goodprice-268", + "name": "정은정헤어샵", + "businessName": "정은정헤어샵", + "categorySlug": "beauty", + "address": "서울특별시 광진구 자양로28길 10", + "district": "서울특별시 광진구", + "latitude": 37.5422855157893, + "longitude": 127.084752386767, "representativePriceAmount": 10000, - "representativePriceLabel": "설렁탕", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 설렁탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-255-2263 / 영업시간: 00:00~24:00(24시간영업)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 10:00 ~ 20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8728e87de7a398f79d78", - "label": "설렁탕", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d0fad082c41e37e8fcfa", - "label": "맑은양지탕", + "id": "ec5beda9498e42f5c649", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -6333,15 +6228,8 @@ ], "history": [ { - "id": "8728e87de7a398f79d78-history", - "label": "설렁탕", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d0fad082c41e37e8fcfa-history", - "label": "맑은양지탕", + "id": "ec5beda9498e42f5c649-history", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -6350,65 +6238,65 @@ "comments": [] }, { - "id": "goodprice-1648", - "name": "남포수제비", - "businessName": "남포수제비", - "categorySlug": "korean", - "address": "부산광역시 중구 광복로 49번길 7-1 (창선동)", - "district": "부산광역시 중구", - "latitude": 35.0998830313842, - "longitude": 129.030510175225, - "representativePriceAmount": 6500, - "representativePriceLabel": "충무김밥", + "id": "goodprice-11329", + "name": "경남식당", + "businessName": "경남식당", + "categorySlug": "chinese", + "address": "전라남도 목포시 산대로2번길 3-2 (산정동)", + "district": "전라남도 목포시", + "latitude": 34.8024474268616, + "longitude": 126.391838705576, + "representativePriceAmount": 5000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 충무김밥 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-245-6821 / 영업시간: 영업시간 09:00 - 20:30 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-272-8111", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "03e6e57e0d54bc6f101d", - "label": "충무김밥", - "amount": 6500, + "id": "628a76247a4348727d95", + "label": "자장면", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fde52b8d69803118d518", - "label": "수제비", + "id": "d3e8dfe6f7fe8aa595fc", + "label": "짬뽕", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3affe8654f96b7c247e1", - "label": "비빔국수", - "amount": 7500, + "id": "40ccd46eaf04de17ea10", + "label": "볶음밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "03e6e57e0d54bc6f101d-history", - "label": "충무김밥", - "amount": 6500, + "id": "628a76247a4348727d95-history", + "label": "자장면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fde52b8d69803118d518-history", - "label": "수제비", + "id": "d3e8dfe6f7fe8aa595fc-history", + "label": "짬뽕", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3affe8654f96b7c247e1-history", - "label": "비빔국수", - "amount": 7500, + "id": "40ccd46eaf04de17ea10-history", + "label": "볶음밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6416,51 +6304,51 @@ "comments": [] }, { - "id": "goodprice-10020", - "name": "남포이발컷트", - "businessName": "남포이발컷트", - "categorySlug": "barber", - "address": "부산광역시 중구 중구로 2 2층(남포동5가)", - "district": "부산광역시 중구", - "latitude": 35.0979757736079, - "longitude": 129.028282683866, - "representativePriceAmount": 6000, - "representativePriceLabel": "커트", + "id": "goodprice-15153", + "name": "드라이하우스 북항점", + "businessName": "드라이하우스 북항점", + "categorySlug": "laundry", + "address": "전라남도 목포시 청호로219번길 30 (산정동) 1층 106호", + "district": "전라남도 목포시", + "latitude": 34.80742822388893, + "longitude": 126.36751972578438, + "representativePriceAmount": 6100, + "representativePriceLabel": "정장한벌", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 정장한벌 6,100원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-278-2788", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "68c18452d2019bc77658", - "label": "커트", - "amount": 6000, + "id": "ac950f07c547d294a204", + "label": "정장한벌", + "amount": 6100, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b25a2b0f04850a64793a", - "label": "일반염색", - "amount": 7000, + "id": "c192f6731539b045a68e", + "label": "와이셔츠", + "amount": 1900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "68c18452d2019bc77658-history", - "label": "커트", - "amount": 6000, + "id": "ac950f07c547d294a204-history", + "label": "정장한벌", + "amount": 6100, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b25a2b0f04850a64793a-history", - "label": "일반염색", - "amount": 7000, + "id": "c192f6731539b045a68e-history", + "label": "와이셔츠", + "amount": 1900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6468,51 +6356,51 @@ "comments": [] }, { - "id": "goodprice-1649", - "name": "단골식당", - "businessName": "단골식당", + "id": "goodprice-11363", + "name": "청정바지락칼국수", + "businessName": "청정바지락칼국수", "categorySlug": "korean", - "address": "부산광역시 중구 동광길 193 (영주1동)", - "district": "부산광역시 중구", - "latitude": 35.1109965770514, - "longitude": 129.037200736899, - "representativePriceAmount": 8000, - "representativePriceLabel": "묵은지김치전골", + "address": "서울특별시 종로구 창신길 11 1층", + "district": "서울특별시 종로구", + "latitude": 37.5722071295158, + "longitude": 127.010524084538, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 묵은지김치전골 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-441-8540 / 영업시간: 영업시간 09:00 - 21:00, ,일요일 휴무(예약시 일요일 가능)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-743-6557", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8484e82e12fccb4f630c", - "label": "묵은지김치전골", - "amount": 8000, + "id": "d1b6e431f92397f13595", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e19baca9d16c8f41a779", - "label": "된장찌개", - "amount": 8000, + "id": "5e19292dc1860292227e", + "label": "보리비빔밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8484e82e12fccb4f630c-history", - "label": "묵은지김치전골", - "amount": 8000, + "id": "d1b6e431f92397f13595-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e19baca9d16c8f41a779-history", - "label": "된장찌개", - "amount": 8000, + "id": "5e19292dc1860292227e-history", + "label": "보리비빔밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6520,159 +6408,103 @@ "comments": [] }, { - "id": "goodprice-14626", - "name": "동인1번지", - "businessName": "동인1번지", - "categorySlug": "korean", - "address": "대구광역시 중구 동덕로36길 78 (동인동4가) 동인1번지", - "district": "대구광역시 중구", - "latitude": 35.869513126099164, - "longitude": 128.6084875504821, - "representativePriceAmount": 8000, - "representativePriceLabel": "김치돼지찌개", + "id": "goodprice-13787", + "name": "중원사", + "businessName": "중원사", + "categorySlug": "laundry", + "address": "서울특별시 광진구 천호대로135길 8 (구의동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.54986623666149, + "longitude": 127.09226460318719, + "representativePriceAmount": 3000, + "representativePriceLabel": "의복수선료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치돼지찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-257-6244", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 의복수선료 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "029fcc538cd19a4303f8", - "label": "김치돼지찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "215670c21d5e5dee723f", - "label": "돼지갈비(200g)", - "amount": 10000, + "id": "ed62e53e9e8aed7755f5", + "label": "의복수선료", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d5c03fb6505aaae6f6c1", - "label": "차돌된장찌개", + "id": "016d8ce4cc9ca9352bf3", + "label": "양복세탁료", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "346c055e61cbd40f18af", - "label": "국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "029fcc538cd19a4303f8-history", - "label": "김치돼지찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "215670c21d5e5dee723f-history", - "label": "돼지갈비(200g)", - "amount": 10000, + "id": "ed62e53e9e8aed7755f5-history", + "label": "의복수선료", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d5c03fb6505aaae6f6c1-history", - "label": "차돌된장찌개", + "id": "016d8ce4cc9ca9352bf3-history", + "label": "양복세탁료", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "346c055e61cbd40f18af-history", - "label": "국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-17986", - "name": "동인식당", - "businessName": "동인식당", + "id": "goodprice-15142", + "name": "경성회관", + "businessName": "경성회관", "categorySlug": "korean", - "address": "대구광역시 중구 동덕로36길 130 (동인동4가) 동인동", - "district": "대구광역시 중구", - "latitude": 35.869224595714726, - "longitude": 128.6114387547134, - "representativePriceAmount": 7000, - "representativePriceLabel": "정식", + "address": "전라남도 목포시 용당로 54 (산정동) 1층", + "district": "전라남도 목포시", + "latitude": 34.792331194754645, + "longitude": 126.4023009728321, + "representativePriceAmount": 10000, + "representativePriceLabel": "청국장 백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-423-9961", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 백반 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-5993", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "90263472c8212c00d06c", - "label": "정식", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e96223a1bbac10ac34a1", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c06d1b159d3a0fcdeec5", - "label": "돼지국밥", - "amount": 8000, + "id": "df51362a43ce9e05d0ea", + "label": "청국장 백반", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ffdf5286021df621990a", - "label": "순대국밥", - "amount": 8000, + "id": "d8b6852a2d7bca07901c", + "label": "김치찌개 백반", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "90263472c8212c00d06c-history", - "label": "정식", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e96223a1bbac10ac34a1-history", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c06d1b159d3a0fcdeec5-history", - "label": "돼지국밥", - "amount": 8000, + "id": "df51362a43ce9e05d0ea-history", + "label": "청국장 백반", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ffdf5286021df621990a-history", - "label": "순대국밥", - "amount": 8000, + "id": "d8b6852a2d7bca07901c-history", + "label": "김치찌개 백반", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6680,65 +6512,65 @@ "comments": [] }, { - "id": "goodprice-14949", - "name": "만리장성", - "businessName": "만리장성", - "categorySlug": "chinese", - "address": "대구광역시 중구 공평로 95 (동문동) .", - "district": "대구광역시 중구", - "latitude": 35.87252613112093, - "longitude": 128.60076336835849, - "representativePriceAmount": 2000, - "representativePriceLabel": "짜장면", + "id": "goodprice-16480", + "name": "동광세탁소", + "businessName": "동광세탁소", + "categorySlug": "laundry", + "address": "부산광역시 중구 법수길 19 (보수동1가) 1층", + "district": "부산광역시 중구", + "latitude": 35.10490454876418, + "longitude": 129.02599093842454, + "representativePriceAmount": 4000, + "representativePriceLabel": "드라이크리닝(하의)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-2412 / 영업시간: 11:00 ~20:00 (일요일 : 정기휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 드라이크리닝(하의) 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-256-9047 / 영업시간: 영업시간: 07:00 ~ 19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4e9bece4bff507f8c909", - "label": "짜장면", - "amount": 2000, + "id": "93f539f8cfc41416b859", + "label": "드라이크리닝(하의)", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d4df1afef8fa73d5b7b2", - "label": "짬뽕", - "amount": 4000, + "id": "09b3e617d1902b70ec8a", + "label": "드라이크리닝(코트)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "65941241259b61e7d563", - "label": "미니탕수육", - "amount": 7000, + "id": "cd76f2e3262ca78bc590", + "label": "드라이크리닝(상의)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4e9bece4bff507f8c909-history", - "label": "짜장면", - "amount": 2000, + "id": "93f539f8cfc41416b859-history", + "label": "드라이크리닝(하의)", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d4df1afef8fa73d5b7b2-history", - "label": "짬뽕", - "amount": 4000, + "id": "09b3e617d1902b70ec8a-history", + "label": "드라이크리닝(코트)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "65941241259b61e7d563-history", - "label": "미니탕수육", - "amount": 7000, + "id": "cd76f2e3262ca78bc590-history", + "label": "드라이크리닝(상의)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6746,93 +6578,89 @@ "comments": [] }, { - "id": "goodprice-2012", - "name": "만리향반점", - "businessName": "만리향반점", - "categorySlug": "chinese", - "address": "대구광역시 중구 명덕로35길 112 (남산)", - "district": "대구광역시 중구", - "latitude": 35.8614534554198, - "longitude": 128.590364961693, - "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", + "id": "goodprice-19060", + "name": "체부동잔치집", + "businessName": "체부동잔치집", + "categorySlug": "korean", + "address": "서울특별시 종로구 자하문로1길 16 (체부동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.57655121434925, + "longitude": 126.97150085198783, + "representativePriceAmount": 5000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-255-9380 / 영업시간: 11:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-730-5420", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "37f1b2a0603790c7a5ed", - "label": "짜장면", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9472fb294a2cf5f4b93e", - "label": "짬뽕", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f9b470b9d8675c5ed72f", - "label": "볶음밥(기본)", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a56fd77fcbbe8572e3b6", - "label": "우동", - "amount": 7000, + "id": "543d6c9cb6da159d48f2", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1dc2c2aeadd1d877031e", - "label": "간짜장", - "amount": 7000, + "id": "df6bc34949239d31c0ea", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "37f1b2a0603790c7a5ed-history", - "label": "짜장면", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9472fb294a2cf5f4b93e-history", - "label": "짬뽕", - "amount": 7000, + "id": "543d6c9cb6da159d48f2-history", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f9b470b9d8675c5ed72f-history", - "label": "볶음밥(기본)", - "amount": 7000, + "id": "df6bc34949239d31c0ea-history", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-11030", + "name": "진아보석사우나", + "businessName": "진아보석사우나", + "categorySlug": "bath", + "address": "서울특별시 광진구 자양로15길 109 (자양동)", + "district": "서울특별시 광진구", + "latitude": 37.5341204451659, + "longitude": 127.077993714026, + "representativePriceAmount": 8000, + "representativePriceLabel": "목욕료", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕료 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-457-3355", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "a56fd77fcbbe8572e3b6-history", - "label": "우동", - "amount": 7000, + "id": "0fedb1a0e01a90885da3", + "label": "목욕료", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "1dc2c2aeadd1d877031e-history", - "label": "간짜장", - "amount": 7000, + "id": "0fedb1a0e01a90885da3-history", + "label": "목욕료", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6840,65 +6668,113 @@ "comments": [] }, { - "id": "goodprice-16953", - "name": "마카롱데이즈", - "businessName": "마카롱데이즈", - "categorySlug": "bakery", - "address": "인천광역시 중구 우현로35번길 13-2 (신생동) 1층", - "district": "인천광역시 중구", - "latitude": 37.47044194467634, - "longitude": 126.62613140213853, - "representativePriceAmount": 1700, - "representativePriceLabel": "다쿠마롱(10개 이상 주문시)", + "id": "goodprice-15158", + "name": "고향삼겹살", + "businessName": "고향삼겹살", + "categorySlug": "korean", + "address": "전라남도 목포시 영산로 691 (석현동) 고향삼겹살", + "district": "전라남도 목포시", + "latitude": 34.82641754948634, + "longitude": 126.42137100869118, + "representativePriceAmount": 9000, + "representativePriceLabel": "청국장", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 다쿠마롱(10개 이상 주문시) 1,700원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1485-5016", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-281-3931", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fda68ad7ef9a5d1829f4", - "label": "다쿠마롱(10개 이상 주문시)", - "amount": 1700, + "id": "57881a1dcd7f7fee2049", + "label": "청국장", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "d2735f6b8409c638120b", - "label": "다쿠마롱(10개 이하 주문시)", - "amount": 1800, + "id": "57881a1dcd7f7fee2049-history", + "label": "청국장", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-2007", + "name": "영생이용소", + "businessName": "영생이용소", + "categorySlug": "barber", + "address": "대구광역시 중구 이천로 184-8 (대봉동)", + "district": "대구광역시 중구", + "latitude": 35.8575452270514, + "longitude": 128.598969402186, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-9732 / 영업시간: 06:30-18:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "ef9665f9b336776fe277", - "label": "아메키라노", - "amount": 1900, + "id": "4f5f596ea16799b45001", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fda68ad7ef9a5d1829f4-history", - "label": "다쿠마롱(10개 이상 주문시)", - "amount": 1700, + "id": "4f5f596ea16799b45001-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-16867", + "name": "카츠연", + "businessName": "카츠연", + "categorySlug": "japanese", + "address": "서울특별시 종로구 삼봉로 81 (수송동) 지하1층 136호", + "district": "서울특별시 종로구", + "latitude": 37.572557012406925, + "longitude": 126.98181439015927, + "representativePriceAmount": 9500, + "representativePriceLabel": "등심돈카츠정식", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 등심돈카츠정식 9,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4015-1318 / 영업시간: 11:00~20:00 (브레이크 타임 14:00~16:00) 공휴일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "d2735f6b8409c638120b-history", - "label": "다쿠마롱(10개 이하 주문시)", - "amount": 1800, + "id": "282f53a585881f3ba58d", + "label": "등심돈카츠정식", + "amount": 9500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "ef9665f9b336776fe277-history", - "label": "아메키라노", - "amount": 1900, + "id": "282f53a585881f3ba58d-history", + "label": "등심돈카츠정식", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6906,51 +6782,37 @@ "comments": [] }, { - "id": "goodprice-17145", - "name": "명동식당", - "businessName": "명동식당", - "categorySlug": "korean", - "address": "인천광역시 중구 답동로30번길 25 (경동) 1층", - "district": "인천광역시 중구", - "latitude": 37.47170701109189, - "longitude": 126.63290688540795, - "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "id": "goodprice-15559", + "name": "파랑노랑미용실", + "businessName": "파랑노랑미용실", + "categorySlug": "beauty", + "address": "서울특별시 광진구 자양로45길 18 (구의동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.55208434611621, + "longitude": 127.091354541754, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-5668", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b35d607374c66c1a3955", - "label": "칼국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "efe3ff7f0f89be35e09b", - "label": "돈가스", - "amount": 8000, + "id": "ea6720388596fa5e3e75", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b35d607374c66c1a3955-history", - "label": "칼국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "efe3ff7f0f89be35e09b-history", - "label": "돈가스", - "amount": 8000, + "id": "ea6720388596fa5e3e75-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -6958,134 +6820,140 @@ "comments": [] }, { - "id": "goodprice-2259", - "name": "대왕김밥(학동)", - "businessName": "대왕김밥(학동)", + "id": "goodprice-6367", + "name": "45번길국수", + "businessName": "45번길국수", "categorySlug": "korean", - "address": "광주광역시 동구 남문로 671 (학동)", - "district": "광주광역시 동구", - "latitude": 35.1305985718859, - "longitude": 126.929101660948, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", + "address": "경상북도 포항시 남구 대이로45번길 12-4 45번길국수", + "district": "경상북도 포항시", + "latitude": 36.019222777464, + "longitude": 129.340576077049, + "representativePriceAmount": 6000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-0868 / 영업시간: 08:00-22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 07:30~19시30분 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "851421a095f615319405", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c8526a8c3e62e6648c5e", - "label": "라면", - "amount": 4000, + "id": "e9d37e23106dbae83c25", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "613a12f23ed5a9bd704e", - "label": "돈가스", - "amount": 8000, + "id": "9b14ba5b4e426b9ed0a8", + "label": "콩국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a1cf82a34512a7cb378f", - "label": "고추참치김밥", - "amount": 4500, + "id": "980c8483067c1f551f07", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "e00fc6cfc4e33b152133", - "label": "김치김밥", - "amount": 4000, + "id": "e9d37e23106dbae83c25-history", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "0340974e787b9db61d31", - "label": "대왕김밥", - "amount": 3000, + "id": "9b14ba5b4e426b9ed0a8-history", + "label": "콩국수", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "1b6fe8cb891f0c813351", - "label": "참치김밥", - "amount": 4000, + "id": "980c8483067c1f551f07-history", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-3367", + "name": "꽃씨미용실", + "businessName": "꽃씨미용실", + "categorySlug": "beauty", + "address": "경기도 수원시 권선구 금호로15번길12 (금곡동)", + "district": "경기도 수원시", + "latitude": 37.2692497847657, + "longitude": 126.953624838044, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-297-6106 / 영업시간: 10:00~19:00 (첫째, 셋째 일요일, 둘째,넷째 화요일 휴무)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "328231d8905cd6930276", - "label": "치즈김밥", - "amount": 4000, + "id": "951e63c163567473259a", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "851421a095f615319405-history", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c8526a8c3e62e6648c5e-history", - "label": "라면", - "amount": 4000, + "id": "951e63c163567473259a-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "613a12f23ed5a9bd704e-history", - "label": "돈가스", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a1cf82a34512a7cb378f-history", - "label": "고추참치김밥", - "amount": 4500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e00fc6cfc4e33b152133-history", - "label": "김치김밥", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0340974e787b9db61d31-history", - "label": "대왕김밥", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-13949", + "name": "토리베이커리", + "businessName": "토리베이커리", + "categorySlug": "bakery", + "address": "서울특별시 종로구 옥인길 30-3 (옥인동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.58107428102593, + "longitude": 126.96708919813716, + "representativePriceAmount": 4000, + "representativePriceLabel": "막걸리식빵", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "막걸리로 반죽해 만든 막걸리 식빵과 바게트, 롤케이크가 유명해요", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-5330-0771 / 영업시간: 영업시간 : 화~토 08:00~21:00 / 일 08:00~17:00 휴무일 : 월요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "1b6fe8cb891f0c813351-history", - "label": "참치김밥", + "id": "1a5cd8cb2b91d3a967d9", + "label": "막걸리식빵", "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "328231d8905cd6930276-history", - "label": "치즈김밥", + "id": "1a5cd8cb2b91d3a967d9-history", + "label": "막걸리식빵", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -7094,79 +6962,51 @@ "comments": [] }, { - "id": "goodprice-15363", - "name": "대접", - "businessName": "대접", - "categorySlug": "korean", - "address": "광주광역시 동구 서석로85번길 8-7 (대의동) 1층", - "district": "광주광역시 동구", - "latitude": 35.150050907279855, - "longitude": 126.9203188050476, - "representativePriceAmount": 4500, - "representativePriceLabel": "잔치국수/비빔국수", + "id": "goodprice-251", + "name": "한양세탁소", + "businessName": "한양세탁소", + "categorySlug": "laundry", + "address": "서울특별시 광진구 뚝섬로46길 34 1층", + "district": "서울특별시 광진구", + "latitude": 37.5312491485435, + "longitude": 127.0764580604, + "representativePriceAmount": 8000, + "representativePriceLabel": "정장 드라이클리닝", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수/비빔국수 4,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-651-9998 / 영업시간: 월~토 10:00-19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 정장 드라이클리닝 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-452-3769 / 영업시간: 월~토 09:00 ~ 19:00 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4a48e10e48e1c650017e", - "label": "잔치국수/비빔국수", - "amount": 4500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d9c51afa54dd8255cd18", - "label": "라면", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "344db3218ce407f34bb3", - "label": "콩나물국밥", - "amount": 4500, + "id": "af1193c9b94228244a23", + "label": "정장 드라이클리닝", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "49da7ea78c24239788bc", - "label": "김치찌개", - "amount": 5500, + "id": "5349a0a62a221f819fb8", + "label": "의복수선료", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4a48e10e48e1c650017e-history", - "label": "잔치국수/비빔국수", - "amount": 4500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d9c51afa54dd8255cd18-history", - "label": "라면", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "344db3218ce407f34bb3-history", - "label": "콩나물국밥", - "amount": 4500, + "id": "af1193c9b94228244a23-history", + "label": "정장 드라이클리닝", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "49da7ea78c24239788bc-history", - "label": "김치찌개", - "amount": 5500, + "id": "5349a0a62a221f819fb8-history", + "label": "의복수선료", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7174,27 +7014,27 @@ "comments": [] }, { - "id": "goodprice-14224", - "name": "덕산오징어보쌈", - "businessName": "덕산오징어보쌈", + "id": "goodprice-6384", + "name": "감자바위", + "businessName": "감자바위", "categorySlug": "korean", - "address": "광주광역시 동구 남문로622번길 20 (소태동) 1층", - "district": "광주광역시 동구", - "latitude": 35.127077487064696, - "longitude": 126.93344224312833, + "address": "경상북도 포항시 남구 연일읍 유강길9번길 32 감자바위", + "district": "경상북도 포항시", + "latitude": 36.0033909011122, + "longitude": 129.316527350566, "representativePriceAmount": 8000, - "representativePriceLabel": "점심 백반", + "representativePriceLabel": "비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 점심 백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-5868 / 영업시간: 월-토 11:30-21:00 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-272-8877", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1b2b1b1501e0b1398bd3", - "label": "점심 백반", + "id": "41923ace59b89f149d63", + "label": "비빔밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -7202,8 +7042,8 @@ ], "history": [ { - "id": "1b2b1b1501e0b1398bd3-history", - "label": "점심 백반", + "id": "41923ace59b89f149d63-history", + "label": "비빔밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -7212,107 +7052,127 @@ "comments": [] }, { - "id": "goodprice-14430", - "name": "넘치는국수한그릇", - "businessName": "넘치는국수한그릇", - "categorySlug": "korean", - "address": "대전광역시 동구 신기로 123-15 (가오동) 가오초등학교 앞", - "district": "대전광역시 동구", - "latitude": 36.31171842237039, - "longitude": 127.458444535411, - "representativePriceAmount": 5000, - "representativePriceLabel": "잔치국수", + "id": "goodprice-15849", + "name": "김진헤어", + "businessName": "김진헤어", + "categorySlug": "beauty", + "address": "충청북도 청주시 흥덕구 증안로 44 (복대동) 2층", + "district": "충청북도 청주시", + "latitude": 36.63652312339393, + "longitude": 127.42812791746137, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-284-7888 / 영업시간: 11:00 ~ 20:30 (15:00~16:00 브레이크 타임) / 매주 일요일 정기 휴무 /", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-239-4129", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7917751f80db1b7e3ff4", - "label": "잔치국수", - "amount": 5000, + "id": "32efda9dfa42915a3c5a", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "bf7b8cc9a1a31089ffac", - "label": "비빔국수", - "amount": 6000, + "id": "32efda9dfa42915a3c5a-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-19241", + "name": "현궁", + "businessName": "현궁", + "categorySlug": "korean", + "address": "서울특별시 종로구 종로1길 42 (수송동) 지하1층", + "district": "서울특별시 종로구", + "latitude": 37.57390412787066, + "longitude": 126.97898519648197, + "representativePriceAmount": 10000, + "representativePriceLabel": "철판제육쌈밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 철판제육쌈밥 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-736-3369 / 영업시간: 10:00-22:00 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "3cab0c34fb3afcf90786", - "label": "냉비빔국수(4~11월)", - "amount": 6000, + "id": "1e72def18c7803fe3850", + "label": "철판제육쌈밥", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "d066ac7ca4cbcd8eb158", - "label": "동치미국수(4~10월)", - "amount": 6000, + "id": "1e72def18c7803fe3850-history", + "label": "철판제육쌈밥", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-252", + "name": "한일세탁", + "businessName": "한일세탁", + "categorySlug": "laundry", + "address": "서울특별시 광진구 자양번영로5길 7 (자양동)", + "district": "서울특별시 광진구", + "latitude": 37.5323210771224, + "longitude": 127.074899542077, + "representativePriceAmount": 3000, + "representativePriceLabel": "의복수선료", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 의복수선료 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-447-2856 / 영업시간: 월~토 09:00 ~ 19:00 일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "9edad30051340aa74b5c", - "label": "어묵국수", - "amount": 6000, + "id": "e7e5e620fe7028dfd498", + "label": "의복수선료", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b4d763f86db3a79385ea", - "label": "반반국수", - "amount": 8000, + "id": "69b7df717db797d8cd1c", + "label": "양복세탁료", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7917751f80db1b7e3ff4-history", - "label": "잔치국수", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bf7b8cc9a1a31089ffac-history", - "label": "비빔국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3cab0c34fb3afcf90786-history", - "label": "냉비빔국수(4~11월)", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d066ac7ca4cbcd8eb158-history", - "label": "동치미국수(4~10월)", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9edad30051340aa74b5c-history", - "label": "어묵국수", - "amount": 6000, + "id": "e7e5e620fe7028dfd498-history", + "label": "의복수선료", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b4d763f86db3a79385ea-history", - "label": "반반국수", - "amount": 8000, + "id": "69b7df717db797d8cd1c-history", + "label": "양복세탁료", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7320,65 +7180,51 @@ "comments": [] }, { - "id": "goodprice-2528", - "name": "뉴모델이용원", - "businessName": "뉴모델이용원", - "categorySlug": "barber", - "address": "대전광역시 동구 계족로 103 (신흥동)", - "district": "대전광역시 동구", - "latitude": 36.3235977678715, - "longitude": 127.445302754, - "representativePriceAmount": 7000, - "representativePriceLabel": "이용료", + "id": "goodprice-13952", + "name": "119찹쌀꽈배기", + "businessName": "119찹쌀꽈배기", + "categorySlug": "other-food", + "address": "경상남도 창원시 마산합포구 해안대로 11 (해운동) 1층 119호(해운동, 이화월드프라자)", + "district": "경상남도 창원시", + "latitude": 35.180646134171674, + "longitude": 128.560237476249, + "representativePriceAmount": 500, + "representativePriceLabel": "꽈배기", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-282-1933 / 영업시간: 06:00 ~ 19:00 / 매주 수요일 정기휴무", + "description": "이화월드프라자상가 내 1층", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-245-7939", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "360b54a4464b7a97a3a4", - "label": "이용료", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "82c47b4c16a4a29e816d", - "label": "일반(남)", - "amount": 7000, + "id": "c8f47db80be51eb49d16", + "label": "꽈배기", + "amount": 500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c03cc7b524a64cbbd09f", - "label": "염색", - "amount": 8000, + "id": "2ed6791c52b828305f40", + "label": "팥씨앗도너츠", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "360b54a4464b7a97a3a4-history", - "label": "이용료", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "82c47b4c16a4a29e816d-history", - "label": "일반(남)", - "amount": 7000, + "id": "c8f47db80be51eb49d16-history", + "label": "꽈배기", + "amount": 500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c03cc7b524a64cbbd09f-history", - "label": "염색", - "amount": 8000, + "id": "2ed6791c52b828305f40-history", + "label": "팥씨앗도너츠", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7386,37 +7232,37 @@ "comments": [] }, { - "id": "goodprice-2529", - "name": "대광이용원", - "businessName": "대광이용원", - "categorySlug": "barber", - "address": "대전광역시 동구 계족로 73-2 (신흥동)", - "district": "대전광역시 동구", - "latitude": 36.3212528089861, - "longitude": 127.443947726738, - "representativePriceAmount": 7000, - "representativePriceLabel": "이용료", + "id": "goodprice-5419", + "name": "명보헤어", + "businessName": "명보헤어", + "categorySlug": "beauty", + "address": "전북특별자치도 전주시 완산구 팔달로 101-26", + "district": "전북특별자치도 전주시", + "latitude": 35.8123674581985, + "longitude": 127.148537758879, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-282-7720 / 영업시간: 09:00 ~ 19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-282-1643 / 영업시간: 월-토 10:00-19:00 (일요일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f4e0e20600dc3854997e", - "label": "이용료", - "amount": 7000, + "id": "40adc52430bed74b804a", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f4e0e20600dc3854997e-history", - "label": "이용료", - "amount": 7000, + "id": "40adc52430bed74b804a-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7424,51 +7270,51 @@ "comments": [] }, { - "id": "goodprice-14196", - "name": "떡볶이가좋다", - "businessName": "떡볶이가좋다", + "id": "goodprice-11580", + "name": "홍순두부", + "businessName": "홍순두부", "categorySlug": "korean", - "address": "울산광역시 중구 중앙시장길 2-7 (옥교동) 1층", - "district": "울산광역시 중구", - "latitude": 35.55501926169491, - "longitude": 129.32205281017949, - "representativePriceAmount": 3000, - "representativePriceLabel": "즉석떡볶이", + "address": "서울특별시 종로구 명륜길 50 1층", + "district": "서울특별시 종로구", + "latitude": 37.5892935619767, + "longitude": 126.994629871047, + "representativePriceAmount": 5500, + "representativePriceLabel": "홍순두부", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 즉석떡볶이 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-246-4702 / 영업시간: 월~일 10:00~20:30 (라스트오더 20:00)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 홍순두부 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6f96eef1ec37f3aa712f", - "label": "즉석떡볶이", - "amount": 3000, + "id": "957837f91d58cf5efa45", + "label": "홍순두부", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "89890e63a738df1d6442", - "label": "치즈떡볶이", - "amount": 3500, + "id": "4aa7e96eb5cdcde2b16f", + "label": "순두부", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6f96eef1ec37f3aa712f-history", - "label": "즉석떡볶이", - "amount": 3000, + "id": "957837f91d58cf5efa45-history", + "label": "홍순두부", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "89890e63a738df1d6442-history", - "label": "치즈떡볶이", - "amount": 3500, + "id": "4aa7e96eb5cdcde2b16f-history", + "label": "순두부", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7476,34 +7322,27 @@ "comments": [] }, { - "id": "goodprice-16674", - "name": "마마칼국수", - "businessName": "마마칼국수", - "categorySlug": "korean", - "address": "울산광역시 중구 남외1길 56 (남외동) 1층", - "district": "울산광역시 중구", - "latitude": 35.56704089419386, - "longitude": 129.35042603603065, + "id": "goodprice-271", + "name": "헤어라인", + "businessName": "헤어라인", + "categorySlug": "beauty", + "address": "서울특별시 광진구 광나루로30나길 6-1", + "district": "서울특별시 광진구", + "latitude": 37.5436236638171, + "longitude": 127.082097011554, "representativePriceAmount": 7000, - "representativePriceLabel": "돌솥비빔밥", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비빔밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-291-1159 / 영업시간: 월~토: 10:30~20:00 / 19:30 라스트오더 일: 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목~화 09:00 ~ 21:00 수 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "21ebc90cdcb3a27ae77d", - "label": "돌솥비빔밥", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5b6953bd2c10a59e736a", - "label": "순두부찌개", + "id": "e7c7fec36bb44f1d8aa1", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -7511,15 +7350,8 @@ ], "history": [ { - "id": "21ebc90cdcb3a27ae77d-history", - "label": "돌솥비빔밥", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5b6953bd2c10a59e736a-history", - "label": "순두부찌개", + "id": "e7c7fec36bb44f1d8aa1-history", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -7528,50 +7360,102 @@ "comments": [] }, { - "id": "goodprice-2999", - "name": "만수원숯불갈비", - "businessName": "만수원숯불갈비", + "id": "goodprice-19285", + "name": "강남추어탕", + "businessName": "강남추어탕", "categorySlug": "korean", - "address": "울산광역시 중구 해오름16길 2 (남외동)", - "district": "울산광역시 중구", - "latitude": 35.5607915680552, - "longitude": 129.342737348461, - "representativePriceAmount": 8000, - "representativePriceLabel": "쌈정식", + "address": "경상남도 창원시 진해구 중원로85번길 18 (화천동) 강남추어탕", + "district": "경상남도 창원시", + "latitude": 35.15213845076089, + "longitude": 128.65821162206046, + "representativePriceAmount": 9000, + "representativePriceLabel": "추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 쌈정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-297-4327", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-541-5033", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "511924dcbb4f0c748f92", - "label": "쌈정식", - "amount": 8000, + "id": "3640f861d8b74ede7232", + "label": "추어탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ecd2d1aabfd88ed02092", - "label": "삼겹살(120g)", - "amount": 10000, + "id": "9b7f34ec6e82a23746c9", + "label": "순두부 정식", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "511924dcbb4f0c748f92-history", - "label": "쌈정식", + "id": "ee83be5bb2ed6dcfe054", + "label": "시래기 정식", "amount": 8000, "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "3640f861d8b74ede7232-history", + "label": "추어탕", + "amount": 9000, + "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ecd2d1aabfd88ed02092-history", - "label": "삼겹살(120g)", + "id": "9b7f34ec6e82a23746c9-history", + "label": "순두부 정식", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ee83be5bb2ed6dcfe054-history", + "label": "시래기 정식", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-18209", + "name": "바다미용샵", + "businessName": "바다미용샵", + "categorySlug": "beauty", + "address": "전북특별자치도 전주시 완산구 영경1길 21 (중화산동2가) 우성근영타운상가 1-101", + "district": "전북특별자치도 전주시", + "latitude": 35.81809189327877, + "longitude": 127.12518062331628, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트(학생)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(학생) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-223-8840 / 영업시간: 09:00~19:00 / 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "846c5f93ac02c15bc985", + "label": "커트(학생)", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "846c5f93ac02c15bc985-history", + "label": "커트(학생)", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -7580,51 +7464,51 @@ "comments": [] }, { - "id": "goodprice-19370", - "name": "모닝베이커리", - "businessName": "모닝베이커리", - "categorySlug": "bakery", - "address": "울산광역시 중구 구교6길 63 (반구동) 모닝베이커리", - "district": "울산광역시 중구", - "latitude": 35.565210010138046, - "longitude": 129.34129671811115, - "representativePriceAmount": 1000, - "representativePriceLabel": "팥빵", + "id": "goodprice-13929", + "name": "효자왕족발", + "businessName": "효자왕족발", + "categorySlug": "korean", + "address": "서울특별시 종로구 자하문로 31-2 (통인동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.578801957623014, + "longitude": 126.9712764779437, + "representativePriceAmount": 9000, + "representativePriceLabel": "보쌈정식(점심)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 팥빵 1,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-294-6636 / 영업시간: 07:00~21:00 / 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보쌈정식(점심) 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-735-7601 / 영업시간: 영업시간 : 매일 11:00~22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f60a47bfb867e2bc5d0b", - "label": "팥빵", - "amount": 1000, + "id": "d325e45d19cc4b8bcd47", + "label": "보쌈정식(점심)", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e7252a9efbc87280b15f", - "label": "머핀", - "amount": 2000, + "id": "f35fde8c8ab8bd603b19", + "label": "쟁반막국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f60a47bfb867e2bc5d0b-history", - "label": "팥빵", - "amount": 1000, + "id": "d325e45d19cc4b8bcd47-history", + "label": "보쌈정식(점심)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e7252a9efbc87280b15f-history", - "label": "머핀", - "amount": 2000, + "id": "f35fde8c8ab8bd603b19-history", + "label": "쟁반막국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7632,34 +7516,34 @@ "comments": [] }, { - "id": "goodprice-15902", - "name": "만리장성", - "businessName": "만리장성", - "categorySlug": "chinese", - "address": "세종특별자치시 조치원읍 충현로 91 101호 만리장성", - "district": "세종특별자치시 조치원읍", - "latitude": 36.59668528394338, - "longitude": 127.29539473219728, - "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", + "id": "goodprice-11179", + "name": "경로이발관", + "businessName": "경로이발관", + "categorySlug": "barber", + "address": "서울특별시 동대문구 왕산로 175-1 (제기동) 2층", + "district": "서울특별시 동대문구", + "latitude": 37.57961025550147, + "longitude": 127.0426591413119, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-868-5400", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8798-2717", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d068a6690371d4a2a718", - "label": "짜장면", - "amount": 6000, + "id": "7024177710b582aaae63", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "efcb3135ce46ba5e8636", - "label": "짬뽕", + "id": "c26aca9e8cb0f48a234a", + "label": "염색", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -7667,15 +7551,15 @@ ], "history": [ { - "id": "d068a6690371d4a2a718-history", - "label": "짜장면", - "amount": 6000, + "id": "7024177710b582aaae63-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "efcb3135ce46ba5e8636-history", - "label": "짬뽕", + "id": "c26aca9e8cb0f48a234a-history", + "label": "염색", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -7684,65 +7568,79 @@ "comments": [] }, { - "id": "goodprice-10190", - "name": "맛있는 수다", - "businessName": "맛있는 수다", - "categorySlug": "bakery", - "address": "세종특별자치시 조치원읍 새내10길 41 맛있는 수다", - "district": "세종특별자치시 조치원읍", - "latitude": 36.6006451799859, - "longitude": 127.300531090282, - "representativePriceAmount": 5000, - "representativePriceLabel": "고기만두(8개)", + "id": "goodprice-17141", + "name": "고운프리티", + "businessName": "고운프리티", + "categorySlug": "other-food", + "address": "경상남도 창원시 진해구 돌리로9번길 10-1 (석동) 1층", + "district": "경상남도 창원시", + "latitude": 35.159411115795905, + "longitude": 128.69968744654085, + "representativePriceAmount": 1500, + "representativePriceLabel": "아메리카노 HOT(ICE +500원)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 고기만두(8개) 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-4967", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 HOT(ICE +500원) 1,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1428-2177", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "da70e68ebc4cfb8b68cb", - "label": "고기만두(8개)", - "amount": 5000, + "id": "c5e10493f9ba8d5216eb", + "label": "아메리카노 HOT(ICE +500원)", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4dadc3bbeb3ca6378693", - "label": "김치만두(8개)", - "amount": 5000, + "id": "37db1ec28219d84232a5", + "label": "수제청자 HOT(ICE +500원)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3becf493f79fd4f786a1", - "label": "오색쌀찐빵(5개)", - "amount": 6000, + "id": "0e4885f25d5821129ebd", + "label": "생과일주스", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c1f1a2a27d9a0ff8f4b9", + "label": "한방차", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "da70e68ebc4cfb8b68cb-history", - "label": "고기만두(8개)", - "amount": 5000, + "id": "c5e10493f9ba8d5216eb-history", + "label": "아메리카노 HOT(ICE +500원)", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4dadc3bbeb3ca6378693-history", - "label": "김치만두(8개)", - "amount": 5000, + "id": "37db1ec28219d84232a5-history", + "label": "수제청자 HOT(ICE +500원)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3becf493f79fd4f786a1-history", - "label": "오색쌀찐빵(5개)", - "amount": 6000, + "id": "0e4885f25d5821129ebd-history", + "label": "생과일주스", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c1f1a2a27d9a0ff8f4b9-history", + "label": "한방차", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7750,51 +7648,37 @@ "comments": [] }, { - "id": "goodprice-17111", - "name": "경희당구클럽", - "businessName": "경희당구클럽", - "categorySlug": "other-service", - "address": "경기도 수원시 영통구 덕영대로 1707 (영통동) 4층", - "district": "경기도 수원시", - "latitude": 37.24799357407884, - "longitude": 127.07820639116257, - "representativePriceAmount": 1000, - "representativePriceLabel": "10분", + "id": "goodprice-15151", + "name": "몽헤어갤러리", + "businessName": "몽헤어갤러리", + "categorySlug": "beauty", + "address": "전라남도 목포시 산정로 211 (용당동) 몽헤어갤러리", + "district": "전라남도 목포시", + "latitude": 34.80675654469635, + "longitude": 126.38939338794059, + "representativePriceAmount": 7000, + "representativePriceLabel": "학생커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 10분 1,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-5631-2323 / 영업시간: 10:00~03:00 / 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 학생커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-276-0479", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "805ed0c8d272513bf5a3", - "label": "10분", - "amount": 1000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "572caa1f64e66b284464", - "label": "1시간", - "amount": 6000, + "id": "fd7465cbf63d5ce69aae", + "label": "학생커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "805ed0c8d272513bf5a3-history", - "label": "10분", - "amount": 1000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "572caa1f64e66b284464-history", - "label": "1시간", - "amount": 6000, + "id": "fd7465cbf63d5ce69aae-history", + "label": "학생커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7802,65 +7686,37 @@ "comments": [] }, { - "id": "goodprice-15567", - "name": "고운돈 79냉삼집", - "businessName": "고운돈 79냉삼집", + "id": "goodprice-19242", + "name": "흥진옥", + "businessName": "흥진옥", "categorySlug": "korean", - "address": "경기도 수원시 영통구 반달로 50 (영통동) 1층", - "district": "경기도 수원시", - "latitude": 37.249825831037455, - "longitude": 127.07722668063614, - "representativePriceAmount": 7900, - "representativePriceLabel": "냉삼겹(150g)", + "address": "서울특별시 종로구 종로5길 19-12 (청진동) 1층", + "district": "서울특별시 종로구", + "latitude": 37.571396433403386, + "longitude": 126.98027437148129, + "representativePriceAmount": 10000, + "representativePriceLabel": "뼈해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉삼겹(150g) 7,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-205-5678 / 영업시간: 16:00~01:30 월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-732-2214 / 영업시간: 09:00-21:00 (Break Time 15:00-17:00) 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ba784350a1ea24409a84", - "label": "냉삼겹(150g)", - "amount": 7900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "27f258eada25c948846d", - "label": "김치찌개", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "61669d372441f81a7ff9", - "label": "우삼겹(150g)", - "amount": 9500, + "id": "19dcdd4b7f6a29bdd80b", + "label": "뼈해장국", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ba784350a1ea24409a84-history", - "label": "냉삼겹(150g)", - "amount": 7900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "27f258eada25c948846d-history", - "label": "김치찌개", - "amount": 5500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "61669d372441f81a7ff9-history", - "label": "우삼겹(150g)", - "amount": 9500, + "id": "19dcdd4b7f6a29bdd80b-history", + "label": "뼈해장국", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7868,37 +7724,37 @@ "comments": [] }, { - "id": "goodprice-14640", - "name": "광명수산 수원역점", - "businessName": "광명수산 수원역점", - "categorySlug": "japanese", - "address": "경기도 수원시 팔달구 갓매산로 38 (매산로2가) 1층", - "district": "경기도 수원시", - "latitude": 37.267869938538816, - "longitude": 127.00558487313573, - "representativePriceAmount": 8000, - "representativePriceLabel": "활어회덮밥", + "id": "goodprice-16151", + "name": "오드리스튜디오", + "businessName": "오드리스튜디오", + "categorySlug": "other-service", + "address": "서울특별시 동대문구 회기로 162 (회기동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.590585672307064, + "longitude": 127.05390121670456, + "representativePriceAmount": 7900, + "representativePriceLabel": "증명사진", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 활어회덮밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-244-8899", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 증명사진 7,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-969-7475", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "91772ea5ed9663a78080", - "label": "활어회덮밥", - "amount": 8000, + "id": "1be222063a4425408049", + "label": "증명사진", + "amount": 7900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "91772ea5ed9663a78080-history", - "label": "활어회덮밥", - "amount": 8000, + "id": "1be222063a4425408049-history", + "label": "증명사진", + "amount": 7900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7906,65 +7762,51 @@ "comments": [] }, { - "id": "goodprice-16650", - "name": "광명세탁", - "businessName": "광명세탁", - "categorySlug": "laundry", - "address": "강원특별자치도 춘천시 삭주로 27 (교동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.88154669495617, - "longitude": 127.73468581005257, - "representativePriceAmount": 6000, - "representativePriceLabel": "양복상의", + "id": "goodprice-10627", + "name": "24시국수회관", + "businessName": "24시국수회관", + "categorySlug": "korean", + "address": "제주특별자치도 제주시 남성로 122-1", + "district": "제주특별자치도 제주시", + "latitude": 33.5087686026345, + "longitude": 126.518427788905, + "representativePriceAmount": 8000, + "representativePriceLabel": "순대국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복상의 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-252-6271", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-702-1162", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1a784509b2c55dc1ce18", - "label": "양복상의", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8b2426d21428445f60cf", - "label": "양복하의", - "amount": 4000, + "id": "7fb45907af5738af6d21", + "label": "순대국밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "baa3c7b1c9cecf7fda97", - "label": "셔츠", - "amount": 4000, + "id": "6464c7f6d87e3f3388a9", + "label": "고기국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1a784509b2c55dc1ce18-history", - "label": "양복상의", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8b2426d21428445f60cf-history", - "label": "양복하의", - "amount": 4000, + "id": "7fb45907af5738af6d21-history", + "label": "순대국밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "baa3c7b1c9cecf7fda97-history", - "label": "셔츠", - "amount": 4000, + "id": "6464c7f6d87e3f3388a9-history", + "label": "고기국수", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -7972,65 +7814,51 @@ "comments": [] }, { - "id": "goodprice-4376", - "name": "광치해장국", - "businessName": "광치해장국", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 소양로 108 (소양동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8932252439588, - "longitude": 127.726036660624, + "id": "goodprice-6428", + "name": "곽헤어뷰티", + "businessName": "곽헤어뷰티", + "categorySlug": "beauty", + "address": "경상북도 포항시 북구 장량중앙로65번길 18-1 (양덕동) 1층", + "district": "경상북도 포항시", + "latitude": 36.09024160303488, + "longitude": 129.3898774029156, "representativePriceAmount": 6000, - "representativePriceLabel": "선지해장국", + "representativePriceLabel": "남자커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 선지해장국 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-1100 / 영업시간: 06:30 - 19:30 브레이크타임 15:00 - 17:00 라스트오더 19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남자커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1449-1250", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e478b3a32ffd704d858a", - "label": "선지해장국", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b1083bba4bf8219041f1", - "label": "콩나물해장국", + "id": "5e910dff72088d32f430", + "label": "남자커트", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "de509c5458fa554531ee", - "label": "우거지해장국", - "amount": 6000, + "id": "e29d82a25317fb61f503", + "label": "여자커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e478b3a32ffd704d858a-history", - "label": "선지해장국", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b1083bba4bf8219041f1-history", - "label": "콩나물해장국", + "id": "5e910dff72088d32f430-history", + "label": "남자커트", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "de509c5458fa554531ee-history", - "label": "우거지해장국", - "amount": 6000, + "id": "e29d82a25317fb61f503-history", + "label": "여자커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8038,65 +7866,65 @@ "comments": [] }, { - "id": "goodprice-4358", - "name": "국수닭", - "businessName": "국수닭", + "id": "goodprice-968", + "name": "345국수", + "businessName": "345국수", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 남춘로 36번길 48 (퇴계동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8615806593812, - "longitude": 127.735535866785, - "representativePriceAmount": 6500, - "representativePriceLabel": "닭국수", + "address": "서울특별시 중구 청구로 83-9 1층", + "district": "서울특별시 중구", + "latitude": 37.560172073734, + "longitude": 127.013228537389, + "representativePriceAmount": 8000, + "representativePriceLabel": "손수제비", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 닭국수 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-6399 / 영업시간: 11:00 - 21:00 브레이크타임 15:00 - 17:00 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손수제비 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-5257 / 영업시간: 월~금 11:00~20:00 토 11:00~15:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "76c1c7337d49062c4ad3", - "label": "닭국수", - "amount": 6500, + "id": "93807d7eba2568964966", + "label": "손수제비", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f7a1530cf8c7285c8549", - "label": "비빔국수", + "id": "66fbf5a1cea154438d07", + "label": "잔치국수", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6af260349a1b531b4c8c", - "label": "얼큰닭국수", - "amount": 7500, + "id": "096de478bf333e20cc09", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "76c1c7337d49062c4ad3-history", - "label": "닭국수", - "amount": 6500, - "verificationStatus": "verified", + "id": "93807d7eba2568964966-history", + "label": "손수제비", + "amount": 8000, + "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f7a1530cf8c7285c8549-history", - "label": "비빔국수", + "id": "66fbf5a1cea154438d07-history", + "label": "잔치국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6af260349a1b531b4c8c-history", - "label": "얼큰닭국수", - "amount": 7500, + "id": "096de478bf333e20cc09-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8104,65 +7932,37 @@ "comments": [] }, { - "id": "goodprice-4359", - "name": "그랑블루바다향기칼국수", - "businessName": "그랑블루바다향기칼국수", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 동내면 고은길 168 2층", - "district": "강원특별자치도 춘천시", - "latitude": 37.8383207877726, - "longitude": 127.783588716154, - "representativePriceAmount": 9000, - "representativePriceLabel": "해물칼국수", + "id": "goodprice-488", + "name": "우주미용실", + "businessName": "우주미용실", + "categorySlug": "beauty", + "address": "서울특별시 동대문구 전농로16길 33 (전농동)", + "district": "서울특별시 동대문구", + "latitude": 37.57837593251976, + "longitude": 127.05916519059018, + "representativePriceAmount": 3000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해물칼국수 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-263-2801 / 영업시간: 08:00 - 21:00 매주 일요일은 점심식사만 가능 (11:00 - 14:00)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2244-2180", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7e078491a1b88611f581", - "label": "해물칼국수", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b2709beac0aede322dfe", - "label": "야채비빔밥", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "fdf913938dabbaef97cd", - "label": "비빔국수", - "amount": 9000, + "id": "7ffce2df50319d167bdf", + "label": "커트", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7e078491a1b88611f581-history", - "label": "해물칼국수", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b2709beac0aede322dfe-history", - "label": "야채비빔밥", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "fdf913938dabbaef97cd-history", - "label": "비빔국수", - "amount": 9000, + "id": "7ffce2df50319d167bdf-history", + "label": "커트", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8170,41 +7970,55 @@ "comments": [] }, { - "id": "goodprice-14756", - "name": "고가네왕돈까스", - "businessName": "고가네왕돈까스", + "id": "goodprice-7203", + "name": "가람", + "businessName": "가람", "categorySlug": "korean", - "address": "충청북도 청주시 청원구 중앙로 135-2 (우암동)", - "district": "충청북도 청주시", - "latitude": 36.64938771590744, - "longitude": 127.48776069611203, - "representativePriceAmount": 8000, - "representativePriceLabel": "왕돈까스", + "address": "제주특별자치도 제주시 복지로북길 4 1층", + "district": "제주특별자치도 제주시", + "latitude": 33.4888491368419, + "longitude": 126.520646841034, + "representativePriceAmount": 10000, + "representativePriceLabel": "추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 왕돈까스 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-255-1855", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-756-0012 / 영업시간: 매일 09:00-21:00 토요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bffc62fde919d2b7e84d", - "label": "왕돈까스", + "id": "d64795c2c718505cf336", + "label": "추어탕", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d295198876104e99dab4", + "label": "고사리육개장", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5459042df9035ef44fdb", + "label": "닭칼국수", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a3dad97c4b0af72a3bcd", - "label": "양푼이비빔밥", - "amount": 6000, + "id": "bd4d62ae4cde0a46c8d7", + "label": "돌솥밥추어탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6aa6ce43ee5851f276f6", - "label": "부대찌개", + "id": "177eaa4addc85646657a", + "label": "일품닭칼국수", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -8212,22 +8026,36 @@ ], "history": [ { - "id": "bffc62fde919d2b7e84d-history", - "label": "왕돈까스", + "id": "d64795c2c718505cf336-history", + "label": "추어탕", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d295198876104e99dab4-history", + "label": "고사리육개장", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "5459042df9035ef44fdb-history", + "label": "닭칼국수", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a3dad97c4b0af72a3bcd-history", - "label": "양푼이비빔밥", - "amount": 6000, + "id": "bd4d62ae4cde0a46c8d7-history", + "label": "돌솥밥추어탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6aa6ce43ee5851f276f6-history", - "label": "부대찌개", + "id": "177eaa4addc85646657a-history", + "label": "일품닭칼국수", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -8236,37 +8064,37 @@ "comments": [] }, { - "id": "goodprice-15786", - "name": "고가네행복밥상", - "businessName": "고가네행복밥상", - "categorySlug": "korean", - "address": "충청북도 청주시 서원구 수곡로113번길 11 (수곡동) 1층", - "district": "충청북도 청주시", - "latitude": 36.6203686371318, - "longitude": 127.47013521623991, - "representativePriceAmount": 8000, - "representativePriceLabel": "동태찌개", + "id": "goodprice-10579", + "name": "남양스튜디오", + "businessName": "남양스튜디오", + "categorySlug": "other-service", + "address": "경상남도 창원시 마산합포구 장장군로 31-23 (장군동4가)", + "district": "경상남도 창원시", + "latitude": 35.1971042919322, + "longitude": 128.565386781544, + "representativePriceAmount": 10000, + "representativePriceLabel": "가족사진", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 동태찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-285-6878", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 가족사진 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-245-0548 / 영업시간: 월~금 : 09:00~17:00 토 : 10:00~14:00 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "781d3edd28c885c48723", - "label": "동태찌개", - "amount": 8000, + "id": "0f3671e4a445390d71a6", + "label": "가족사진", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "781d3edd28c885c48723-history", - "label": "동태찌개", - "amount": 8000, + "id": "0f3671e4a445390d71a6-history", + "label": "가족사진", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8274,65 +8102,51 @@ "comments": [] }, { - "id": "goodprice-15852", - "name": "고드미손두부", - "businessName": "고드미손두부", + "id": "goodprice-979", + "name": "거목식당", + "businessName": "거목식당", "categorySlug": "korean", - "address": "충청북도 청주시 흥덕구 서현로 12-31 (가경동)", - "district": "충청북도 청주시", - "latitude": 36.6159289050475, - "longitude": 127.42453456395413, - "representativePriceAmount": 9000, - "representativePriceLabel": "국산콩순두부", + "address": "서울특별시 중구 을지로36길 18 (을지로5가)", + "district": "서울특별시 중구", + "latitude": 37.5659767545803, + "longitude": 127.001477572948, + "representativePriceAmount": 7000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국산콩순두부 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-284-0944", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-226-0010 / 영업시간: 월~토 05:00~20:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e5fea02235fd66fe7c50", - "label": "국산콩순두부", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0dc95ee288d7ad4eba3f", - "label": "국산콩비지장", - "amount": 9000, + "id": "0a3174cd0f6da08e1c41", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "82c05f63ab969fedeb42", - "label": "국산콩청국장", - "amount": 9000, + "id": "1a4d07add33313b4fdfd", + "label": "순두부찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e5fea02235fd66fe7c50-history", - "label": "국산콩순두부", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0dc95ee288d7ad4eba3f-history", - "label": "국산콩비지장", - "amount": 9000, + "id": "0a3174cd0f6da08e1c41-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "82c05f63ab969fedeb42-history", - "label": "국산콩청국장", - "amount": 9000, + "id": "1a4d07add33313b4fdfd-history", + "label": "순두부찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8340,37 +8154,37 @@ "comments": [] }, { - "id": "goodprice-4724", - "name": "고려미용실", - "businessName": "고려미용실", - "categorySlug": "beauty", - "address": "충청북도 청주시 서원구 모충로 98-1 (모충동)", - "district": "충청북도 청주시", - "latitude": 36.6277882283516, - "longitude": 127.474142701453, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트", + "id": "goodprice-11003", + "name": "이문동사진관", + "businessName": "이문동사진관", + "categorySlug": "other-service", + "address": "서울특별시 동대문구 이문로12길 4-3 (이문동)", + "district": "서울특별시 동대문구", + "latitude": 37.59303835527455, + "longitude": 127.05835078616246, + "representativePriceAmount": 10000, + "representativePriceLabel": "증명사진", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-274-6207 / 영업시간: 09:00~15:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 증명사진 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0503-7151-4456", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d5a005a75f069902501b", - "label": "커트", - "amount": 8000, + "id": "a9127531d2c553e23ae6", + "label": "증명사진", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d5a005a75f069902501b-history", - "label": "커트", - "amount": 8000, + "id": "a9127531d2c553e23ae6-history", + "label": "증명사진", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8378,34 +8192,41 @@ "comments": [] }, { - "id": "goodprice-5410", - "name": "또또분식", - "businessName": "또또분식", + "id": "goodprice-10018", + "name": "깡통골목할매 유부전골 본점", + "businessName": "깡통골목할매 유부전골 본점", "categorySlug": "korean", - "address": "전북특별자치도 전주시 덕진구 삼송3길 14", - "district": "전북특별자치도 전주시", - "latitude": 35.8424270036272, - "longitude": 127.135459918463, - "representativePriceAmount": 4500, - "representativePriceLabel": "떡볶이", + "address": "부산광역시 중구 부평3길 29 (부평동1가)", + "district": "부산광역시 중구", + "latitude": 35.1020375328885, + "longitude": 129.027061206734, + "representativePriceAmount": 6800, + "representativePriceLabel": "유부전골", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 4,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 유부전골 6,800원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-245-1878", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ea9bd3f31d7800fbe561", - "label": "떡볶이", - "amount": 4500, + "id": "063d5c815bd0710ed85d", + "label": "유부전골", + "amount": 6800, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9206dc170a859a859780", - "label": "수제모듬튀김", + "id": "f9f7f658ad66649404fd", + "label": "유부보따리우동", + "amount": 6800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1c46f9e2aa279483dfb2", + "label": "유부떡볶이", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -8413,15 +8234,22 @@ ], "history": [ { - "id": "ea9bd3f31d7800fbe561-history", - "label": "떡볶이", - "amount": 4500, + "id": "063d5c815bd0710ed85d-history", + "label": "유부전골", + "amount": 6800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9206dc170a859a859780-history", - "label": "수제모듬튀김", + "id": "f9f7f658ad66649404fd-history", + "label": "유부보따리우동", + "amount": 6800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1c46f9e2aa279483dfb2-history", + "label": "유부떡볶이", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -8430,65 +8258,65 @@ "comments": [] }, { - "id": "goodprice-13854", - "name": "또또커피", - "businessName": "또또커피", - "categorySlug": "other-food", - "address": "전북특별자치도 전주시 덕진구 삼송3길 11-1 (금암동) 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.842528730789724, - "longitude": 127.13507910263799, - "representativePriceAmount": 2000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-17648", + "name": "뉴헤어라인 이용원", + "businessName": "뉴헤어라인 이용원", + "categorySlug": "barber", + "address": "경상남도 창원시 진해구 제황로 83-1 (충무동) 1층", + "district": "경상남도 창원시", + "latitude": 35.15172782098772, + "longitude": 128.66680204776503, + "representativePriceAmount": 9000, + "representativePriceLabel": "남성커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 운영시간 - (월요일~금요일) 08:00 ~ 17:00 - (토요일~일요일) 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 남성커트 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1405-1427", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5775daff34ce353fc537", - "label": "아메리카노", - "amount": 2000, + "id": "2fdf97762dd7ec37d164", + "label": "남성커트", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1e0b78ca486403b40892", - "label": "카페라떼", - "amount": 2700, + "id": "791e159366a70c60d39e", + "label": "70세 이상 커드", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "48aecec2a77f9e0eb606", - "label": "3샷 아메리카노", - "amount": 2500, + "id": "c2f0a8eb36e5dc2fd22b", + "label": "청소년 커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5775daff34ce353fc537-history", - "label": "아메리카노", - "amount": 2000, + "id": "2fdf97762dd7ec37d164-history", + "label": "남성커트", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1e0b78ca486403b40892-history", - "label": "카페라떼", - "amount": 2700, + "id": "791e159366a70c60d39e-history", + "label": "70세 이상 커드", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "48aecec2a77f9e0eb606-history", - "label": "3샷 아메리카노", - "amount": 2500, + "id": "c2f0a8eb36e5dc2fd22b-history", + "label": "청소년 커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8496,214 +8324,182 @@ "comments": [] }, { - "id": "goodprice-5436", - "name": "또와분식", - "businessName": "또와분식", - "categorySlug": "bakery", - "address": "전북특별자치도 전주시 완산구 태평5길 41-5", - "district": "전북특별자치도 전주시", - "latitude": 35.8241917473874, - "longitude": 127.143168338244, - "representativePriceAmount": 2000, - "representativePriceLabel": "찹쌀도너츠(3개)", + "id": "goodprice-16085", + "name": "공화춘", + "businessName": "공화춘", + "categorySlug": "chinese", + "address": "서울특별시 중구 청파로 457-1 (중림동) 2층", + "district": "서울특별시 중구", + "latitude": 37.56020605082971, + "longitude": 126.96781059246393, + "representativePriceAmount": 6000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 찹쌀도너츠(3개) 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-273-2923 / 영업시간: 10:00-19:30 (화요잃휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-723-4038 / 영업시간: 영업시간 10:30 ~ 21:00 BreakTime 15:00 ~ 17:00 (일요일 정기휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b844696d599c621e9582", - "label": "찹쌀도너츠(3개)", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b1991af3478a7e4a0c8c", - "label": "찐빵(3개)", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "835200d53f0e4397df2f", - "label": "고로케", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d2e8f4c3218c8c0cebfb", - "label": "꽈배기 3개", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e63ebca853e51549606f", - "label": "만두 10개", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e1460d3a5748974ba320", - "label": "슈크림", - "amount": 1500, + "id": "80381c7c3813a0cd4c59", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2053ab0d1046729ed09c", - "label": "어묵", - "amount": 2000, + "id": "46eb2fc605087014020b", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "83549f88ab427ae63ea5", - "label": "찐빵 3개", - "amount": 2000, + "id": "80381c7c3813a0cd4c59-history", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "61d0d63b13af7cdc1b75", - "label": "찹쌀도너츠 2개", - "amount": 1000, + "id": "46eb2fc605087014020b-history", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13392", + "name": "형제이발", + "businessName": "형제이발", + "categorySlug": "barber", + "address": "서울특별시 동대문구 왕산로35길 8 (청량리동)", + "district": "서울특별시 동대문구", + "latitude": 37.58014649551235, + "longitude": 127.0434490157586, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4751-4245", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "fff9c10e9fc7dfbe3e8e", - "label": "치즈고로케", - "amount": 1500, + "id": "2c2bc68499061a300275", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "573a8276161bd4d80fcf", - "label": "팥도너츠 2개", - "amount": 1000, + "id": "bf80db96f73f5b5a73fe", + "label": "염색", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b844696d599c621e9582-history", - "label": "찹쌀도너츠(3개)", - "amount": 2000, + "id": "2c2bc68499061a300275-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b1991af3478a7e4a0c8c-history", - "label": "찐빵(3개)", - "amount": 2000, + "id": "bf80db96f73f5b5a73fe-history", + "label": "염색", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "835200d53f0e4397df2f-history", - "label": "고로케", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-15032", + "name": "꽃가람 남포직영점", + "businessName": "꽃가람 남포직영점", + "categorySlug": "korean", + "address": "부산광역시 중구 비프광장로 3 (부평동2가) 꽃가람 남포직영점", + "district": "부산광역시 중구", + "latitude": 35.09835574338491, + "longitude": 129.02574087593763, + "representativePriceAmount": 9500, + "representativePriceLabel": "고추장돼지불고기정식", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고추장돼지불고기정식 9,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1317-4600 / 영업시간: 영업시간 : 11시~21시(브레이크타임 :15시~17시)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "d2e8f4c3218c8c0cebfb-history", - "label": "꽈배기 3개", - "amount": 2000, + "id": "318786e64c63fa2df039", + "label": "고추장돼지불고기정식", + "amount": 9500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "e63ebca853e51549606f-history", - "label": "만두 10개", - "amount": 4000, + "id": "a5965cb9425caef103f1", + "label": "쭈낙", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "e1460d3a5748974ba320-history", - "label": "슈크림", - "amount": 1500, + "id": "6fdd4c6739c30b2ada2c", + "label": "쭈낙곱새", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "2053ab0d1046729ed09c-history", - "label": "어묵", - "amount": 2000, + "id": "d20f9f4e80b26cf91310", + "label": "쭈불낙새", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "83549f88ab427ae63ea5-history", - "label": "찐빵 3개", - "amount": 2000, + "id": "318786e64c63fa2df039-history", + "label": "고추장돼지불고기정식", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "61d0d63b13af7cdc1b75-history", - "label": "찹쌀도너츠 2개", - "amount": 1000, + "id": "a5965cb9425caef103f1-history", + "label": "쭈낙", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fff9c10e9fc7dfbe3e8e-history", - "label": "치즈고로케", - "amount": 1500, + "id": "6fdd4c6739c30b2ada2c-history", + "label": "쭈낙곱새", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "573a8276161bd4d80fcf-history", - "label": "팥도너츠 2개", - "amount": 1000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15156", - "name": "까망헤어필", - "businessName": "까망헤어필", - "categorySlug": "beauty", - "address": "전라남도 목포시 산정로79번길 15-1 (산정동) 까망헤어필", - "district": "전라남도 목포시", - "latitude": 34.795406737074515, - "longitude": 126.39113623218255, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-277-3173", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "f05825a65b8f9b868b16", - "label": "커트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "f05825a65b8f9b868b16-history", - "label": "커트", + "id": "d20f9f4e80b26cf91310-history", + "label": "쭈불낙새", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -8712,51 +8508,51 @@ "comments": [] }, { - "id": "goodprice-10497", - "name": "남도먹거리방", - "businessName": "남도먹거리방", - "categorySlug": "korean", - "address": "전라남도 목포시 삼일로13번길 2-1 (남교동)", - "district": "전라남도 목포시", - "latitude": 34.7936753216335, - "longitude": 126.383348462671, + "id": "goodprice-2530", + "name": "머리카락&피부샵", + "businessName": "머리카락&피부샵", + "categorySlug": "beauty", + "address": "대전광역시 동구 동서대로 1692번길 153 (성남동)", + "district": "대전광역시 동구", + "latitude": 36.3424896102607, + "longitude": 127.438366074824, "representativePriceAmount": 8000, - "representativePriceLabel": "순대", + "representativePriceLabel": "미용료(여자커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-9895", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(여자커트) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00 ~ 20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "373664cd7e365f55d122", - "label": "순대", + "id": "fcaeeb63d33b42d5a28b", + "label": "미용료(여자커트)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "21d3ffb6ab86ea4f79b3", - "label": "순대국밥", - "amount": 8000, + "id": "810a84ac80c50de48b41", + "label": "커트(성인 일반)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "373664cd7e365f55d122-history", - "label": "순대", + "id": "fcaeeb63d33b42d5a28b-history", + "label": "미용료(여자커트)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "21d3ffb6ab86ea4f79b3-history", - "label": "순대국밥", - "amount": 8000, + "id": "810a84ac80c50de48b41-history", + "label": "커트(성인 일반)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8764,141 +8560,155 @@ "comments": [] }, { - "id": "goodprice-16973", - "name": "낭만맛집", - "businessName": "낭만맛집", + "id": "goodprice-980", + "name": "광희식당", + "businessName": "광희식당", "categorySlug": "korean", - "address": "전남 목포시 만호로 11-1 (금동2가)", - "district": "전남 목포시", - "latitude": 34.784382080202, - "longitude": 126.381886313664, - "representativePriceAmount": 8000, - "representativePriceLabel": "톳비빔밥", + "address": "서울특별시 중구 장충단로 212-2 (광희동2가)", + "district": "서울특별시 중구", + "latitude": 37.5636366550507, + "longitude": 127.007233814214, + "representativePriceAmount": 7000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 톳비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-244-6668", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-226-1555 / 영업시간: 매일 11:30-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1d3e5aa406a5acb8f99b", - "label": "톳비빔밥", - "amount": 8000, + "id": "003174f9443bd51114c6", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "55e31c2f3b130d4f2586", - "label": "해초국수", + "id": "c007235afba35cf5bfbb", + "label": "비빔밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "21d557a84579ae051b2f", + "label": "갈비탕", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1d3e5aa406a5acb8f99b-history", - "label": "톳비빔밥", - "amount": 8000, + "id": "003174f9443bd51114c6-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "55e31c2f3b130d4f2586-history", - "label": "해초국수", + "id": "c007235afba35cf5bfbb-history", + "label": "비빔밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "21d557a84579ae051b2f-history", + "label": "갈비탕", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-15149", - "name": "대영한우식육식당", - "businessName": "대영한우식육식당", - "categorySlug": "korean", - "address": "전라남도 목포시 영산로257번길 4-1 (용당동) 대영한우식육식당", - "district": "전라남도 목포시", - "latitude": 34.80385281569496, - "longitude": 126.39420318915167, + "id": "goodprice-10674", + "name": "studio환히", + "businessName": "studio환히", + "categorySlug": "other-service", + "address": "서울특별시 중랑구 동일로109길 28-16", + "district": "서울특별시 중랑구", + "latitude": 37.5920068039795, + "longitude": 127.077641704523, "representativePriceAmount": 10000, - "representativePriceLabel": "갈비탕", + "representativePriceLabel": "사진촬영료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 갈비탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-273-7789", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 사진촬영료 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4274231ce70048a90409", - "label": "갈비탕", + "id": "13c51eada5e4c4bf71b9", + "label": "사진촬영료", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "581c27ee46cf57f75203", - "label": "곰탕", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4274231ce70048a90409-history", - "label": "갈비탕", + "id": "13c51eada5e4c4bf71b9-history", + "label": "사진촬영료", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "581c27ee46cf57f75203-history", - "label": "곰탕", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-6320", - "name": "걸앤맨", - "businessName": "걸앤맨", - "categorySlug": "beauty", - "address": "경상북도 포항시 남구 축항로72번길 14", - "district": "경상북도 포항시", - "latitude": 36.0285256046441, - "longitude": 129.376479161194, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-1646", + "name": "남선식당", + "businessName": "남선식당", + "categorySlug": "korean", + "address": "부산광역시 중구 충장대로4번길6 (중앙동4가)", + "district": "부산광역시 중구", + "latitude": 35.1046241396056, + "longitude": 129.03680238801, + "representativePriceAmount": 7000, + "representativePriceLabel": "순두부찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-272-1533 / 영업시간: 월~금", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-469-3828 / 영업시간: 11:00 - 18:00 매주 일요일 휴무(예약시 일요일 가능)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5485b19bbdee1f16101a", - "label": "커트", - "amount": 10000, + "id": "feb9b64e11620b376937", + "label": "순두부찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "73748362c1678678be07", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5485b19bbdee1f16101a-history", - "label": "커트", - "amount": 10000, + "id": "feb9b64e11620b376937-history", + "label": "순두부찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "73748362c1678678be07-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8906,51 +8716,51 @@ "comments": [] }, { - "id": "goodprice-6321", - "name": "경민헤어샵", - "businessName": "경민헤어샵", - "categorySlug": "beauty", - "address": "경상북도 포항시 남구 대해로79번길 27", - "district": "경상북도 포항시", - "latitude": 36.0254310711759, - "longitude": 129.36329181671, + "id": "goodprice-10183", + "name": "세종세탁 명품", + "businessName": "세종세탁 명품", + "categorySlug": "laundry", + "address": "세종특별자치시 만남로 190 상가 203호", + "district": "세종특별자치시 만남로", + "latitude": 36.5170635630589, + "longitude": 127.241017466402, "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "representativePriceLabel": "이불", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 일요일휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 이불 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-2226", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "700ad9548558ff2bafe2", - "label": "커트", + "id": "16fca95d5bf03bc33bf6", + "label": "이불", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fca0f6b9f2a7589534df", - "label": "기타 여자커트", - "amount": 8000, + "id": "8cc85838e93e0a2893c1", + "label": "정장", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "700ad9548558ff2bafe2-history", - "label": "커트", + "id": "16fca95d5bf03bc33bf6-history", + "label": "이불", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fca0f6b9f2a7589534df-history", - "label": "기타 여자커트", - "amount": 8000, + "id": "8cc85838e93e0a2893c1-history", + "label": "정장", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -8958,34 +8768,34 @@ "comments": [] }, { - "id": "goodprice-6322", - "name": "경아미용실", - "businessName": "경아미용실", - "categorySlug": "beauty", - "address": "경상북도 포항시 남구 송림로 61", - "district": "경상북도 포항시", - "latitude": 36.0352517105272, - "longitude": 129.374922321202, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", + "id": "goodprice-16087", + "name": "뉴욕스넥", + "businessName": "뉴욕스넥", + "categorySlug": "korean", + "address": "서울특별시 중구 을지로 지하131 (을지로3가) 56호", + "district": "서울특별시 중구", + "latitude": 37.566442970950895, + "longitude": 126.99419916729464, + "representativePriceAmount": 3500, + "representativePriceLabel": "야채김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-247-4573 / 영업시간: 09시~18시 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 야채김밥 3,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2274-1110", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "31fe6dcc868ed7289379", - "label": "커트", - "amount": 7000, + "id": "eb4c0effa1ffa2aea32a", + "label": "야채김밥", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9c20aefc22d461ac9c6d", - "label": "기타 성인여자커트", + "id": "654701a3801a3618a738", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -8993,15 +8803,15 @@ ], "history": [ { - "id": "31fe6dcc868ed7289379-history", - "label": "커트", - "amount": 7000, + "id": "eb4c0effa1ffa2aea32a-history", + "label": "야채김밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9c20aefc22d461ac9c6d-history", - "label": "기타 성인여자커트", + "id": "654701a3801a3618a738-history", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -9010,37 +8820,37 @@ "comments": [] }, { - "id": "goodprice-6427", - "name": "경희미용실", - "businessName": "경희미용실", - "categorySlug": "beauty", - "address": "경상북도 포항시 북구 서동로47번길 25-4 1층(덕수동)", - "district": "경상북도 포항시", - "latitude": 36.0433237553854, - "longitude": 129.364506666177, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트", + "id": "goodprice-1001", + "name": "금천이발관", + "businessName": "금천이발관", + "categorySlug": "barber", + "address": "서울특별시 중랑구 면목로29길 21", + "district": "서울특별시 중랑구", + "latitude": 37.575726501017, + "longitude": 127.084575411368, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 9시30분~17시 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(커트) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-492-5613 / 영업시간: 월,화,목,금,토,일 / 08:00~20:00 수요일 / 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "29322a23a4fce53c70d1", - "label": "커트", - "amount": 5000, + "id": "2820c827dabbc12a1168", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "29322a23a4fce53c70d1-history", - "label": "커트", - "amount": 5000, + "id": "2820c827dabbc12a1168-history", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9048,51 +8858,51 @@ "comments": [] }, { - "id": "goodprice-16322", - "name": "구서방네손칼국수", - "businessName": "구서방네손칼국수", + "id": "goodprice-1647", + "name": "남원원조추어탕", + "businessName": "남원원조추어탕", "categorySlug": "korean", - "address": "경상남도 창원시 마산합포구 해안대로 1 (월남동5가) 1층 구서방네손칼국수", - "district": "경상남도 창원시", - "latitude": 35.18079038371285, - "longitude": 128.55905853200002, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "address": "부산광역시 중구 해관로 37-1 (중앙동)", + "district": "부산광역시 중구", + "latitude": 35.1022868055746, + "longitude": 129.035469797726, + "representativePriceAmount": 9000, + "representativePriceLabel": "추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-222-9549", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-5636 / 영업시간: 월-금 09;00 - 20:00, 토요일 및 공휴일은 09:00 - 17:00 일요일 휴일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c79af2c4561fcd80e8e1", - "label": "칼국수", - "amount": 6000, + "id": "3d8b26d06680e0c030ca", + "label": "추어탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "472195a4c7a5261977be", - "label": "수제비", - "amount": 6000, + "id": "8fb9fb86945f335dd0df", + "label": "돌솥비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c79af2c4561fcd80e8e1-history", - "label": "칼국수", - "amount": 6000, + "id": "3d8b26d06680e0c030ca-history", + "label": "추어탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "472195a4c7a5261977be-history", - "label": "수제비", - "amount": 6000, + "id": "8fb9fb86945f335dd0df-history", + "label": "돌솥비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9100,34 +8910,34 @@ "comments": [] }, { - "id": "goodprice-17102", - "name": "국밥명가 온마루", - "businessName": "국밥명가 온마루", - "categorySlug": "korean", - "address": "경상남도 창원시 의창구 북면 천주로 472 103호", - "district": "경상남도 창원시", - "latitude": 35.29896206632041, - "longitude": 128.6039200218082, - "representativePriceAmount": 7000, - "representativePriceLabel": "돼지국밥", + "id": "goodprice-10168", + "name": "송덕이용원", + "businessName": "송덕이용원", + "categorySlug": "barber", + "address": "세종특별자치시 전동면 금이로 266", + "district": "세종특별자치시 전동면", + "latitude": 36.6302394683097, + "longitude": 127.260476864844, + "representativePriceAmount": 10000, + "representativePriceLabel": "조발", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지국밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1346-4134", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 조발 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-1488", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d8c5cb2a22a6fa6624f6", - "label": "돼지국밥", - "amount": 7000, + "id": "b65a37608da6a8e24445", + "label": "조발", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ac038d64cd7093b1dd13", - "label": "닭한마리국밥", + "id": "d1db79db0f0b7ce5cb75", + "label": "염색", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -9135,15 +8945,15 @@ ], "history": [ { - "id": "d8c5cb2a22a6fa6624f6-history", - "label": "돼지국밥", - "amount": 7000, + "id": "b65a37608da6a8e24445-history", + "label": "조발", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ac038d64cd7093b1dd13-history", - "label": "닭한마리국밥", + "id": "d1db79db0f0b7ce5cb75-history", + "label": "염색", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -9152,51 +8962,51 @@ "comments": [] }, { - "id": "goodprice-17142", - "name": "국수랑돈가스랑", - "businessName": "국수랑돈가스랑", + "id": "goodprice-15373", + "name": "대박물갈비", + "businessName": "대박물갈비", "categorySlug": "korean", - "address": "경상남도 창원시 진해구 진해대로597번길 8 (경화동) 1층", - "district": "경상남도 창원시", - "latitude": 35.15809278309137, - "longitude": 128.6810665767454, - "representativePriceAmount": 8000, - "representativePriceLabel": "왕돈가스", + "address": "서울특별시 중구 퇴계로4길 7 (남창동) 1층", + "district": "서울특별시 중구", + "latitude": 37.557537858746215, + "longitude": 126.97773067463572, + "representativePriceAmount": 9000, + "representativePriceLabel": "제육볶음", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 왕돈가스 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1440-7000", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육볶음 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-755-6974", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dacc06289b07263ba786", - "label": "왕돈가스", - "amount": 8000, + "id": "52328f657e7990431b41", + "label": "제육볶음", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a3bab3fcadec04ba2289", - "label": "잔치국수", - "amount": 5000, + "id": "985949af92a56041ec23", + "label": "돼지불고기", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dacc06289b07263ba786-history", - "label": "왕돈가스", - "amount": 8000, + "id": "52328f657e7990431b41-history", + "label": "제육볶음", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a3bab3fcadec04ba2289-history", - "label": "잔치국수", - "amount": 5000, + "id": "985949af92a56041ec23-history", + "label": "돼지불고기", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9204,79 +9014,27 @@ "comments": [] }, { - "id": "goodprice-14292", - "name": "김영이헤어모드", - "businessName": "김영이헤어모드", + "id": "goodprice-1002", + "name": "더 이등병", + "businessName": "더 이등병", "categorySlug": "beauty", - "address": "경상남도 창원시 진해구 돌리로10번길 25 (석동, 유일수정빌라) 1층", - "district": "경상남도 창원시", - "latitude": 35.15791820070982, - "longitude": 128.7029593955796, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-543-4053", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "300aaa243e3de4332da2", - "label": "커트", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "04456398c23e2c23c7be", - "label": "청소년커트", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "300aaa243e3de4332da2-history", - "label": "커트", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "04456398c23e2c23c7be-history", - "label": "청소년커트", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15812", - "name": "고산동산", - "businessName": "고산동산", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 고산동산5길 18 (이도이동) 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.49614111635461, - "longitude": 126.53452311902686, + "address": "서울특별시 중랑구 면목로33길 33", + "district": "서울특별시 중랑구", + "latitude": 37.5764891385977, + "longitude": 127.084020210143, "representativePriceAmount": 8000, - "representativePriceLabel": "정식", + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-3693-1604", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 이용료(커트) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 화,수,목,금,토,일 / 10:00~21:00 월요일 / 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0f878fc924e81b4a562f", - "label": "정식", + "id": "5606ef907abe84bc39ec", + "label": "이용료(커트)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -9284,8 +9042,8 @@ ], "history": [ { - "id": "0f878fc924e81b4a562f-history", - "label": "정식", + "id": "5606ef907abe84bc39ec-history", + "label": "이용료(커트)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -9294,79 +9052,79 @@ "comments": [] }, { - "id": "goodprice-18065", - "name": "고슬", - "businessName": "고슬", + "id": "goodprice-10075", + "name": "누렁소식당", + "businessName": "누렁소식당", "categorySlug": "korean", - "address": "제주특별자치도 제주시 문송길 22 (연동) 고슬", - "district": "제주특별자치도 제주시", - "latitude": 33.487975312677904, - "longitude": 126.49712441188434, - "representativePriceAmount": 4000, - "representativePriceLabel": "떡볶이", + "address": "대구광역시 중구 국채보상로131길 24 (동인동2가) 누렁소식당", + "district": "대구광역시 중구", + "latitude": 35.87085460440117, + "longitude": 128.60218193488083, + "representativePriceAmount": 7000, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-8900-8495", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-422-8327", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f36b386df545f2c4a4fe", - "label": "떡볶이", - "amount": 4000, + "id": "199c72ff3c9c007f83df", + "label": "한식뷔페", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b26392775e5182585b52", - "label": "잔치국수", - "amount": 6500, + "id": "2d69069fb639b3313249", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "479ab7798a69a21709f8", - "label": "냉모밀", - "amount": 6500, + "id": "834593138c60ccc553b0", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fc49d9247085d877a38b", - "label": "옛날수제돈까스", - "amount": 8000, + "id": "944c489bfd916641ff96", + "label": "불고기정식", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f36b386df545f2c4a4fe-history", - "label": "떡볶이", - "amount": 4000, + "id": "199c72ff3c9c007f83df-history", + "label": "한식뷔페", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b26392775e5182585b52-history", - "label": "잔치국수", - "amount": 6500, + "id": "2d69069fb639b3313249-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "479ab7798a69a21709f8-history", - "label": "냉모밀", - "amount": 6500, + "id": "834593138c60ccc553b0-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fc49d9247085d877a38b-history", - "label": "옛날수제돈까스", - "amount": 8000, + "id": "944c489bfd916641ff96-history", + "label": "불고기정식", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9374,65 +9132,51 @@ "comments": [] }, { - "id": "goodprice-14253", - "name": "고찌가게", - "businessName": "고찌가게", - "categorySlug": "western", - "address": "제주특별자치도 제주시 가령로4길 27 (이도이동) 1층 101호", - "district": "제주특별자치도 제주시", - "latitude": 33.49814114694817, - "longitude": 126.53535069630652, - "representativePriceAmount": 7000, - "representativePriceLabel": "함박스테이크", + "id": "goodprice-17117", + "name": "늘하얀세탁소", + "businessName": "늘하얀세탁소", + "categorySlug": "laundry", + "address": "경기도 수원시 팔달구 화양로68번길 61 (화서동) 1층", + "district": "경기도 수원시", + "latitude": 37.28181847804219, + "longitude": 126.99725940969884, + "representativePriceAmount": 8000, + "representativePriceLabel": "드라이클리닝(신사복)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 함박스테이크 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4424-4619", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 드라이클리닝(신사복) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-242-5554 / 영업시간: 08:00~20:00 / 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6ba609703f973a04bf71", - "label": "함박스테이크", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a2f7c53682f2c7dc44cf", - "label": "오므라이스", - "amount": 6000, + "id": "5d4f9b0d6264a9e79e8d", + "label": "드라이클리닝(신사복)", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "808e2a980828652b81dc", - "label": "카레라이스", - "amount": 6000, + "id": "4bc573741c3f7ac8b5a3", + "label": "수선료(바지밑단)", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6ba609703f973a04bf71-history", - "label": "함박스테이크", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a2f7c53682f2c7dc44cf-history", - "label": "오므라이스", - "amount": 6000, + "id": "5d4f9b0d6264a9e79e8d-history", + "label": "드라이클리닝(신사복)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "808e2a980828652b81dc-history", - "label": "카레라이스", - "amount": 6000, + "id": "4bc573741c3f7ac8b5a3-history", + "label": "수선료(바지밑단)", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9440,191 +9184,89 @@ "comments": [] }, { - "id": "goodprice-7116", - "name": "공주네국수", - "businessName": "공주네국수", + "id": "goodprice-981", + "name": "돈우가식당", + "businessName": "돈우가식당", "categorySlug": "korean", - "address": "제주특별자치도 제주시 삼봉로 353 1층(봉개동)", - "district": "제주특별자치도 제주시", - "latitude": 33.4913445688525, - "longitude": 126.59371518559, - "representativePriceAmount": 5000, - "representativePriceLabel": "물만두", + "address": "서울특별시 중구 남대문로 25-17 1층(북창동)", + "district": "서울특별시 중구", + "latitude": 37.5620306338518, + "longitude": 126.97816807023, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물만두 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-722-4533 / 영업시간: 금 09:00-20:00 15:00-16:30브레이크타임 토 09:00-20:00 15:00-16:30브레이크타임 일 09:00-20:00 15:00-16:30브레이크타임 월 정기휴무(매주월요일) 화 09:00-20:00 15:00-16:30브레이크타임 수 09:00-20:00 15:00-16:30브레이크타임 목 09:00-20:00 15:00-16:30브레이크타임", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-378-1313 / 영업시간: 월~토 11:00-22:00 브레이크타임15:30~16:30 일 정기휴무(매주일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "74bac47162c47cfcf040", - "label": "물만두", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b153d3349fd951528712", - "label": "고기국수", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "16b7d0de929243d46e93", - "label": "돔배고기 소", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "aec5b6286581a5ec740d", - "label": "멸고국수", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "cf4a24ccb7f5688e0447", - "label": "멸치국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a4e200b4d17d38ca2815", - "label": "몸국", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ec0543b166e3a870bf49", - "label": "비빔국수", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9511c857e2e1071c8b94", - "label": "순대국밥 말아서", + "id": "615d745518199ef100c8", + "label": "김치찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "90a6d6deec7edc606479", - "label": "순대국밥 밥따로", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1125055be5aa0c78b9d2", - "label": "열무국수", + "id": "a65f350b9c6013011f97", + "label": "한우소머리국밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "41637bdd0df10ea92217", - "label": "전복뚝배기", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8368129e0af096780778", - "label": "콩국수", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "74bac47162c47cfcf040-history", - "label": "물만두", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b153d3349fd951528712-history", - "label": "고기국수", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "16b7d0de929243d46e93-history", - "label": "돔배고기 소", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "aec5b6286581a5ec740d-history", - "label": "멸고국수", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "cf4a24ccb7f5688e0447-history", - "label": "멸치국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a4e200b4d17d38ca2815-history", - "label": "몸국", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ec0543b166e3a870bf49-history", - "label": "비빔국수", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9511c857e2e1071c8b94-history", - "label": "순대국밥 말아서", + "id": "615d745518199ef100c8-history", + "label": "김치찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "90a6d6deec7edc606479-history", - "label": "순대국밥 밥따로", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1125055be5aa0c78b9d2-history", - "label": "열무국수", + "id": "a65f350b9c6013011f97-history", + "label": "한우소머리국밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-14503", + "name": "수빈헤어아트", + "businessName": "수빈헤어아트", + "categorySlug": "beauty", + "address": "서울특별시 중랑구 겸재로 185 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58868215374439, + "longitude": 127.08810686209344, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "친절한 사장님의 센스있는 스타일링", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-432-7557", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "41637bdd0df10ea92217-history", - "label": "전복뚝배기", + "id": "33126128cc1ca6b21093", + "label": "커트", "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "8368129e0af096780778-history", - "label": "콩국수", - "amount": 9000, + "id": "33126128cc1ca6b21093-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9632,65 +9274,51 @@ "comments": [] }, { - "id": "goodprice-19250", - "name": "맛밥김밥전문점", - "businessName": "맛밥김밥전문점", + "id": "goodprice-15357", + "name": "덕종국수", + "businessName": "덕종국수", "categorySlug": "korean", - "address": "서울특별시 종로구 창경궁로 269 (혜화동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.585295075666664, - "longitude": 127.00073357977945, - "representativePriceAmount": 7500, - "representativePriceLabel": "돈가스", + "address": "대구광역시 중구 약령길 53 (수동) 1층", + "district": "대구광역시 중구", + "latitude": 35.86868347395729, + "longitude": 128.5892390743561, + "representativePriceAmount": 8000, + "representativePriceLabel": "비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-747-5425", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-353-7971 / 영업시간: 월~토 11:00~21:00 정기휴무 매달 1번째 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dc7ff9fedce2653ece09", - "label": "돈가스", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0b5d5dab9355115dac84", - "label": "떡만둣국", - "amount": 7500, + "id": "77acec879aa3eecca88e", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1b0a0b72c6b4f59e5755", - "label": "라볶이", - "amount": 6000, + "id": "12f0d028103646e50485", + "label": "오리들깨탕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dc7ff9fedce2653ece09-history", - "label": "돈가스", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0b5d5dab9355115dac84-history", - "label": "떡만둣국", - "amount": 7500, + "id": "77acec879aa3eecca88e-history", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1b0a0b72c6b4f59e5755-history", - "label": "라볶이", - "amount": 6000, + "id": "12f0d028103646e50485-history", + "label": "오리들깨탕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9698,26 +9326,26 @@ "comments": [] }, { - "id": "goodprice-11063", - "name": "믿음미용실", - "businessName": "믿음미용실", + "id": "goodprice-3401", + "name": "닛시헤어필", + "businessName": "닛시헤어필", "categorySlug": "beauty", - "address": "서울특별시 종로구 계동길 91 1층", - "district": "서울특별시 종로구", - "latitude": 37.5814377145875, - "longitude": 126.986679281786, + "address": "경기도 수원시 장안구 파장로21번길 27 (송죽동)", + "district": "경기도 수원시", + "latitude": 37.3033791048968, + "longitude": 126.997399634911, "representativePriceAmount": 8000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-257-1411 / 영업시간: 10:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a49be5b0b7a61e894c60", + "id": "5bb0af0ea18e2d562304", "label": "커트", "amount": 8000, "verificationStatus": "verified", @@ -9726,7 +9354,7 @@ ], "history": [ { - "id": "a49be5b0b7a61e894c60-history", + "id": "5bb0af0ea18e2d562304-history", "label": "커트", "amount": 8000, "verificationStatus": "verified", @@ -9736,65 +9364,79 @@ "comments": [] }, { - "id": "goodprice-1650", - "name": "대교식당", - "businessName": "대교식당", + "id": "goodprice-18573", + "name": "동경우동(2호점)", + "businessName": "동경우동(2호점)", "categorySlug": "korean", - "address": "부산광역시 중구 충장대로 4번길 8 (중앙동4가)", - "district": "부산광역시 중구", - "latitude": 35.1044916301827, - "longitude": 129.036809946537, - "representativePriceAmount": 6000, - "representativePriceLabel": "된장찌개", + "address": "서울특별시 중구 퇴계로27길 16 (필동1가) 1층 105호", + "district": "서울특별시 중구", + "latitude": 37.56195219030635, + "longitude": 126.99184490399296, + "representativePriceAmount": 5000, + "representativePriceLabel": "우동", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-469-0146 / 영업시간: 5:30 - 19:00 토,일 휴무 일요일 격주 휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우동 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2277-3223", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "037e090f49b285ed6a44", - "label": "된장찌개", - "amount": 6000, + "id": "c186654dd7ec7e66b6ab", + "label": "우동", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "74b48f2a99c0db3236c8", - "label": "나물비빔밥", + "id": "d0bb5b1b65ec635e4d6d", + "label": "유부초밥", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ea288e576441869038c0", + "label": "오뎅우동", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4d74bcf0933dfbdc433b", - "label": "만두백반", - "amount": 5500, + "id": "e8993c38fbd585c34114", + "label": "케라레아스", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "037e090f49b285ed6a44-history", - "label": "된장찌개", - "amount": 6000, + "id": "c186654dd7ec7e66b6ab-history", + "label": "우동", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "74b48f2a99c0db3236c8-history", - "label": "나물비빔밥", + "id": "d0bb5b1b65ec635e4d6d-history", + "label": "유부초밥", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ea288e576441869038c0-history", + "label": "오뎅우동", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4d74bcf0933dfbdc433b-history", - "label": "만두백반", - "amount": 5500, + "id": "e8993c38fbd585c34114-history", + "label": "케라레아스", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9802,51 +9444,37 @@ "comments": [] }, { - "id": "goodprice-1641", - "name": "대성밀냉면전문", - "businessName": "대성밀냉면전문", - "categorySlug": "korean", - "address": "부산광역시 중구 보수대로 44번길 6 (부평동)", - "district": "부산광역시 중구", - "latitude": 35.1008554024383, - "longitude": 129.02385096253, - "representativePriceAmount": 8000, - "representativePriceLabel": "밀면(소)", + "id": "goodprice-1005", + "name": "수지헤어", + "businessName": "수지헤어", + "categorySlug": "beauty", + "address": "서울특별시 중랑구 봉우재로 41 (회진빌딩 2층)", + "district": "서울특별시 중랑구", + "latitude": 37.5907829369907, + "longitude": 127.077853865667, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 밀면(소) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-244-9658 / 영업시간: 10:00~17:00 (여름: 10:00 - 19:30)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 이용료(커트) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월,수,목,금,토,일 / 09:00~19:00 화요일 / 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "319803107beee9b91030", - "label": "밀면(소)", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c2d4dbc5158d326bced8", - "label": "비빔밀면(소)", - "amount": 8500, + "id": "70f4adbfa6e7bdc91deb", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "319803107beee9b91030-history", - "label": "밀면(소)", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c2d4dbc5158d326bced8-history", - "label": "비빔밀면(소)", - "amount": 8500, + "id": "70f4adbfa6e7bdc91deb-history", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9854,51 +9482,51 @@ "comments": [] }, { - "id": "goodprice-13811", - "name": "돌고래", - "businessName": "돌고래", + "id": "goodprice-17975", + "name": "도리집", + "businessName": "도리집", "categorySlug": "korean", - "address": "부산광역시 중구 중구로40번길 15 (신창동2가) 2층", - "district": "부산광역시 중구", - "latitude": 35.1015493615088, - "longitude": 129.02959068112168, - "representativePriceAmount": 8000, - "representativePriceLabel": "순두부백반", + "address": "대구광역시 중구 달구벌대로 2109-34 (동성로3가) 1층", + "district": "대구광역시 중구", + "latitude": 35.86686640891391, + "longitude": 128.59398585931365, + "representativePriceAmount": 4900, + "representativePriceLabel": "까만도리밥(덮밥)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-1825 / 영업시간: 7:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 까만도리밥(덮밥) 4,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-253-3062 / 영업시간: 월~금 11:30~20:00(14:50~16:30 브레이크타임) 매주 토, 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9e92e3ee7f73ae4772f4", - "label": "순두부백반", - "amount": 8000, + "id": "f476dadcb2fd2aca1ed7", + "label": "까만도리밥(덮밥)", + "amount": 4900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "33d108c703cb0d4a00f8", - "label": "된장찌개백반", - "amount": 8000, + "id": "5a1b5911ed91d7aad70b", + "label": "빨간도리밥(덮밥)", + "amount": 5300, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9e92e3ee7f73ae4772f4-history", - "label": "순두부백반", - "amount": 8000, + "id": "f476dadcb2fd2aca1ed7-history", + "label": "까만도리밥(덮밥)", + "amount": 4900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "33d108c703cb0d4a00f8-history", - "label": "된장찌개백반", - "amount": 8000, + "id": "5a1b5911ed91d7aad70b-history", + "label": "빨간도리밥(덮밥)", + "amount": 5300, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -9906,131 +9534,117 @@ "comments": [] }, { - "id": "goodprice-1651", - "name": "동경식당", - "businessName": "동경식당", - "categorySlug": "korean", - "address": "부산광역시 중구 대청로99번길 16 (대청동2가)", - "district": "부산광역시 중구", - "latitude": 35.104213999781, - "longitude": 129.030751512242, + "id": "goodprice-4340", + "name": "동네미용실", + "businessName": "동네미용실", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 동내면 영서로 1747 1층", + "district": "강원특별자치도 춘천시", + "latitude": 37.8327701426154, + "longitude": 127.761293705291, "representativePriceAmount": 10000, - "representativePriceLabel": "추어탕", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-469-7162 / 영업시간: 영업시간 : 09:00 - 20:00 토, 일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-3257 / 영업시간: 09:00 - 20:00 휴게시간 12:30 - 13:00 매주 월요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ed91316640219f41a2db", - "label": "추어탕", + "id": "469044ccf4c96da0605b", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "9a4aa8bb5933e1352c16", - "label": "순두부", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ed91316640219f41a2db-history", - "label": "추어탕", + "id": "469044ccf4c96da0605b-history", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "9a4aa8bb5933e1352c16-history", - "label": "순두부", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-10076", - "name": "명가", - "businessName": "명가", + "id": "goodprice-18572", + "name": "동경우동집", + "businessName": "동경우동집", "categorySlug": "korean", - "address": "대구광역시 중구 달구벌대로 지하 2100 (106)", - "district": "대구광역시 중구", - "latitude": 35.8644213158621, - "longitude": 128.593340834492, - "representativePriceAmount": 6000, - "representativePriceLabel": "된장비빔밥", + "address": "서울특별시 중구 충무로 48 (초동) 1층 1호", + "district": "서울특별시 중구", + "latitude": 37.56537537416687, + "longitude": 126.99296134367208, + "representativePriceAmount": 5000, + "representativePriceLabel": "우동", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장비빔밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-252-9743", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우동 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2274-3440", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ab8ce8c3f64bd6fae335", - "label": "된장비빔밥", - "amount": 6000, + "id": "466df7c17ff07370aa09", + "label": "우동", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c570dff3c757cbb1ca0c", - "label": "왕돈가스", - "amount": 6000, + "id": "0d08f6b399c3af24c9c5", + "label": "유부초밥", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "45a2bda57af2477c1cfc", - "label": "비빔밥", - "amount": 5500, + "id": "f9a9760ebabafea10058", + "label": "카레라이스", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c5f991ae60a5098d9d46", - "label": "야채돌솥비빔밥", - "amount": 7000, + "id": "b19583a603fc3c8d397e", + "label": "우동 카레 세트", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ab8ce8c3f64bd6fae335-history", - "label": "된장비빔밥", - "amount": 6000, + "id": "466df7c17ff07370aa09-history", + "label": "우동", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c570dff3c757cbb1ca0c-history", - "label": "왕돈가스", - "amount": 6000, + "id": "0d08f6b399c3af24c9c5-history", + "label": "유부초밥", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "45a2bda57af2477c1cfc-history", - "label": "비빔밥", - "amount": 5500, + "id": "f9a9760ebabafea10058-history", + "label": "카레라이스", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c5f991ae60a5098d9d46-history", - "label": "야채돌솥비빔밥", - "amount": 7000, + "id": "b19583a603fc3c8d397e-history", + "label": "우동 카레 세트", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10038,51 +9652,113 @@ "comments": [] }, { - "id": "goodprice-15468", - "name": "명성김밥", - "businessName": "명성김밥", - "categorySlug": "korean", - "address": "대구광역시 중구 국채보상로131길 55 (동인동1가, 시티타운) 시티상가 10호", - "district": "대구광역시 중구", - "latitude": 35.872799919942665, - "longitude": 128.60198095419133, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", + "id": "goodprice-14502", + "name": "스타미용실", + "businessName": "스타미용실", + "categorySlug": "beauty", + "address": "서울특별시 중랑구 면목로28길 7 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.57493334927133, + "longitude": 127.08577897325155, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-0276 / 영업시간: 07:00 ~ 18:00 *재료 소진에 따라 변동 있음 정기휴무 : 매월 4주차 목요일", + "description": "매장이 깨끗하고, 친절한 사장님의 노하우로 예쁜머리를 만들어줌", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-5445-6927", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cacd811d1c0ba04b84b8", - "label": "김밥", - "amount": 3000, + "id": "29c156d7fbf355760a8c", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "9937c6d668691e3099a6", - "label": "컵라면(소)", - "amount": 1200, + "id": "29c156d7fbf355760a8c-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13117", + "name": "김윤식의 착한국수, 솥뚜껑삼겹살", + "businessName": "김윤식의 착한국수, 솥뚜껑삼겹살", + "categorySlug": "korean", + "address": "인천광역시 중구 운중로 8 (운남동) 2층", + "district": "인천광역시 중구", + "latitude": 37.49336872061384, + "longitude": 126.53441990901412, + "representativePriceAmount": 8000, + "representativePriceLabel": "국수+떡갈비", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국수+떡갈비 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-255-9510", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "166deb52fbf8bb762aaf", + "label": "국수+떡갈비", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "cacd811d1c0ba04b84b8-history", - "label": "김밥", - "amount": 3000, + "id": "166deb52fbf8bb762aaf-history", + "label": "국수+떡갈비", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-4959", + "name": "남성커트오천", + "businessName": "남성커트오천", + "categorySlug": "barber", + "address": "충청남도 천안시 서북구 월봉로 66 (쌍용동)", + "district": "충청남도 천안시", + "latitude": 36.7964851683758, + "longitude": 127.118063685574, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00~18:00 정기휴무(매주 화, 수요일)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "9937c6d668691e3099a6-history", - "label": "컵라면(소)", - "amount": 1200, + "id": "94f7f3c1fc4d8eb87add", + "label": "커트", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "94f7f3c1fc4d8eb87add-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10090,65 +9766,65 @@ "comments": [] }, { - "id": "goodprice-15355", - "name": "모정", - "businessName": "모정", + "id": "goodprice-10673", + "name": "명동얼큰수제비", + "businessName": "명동얼큰수제비", "categorySlug": "korean", - "address": "대구광역시 중구 달구벌대로 2037-16 (동산동) 모정(식당)", - "district": "대구광역시 중구", - "latitude": 35.86701996348072, - "longitude": 128.58658111123873, + "address": "서울특별시 중구 남대문로 64 1층", + "district": "서울특별시 중구", + "latitude": 37.5627658956023, + "longitude": 126.982216802182, "representativePriceAmount": 8000, - "representativePriceLabel": "된장찌개", + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월~토 09:30 ~ 15:00 일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-752-7649", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "94f75fd423c179197743", - "label": "된장찌개", + "id": "3b2cac8645b9c6d08758", + "label": "김치찌개", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "224dc1ce0026b73a4a82", - "label": "김치찌개", + "id": "490a72828d303753d2a1", + "label": "된장찌개", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "29f2df216ad5f851d555", - "label": "비지찌개", - "amount": 8000, + "id": "91e13ae3cdd10f4e88fb", + "label": "소고기김밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "94f75fd423c179197743-history", - "label": "된장찌개", + "id": "3b2cac8645b9c6d08758-history", + "label": "김치찌개", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "224dc1ce0026b73a4a82-history", - "label": "김치찌개", + "id": "490a72828d303753d2a1-history", + "label": "된장찌개", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "29f2df216ad5f851d555-history", - "label": "비지찌개", - "amount": 8000, + "id": "91e13ae3cdd10f4e88fb-history", + "label": "소고기김밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10156,37 +9832,37 @@ "comments": [] }, { - "id": "goodprice-2231", - "name": "백원이네", - "businessName": "백원이네", - "categorySlug": "korean", - "address": "인천광역시 중구 예단포1로 2-10 (운북동)", - "district": "인천광역시 중구", - "latitude": 37.5314534478937, - "longitude": 126.502439167743, - "representativePriceAmount": 5000, - "representativePriceLabel": "해물라면", + "id": "goodprice-11183", + "name": "스타이발관", + "businessName": "스타이발관", + "categorySlug": "barber", + "address": "서울특별시 중랑구 망우로 382-2 -", + "district": "서울특별시 중랑구", + "latitude": 37.5984167441294, + "longitude": 127.09476491164, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해물라면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-751-5059 / 영업시간: 10:00~21:00 브레이크타임 : 15:30~16:00 정기휴무(화요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(커트) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6697dfcad4f16afd23de", - "label": "해물라면", - "amount": 5000, + "id": "3e8accdf3bee92b01176", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6697dfcad4f16afd23de-history", - "label": "해물라면", - "amount": 5000, + "id": "3e8accdf3bee92b01176-history", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10194,37 +9870,37 @@ "comments": [] }, { - "id": "goodprice-18031", - "name": "복락만두", - "businessName": "복락만두", - "categorySlug": "chinese", - "address": "인천광역시 중구 신포로27번길 49 (중앙동3가) 1층", + "id": "goodprice-14133", + "name": "다정가마솥순두부", + "businessName": "다정가마솥순두부", + "categorySlug": "korean", + "address": "인천광역시 중구 운중로 140-4 (중산동) 1층", "district": "인천광역시 중구", - "latitude": 37.47256655347608, - "longitude": 126.6227457445627, - "representativePriceAmount": 6000, - "representativePriceLabel": "찐만두", + "latitude": 37.49373607272692, + "longitude": 126.54783653076029, + "representativePriceAmount": 9000, + "representativePriceLabel": "초당(백)순두부", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 찐만두 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-772-8868", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 초당(백)순두부 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1320-8254", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "93093dd912dbdb36d3c8", - "label": "찐만두", - "amount": 6000, + "id": "0b45c52b799f7e195579", + "label": "초당(백)순두부", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "93093dd912dbdb36d3c8-history", - "label": "찐만두", - "amount": 6000, + "id": "0b45c52b799f7e195579-history", + "label": "초당(백)순두부", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10232,51 +9908,51 @@ "comments": [] }, { - "id": "goodprice-14637", - "name": "마시타", - "businessName": "마시타", - "categorySlug": "japanese", - "address": "광주광역시 동구 서석로85번길 8 (대의동) 1층", - "district": "광주광역시 동구", - "latitude": 35.14995826194754, - "longitude": 126.92008294904745, - "representativePriceAmount": 7500, - "representativePriceLabel": "마시타라멘", + "id": "goodprice-4911", + "name": "남성컷트오천냥클럽", + "businessName": "남성컷트오천냥클럽", + "categorySlug": "barber", + "address": "충청남도 천안시 동남구 서부대로 257-3 105호(신방동)", + "district": "충청남도 천안시", + "latitude": 36.7910983221181, + "longitude": 127.128572630944, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 마시타라멘 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-4027-2166 / 영업시간: 월-토 11:30~19:30 휴무일 : 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-572-5283 / 영업시간: 09:00~20:00 연중무휴", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2434328ea9c8d1592370", - "label": "마시타라멘", - "amount": 7500, + "id": "f7a80cf023fef4fa1feb", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "cca63712ab180208b9fa", - "label": "규동", - "amount": 7500, + "id": "5ec42106ff35d77d26ae", + "label": "커트(70세이상)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2434328ea9c8d1592370-history", - "label": "마시타라멘", - "amount": 7500, + "id": "f7a80cf023fef4fa1feb-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cca63712ab180208b9fa-history", - "label": "규동", - "amount": 7500, + "id": "5ec42106ff35d77d26ae-history", + "label": "커트(70세이상)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10284,93 +9960,65 @@ "comments": [] }, { - "id": "goodprice-11651", - "name": "마쏘라까망베르", - "businessName": "마쏘라까망베르", + "id": "goodprice-983", + "name": "민정이네", + "businessName": "민정이네", "categorySlug": "korean", - "address": "광주광역시 동구 필문대로205번길 19 (지산동)", - "district": "광주광역시 동구", - "latitude": 35.1520673077606, - "longitude": 126.933228831241, - "representativePriceAmount": 9000, - "representativePriceLabel": "돈가스(L)", + "address": "서울특별시 중구 만리재로 37길 21 (만리동1가)", + "district": "서울특별시 중구", + "latitude": 37.5565915616197, + "longitude": 126.967168586088, + "representativePriceAmount": 7000, + "representativePriceLabel": "점심백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스(L) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-224-5004 / 영업시간: 11:00~20:30 휴무 일요일, 공휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 점심백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-312-1420 / 영업시간: 월~금 08:00~14:00 토,일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dde8295439ec2de5ed79", - "label": "돈가스(L)", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "52d772aff97fb7dafaea", - "label": "돈가스(S)", + "id": "b72e3494a9f58c29ee29", + "label": "점심백반", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "aa62f808299de4f169f3", - "label": "덮밥(해물 김치제육)", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dde8295439ec2de5ed79-history", - "label": "돈가스(L)", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "52d772aff97fb7dafaea-history", - "label": "돈가스(S)", + "id": "b72e3494a9f58c29ee29-history", + "label": "점심백반", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "aa62f808299de4f169f3-history", - "label": "덮밥(해물 김치제육)", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-2247", - "name": "명문목욕탕", - "businessName": "명문목욕탕", - "categorySlug": "bath", - "address": "광주광역시 동구 지원로 5 (소태동)", - "district": "광주광역시 동구", - "latitude": 35.1238630581617, - "longitude": 126.932939954425, + "id": "goodprice-17618", + "name": "영헤어", + "businessName": "영헤어", + "categorySlug": "beauty", + "address": "서울특별시 중랑구 면목로27가길 17 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.575991187224275, + "longitude": 127.08386326369666, "representativePriceAmount": 6000, - "representativePriceLabel": "목욕", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-227-2459 / 영업시간: 5:00-22:00 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-493-0219", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2ecce32d8db27ece1f28", - "label": "목욕", + "id": "e7577fd53ba2fde6fc36", + "label": "커트", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -10378,8 +10026,8 @@ ], "history": [ { - "id": "2ecce32d8db27ece1f28-history", - "label": "목욕", + "id": "e7577fd53ba2fde6fc36-history", + "label": "커트", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -10388,355 +10036,103 @@ "comments": [] }, { - "id": "goodprice-2526", - "name": "돈하우스", - "businessName": "돈하우스", - "categorySlug": "western", - "address": "대전광역시 동구 동대전로 131번길 8-16 1층(자양동)", - "district": "대전광역시 동구", - "latitude": 36.3347457791416, - "longitude": 127.44561323845, - "representativePriceAmount": 6900, - "representativePriceLabel": "치킨까스", + "id": "goodprice-2223", + "name": "도래순", + "businessName": "도래순", + "categorySlug": "chinese", + "address": "인천광역시 중구 신포로15번길 68-1 1층(해안동2가)", + "district": "인천광역시 중구", + "latitude": 37.4724317342844, + "longitude": 126.621168040258, + "representativePriceAmount": 7000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 치킨까스 6,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-624-5050 / 영업시간: 09:40 ~ 19:00 매주 토, 일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-766-3907 / 영업시간: 화~일 : 11:00~21:00 브레이크타임 : 15:00~17:00 정기휴무(월요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a168a752b180f707f868", - "label": "치킨까스", - "amount": 6900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ad3793808f51239374a8", - "label": "등심까스", - "amount": 6900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e46df206a25f29a61dde", - "label": "매운돈까스", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "27ba89782378e5c7fff9", - "label": "매운치즈돈까스", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f8bddecc24c951d96e80", - "label": "치즈돈까스", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "917306669c3a333e2383", - "label": "모듬돈까스", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "224a09061c08487c9396", - "label": "콤비까스", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0d69c85c4434933e6f95", - "label": "까스정식", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d8195a92873703db8e5f", - "label": "카레돈까스", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "06c2b84d4f0c8800bd86", - "label": "매운치즈카레돈까스", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "974b4859622e8a20f954", - "label": "해물볶음 돈까스", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e670fc4ea20add0f8e0c", - "label": "칠리해물볶음 돈까스", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ecae1d03e180302f8e7e", - "label": "해물스파게티 돈까스", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "20d547de72c7e5c7975d", - "label": "칠리해물스파게티 돈까스", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "77605b0a8e5f8be50114", - "label": "돌솥김치알밥", - "amount": 6500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "12af40b0db698d36eb6a", - "label": "돌솥낙지알밥", + "id": "4e0f1c1c68dea7ed843a", + "label": "짜장면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0b84441da5e524375ce2", - "label": "회덮밥", - "amount": 7000, + "id": "63f367f2dafd1d389dcc", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "011d5939e4987e5118a8", - "label": "해물볶음우동", + "id": "58eeb8364b1da73e2cdd", + "label": "오늘의 점심", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "d2528f7c5a5d6bcd9cb2", - "label": "꼬마우동(사이드)", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a4d61966ca5dd60c2b40", - "label": "비빔우동(사이드)", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a168a752b180f707f868-history", - "label": "치킨까스", - "amount": 6900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ad3793808f51239374a8-history", - "label": "등심까스", - "amount": 6900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e46df206a25f29a61dde-history", - "label": "매운돈까스", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "27ba89782378e5c7fff9-history", - "label": "매운치즈돈까스", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f8bddecc24c951d96e80-history", - "label": "치즈돈까스", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "917306669c3a333e2383-history", - "label": "모듬돈까스", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "224a09061c08487c9396-history", - "label": "콤비까스", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0d69c85c4434933e6f95-history", - "label": "까스정식", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d8195a92873703db8e5f-history", - "label": "카레돈까스", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "06c2b84d4f0c8800bd86-history", - "label": "매운치즈카레돈까스", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "974b4859622e8a20f954-history", - "label": "해물볶음 돈까스", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e670fc4ea20add0f8e0c-history", - "label": "칠리해물볶음 돈까스", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ecae1d03e180302f8e7e-history", - "label": "해물스파게티 돈까스", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "20d547de72c7e5c7975d-history", - "label": "칠리해물스파게티 돈까스", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "77605b0a8e5f8be50114-history", - "label": "돌솥김치알밥", - "amount": 6500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "12af40b0db698d36eb6a-history", - "label": "돌솥낙지알밥", + "id": "4e0f1c1c68dea7ed843a-history", + "label": "짜장면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0b84441da5e524375ce2-history", - "label": "회덮밥", - "amount": 7000, + "id": "63f367f2dafd1d389dcc-history", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "011d5939e4987e5118a8-history", - "label": "해물볶음우동", + "id": "58eeb8364b1da73e2cdd-history", + "label": "오늘의 점심", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "d2528f7c5a5d6bcd9cb2-history", - "label": "꼬마우동(사이드)", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a4d61966ca5dd60c2b40-history", - "label": "비빔우동(사이드)", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-16531", - "name": "돌구이 돼지마을 해장국", - "businessName": "돌구이 돼지마을 해장국", - "categorySlug": "korean", - "address": "대전광역시 동구 대전로815번길 54-1 (정동) 1층", - "district": "대전광역시 동구", - "latitude": 36.334231713428856, - "longitude": 127.4305695784201, - "representativePriceAmount": 7000, - "representativePriceLabel": "백반", + "id": "goodprice-10392", + "name": "넘버원 남성컷트", + "businessName": "넘버원 남성컷트", + "categorySlug": "beauty", + "address": "충청남도 천안시 서북구 두정로 263 (두정동)", + "district": "충청남도 천안시", + "latitude": 36.8334141610709, + "longitude": 127.146148378172, + "representativePriceAmount": 7700, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-226-1330 / 영업시간: 11:00 ~ 22:00 영업 매주 일요일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,700원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-904-1020 / 영업시간: 09:00~20:00 명절휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2678f914f24bde3a3721", - "label": "백반", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8e4c0ea337dcd68fcbf2", - "label": "콩나물비빔밥", - "amount": 6000, + "id": "05c7fe5e6f4f8a7d222d", + "label": "커트", + "amount": 7700, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2678f914f24bde3a3721-history", - "label": "백반", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8e4c0ea337dcd68fcbf2-history", - "label": "콩나물비빔밥", - "amount": 6000, + "id": "05c7fe5e6f4f8a7d222d-history", + "label": "커트", + "amount": 7700, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10744,41 +10140,41 @@ "comments": [] }, { - "id": "goodprice-2519", - "name": "동양전자", - "businessName": "동양전자", - "categorySlug": "other-service", - "address": "대전광역시 동구 대전로 797번길 11 (중동)", - "district": "대전광역시 동구", - "latitude": 36.3304315762194, - "longitude": 127.432265782557, - "representativePriceAmount": 10000, - "representativePriceLabel": "전자장비 수리비", + "id": "goodprice-16086", + "name": "바재커피", + "businessName": "바재커피", + "categorySlug": "other-food", + "address": "서울특별시 중구 남대문시장8길 25 (남창동) 1층", + "district": "서울특별시 중구", + "latitude": 37.55934272418682, + "longitude": 126.97870933285441, + "representativePriceAmount": 2000, + "representativePriceLabel": "아메리카노(핫)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 전자장비 수리비 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-254-3090 / 영업시간: 09:00 ~ 18:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노(핫) 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-776-5577", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "15953e6ceaec90dbcc71", - "label": "전자장비 수리비", - "amount": 10000, + "id": "ab8b361475e8dbbc2ce1", + "label": "아메리카노(핫)", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0774875f7c140289b664", - "label": "마이크", - "amount": 10000, + "id": "211e9752595ee7742041", + "label": "아메리카노(아이스)", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "beabaee99f23087f8b4c", - "label": "음향 케이블", + "id": "a9225f3ad913c374ab27", + "label": "카페라떼(핫)", "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -10786,22 +10182,22 @@ ], "history": [ { - "id": "15953e6ceaec90dbcc71-history", - "label": "전자장비 수리비", - "amount": 10000, + "id": "ab8b361475e8dbbc2ce1-history", + "label": "아메리카노(핫)", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0774875f7c140289b664-history", - "label": "마이크", - "amount": 10000, + "id": "211e9752595ee7742041-history", + "label": "아메리카노(아이스)", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "beabaee99f23087f8b4c-history", - "label": "음향 케이블", + "id": "a9225f3ad913c374ab27-history", + "label": "카페라떼(핫)", "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -10810,51 +10206,65 @@ "comments": [] }, { - "id": "goodprice-13641", - "name": "배가한식", - "businessName": "배가한식", - "categorySlug": "korean", - "address": "울산광역시 중구 중앙길 255 (학산동) .", - "district": "울산광역시 중구", - "latitude": 35.55841683163878, - "longitude": 129.32668187695438, - "representativePriceAmount": 5000, - "representativePriceLabel": "김치찌개", + "id": "goodprice-1027", + "name": "제일이발관", + "businessName": "제일이발관", + "categorySlug": "barber", + "address": "서울특별시 중랑구 중랑역로 15-1 2층", + "district": "서울특별시 중랑구", + "latitude": 37.5955649352659, + "longitude": 127.076080619786, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월요일~일요일 10:00~21:00 15:00~17:00 브레이크타임 토요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(커트) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 화,수,목,금,토,일 07:00~19:00 월 / 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d0081aa03eebed3a8ead", - "label": "김치찌개", - "amount": 5000, + "id": "73b276b80b523f62e810", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f18dcf04c5ee58a6a6d7", - "label": "된장찌개", - "amount": 5000, + "id": "dbdeb5b8a553de356637", + "label": "염색", + "amount": 0, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "58519ac7ed22a7cbe7de", + "label": "커트", + "amount": 0, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d0081aa03eebed3a8ead-history", - "label": "김치찌개", - "amount": 5000, + "id": "73b276b80b523f62e810-history", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f18dcf04c5ee58a6a6d7-history", - "label": "된장찌개", - "amount": 5000, + "id": "dbdeb5b8a553de356637-history", + "label": "염색", + "amount": 0, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "58519ac7ed22a7cbe7de-history", + "label": "커트", + "amount": 0, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10862,51 +10272,37 @@ "comments": [] }, { - "id": "goodprice-11235", - "name": "빠삐용 베이커리", - "businessName": "빠삐용 베이커리", - "categorySlug": "bakery", - "address": "울산광역시 중구 중앙길 91 (성남동)", - "district": "울산광역시 중구", - "latitude": 35.5555689712778, - "longitude": 129.318463151667, - "representativePriceAmount": 1900, - "representativePriceLabel": "팥빵", + "id": "goodprice-14638", + "name": "그냥집밥", + "businessName": "그냥집밥", + "categorySlug": "korean", + "address": "광주광역시 동구 서석로85번길 8-3 (대의동) 지하", + "district": "광주광역시 동구", + "latitude": 35.15002860036522, + "longitude": 126.9201698199041, + "representativePriceAmount": 8000, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 팥빵 1,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-248-0250", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-2624 / 영업시간: 월-토 10:30~14:30 휴무일 : 일요일, 공휴일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "27f3409dfa14004080ca", - "label": "팥빵", - "amount": 1900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "006356111478f98c5ec6", - "label": "소금빵", - "amount": 1800, + "id": "5c1fd68a2d19ba50b134", + "label": "한식뷔페", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "27f3409dfa14004080ca-history", - "label": "팥빵", - "amount": 1900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "006356111478f98c5ec6-history", - "label": "소금빵", - "amount": 1800, + "id": "5c1fd68a2d19ba50b134-history", + "label": "한식뷔페", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10914,51 +10310,51 @@ "comments": [] }, { - "id": "goodprice-14775", - "name": "서울본갈비본감자탕성안점", - "businessName": "서울본갈비본감자탕성안점", - "categorySlug": "korean", - "address": "울산광역시 중구 백양로 54 (성안동) 1층", - "district": "울산광역시 중구", - "latitude": 35.573990867359086, - "longitude": 129.31211816914396, - "representativePriceAmount": 8500, - "representativePriceLabel": "돼지갈비(180g)", + "id": "goodprice-10551", + "name": "굿맨", + "businessName": "굿맨", + "categorySlug": "barber", + "address": "경상북도 포항시 북구 아치로 57 상가동 101호 (우현동,화성아파트)", + "district": "경상북도 포항시", + "latitude": 36.0511457346007, + "longitude": 129.355698800567, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지갈비(180g) 8,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1314-2168 / 영업시간: 21:30에 라스트오더", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "676b776a0922bbf5bf3e", - "label": "돼지갈비(180g)", - "amount": 8500, + "id": "4401410467336e218626", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e5a1865dea96e6d9eda8", - "label": "뼈해장국", - "amount": 9000, + "id": "8b583938aa4f0b28ffdf", + "label": "학생커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "676b776a0922bbf5bf3e-history", - "label": "돼지갈비(180g)", - "amount": 8500, + "id": "4401410467336e218626-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e5a1865dea96e6d9eda8-history", - "label": "뼈해장국", - "amount": 9000, + "id": "8b583938aa4f0b28ffdf-history", + "label": "학생커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -10966,51 +10362,37 @@ "comments": [] }, { - "id": "goodprice-2989", - "name": "선경이용원", - "businessName": "선경이용원", - "categorySlug": "barber", - "address": "울산광역시 중구 유곡로 10 (우정동)", - "district": "울산광역시 중구", - "latitude": 35.5582366838079, - "longitude": 129.30845466344, - "representativePriceAmount": 5000, - "representativePriceLabel": "컷트", + "id": "goodprice-15377", + "name": "산과들그리고바다", + "businessName": "산과들그리고바다", + "categorySlug": "korean", + "address": "서울특별시 중구 을지로14길 22 (을지로3가) 1층", + "district": "서울특별시 중구", + "latitude": 37.56523732282778, + "longitude": 126.99202506646904, + "representativePriceAmount": 10000, + "representativePriceLabel": "모듬돌솥비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 컷트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-246-1703 / 영업시간: 정기휴무(매주월요일) 화 06:00-18:00 수 06:00-18:00 목 06:00-18:00 금 06:00-18:00 토 06:00-18:00 일 06:00-18:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 모듬돌솥비빔밥 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2277-7887", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "02baad9c2ca802b6cfef", - "label": "컷트", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c850dce8fe7a02fc11a8", - "label": "염색", - "amount": 5000, + "id": "15865c8ac17abc91e31c", + "label": "모듬돌솥비빔밥", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "02baad9c2ca802b6cfef-history", - "label": "컷트", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c850dce8fe7a02fc11a8-history", - "label": "염색", - "amount": 5000, + "id": "15865c8ac17abc91e31c-history", + "label": "모듬돌솥비빔밥", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -11018,51 +10400,37 @@ "comments": [] }, { - "id": "goodprice-10172", - "name": "명품한우타운", - "businessName": "명품한우타운", - "categorySlug": "korean", - "address": "세종특별자치시 금남면 금남구즉로 110-3", - "district": "세종특별자치시 금남면", - "latitude": 36.4730253891059, - "longitude": 127.290692559985, - "representativePriceAmount": 6000, - "representativePriceLabel": "한우탕", + "id": "goodprice-11184", + "name": "착한이발관", + "businessName": "착한이발관", + "categorySlug": "barber", + "address": "서울특별시 중랑구 봉화산로 54 -", + "district": "서울특별시 중랑구", + "latitude": 37.601476557412, + "longitude": 127.080368810985, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한우탕 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-866-6660", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(커트) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ac32988437ca2b1cdf09", - "label": "한우탕", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c85cbab11f87947fa0ef", - "label": "한우국밥", - "amount": 6000, + "id": "4f5e7c646f8c1ff984ef", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ac32988437ca2b1cdf09-history", - "label": "한우탕", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c85cbab11f87947fa0ef-history", - "label": "한우국밥", - "amount": 6000, + "id": "4f5e7c646f8c1ff984ef-history", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -11070,65 +10438,65 @@ "comments": [] }, { - "id": "goodprice-10198", - "name": "모란반점", - "businessName": "모란반점", - "categorySlug": "chinese", - "address": "세종특별자치시 보듬3로 104-11 202호(아름동, 행복프라자)", - "district": "세종특별자치시 보듬3로", - "latitude": 36.5123101279615, - "longitude": 127.248844235046, - "representativePriceAmount": 5500, - "representativePriceLabel": "자장면", + "id": "goodprice-13743", + "name": "담양국수", + "businessName": "담양국수", + "categorySlug": "korean", + "address": "광주광역시 동구 증심사길30번길 28-3 (운림동) 1층", + "district": "광주광역시 동구", + "latitude": 35.132817322727675, + "longitude": 126.95774143856892, + "representativePriceAmount": 6000, + "representativePriceLabel": "멸치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-2477", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-226-1174 / 영업시간: 08:00-20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "645757dd9eb34fb73825", - "label": "자장면", - "amount": 5500, + "id": "c97ca460a18cc7d4bea2", + "label": "멸치국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "57edcd330c8085c6825c", - "label": "짬뽕", - "amount": 6500, + "id": "556e858b40484d9e0eef", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6ff4e23e02a086973b05", - "label": "볶음밥", - "amount": 7500, + "id": "d089b601fd9732f89d74", + "label": "파전", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "645757dd9eb34fb73825-history", - "label": "자장면", - "amount": 5500, + "id": "c97ca460a18cc7d4bea2-history", + "label": "멸치국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "57edcd330c8085c6825c-history", - "label": "짬뽕", - "amount": 6500, + "id": "556e858b40484d9e0eef-history", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6ff4e23e02a086973b05-history", - "label": "볶음밥", - "amount": 7500, + "id": "d089b601fd9732f89d74-history", + "label": "파전", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -11136,51 +10504,37 @@ "comments": [] }, { - "id": "goodprice-10195", - "name": "무진장 황태칼국수", - "businessName": "무진장 황태칼국수", - "categorySlug": "korean", - "address": "세종특별자치시 금남면 용포로 74 금남면 용포로74", - "district": "세종특별자치시 금남면", - "latitude": 36.4651078017756, - "longitude": 127.281290524669, - "representativePriceAmount": 7000, - "representativePriceLabel": "황태얼큰이칼국수+보리밥", + "id": "goodprice-16131", + "name": "권민선남성컷", + "businessName": "권민선남성컷", + "categorySlug": "beauty", + "address": "경상북도 포항시 남구 상공로221번길 28 (해도동) 권민선남성컷", + "district": "경상북도 포항시", + "latitude": 36.02519921582511, + "longitude": 129.3695250773602, + "representativePriceAmount": 10000, + "representativePriceLabel": "컷트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 황태얼큰이칼국수+보리밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-866-7151", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-277-4596", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1248b7a05a86c0e4a554", - "label": "황태얼큰이칼국수+보리밥", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "cf0f0e216fc2a2e83f11", - "label": "황태순둥이칼국수+보리밥", - "amount": 7000, + "id": "5423f6077055a604ab96", + "label": "컷트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1248b7a05a86c0e4a554-history", - "label": "황태얼큰이칼국수+보리밥", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "cf0f0e216fc2a2e83f11-history", - "label": "황태순둥이칼국수+보리밥", - "amount": 7000, + "id": "5423f6077055a604ab96-history", + "label": "컷트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -11188,65 +10542,65 @@ "comments": [] }, { - "id": "goodprice-19000", - "name": "구름빵집", - "businessName": "구름빵집", - "categorySlug": "bakery", - "address": "경기도 수원시 장안구 이목로 24 (정자동, 수원 SK SKY VIEW) 603동 1층 114호", - "district": "경기도 수원시", - "latitude": 37.308841568254806, - "longitude": 126.98470292444611, - "representativePriceAmount": 2000, - "representativePriceLabel": "단팥빵", + "id": "goodprice-967", + "name": "신빙고", + "businessName": "신빙고", + "categorySlug": "other-food", + "address": "서울특별시 중구 동호로12길 93 1층(신당동)", + "district": "서울특별시 중구", + "latitude": 37.559329134852, + "longitude": 127.012071243923, + "representativePriceAmount": 2300, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-223-7727 / 영업시간: 08:00~19:00 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,300원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-8819 / 영업시간: 월~금 10:00-20:30 토~일 11:00-19:00 (하절기에 변동가능)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c0c8d66e2a0becee0207", - "label": "단팥빵", - "amount": 2000, + "id": "c5dfcaa7d9aa39644d84", + "label": "아메리카노", + "amount": 2300, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "778ecab0dfbb69f3907d", - "label": "우유식빵", - "amount": 4000, + "id": "3f6c65eaf9b0e847b415", + "label": "복숭아아이스티", + "amount": 2300, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "15ee63572296c7a498b7", - "label": "아메리카노", - "amount": 2500, + "id": "6d41043b245a04ad6fb7", + "label": "플레인크로플", + "amount": 2800, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c0c8d66e2a0becee0207-history", - "label": "단팥빵", - "amount": 2000, + "id": "c5dfcaa7d9aa39644d84-history", + "label": "아메리카노", + "amount": 2300, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "778ecab0dfbb69f3907d-history", - "label": "우유식빵", - "amount": 4000, + "id": "3f6c65eaf9b0e847b415-history", + "label": "복숭아아이스티", + "amount": 2300, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "15ee63572296c7a498b7-history", - "label": "아메리카노", - "amount": 2500, + "id": "6d41043b245a04ad6fb7-history", + "label": "플레인크로플", + "amount": 2800, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -11254,93 +10608,51 @@ "comments": [] }, { - "id": "goodprice-16201", - "name": "국수명가", - "businessName": "국수명가", - "categorySlug": "korean", - "address": "경기도 수원시 권선구 평동로79번길 45 (평동) 1층 154호", - "district": "경기도 수원시", - "latitude": 37.259876627948074, - "longitude": 126.99277737503824, - "representativePriceAmount": 7000, - "representativePriceLabel": "비빔밥", + "id": "goodprice-996", + "name": "포토아트", + "businessName": "포토아트", + "categorySlug": "other-service", + "address": "서울특별시 중랑구 면목로40길 16", + "district": "서울특별시 중랑구", + "latitude": 37.5789701273514, + "longitude": 127.087962102299, + "representativePriceAmount": 10000, + "representativePriceLabel": "사진촬영료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-242-8473 / 영업시간: 11:00~16:00 매주 일요일 및 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 사진촬영료 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-435-1757 / 영업시간: 월,화수,목,금/10:00-20:00 토,일 / 11:00~19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e13597ce03a8ba47fa74", - "label": "비빔밥", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f32f61ea850c645f8f21", - "label": "제돈까스", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6bc6a3bc254b524fe90c", - "label": "잔치국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "57d33a75e7f4d1e30228", - "label": "비빔국수", - "amount": 6500, + "id": "32b043af1b693c820eee", + "label": "사진촬영료", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2be10149fd266404e42c", - "label": "돈까스+잔치국수", - "amount": 8500, + "id": "1ebc4a1343221f34fcbf", + "label": "인화료", + "amount": 400, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e13597ce03a8ba47fa74-history", - "label": "비빔밥", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f32f61ea850c645f8f21-history", - "label": "제돈까스", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6bc6a3bc254b524fe90c-history", - "label": "잔치국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "57d33a75e7f4d1e30228-history", - "label": "비빔국수", - "amount": 6500, + "id": "32b043af1b693c820eee-history", + "label": "사진촬영료", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2be10149fd266404e42c-history", - "label": "돈까스+잔치국수", - "amount": 8500, + "id": "1ebc4a1343221f34fcbf-history", + "label": "인화료", + "amount": 400, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -11348,106 +10660,120 @@ "comments": [] }, { - "id": "goodprice-3384", - "name": "국수촌", - "businessName": "국수촌", + "id": "goodprice-2258", + "name": "대왕김밥(대인동)", + "businessName": "대왕김밥(대인동)", "categorySlug": "korean", - "address": "경기도 수원시 영통구 매여울로53번길 63-2 (매탄동)", - "district": "경기도 수원시", - "latitude": 37.2726657638748, - "longitude": 127.041141095451, - "representativePriceAmount": 3000, - "representativePriceLabel": "잔치국수", + "address": "광주광역시 동구 구성로204번길 15-6 1층(대인동)", + "district": "광주광역시 동구", + "latitude": 35.1525929911284, + "longitude": 126.91613437943, + "representativePriceAmount": 3500, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-213-5033 / 영업시간: 월~금 10:00~18:00 토 10:00~17:00 일요일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-529-3363 / 영업시간: 09:00-19:00 휴일 일요일, 명절", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "82ffee7d19a683506c88", - "label": "잔치국수", - "amount": 3000, + "id": "650638df6a128b277f01", + "label": "김밥", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8edfc58c86a1c22a77da", - "label": "비빔국수", + "id": "de42f31d1011f2b430fc", + "label": "라면", "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c2560c357a021f8112ec", - "label": "멸치칼국수", - "amount": 4000, + "id": "0bb71c7ec045a64c6643", + "label": "햄야채볶음밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "34aa9d50ccad366f7fa9", - "label": "콩국수", - "amount": 7000, + "id": "348116809e1e1ad778a4", + "label": "오므라이스", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e1b2077f665207815225", + "label": "제육덮밥", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "82ffee7d19a683506c88-history", - "label": "잔치국수", - "amount": 3000, + "id": "650638df6a128b277f01-history", + "label": "김밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8edfc58c86a1c22a77da-history", - "label": "비빔국수", + "id": "de42f31d1011f2b430fc-history", + "label": "라면", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c2560c357a021f8112ec-history", - "label": "멸치칼국수", - "amount": 4000, + "id": "0bb71c7ec045a64c6643-history", + "label": "햄야채볶음밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "34aa9d50ccad366f7fa9-history", - "label": "콩국수", - "amount": 7000, + "id": "348116809e1e1ad778a4-history", + "label": "오므라이스", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15487", - "name": "금란미용실", - "businessName": "금란미용실", + }, + { + "id": "e1b2077f665207815225-history", + "label": "제육덮밥", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-7201", + "name": "금천미용실", + "businessName": "금천미용실", "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 둥지길 7 (효자동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.874828386296336, - "longitude": 127.73569431782938, + "address": "제주특별자치도 제주시 중앙로23길 6 .", + "district": "제주특별자치도 제주시", + "latitude": 33.5069619652156, + "longitude": 126.525476490278, "representativePriceAmount": 10000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-257-4174", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-758-9254", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d2ba494aa16e2af56d92", + "id": "8b5bfa5646aa6ee0bc92", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -11456,7 +10782,7 @@ ], "history": [ { - "id": "d2ba494aa16e2af56d92-history", + "id": "8b5bfa5646aa6ee0bc92-history", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -11466,41 +10792,41 @@ "comments": [] }, { - "id": "goodprice-10303", - "name": "금옥", - "businessName": "금옥", + "id": "goodprice-984", + "name": "영자씨우동김밥", + "businessName": "영자씨우동김밥", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 동면 금옥길 289-27 1층", - "district": "강원특별자치도 춘천시", - "latitude": 37.9229090212663, - "longitude": 127.80680948061, - "representativePriceAmount": 8000, - "representativePriceLabel": "막국수", + "address": "서울특별시 중구 마른내로 15-1 (저동2가)", + "district": "서울특별시 중구", + "latitude": 37.5649541262687, + "longitude": 126.989606762221, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 막국수 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-241-1791 / 영업시간: 11:00 - 20:00 라스트오더 19:30 매주 월요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-227-9791 / 영업시간: 월~금 07:00~20:00 토,일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2bda609ef3877510c64f", - "label": "막국수", - "amount": 8000, + "id": "f1304235cd33c728e951", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0fc52f34a464010016d5", - "label": "돼지 곰탕", - "amount": 9000, + "id": "1ad1a44a63016a968470", + "label": "김밥 (야채)", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c078cd6529cdfc09759e", - "label": "동치미 막국수", + "id": "0eb9264027c0a9816e63", + "label": "카레덮밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -11508,22 +10834,22 @@ ], "history": [ { - "id": "2bda609ef3877510c64f-history", - "label": "막국수", - "amount": 8000, + "id": "f1304235cd33c728e951-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0fc52f34a464010016d5-history", - "label": "돼지 곰탕", - "amount": 9000, + "id": "1ad1a44a63016a968470-history", + "label": "김밥 (야채)", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c078cd6529cdfc09759e-history", - "label": "동치미 막국수", + "id": "0eb9264027c0a9816e63-history", + "label": "카레덮밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -11532,41 +10858,27 @@ "comments": [] }, { - "id": "goodprice-4378", - "name": "낭만국수집", - "businessName": "낭만국수집", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 서부대성로57번길2 (옥천동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8829699924835, - "longitude": 127.72960354019, + "id": "goodprice-18849", + "name": "행운이발관", + "businessName": "행운이발관", + "categorySlug": "barber", + "address": "서울특별시 중랑구 면목로 402 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58784210881535, + "longitude": 127.0879735000605, "representativePriceAmount": 8000, - "representativePriceLabel": "돌솥비빔밥", + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-251-5688 / 영업시간: 10:00 - 15:00 주말 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(커트) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8255-3388", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "068def9ab6d56e24b327", - "label": "돌솥비빔밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4d40ca6d18dbb06776b3", - "label": "낙지덮밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "326599d4911ee0f08e2b", - "label": "들깨국수", + "id": "83b4ac09f9de57410cb0", + "label": "이용료(커트)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -11574,22 +10886,8 @@ ], "history": [ { - "id": "068def9ab6d56e24b327-history", - "label": "돌솥비빔밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4d40ca6d18dbb06776b3-history", - "label": "낙지덮밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "326599d4911ee0f08e2b-history", - "label": "들깨국수", + "id": "83b4ac09f9de57410cb0-history", + "label": "이용료(커트)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -11598,249 +10896,177 @@ "comments": [] }, { - "id": "goodprice-15779", - "name": "괴산식당", - "businessName": "괴산식당", + "id": "goodprice-2562", + "name": "경성화로", + "businessName": "경성화로", "categorySlug": "korean", - "address": "충청북도 청주시 서원구 매봉로76번길 30 (수곡동) 1층", - "district": "충청북도 청주시", - "latitude": 36.61685424168219, - "longitude": 127.48003972548739, + "address": "대전광역시 동구 동서대로 1748번길 152 (가양동)", + "district": "대전광역시 동구", + "latitude": 36.3488134723206, + "longitude": 127.450323327516, "representativePriceAmount": 7000, - "representativePriceLabel": "청국장", + "representativePriceLabel": "삼겹살(150g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-285-6045", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살(150g) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-632-1087 / 영업시간: 16:00 ~ 23:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "aa792fb908852a342ab3", - "label": "청국장", + "id": "23c58d26998b6de36ccd", + "label": "삼겹살(150g)", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "018d18d2b7beccc3c706", - "label": "순두부찌개", - "amount": 7000, + "id": "6677d6e7241b4f40c371", + "label": "갈매기살(150g)", + "amount": 7900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0991847f164845e4aefa", - "label": "김치찌개", - "amount": 7000, + "id": "bea4c467b06a7eebc475", + "label": "김치말이국수(냉/온)", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "aa792fb908852a342ab3-history", - "label": "청국장", + "id": "5e869f27b14e5558b43d", + "label": "껍데기", "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "018d18d2b7beccc3c706-history", - "label": "순두부찌개", - "amount": 7000, + "id": "37ab8c34ea0389c8587a", + "label": "꼬들살((150g)", + "amount": 8900, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "0991847f164845e4aefa-history", - "label": "김치찌개", + "id": "705d66c7eba21f12fc8f", + "label": "두툼삼겹살(150g)", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "11b65af72596a6f64404", + "label": "목살(150g)", "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13537", - "name": "국가대표", - "businessName": "국가대표", - "categorySlug": "korean", - "address": "충청북도 청주시 청원구 수암로88번길 5-1 (우암동)", - "district": "충청북도 청주시", - "latitude": 36.65014622761729, - "longitude": 127.49373602311476, - "representativePriceAmount": 6000, - "representativePriceLabel": "순두부찌개", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "de73e5a12c370c04b575", - "label": "순두부찌개", - "amount": 6000, + "id": "1626153ab556d897affa", + "label": "물냉면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "86eba20ba26cc122cc27", - "label": "된장찌개", - "amount": 6000, + "id": "71f331f42ed424bf7aca", + "label": "비빔냉면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c2cc6d086df03748df08", - "label": "김치찌개", - "amount": 6000, + "id": "29de8b31534459d7077a", + "label": "새우롤", + "amount": 6800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "dfa28d1c5775f9f16721", + "label": "참숯초벌삼겹살(150g)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "de73e5a12c370c04b575-history", - "label": "순두부찌개", - "amount": 6000, + "id": "23c58d26998b6de36ccd-history", + "label": "삼겹살(150g)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "86eba20ba26cc122cc27-history", - "label": "된장찌개", - "amount": 6000, + "id": "6677d6e7241b4f40c371-history", + "label": "갈매기살(150g)", + "amount": 7900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c2cc6d086df03748df08-history", - "label": "김치찌개", - "amount": 6000, + "id": "bea4c467b06a7eebc475-history", + "label": "김치말이국수(냉/온)", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15534", - "name": "국수좋은날", - "businessName": "국수좋은날", - "categorySlug": "korean", - "address": "충청북도 청주시 서원구 1순환로1063번길 34 (분평동) 1층", - "district": "충청북도 청주시", - "latitude": 36.60797810746097, - "longitude": 127.48522816108827, - "representativePriceAmount": 5000, - "representativePriceLabel": "잔치국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-291-5962", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "b99876411920970c6eff", - "label": "잔치국수", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" }, { - "id": "ec53c560b46142bbd78c", - "label": "비빔국수", - "amount": 5000, + "id": "5e869f27b14e5558b43d-history", + "label": "껍데기", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "124c230d8d9cd06e92e5", - "label": "간장비빔국수", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "b99876411920970c6eff-history", - "label": "잔치국수", - "amount": 5000, + "id": "37ab8c34ea0389c8587a-history", + "label": "꼬들살((150g)", + "amount": 8900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ec53c560b46142bbd78c-history", - "label": "비빔국수", - "amount": 5000, + "id": "705d66c7eba21f12fc8f-history", + "label": "두툼삼겹살(150g)", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "124c230d8d9cd06e92e5-history", - "label": "간장비빔국수", - "amount": 5000, + "id": "11b65af72596a6f64404-history", + "label": "목살(150g)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13709", - "name": "굼드림", - "businessName": "굼드림", - "categorySlug": "other-food", - "address": "충청북도 청주시 상당구 상당로69번길 15 (북문로1가) 대신증권 1층", - "district": "충청북도 청주시", - "latitude": 36.63425701957848, - "longitude": 127.48966620404532, - "representativePriceAmount": 2000, - "representativePriceLabel": "아메리카노", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "c7b9f41e9f2f693084fe", - "label": "아메리카노", - "amount": 2000, + "id": "1626153ab556d897affa-history", + "label": "물냉면", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "bb8c33ba749ca59b57a9", - "label": "에이드", - "amount": 3000, + "id": "71f331f42ed424bf7aca-history", + "label": "비빔냉면", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "c7b9f41e9f2f693084fe-history", - "label": "아메리카노", - "amount": 2000, + "id": "29de8b31534459d7077a-history", + "label": "새우롤", + "amount": 6800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bb8c33ba749ca59b57a9-history", - "label": "에이드", - "amount": 3000, + "id": "dfa28d1c5775f9f16721-history", + "label": "참숯초벌삼겹살(150g)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -11848,37 +11074,37 @@ "comments": [] }, { - "id": "goodprice-4910", - "name": "국빈4000냥미용실", - "businessName": "국빈4000냥미용실", + "id": "goodprice-13187", + "name": "서림미용실", + "businessName": "서림미용실", "categorySlug": "beauty", - "address": "충청남도 천안시 동남구 대흥로 132-2 (사직동)", - "district": "충청남도 천안시", - "latitude": 36.8008837521399, - "longitude": 127.148549025545, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", + "address": "광주광역시 동구 운림길 23 (운림동, 무등파크맨션) 상가동 202호", + "district": "광주광역시 동구", + "latitude": 35.13428906928481, + "longitude": 126.94139361034274, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트(성인)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 08:00~17:30 정기휴무(매월 1일, 15일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(성인) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-228-2909 / 영업시간: 09:00~21:00 / 일요일, 공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "799b3be66829861ba64b", - "label": "커트", - "amount": 7000, + "id": "1e67da33ccc7748676cd", + "label": "커트(성인)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "799b3be66829861ba64b-history", - "label": "커트", - "amount": 7000, + "id": "1e67da33ccc7748676cd-history", + "label": "커트(성인)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -11886,65 +11112,65 @@ "comments": [] }, { - "id": "goodprice-13065", - "name": "김밥군쫄면양", - "businessName": "김밥군쫄면양", + "id": "goodprice-969", + "name": "옛날홍두깨손칼국수", + "businessName": "옛날홍두깨손칼국수", "categorySlug": "korean", - "address": "충청남도 천안시 동남구 충절로 311 (구성동) 109호", - "district": "충청남도 천안시", - "latitude": 36.791883821934995, - "longitude": 127.16249631665832, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", + "address": "서울특별시 중구 동호로7길 32 1층", + "district": "서울특별시 중구", + "latitude": 37.5525136777809, + "longitude": 127.010624637953, + "representativePriceAmount": 6000, + "representativePriceLabel": "손수제비", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 05:30~20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손수제비 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-1458 / 영업시간: 월~일 09:00~20:00 명절 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8e31a4277cfd977e3d61", - "label": "김밥", - "amount": 3000, + "id": "217840a02dae9b806388", + "label": "손수제비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "73f4b40e68f46c316875", - "label": "양푼이비빔밥", - "amount": 7000, + "id": "93a81d9fe454a534e253", + "label": "잔치국수", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "addadf12708308ff174f", - "label": "김치찌개", - "amount": 7000, + "id": "ed658c755f7a782fc227", + "label": "야채비빔밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8e31a4277cfd977e3d61-history", - "label": "김밥", - "amount": 3000, + "id": "217840a02dae9b806388-history", + "label": "손수제비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "73f4b40e68f46c316875-history", - "label": "양푼이비빔밥", - "amount": 7000, + "id": "93a81d9fe454a534e253-history", + "label": "잔치국수", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "addadf12708308ff174f-history", - "label": "김치찌개", - "amount": 7000, + "id": "ed658c755f7a782fc227-history", + "label": "야채비빔밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -11952,65 +11178,75 @@ "comments": [] }, { - "id": "goodprice-11750", - "name": "김밥하나", - "businessName": "김밥하나", - "categorySlug": "korean", - "address": "충청남도 천안시 동남구 대흥로 340 (신부동)", - "district": "충청남도 천안시", - "latitude": 36.8177959668313, - "longitude": 127.15176650569, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", + "id": "goodprice-17623", + "name": "현대미용실", + "businessName": "현대미용실", + "categorySlug": "beauty", + "address": "서울특별시 중랑구 면목로44가길 50 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58334894436383, + "longitude": 127.09009102203078, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-556-6247 / 영업시간: 09:30~19:00 정기휴무(매주 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-6856-2098", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b3fd014582793ad8a3b3", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3e2298e5def48b546804", - "label": "김치찌개", + "id": "a0b77ae8d80fba9238bd", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "9bf2c88de259a80a021b", - "label": "된장찌개", + "id": "a0b77ae8d80fba9238bd-history", + "label": "커트", "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" } ], - "history": [ - { - "id": "b3fd014582793ad8a3b3-history", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "comments": [] + }, + { + "id": "goodprice-18955", + "name": "국민추어탕", + "businessName": "국민추어탕", + "categorySlug": "korean", + "address": "대전광역시 동구 옥천로 52-2 (신흥동) 1층", + "district": "대전광역시 동구", + "latitude": 36.31971954491453, + "longitude": 127.44667251762813, + "representativePriceAmount": 9000, + "representativePriceLabel": "추어탕+돌솥밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕+돌솥밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-282-1585 / 영업시간: 11:00~20:30 / 브레이크타임: 14:30~17:00 매주 일요일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "3e2298e5def48b546804-history", - "label": "김치찌개", - "amount": 7000, + "id": "4c3af4162c248af5fe89", + "label": "추어탕+돌솥밥", + "amount": 9000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "9bf2c88de259a80a021b-history", - "label": "된장찌개", - "amount": 7000, + "id": "4c3af4162c248af5fe89-history", + "label": "추어탕+돌솥밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12018,37 +11254,37 @@ "comments": [] }, { - "id": "goodprice-18214", - "name": "란미용실", - "businessName": "란미용실", - "categorySlug": "beauty", - "address": "전북특별자치도 전주시 완산구 공수내1길 7-2 (서서학동) 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.805287710386786, - "longitude": 127.14763371176575, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-2531", + "name": "복지이용원", + "businessName": "복지이용원", + "categorySlug": "barber", + "address": "대전광역시 동구 대전로 791번길 50 (중동)", + "district": "대전광역시 동구", + "latitude": 36.3295205271986, + "longitude": 127.430506838139, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-4007-3960 / 영업시간: 06:00~19:00 / 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-251-8428 / 영업시간: 08:00 ~ 20:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cfa171665a12ca64d48c", - "label": "커트", - "amount": 10000, + "id": "c432d5594cb929b8bb38", + "label": "이용료", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "cfa171665a12ca64d48c-history", - "label": "커트", - "amount": 10000, + "id": "c432d5594cb929b8bb38-history", + "label": "이용료", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12056,65 +11292,65 @@ "comments": [] }, { - "id": "goodprice-5437", - "name": "만나별미", - "businessName": "만나별미", + "id": "goodprice-985", + "name": "우리집 맛자랑", + "businessName": "우리집 맛자랑", "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 거마평로 122", - "district": "전북특별자치도 전주시", - "latitude": 35.8032647559385, - "longitude": 127.116997533405, + "address": "서울특별시 중구 퇴계로20길 26 (남산동2가)", + "district": "서울특별시 중구", + "latitude": 37.559092298164, + "longitude": 126.985816423839, "representativePriceAmount": 7000, - "representativePriceLabel": "돈가스", + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-224-9529 / 영업시간: 매일 09:00~20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-319-8939 / 영업시간: 월~금 09:00~21:00 토,일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a59b69b704cc8dbedaf2", - "label": "돈가스", + "id": "8700a71ccdb454f69e99", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4d59b3c13492fb8991bf", - "label": "된장찌개", - "amount": 6000, + "id": "c9d08d3f423af5136c74", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fa87ad1b6972ade86c9e", - "label": "김치찌개", - "amount": 7000, + "id": "b1863f8e47b005d20ee0", + "label": "청국장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a59b69b704cc8dbedaf2-history", - "label": "돈가스", + "id": "8700a71ccdb454f69e99-history", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4d59b3c13492fb8991bf-history", - "label": "된장찌개", - "amount": 6000, + "id": "c9d08d3f423af5136c74-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fa87ad1b6972ade86c9e-history", - "label": "김치찌개", - "amount": 7000, + "id": "b1863f8e47b005d20ee0-history", + "label": "청국장", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12122,51 +11358,37 @@ "comments": [] }, { - "id": "goodprice-5438", - "name": "만남의집", - "businessName": "만남의집", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 서학로 28-1", - "district": "전북특별자치도 전주시", - "latitude": 35.8095241776664, - "longitude": 127.152553371019, - "representativePriceAmount": 8000, - "representativePriceLabel": "김치찌개", + "id": "goodprice-997", + "name": "호계대중사우나", + "businessName": "호계대중사우나", + "categorySlug": "bath", + "address": "서울특별시 중랑구 봉화산로56길 153 지하2층", + "district": "서울특별시 중랑구", + "latitude": 37.6014843289566, + "longitude": 127.096785094457, + "representativePriceAmount": 8500, + "representativePriceLabel": "목욕료(성인)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-287-5589", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕료(성인) 8,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-433-5490 / 영업시간: 매일 05:00-19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e425df176ff052738706", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b5064f35e55248f2c814", - "label": "된장찌개", - "amount": 8000, + "id": "71116edc7851509b54b9", + "label": "목욕료(성인)", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e425df176ff052738706-history", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b5064f35e55248f2c814-history", - "label": "된장찌개", - "amount": 8000, + "id": "71116edc7851509b54b9-history", + "label": "목욕료(성인)", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12174,51 +11396,93 @@ "comments": [] }, { - "id": "goodprice-15140", - "name": "대흥정", - "businessName": "대흥정", + "id": "goodprice-2544", + "name": "김화칼국수", + "businessName": "김화칼국수", "categorySlug": "korean", - "address": "전라남도 목포시 용당로216번길 25-1 (용당동) 대흥정", - "district": "전라남도 목포시", - "latitude": 34.80647798540608, - "longitude": 126.40112936933254, - "representativePriceAmount": 8000, - "representativePriceLabel": "백반", + "address": "대전광역시 동구 중앙로 203번길 28 (중동)", + "district": "대전광역시 동구", + "latitude": 36.332041975521, + "longitude": 127.431018789434, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-273-0414", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-221-7594 / 영업시간: 09:00 ~ 20:00 / 매주 일요일 정기 후뮤 / 브레이크타임 14:30 ~ 16:00 / 라스트오더 17:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0b06029b639dac26b59e", - "label": "백반", - "amount": 8000, + "id": "7cb413361b5ab7c6b822", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d6ba8a8addb01723ff08", - "label": "비빔밥", - "amount": 8000, + "id": "8917affda81918473e5a", + "label": "선지국밥", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "51f3de5f30416fa27743", + "label": "콩국수", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "19f1878ff7a60db94f0d", + "label": "비빔국수", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e8e386a72ca492f41def", + "label": "수육(小)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0b06029b639dac26b59e-history", - "label": "백반", - "amount": 8000, + "id": "7cb413361b5ab7c6b822-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d6ba8a8addb01723ff08-history", - "label": "비빔밥", - "amount": 8000, + "id": "8917affda81918473e5a-history", + "label": "선지국밥", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "51f3de5f30416fa27743-history", + "label": "콩국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "19f1878ff7a60db94f0d-history", + "label": "비빔국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e8e386a72ca492f41def-history", + "label": "수육(小)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12226,51 +11490,37 @@ "comments": [] }, { - "id": "goodprice-15153", - "name": "드라이하우스 북항점", - "businessName": "드라이하우스 북항점", - "categorySlug": "laundry", - "address": "전라남도 목포시 청호로219번길 30 (산정동) 1층 106호", - "district": "전라남도 목포시", - "latitude": 34.80742822388893, - "longitude": 126.36751972578438, - "representativePriceAmount": 6100, - "representativePriceLabel": "정장한벌", + "id": "goodprice-3363", + "name": "당수여성사우나", + "businessName": "당수여성사우나", + "categorySlug": "bath", + "address": "경기도 수원시 권선구 당진로15번길 56 (당수동)", + "district": "경기도 수원시", + "latitude": 37.2920971102154, + "longitude": 126.938984343475, + "representativePriceAmount": 8000, + "representativePriceLabel": "목욕료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 정장한벌 6,100원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-278-2788", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕료 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-419-9042 / 영업시간: 06:00~18:00 (화요일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ac950f07c547d294a204", - "label": "정장한벌", - "amount": 6100, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c192f6731539b045a68e", - "label": "와이셔츠", - "amount": 1900, + "id": "8af448a46d9a0e6142e2", + "label": "목욕료", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ac950f07c547d294a204-history", - "label": "정장한벌", - "amount": 6100, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c192f6731539b045a68e-history", - "label": "와이셔츠", - "amount": 1900, + "id": "8af448a46d9a0e6142e2-history", + "label": "목욕료", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12278,51 +11528,37 @@ "comments": [] }, { - "id": "goodprice-10506", - "name": "맹순이네 국밥", - "businessName": "맹순이네 국밥", - "categorySlug": "korean", - "address": "전라남도 목포시 북항로 73 1층(죽교동)", - "district": "전라남도 목포시", - "latitude": 34.7998878782976, - "longitude": 126.376318072647, - "representativePriceAmount": 6000, - "representativePriceLabel": "돼지머리국밥", + "id": "goodprice-966", + "name": "유가", + "businessName": "유가", + "categorySlug": "chinese", + "address": "서울특별시 중구 퇴계로12길 68 1층 (회현동1가)", + "district": "서울특별시 중구", + "latitude": 37.5566718882239, + "longitude": 126.981473444416, + "representativePriceAmount": 7000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지머리국밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-378-9688 / 영업시간: 월~금 11:00-21:00 14:30-17:00브레이크타임 20:30라스트오더 토 11:30-20:00 14:30-17:00브레이크타임 19:30라스트오더 일 정기휴무(매주일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a3b8c5a76add204a24b9", - "label": "돼지머리국밥", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1f8e963b2529babbd023", - "label": "돼지내장국밥", - "amount": 6000, + "id": "9e3dff9446c754df35ef", + "label": "자장면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a3b8c5a76add204a24b9-history", - "label": "돼지머리국밥", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1f8e963b2529babbd023-history", - "label": "돼지내장국밥", - "amount": 6000, + "id": "9e3dff9446c754df35ef-history", + "label": "자장면", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12330,145 +11566,127 @@ "comments": [] }, { - "id": "goodprice-6386", - "name": "고을마당", - "businessName": "고을마당", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 대이로9번길 22 고을마당", - "district": "경상북도 포항시", - "latitude": 36.015803950231, - "longitude": 129.341696748169, + "id": "goodprice-1013", + "name": "효자동이발소", + "businessName": "효자동이발소", + "categorySlug": "barber", + "address": "서울특별시 중랑구 용마산로 394", + "district": "서울특별시 중랑구", + "latitude": 37.5866519523067, + "longitude": 127.095551256708, "representativePriceAmount": 7000, - "representativePriceLabel": "해물칼국수", + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해물칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 평일 09시~13시 매주 토요일, 일요일 휴무 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(커트) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월,수,목,금,토,일 / 07:00~19:00 화요일 / 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0663eed122250f594a03", - "label": "해물칼국수", + "id": "499b7ecea6662946e544", + "label": "이용료(커트)", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "1222cb2d111ee305ea9c", - "label": "정식", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "80894533405ef057115d", - "label": "콩국수", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0663eed122250f594a03-history", - "label": "해물칼국수", + "id": "499b7ecea6662946e544-history", + "label": "이용료(커트)", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "1222cb2d111ee305ea9c-history", - "label": "정식", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "80894533405ef057115d-history", - "label": "콩국수", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-6387", - "name": "고향식당", - "businessName": "고향식당", + "id": "goodprice-11675", + "name": "다원식당", + "businessName": "다원식당", "categorySlug": "korean", - "address": "경상북도 포항시 남구 대송면 제내길75번길 29-5 고향식당", - "district": "경상북도 포항시", - "latitude": 35.9795204842443, - "longitude": 129.364706422308, + "address": "울산광역시 중구 옥교6길 19 (옥교동)", + "district": "울산광역시 중구", + "latitude": 35.5541946842973, + "longitude": 129.327531124694, "representativePriceAmount": 8000, "representativePriceLabel": "비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-293-1230 / 영업시간: 12시~14시, 17시~19시 (브레이크타임 14시~17시) 매주 일요일 휴무", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-211-4068", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c7e1e5e573a22d7633df", + "id": "56f4cc2738e1a554420c", "label": "비빔밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3ee670e9e84c60e4d764", - "label": "순두부찌개", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "de69e0a3fbf9e5a072e5", - "label": "된장찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0e7d9c647979636a7c9d", - "label": "김치찌개", - "amount": 8000, + "id": "3398bddac217b7999209", + "label": "삼겹살(120g)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c7e1e5e573a22d7633df-history", + "id": "56f4cc2738e1a554420c-history", "label": "비빔밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3ee670e9e84c60e4d764-history", - "label": "순두부찌개", - "amount": 9000, + "id": "3398bddac217b7999209-history", + "label": "삼겹살(120g)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-16642", + "name": "머릿결사랑", + "businessName": "머릿결사랑", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 칠전서길 15-2 (칠전동, 칠전대우2차아파트)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8403768426874, + "longitude": 127.71243175796782, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-8940", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "de69e0a3fbf9e5a072e5-history", - "label": "된장찌개", - "amount": 8000, + "id": "6b29b4816f2de47b43e0", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "0e7d9c647979636a7c9d-history", - "label": "김치찌개", - "amount": 8000, + "id": "6b29b4816f2de47b43e0-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12476,65 +11694,51 @@ "comments": [] }, { - "id": "goodprice-6809", - "name": "낙동추어탕", - "businessName": "낙동추어탕", + "id": "goodprice-15376", + "name": "이모분식", + "businessName": "이모분식", "categorySlug": "korean", - "address": "경상남도 창원시 성산구 대정로35번길 4-1 (가음동, 정진상가)", - "district": "경상남도 창원시", - "latitude": 35.2078507245462, - "longitude": 128.698126634249, - "representativePriceAmount": 9000, - "representativePriceLabel": "추어탕", + "address": "서울특별시 중구 충무로 43-2 (초동) 1층", + "district": "서울특별시 중구", + "latitude": 37.5650968997076, + "longitude": 126.99258310708615, + "representativePriceAmount": 4000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-286-5565", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2279-3897", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "acc354f0a62434ebca7c", - "label": "추어탕", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2906154d2bda172d11bb", - "label": "추어국수", - "amount": 9000, + "id": "af57a4ee050a2d955c5b", + "label": "김밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0f277528753dbe4cbb80", - "label": "우렁이추어탕", - "amount": 10000, + "id": "e598c7474a438d3d3df6", + "label": "라면", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "acc354f0a62434ebca7c-history", - "label": "추어탕", - "amount": 9000, + "id": "af57a4ee050a2d955c5b-history", + "label": "김밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2906154d2bda172d11bb-history", - "label": "추어국수", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0f277528753dbe4cbb80-history", - "label": "우렁이추어탕", - "amount": 10000, + "id": "e598c7474a438d3d3df6-history", + "label": "라면", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12542,163 +11746,193 @@ "comments": [] }, { - "id": "goodprice-7117", - "name": "광양왕소금깡통구이", - "businessName": "광양왕소금깡통구이", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 광양13길 13", - "district": "제주특별자치도 제주시", - "latitude": 33.4992265614392, - "longitude": 126.531680684457, - "representativePriceAmount": 6000, - "representativePriceLabel": "돌솥밥", + "id": "goodprice-762", + "name": "5080실버미용실", + "businessName": "5080실버미용실", + "categorySlug": "beauty", + "address": "서울특별시 성북구 돌곶이로 141", + "district": "서울특별시 성북구", + "latitude": 37.6145460956653, + "longitude": 127.052601651021, + "representativePriceAmount": 10000, + "representativePriceLabel": "미용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-755-9966", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-942-9234 / 영업시간: 9:30~19:00 첫째, 셋째 월요일 둘째, 넷째 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d651b6e2cc6ce72c9e34", - "label": "돌솥밥", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "47fc39df2e7a91b3314e", - "label": "비빔밥", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4d9bbb17687cf75c1de3", - "label": "된장찌개", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "23b203d52b956db9d87f", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "389137d7df54bd8ee7e2", - "label": "낙지볶음", + "id": "9a2fae1b77380a4aca87", + "label": "미용료(커트)", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bb0a6df3cdf4131a9bed", - "label": "돌솥비빔밥", - "amount": 6000, + "id": "83818dcfd5d11bedd2cf", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "3a01971e08b17a622530", - "label": "순두부찌개", - "amount": 8000, + "id": "9a2fae1b77380a4aca87-history", + "label": "미용료(커트)", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "501b04238a701571b5cf", - "label": "열무국수", - "amount": 7000, + "id": "83818dcfd5d11bedd2cf-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-16555", + "name": "대가국밥", + "businessName": "대가국밥", + "categorySlug": "korean", + "address": "울산광역시 중구 화진길 11-4 (태화동) 1층", + "district": "울산광역시 중구", + "latitude": 35.55523350485414, + "longitude": 129.3085469323432, + "representativePriceAmount": 9000, + "representativePriceLabel": "돼지국밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지국밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-212-2988", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "2737e787519babbbb92d", - "label": "제,낙볶음", - "amount": 10000, + "id": "3353aeed703c363f87af", + "label": "돼지국밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e3a13ec54c88325f2072", - "label": "제육볶음", - "amount": 10000, + "id": "488230157473ef834fb6", + "label": "내장국밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d651b6e2cc6ce72c9e34-history", - "label": "돌솥밥", - "amount": 6000, + "id": "3353aeed703c363f87af-history", + "label": "돼지국밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "47fc39df2e7a91b3314e-history", - "label": "비빔밥", - "amount": 6000, + "id": "488230157473ef834fb6-history", + "label": "내장국밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-10499", + "name": "영빈미용실", + "businessName": "영빈미용실", + "categorySlug": "beauty", + "address": "전라남도 목포시 삼학로343번길 6 (용해동)", + "district": "전라남도 목포시", + "latitude": 34.8018144738611, + "longitude": 126.408611997702, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트(기본)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(기본) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "4d9bbb17687cf75c1de3-history", - "label": "된장찌개", - "amount": 6000, + "id": "ad41c9c68ad35724628c", + "label": "커트(기본)", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "23b203d52b956db9d87f-history", - "label": "김치찌개", - "amount": 8000, + "id": "ad41c9c68ad35724628c-history", + "label": "커트(기본)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-16088", + "name": "이원 손칼국수", + "businessName": "이원 손칼국수", + "categorySlug": "korean", + "address": "서울특별시 중구 동호로37길 33-16 (주교동) 1층", + "district": "서울특별시 중구", + "latitude": 37.568594035149424, + "longitude": 126.9996703356776, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2273-5568 / 영업시간: 영업시간 11:00 ~ 20:30 일요일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "389137d7df54bd8ee7e2-history", - "label": "낙지볶음", - "amount": 10000, + "id": "fdda017c60df30aca28d", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "bb0a6df3cdf4131a9bed-history", - "label": "돌솥비빔밥", + "id": "1250697772e216419ef1", + "label": "만두", "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3a01971e08b17a622530-history", - "label": "순두부찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "501b04238a701571b5cf-history", - "label": "열무국수", + "id": "fdda017c60df30aca28d-history", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2737e787519babbbb92d-history", - "label": "제,낙볶음", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e3a13ec54c88325f2072-history", - "label": "제육볶음", - "amount": 10000, + "id": "1250697772e216419ef1-history", + "label": "만두", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12706,79 +11940,65 @@ "comments": [] }, { - "id": "goodprice-15758", - "name": "국수한상", - "businessName": "국수한상", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 남광로 7 (이도이동) 국수한상", - "district": "제주특별자치도 제주시", - "latitude": 33.492506273154056, - "longitude": 126.53696512732265, - "representativePriceAmount": 7000, - "representativePriceLabel": "멸치국수", + "id": "goodprice-760", + "name": "Shville세탁", + "businessName": "Shville세탁", + "categorySlug": "laundry", + "address": "서울특별시 성북구 한천로101길 36 장월상가 203호", + "district": "서울특별시 성북구", + "latitude": 37.6225362319459, + "longitude": 127.048839188383, + "representativePriceAmount": 2500, + "representativePriceLabel": "와이셔츠", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-751-5808", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 와이셔츠 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-941-8423 / 영업시간: 금 08:30-21:00 토 08:30-20:00 일 정기휴무(매주일요일) 월(12/25) 성탄절휴무 화 08:30-21:00 수 08:30-21:00 목 08:30-21:00 01/01새해첫날휴무 -법정공휴일은쉽니다", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f36185cc427f2c0bf707", - "label": "멸치국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d8e12b4226badadf42d6", - "label": "비빔국수", - "amount": 7000, + "id": "fc04c2cb939b0a8978b7", + "label": "와이셔츠", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3344d88eb7fbcd421a37", - "label": "우거지국", + "id": "1b50d9cf3e8c18ee6716", + "label": "정장", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f40ef7066486c324aa0d", - "label": "제육덮밥", - "amount": 8000, + "id": "870f9c8f64125c3dcd40", + "label": "운동화", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f36185cc427f2c0bf707-history", - "label": "멸치국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d8e12b4226badadf42d6-history", - "label": "비빔국수", - "amount": 7000, + "id": "fc04c2cb939b0a8978b7-history", + "label": "와이셔츠", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3344d88eb7fbcd421a37-history", - "label": "우거지국", + "id": "1b50d9cf3e8c18ee6716-history", + "label": "정장", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f40ef7066486c324aa0d-history", - "label": "제육덮밥", - "amount": 8000, + "id": "870f9c8f64125c3dcd40-history", + "label": "운동화", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12786,121 +12006,193 @@ "comments": [] }, { - "id": "goodprice-7018", - "name": "굴무기낭", - "businessName": "굴무기낭", - "categorySlug": "other-food", - "address": "제주특별자치도 제주시 애월읍 납읍남로2길 6 1동 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.433110680166, - "longitude": 126.327918925624, - "representativePriceAmount": 5000, - "representativePriceLabel": "감귤쉰다리에이드", + "id": "goodprice-19374", + "name": "돈대박 복산점", + "businessName": "돈대박 복산점", + "categorySlug": "korean", + "address": "울산광역시 중구 계변로 92-1 (복산동) 돈대박복산점", + "district": "울산광역시 중구", + "latitude": 35.563484990060665, + "longitude": 129.3294908791611, + "representativePriceAmount": 3500, + "representativePriceLabel": "대패삼겹살(100g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 감귤쉰다리에이드 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1484-1370 / 영업시간: 목 11:00-17:00 금 11:00-17:00 토 11:00-17:00 일 13:00-17:00 월 11:00-17:00 화 11:00-17:00 수 11:00-17:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 대패삼겹살(100g) 3,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-282-3313 / 영업시간: 16:00~24:00(매주 화요일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4a3fd0f6cb56822b8ed6", - "label": "감귤쉰다리에이드", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b465b697026b652c62d1", - "label": "쉰다리빙수", - "amount": 7000, + "id": "62794c4b1abdfb6fa747", + "label": "대패삼겹살(100g)", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "872ca46652fa94011308", - "label": "쉰다리", - "amount": 4500, + "id": "a6c43cd15ddbbcd918b6", + "label": "생삼겹살(120g)", + "amount": 6900, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "628921140fff40fd236a", - "label": "쉰다리빵", - "amount": 5000, + "id": "62794c4b1abdfb6fa747-history", + "label": "대패삼겹살(100g)", + "amount": 3500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "0bf5847e3dbf53051c7e", - "label": "댕유지에이드", - "amount": 5000, + "id": "a6c43cd15ddbbcd918b6-history", + "label": "생삼겹살(120g)", + "amount": 6900, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-6430", + "name": "권헤어", + "businessName": "권헤어", + "categorySlug": "beauty", + "address": "경상북도 포항시 북구 죽도시장5길 4-6 권헤어", + "district": "경상북도 포항시", + "latitude": 36.0353351270253, + "longitude": 129.366985164135, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트(여성)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(여성) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 8시~18시 매주 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "86aae23244401f987b0a", - "label": "쉰다리쌀빵", + "id": "d7e8dcdcf8b3a7218a35", + "label": "커트(여성)", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "536d8efd3e651cb0ccfb", - "label": "아메리카노", - "amount": 4000, + "id": "1dbcc5c03b7016c67c79", + "label": "여성 커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4a3fd0f6cb56822b8ed6-history", - "label": "감귤쉰다리에이드", - "amount": 5000, + "id": "d7e8dcdcf8b3a7218a35-history", + "label": "커트(여성)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b465b697026b652c62d1-history", - "label": "쉰다리빙수", - "amount": 7000, + "id": "1dbcc5c03b7016c67c79-history", + "label": "여성 커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-986", + "name": "이조식당", + "businessName": "이조식당", + "categorySlug": "korean", + "address": "서울특별시 중구 청파로103길 33 1층(중림동)", + "district": "서울특별시 중구", + "latitude": 37.5576624371646, + "longitude": 126.968304863066, + "representativePriceAmount": 7000, + "representativePriceLabel": "콩나물비빔밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물비빔밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-365-5993 / 영업시간: 월~금 07:00-19:00 토~일 07:00-15:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "872ca46652fa94011308-history", - "label": "쉰다리", - "amount": 4500, + "id": "785b0a0f08cd2bd17738", + "label": "콩나물비빔밥", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "628921140fff40fd236a-history", - "label": "쉰다리빵", - "amount": 5000, + "id": "30a59dd18154363d80a5", + "label": "잔치국수", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "785b0a0f08cd2bd17738-history", + "label": "콩나물비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0bf5847e3dbf53051c7e-history", - "label": "댕유지에이드", - "amount": 5000, + "id": "30a59dd18154363d80a5-history", + "label": "잔치국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-15930", + "name": "권정숙헤어", + "businessName": "권정숙헤어", + "categorySlug": "beauty", + "address": "서울특별시 성북구 성북로4길 52 (돈암동, 한신한진아파트) 417동1512호", + "district": "서울특별시 성북구", + "latitude": 37.59109173463164, + "longitude": 127.00704694290194, + "representativePriceAmount": 10000, + "representativePriceLabel": "남성커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-745-0104", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "86aae23244401f987b0a-history", - "label": "쉰다리쌀빵", + "id": "0682371ab8e22f109ef7", + "label": "남성커트", "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "536d8efd3e651cb0ccfb-history", - "label": "아메리카노", - "amount": 4000, + "id": "0682371ab8e22f109ef7-history", + "label": "남성커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -12908,41 +12200,41 @@ "comments": [] }, { - "id": "goodprice-16044", - "name": "복코돼지", - "businessName": "복코돼지", + "id": "goodprice-10182", + "name": "농부의한우", + "businessName": "농부의한우", "categorySlug": "korean", - "address": "서울특별시 종로구 종로 232 (종로5가) 1층", - "district": "서울특별시 종로구", - "latitude": 37.570761508765074, - "longitude": 127.00353272937728, + "address": "세종특별자치시 금남면 세종로 470 1층", + "district": "세종특별자치시 금남면", + "latitude": 36.4608221175864, + "longitude": 127.27888584, "representativePriceAmount": 7000, - "representativePriceLabel": "김치찌개(점심)", + "representativePriceLabel": "국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개(점심) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2271-5989 / 영업시간: 10:00~22:00(일요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-866-1181", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "90b8964717454311b3c1", - "label": "김치찌개(점심)", + "id": "f9a48487aba9bb17d13b", + "label": "국밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e681d716facfe8474855", - "label": "황태해장국(점심)", + "id": "7b33ed6903d1c2a750bf", + "label": "선지국밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1308d2d6a76ac72e96d5", - "label": "제육볶음(점심)", + "id": "96d800e86310b7ae4e36", + "label": "맑은탕", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -12950,22 +12242,22 @@ ], "history": [ { - "id": "90b8964717454311b3c1-history", - "label": "김치찌개(점심)", + "id": "f9a48487aba9bb17d13b-history", + "label": "국밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e681d716facfe8474855-history", - "label": "황태해장국(점심)", + "id": "7b33ed6903d1c2a750bf-history", + "label": "선지국밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1308d2d6a76ac72e96d5-history", - "label": "제육볶음(점심)", + "id": "96d800e86310b7ae4e36-history", + "label": "맑은탕", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -12974,65 +12266,51 @@ "comments": [] }, { - "id": "goodprice-17542", - "name": "불백당", - "businessName": "불백당", - "categorySlug": "korean", - "address": "서울특별시 종로구 우정국로2길 34 (관철동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.56946019643439, - "longitude": 126.98494601675547, - "representativePriceAmount": 5500, - "representativePriceLabel": "고추장불백", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고추장불백 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-722-0086", - "likeCount": 0, - "dislikeCount": 0, + "id": "goodprice-6323", + "name": "그린빌미용실", + "businessName": "그린빌미용실", + "categorySlug": "beauty", + "address": "경상북도 포항시 남구 대이로 138 그린빌미용실", + "district": "경상북도 포항시", + "latitude": 36.0267483836043, + "longitude": 129.341432453617, + "representativePriceAmount": 10000, + "representativePriceLabel": "여자커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여자커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-274-0450 / 영업시간: 10시~19시 매주 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "98d9c05fee2aa79a4a0d", - "label": "고추장불백", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c508865947f43112feb1", - "label": "갈비양념불백", - "amount": 5500, + "id": "f7656c9eead850126549", + "label": "여자커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b7b9eca4f669fa51c1ea", - "label": "오삼불백", - "amount": 6500, + "id": "9d97b59dc651ec69ae40", + "label": "남자커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "98d9c05fee2aa79a4a0d-history", - "label": "고추장불백", - "amount": 5500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c508865947f43112feb1-history", - "label": "갈비양념불백", - "amount": 5500, + "id": "f7656c9eead850126549-history", + "label": "여자커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b7b9eca4f669fa51c1ea-history", - "label": "오삼불백", - "amount": 6500, + "id": "9d97b59dc651ec69ae40-history", + "label": "남자커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13040,163 +12318,193 @@ "comments": [] }, { - "id": "goodprice-958", - "name": "삼삼 뚝배기", - "businessName": "삼삼 뚝배기", + "id": "goodprice-987", + "name": "장수보리밥", + "businessName": "장수보리밥", "categorySlug": "korean", - "address": "서울특별시 종로구 동숭길 51 (동숭동)", - "district": "서울특별시 종로구", - "latitude": 37.5805564090189, - "longitude": 127.004190744723, - "representativePriceAmount": 7000, - "representativePriceLabel": "된장뚝배기", + "address": "서울특별시 중구 퇴계로85길 12-4 (황학동)", + "district": "서울특별시 중구", + "latitude": 37.5662780085738, + "longitude": 127.0198582347, + "representativePriceAmount": 8000, + "representativePriceLabel": "보리밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장뚝배기 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-765-4683 / 영업시간: 매일(연중휴무) 06:00-21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보리밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-225-2808 / 영업시간: 월~토 11:00~19:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2bb0c68db03d24cfb08c", - "label": "된장뚝배기", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b6fd9b9c9a5913724d73", - "label": "김치찌개", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e221d77ff5f21605419a", - "label": "순두부뚝배기", - "amount": 7000, + "id": "ae7b21faf375716aca55", + "label": "보리밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "24fbfa95674453c3c62c", - "label": "황기반계탕", - "amount": 7500, + "id": "9ec3df22bd784a9d8390", + "label": "야채쌈밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "e0808b8abe987072d2b4", - "label": "고추장 매운찌개", - "amount": 7000, + "id": "ae7b21faf375716aca55-history", + "label": "보리밥", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "18f03e73f70dc1a02d53", - "label": "돼지불고기뚝배기", - "amount": 7000, + "id": "9ec3df22bd784a9d8390-history", + "label": "야채쌈밥", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-763", + "name": "나경미용실", + "businessName": "나경미용실", + "categorySlug": "beauty", + "address": "서울특별시 성북구 종암로18길 6 (종암동)", + "district": "서울특별시 성북구", + "latitude": 37.5987051731675, + "longitude": 127.035123406077, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-914-5511 / 영업시간: 10:00~19:00 매주 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "c8df1ea7191cb9e76949", - "label": "소고기미역국", - "amount": 7000, + "id": "b9b365e4dfec59bdef97", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "d8c42cc8525b67c45859", - "label": "고등어조림", - "amount": 7500, + "id": "b9b365e4dfec59bdef97-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-10167", + "name": "대신식당", + "businessName": "대신식당", + "categorySlug": "korean", + "address": "세종특별자치시 연서면 당산로 349", + "district": "세종특별자치시 연서면", + "latitude": 36.562836822603, + "longitude": 127.282636054749, + "representativePriceAmount": 8000, + "representativePriceLabel": "김치찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-7127", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "787a33431a7139a3a5d3", - "label": "생선백반", - "amount": 7500, + "id": "9bbb3b4aea0264105991", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2f505184b539a6f5e169", - "label": "사골곰탕", - "amount": 7500, + "id": "7bb96d9dae19066c425a", + "label": "동태찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2bb0c68db03d24cfb08c-history", - "label": "된장뚝배기", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b6fd9b9c9a5913724d73-history", + "id": "9bbb3b4aea0264105991-history", "label": "김치찌개", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e221d77ff5f21605419a-history", - "label": "순두부뚝배기", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "24fbfa95674453c3c62c-history", - "label": "황기반계탕", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e0808b8abe987072d2b4-history", - "label": "고추장 매운찌개", - "amount": 7000, + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "18f03e73f70dc1a02d53-history", - "label": "돼지불고기뚝배기", - "amount": 7000, + "id": "7bb96d9dae19066c425a-history", + "label": "동태찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-1635", + "name": "용두산이용원", + "businessName": "용두산이용원", + "categorySlug": "barber", + "address": "부산광역시 중구 남포길 43 (남포동2가)", + "district": "부산광역시 중구", + "latitude": 35.0981609773096, + "longitude": 129.033460927363, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-242-7007 / 영업시간: 7:00-17:00, 매주 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "c8df1ea7191cb9e76949-history", - "label": "소고기미역국", - "amount": 7000, + "id": "38b005a03ec17376a075", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "d8c42cc8525b67c45859-history", - "label": "고등어조림", - "amount": 7500, + "id": "f40aee7a4dee63c9e433", + "label": "염색", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "787a33431a7139a3a5d3-history", - "label": "생선백반", - "amount": 7500, + "id": "38b005a03ec17376a075-history", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2f505184b539a6f5e169-history", - "label": "사골곰탕", - "amount": 7500, + "id": "f40aee7a4dee63c9e433-history", + "label": "염색", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13204,65 +12512,65 @@ "comments": [] }, { - "id": "goodprice-16866", - "name": "샐러드하우스", - "businessName": "샐러드하우스", - "categorySlug": "other-food", - "address": "서울특별시 종로구 새문안로5가길 28 (적선동) 지하1층 119호", - "district": "서울특별시 종로구", - "latitude": 37.57446023473285, - "longitude": 126.97359705813241, - "representativePriceAmount": 4900, - "representativePriceLabel": "에그듬뿍샌드위치", + "id": "goodprice-10672", + "name": "장안김밥", + "businessName": "장안김밥", + "categorySlug": "korean", + "address": "서울특별시 중구 다산로36길 25", + "district": "서울특별시 중구", + "latitude": 37.5623625015386, + "longitude": 127.016670957748, + "representativePriceAmount": 4000, + "representativePriceLabel": "떡국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 에그듬뿍샌드위치 4,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-722-5891 / 영업시간: 10:00~19:30 토, 일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡국 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-8135", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "572aae6e386976cd09db", - "label": "에그듬뿍샌드위치", - "amount": 4900, + "id": "9171f794a82f3ff783ce", + "label": "떡국", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d19637cfa84a052c76c6", - "label": "그린샐러드", - "amount": 6500, + "id": "10dab0e0bb5b23d3b9bd", + "label": "떡볶이", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a26d4fe5f1d8762b295c", - "label": "닭가슴살샐러드", - "amount": 6500, + "id": "0afd0bf415bcb6f40f6c", + "label": "김밥", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "572aae6e386976cd09db-history", - "label": "에그듬뿍샌드위치", - "amount": 4900, + "id": "9171f794a82f3ff783ce-history", + "label": "떡국", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d19637cfa84a052c76c6-history", - "label": "그린샐러드", - "amount": 6500, + "id": "10dab0e0bb5b23d3b9bd-history", + "label": "떡볶이", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a26d4fe5f1d8762b295c-history", - "label": "닭가슴살샐러드", - "amount": 6500, + "id": "0afd0bf415bcb6f40f6c-history", + "label": "김밥", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13270,65 +12578,51 @@ "comments": [] }, { - "id": "goodprice-16480", - "name": "동광세탁소", - "businessName": "동광세탁소", - "categorySlug": "laundry", - "address": "부산광역시 중구 법수길 19 (보수동1가) 1층", - "district": "부산광역시 중구", - "latitude": 35.10490454876418, - "longitude": 129.02599093842454, - "representativePriceAmount": 4000, - "representativePriceLabel": "드라이크리닝(하의)", + "id": "goodprice-13501", + "name": "로데오당구장", + "businessName": "로데오당구장", + "categorySlug": "other-service", + "address": "서울특별시 성북구 보문로38길 53 (동소문동5가) 지하1층", + "district": "서울특별시 성북구", + "latitude": 37.590644206413586, + "longitude": 127.01670482731463, + "representativePriceAmount": 1100, + "representativePriceLabel": "당구 10분(10:00~17:00)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 드라이크리닝(하의) 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-256-9047 / 영업시간: 영업시간: 07:00 ~ 19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 당구 10분(10:00~17:00) 1,100원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4642-3078 / 영업시간: 평일 오전 11시 -자정 12시 주말,공휴일 오전 10시 - 자정12시", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "93f539f8cfc41416b859", - "label": "드라이크리닝(하의)", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "09b3e617d1902b70ec8a", - "label": "드라이크리닝(코트)", - "amount": 10000, + "id": "9161c167a5f1124272ac", + "label": "당구 10분(10:00~17:00)", + "amount": 1100, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "cd76f2e3262ca78bc590", - "label": "드라이크리닝(상의)", - "amount": 6000, + "id": "44dccd939ca3d68af222", + "label": "당구 10분(17:00~3:30)", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "93f539f8cfc41416b859-history", - "label": "드라이크리닝(하의)", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "09b3e617d1902b70ec8a-history", - "label": "드라이크리닝(코트)", - "amount": 10000, + "id": "9161c167a5f1124272ac-history", + "label": "당구 10분(10:00~17:00)", + "amount": 1100, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cd76f2e3262ca78bc590-history", - "label": "드라이크리닝(상의)", - "amount": 6000, + "id": "44dccd939ca3d68af222-history", + "label": "당구 10분(17:00~3:30)", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13336,79 +12630,51 @@ "comments": [] }, { - "id": "goodprice-17048", - "name": "동명칼국수", - "businessName": "동명칼국수", + "id": "goodprice-10185", + "name": "도담얼큰이 칼국수", + "businessName": "도담얼큰이 칼국수", "categorySlug": "korean", - "address": "부산광역시 중구 중구로34번길 23 (신창동1가) 2층", - "district": "부산광역시 중구", - "latitude": 35.10111918682593, - "longitude": 129.03031073104827, - "representativePriceAmount": 6500, + "address": "세종특별자치시 보듬4로 9 1동 2층 29호(도담동 카림애비뉴)", + "district": "세종특별자치시 보듬4로", + "latitude": 36.5131131389938, + "longitude": 127.260704077872, + "representativePriceAmount": 5900, "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-241-0061", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 5,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-0309", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "06cfe5771920bde25e5c", + "id": "93b6fab347968a6b99ee", "label": "칼국수", - "amount": 6500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "cb3a7d9e1deca75458cb", - "label": "비빔칼국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bad98e05b000afc95f9a", - "label": "만두", - "amount": 5000, + "amount": 5900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9df2faaf4c862981198a", - "label": "김밥", - "amount": 3500, + "id": "e3be1a0beb6e16c0ccba", + "label": "유부초밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "06cfe5771920bde25e5c-history", + "id": "93b6fab347968a6b99ee-history", "label": "칼국수", - "amount": 6500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "cb3a7d9e1deca75458cb-history", - "label": "비빔칼국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bad98e05b000afc95f9a-history", - "label": "만두", - "amount": 5000, + "amount": 5900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9df2faaf4c862981198a-history", - "label": "김밥", - "amount": 3500, + "id": "e3be1a0beb6e16c0ccba-history", + "label": "유부초밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13416,27 +12682,34 @@ "comments": [] }, { - "id": "goodprice-19007", - "name": "된장한상", - "businessName": "된장한상", - "categorySlug": "korean", - "address": "부산광역시 중구 대청로141번길 17 (중앙동4가) 1층", - "district": "부산광역시 중구", - "latitude": 35.104348496848104, - "longitude": 129.03506122917605, + "id": "goodprice-2532", + "name": "뿌리미용실", + "businessName": "뿌리미용실", + "categorySlug": "beauty", + "address": "대전광역시 동구 충무로 219 (인동)", + "district": "대전광역시 동구", + "latitude": 36.3225191758149, + "longitude": 127.440235253078, "representativePriceAmount": 8000, - "representativePriceLabel": "된장한상(비빔밥+된장)", + "representativePriceLabel": "미용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장한상(비빔밥+된장) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-442-3006 / 영업시간: 11:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-286-4444 / 영업시간: 08:00 ~ 19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a32552b0f126e1fd4c5a", - "label": "된장한상(비빔밥+된장)", + "id": "848102457249a42636eb", + "label": "미용료(커트)", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e4f0bdb9555a3ea7c742", + "label": "커트(성인 일반)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -13444,8 +12717,15 @@ ], "history": [ { - "id": "a32552b0f126e1fd4c5a-history", - "label": "된장한상(비빔밥+된장)", + "id": "848102457249a42636eb-history", + "label": "미용료(커트)", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e4f0bdb9555a3ea7c742-history", + "label": "커트(성인 일반)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -13454,116 +12734,168 @@ "comments": [] }, { - "id": "goodprice-1653", - "name": "뚱보집", - "businessName": "뚱보집", + "id": "goodprice-10671", + "name": "충정로김밥", + "businessName": "충정로김밥", "categorySlug": "korean", - "address": "부산광역시 중구 중앙대로 29번길 2-11 (중앙동)", - "district": "부산광역시 중구", - "latitude": 35.1006950852985, - "longitude": 129.036117527715, - "representativePriceAmount": 4000, - "representativePriceLabel": "콩나물밥", + "address": "서울특별시 중구 서소문로6길 34 1층108호(중림동,성요셉아파트상가)", + "district": "서울특별시 중구", + "latitude": 37.5596149765767, + "longitude": 126.967598813552, + "representativePriceAmount": 3000, + "representativePriceLabel": "충정로김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물밥 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-7466 / 영업시간: 매일 11:30-22:50, 넷쨰 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 충정로김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-313-1006", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2ce775b1d0eb92eaaa69", - "label": "콩나물밥", + "id": "4c275f527519e4942bf4", + "label": "충정로김밥", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "40c884fe9bd125a28ab0", + "label": "참치김밥", "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "087e5e7dae31b92a4e2b", + "label": "김치찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2ce775b1d0eb92eaaa69-history", - "label": "콩나물밥", + "id": "4c275f527519e4942bf4-history", + "label": "충정로김밥", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "40c884fe9bd125a28ab0-history", + "label": "참치김밥", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "087e5e7dae31b92a4e2b-history", + "label": "김치찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-14627", - "name": "밥맛나는집", - "businessName": "밥맛나는집", - "categorySlug": "korean", - "address": "대구광역시 중구 경상감영길 37 (서문로1가) 밥맛나는집", - "district": "대구광역시 중구", - "latitude": 35.87145492938626, - "longitude": 128.58946800122544, - "representativePriceAmount": 7000, - "representativePriceLabel": "된장찌개", + "id": "goodprice-17898", + "name": "부흥세탁소", + "businessName": "부흥세탁소", + "categorySlug": "laundry", + "address": "서울특별시 성북구 장위로16길 5 (장위동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.61393773711567, + "longitude": 127.04159696628186, + "representativePriceAmount": 5000, + "representativePriceLabel": "운동화", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-428-0121", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 운동화 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-918-8260", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e61d5d3ed66dd90dbcc6", - "label": "된장찌개", - "amount": 7000, + "id": "570cfec5ec7d56f385e7", + "label": "운동화", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "486ae8502b6898d241b7", - "label": "고등어구이 정식", - "amount": 8000, + "id": "511e731a0bc7ab7d6dd3", + "label": "침구류", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "f554a0c23b7a1d9637bd", - "label": "순두부 찌개", - "amount": 7000, + "id": "570cfec5ec7d56f385e7-history", + "label": "운동화", + "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "9397c3bfe66274b9ac0b", - "label": "가자미구이 정식", - "amount": 8000, + "id": "511e731a0bc7ab7d6dd3-history", + "label": "침구류", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" } ], - "history": [ + "comments": [] + }, + { + "id": "goodprice-17109", + "name": "가치있는밥상", + "businessName": "가치있는밥상", + "categorySlug": "korean", + "address": "경기도 수원시 영통구 월드컵로179번길 14-2 (원천동) 1층", + "district": "경기도 수원시", + "latitude": 37.27819928647353, + "longitude": 127.0453792190971, + "representativePriceAmount": 8000, + "representativePriceLabel": "김치찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-221-5581 / 영업시간: 월~금 06:0~21:00/토06:00~20:00/일09:00~20:00 연중무휴", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "e61d5d3ed66dd90dbcc6-history", - "label": "된장찌개", - "amount": 7000, + "id": "b448ef56584d276c466b", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "486ae8502b6898d241b7-history", - "label": "고등어구이 정식", + "id": "d4a5ff92cb826b567a96", + "label": "청국장", "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "f554a0c23b7a1d9637bd-history", - "label": "순두부 찌개", - "amount": 7000, + "id": "b448ef56584d276c466b-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9397c3bfe66274b9ac0b-history", - "label": "가자미구이 정식", + "id": "d4a5ff92cb826b567a96-history", + "label": "청국장", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -13572,51 +12904,37 @@ "comments": [] }, { - "id": "goodprice-17982", - "name": "배사공멸치국수", - "businessName": "배사공멸치국수", - "categorySlug": "korean", - "address": "대구광역시 중구 관덕정길 10 (남산동) 남산동", - "district": "대구광역시 중구", - "latitude": 35.865329712937886, - "longitude": 128.59079734801406, - "representativePriceAmount": 6000, - "representativePriceLabel": "잔치국수", + "id": "goodprice-14020", + "name": "동남사우나", + "businessName": "동남사우나", + "categorySlug": "bath", + "address": "경기도 수원시 장안구 영화로25번길 22 (영화동, 태영아파트) .", + "district": "경기도 수원시", + "latitude": 37.288921701882735, + "longitude": 127.00821781483458, + "representativePriceAmount": 10000, + "representativePriceLabel": "목욕비", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-422-8866", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕비 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-243-6422 / 영업시간: 05:00~22:00 연중무휴", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2cc2ff88399f167b3e56", - "label": "잔치국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0fd48557f1fb2fb21b1a", - "label": "해물칼국수", - "amount": 7000, + "id": "333a47bae8b960a75c81", + "label": "목욕비", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2cc2ff88399f167b3e56-history", - "label": "잔치국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0fd48557f1fb2fb21b1a-history", - "label": "해물칼국수", - "amount": 7000, + "id": "333a47bae8b960a75c81-history", + "label": "목욕비", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13624,65 +12942,65 @@ "comments": [] }, { - "id": "goodprice-11440", - "name": "쎈밤 종로점", - "businessName": "쎈밤 종로점", + "id": "goodprice-988", + "name": "코너집", + "businessName": "코너집", "categorySlug": "korean", - "address": "대구광역시 중구 종로 30-1 1층", - "district": "대구광역시 중구", - "latitude": 35.8686744440218, - "longitude": 128.592029244117, - "representativePriceAmount": 8900, - "representativePriceLabel": "국내산 삼겹살(150g)", + "address": "서울특별시 중구 퇴계로 336 1층101호(광희동2가,성진오피스텔)", + "district": "서울특별시 중구", + "latitude": 37.5642008377656, + "longitude": 127.008866132716, + "representativePriceAmount": 8000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국내산 삼겹살(150g) 8,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-7685-7137", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-227-6266 / 영업시간: 매일 10:00-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ab2cab99f999438c90a9", - "label": "국내산 삼겹살(150g)", - "amount": 8900, + "id": "bdd1771fea009f7bde9a", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "71a493c52bf8e193cad5", - "label": "국내산 목살(150g)", - "amount": 8900, + "id": "10a53d9a7b3bccd49bac", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e34151b30a7438ee95d1", - "label": "국내산 막창(150g)", - "amount": 8900, + "id": "4473165d9ff420ee6f8d", + "label": "순두부", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ab2cab99f999438c90a9-history", - "label": "국내산 삼겹살(150g)", - "amount": 8900, + "id": "bdd1771fea009f7bde9a-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "71a493c52bf8e193cad5-history", - "label": "국내산 목살(150g)", - "amount": 8900, + "id": "10a53d9a7b3bccd49bac-history", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e34151b30a7438ee95d1-history", - "label": "국내산 막창(150g)", - "amount": 8900, + "id": "4473165d9ff420ee6f8d-history", + "label": "순두부", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13690,37 +13008,51 @@ "comments": [] }, { - "id": "goodprice-2007", - "name": "영생이용소", - "businessName": "영생이용소", - "categorySlug": "barber", - "address": "대구광역시 중구 이천로 184-8 (대봉동)", - "district": "대구광역시 중구", - "latitude": 35.8575452270514, - "longitude": 128.598969402186, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-16966", + "name": "서림탕", + "businessName": "서림탕", + "categorySlug": "bath", + "address": "서울특별시 성북구 보국문로 151 (정릉동) 1층 서림탕", + "district": "서울특별시 성북구", + "latitude": 37.616378244970825, + "longitude": 127.0043918502785, + "representativePriceAmount": 7500, + "representativePriceLabel": "목욕비(대인)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-9732 / 영업시간: 06:30-18:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕비(대인) 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-914-3852 / 영업시간: 5시~16시 (매주 화요일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4f5f596ea16799b45001", - "label": "커트", - "amount": 10000, + "id": "3110e695798ad2b4580e", + "label": "목욕비(대인)", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a371a04ffa2b99ae8c9e", + "label": "목욕비(소인)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4f5f596ea16799b45001-history", - "label": "커트", - "amount": 10000, + "id": "3110e695798ad2b4580e-history", + "label": "목욕비(대인)", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a371a04ffa2b99ae8c9e-history", + "label": "목욕비(소인)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13728,37 +13060,37 @@ "comments": [] }, { - "id": "goodprice-14222", - "name": "삼미", - "businessName": "삼미", - "categorySlug": "other-food", - "address": "인천광역시 중구 제물량로 210-4 (해안동2가) 1층", - "district": "인천광역시 중구", - "latitude": 37.47195223689287, - "longitude": 126.62120161220716, - "representativePriceAmount": 5000, - "representativePriceLabel": "치즈카야토스트", + "id": "goodprice-13884", + "name": "강릉장칼국수", + "businessName": "강릉장칼국수", + "categorySlug": "korean", + "address": "경기도 수원시 팔달구 수원천로 314 (남수동) 1층", + "district": "경기도 수원시", + "latitude": 37.28145528956532, + "longitude": 127.01857508520432, + "representativePriceAmount": 8000, + "representativePriceLabel": "장칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 치즈카야토스트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-812-4055", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장칼국수 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-241-7959 / 영업시간: 11:00~20:00/월요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bef8d50609936549c2a1", - "label": "치즈카야토스트", - "amount": 5000, + "id": "df9def7cafee662de23d", + "label": "장칼국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bef8d50609936549c2a1-history", - "label": "치즈카야토스트", - "amount": 5000, + "id": "df9def7cafee662de23d-history", + "label": "장칼국수", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13766,37 +13098,51 @@ "comments": [] }, { - "id": "goodprice-16743", - "name": "삼시국수", - "businessName": "삼시국수", - "categorySlug": "korean", - "address": "인천광역시 중구 운중로 97 (운남동) 1층", - "district": "인천광역시 중구", - "latitude": 37.49421029445236, - "longitude": 126.5443392421388, - "representativePriceAmount": 7000, - "representativePriceLabel": "멸치국수", + "id": "goodprice-4332", + "name": "바위목욕탕", + "businessName": "바위목욕탕", + "categorySlug": "bath", + "address": "강원특별자치도 춘천시 춘천로213번길 9 (효자동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8781770353052, + "longitude": 127.737068247626, + "representativePriceAmount": 8000, + "representativePriceLabel": "대인", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1479-2358", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 대인 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-3610", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4c36d8749245f92dbe2d", - "label": "멸치국수", - "amount": 7000, + "id": "654a900f5c9576ba7b32", + "label": "대인", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9b3a48ce955e78c64943", + "label": "소인", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4c36d8749245f92dbe2d-history", - "label": "멸치국수", - "amount": 7000, + "id": "654a900f5c9576ba7b32-history", + "label": "대인", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9b3a48ce955e78c64943-history", + "label": "소인", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13804,37 +13150,51 @@ "comments": [] }, { - "id": "goodprice-14009", - "name": "소미국수", - "businessName": "소미국수", - "categorySlug": "korean", - "address": "인천광역시 중구 서해대로 486-2 (유동) 1층", - "district": "인천광역시 중구", - "latitude": 37.46916114263947, - "longitude": 126.63654581942478, - "representativePriceAmount": 9000, - "representativePriceLabel": "감자칼국수", + "id": "goodprice-15372", + "name": "콩다방", + "businessName": "콩다방", + "categorySlug": "other-food", + "address": "서울특별시 중구 마른내로 50 (인현동1가) 1층", + "district": "서울특별시 중구", + "latitude": 37.56423613325778, + "longitude": 126.993241593574, + "representativePriceAmount": 1800, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 감자칼국수 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-773-1003", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 1,800원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2274-1678", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ec21bf0a8991773e9087", - "label": "감자칼국수", - "amount": 9000, + "id": "a6010a54f6feacde5e37", + "label": "아메리카노", + "amount": 1800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "84bdf9198f27ae44f5a4", + "label": "카페라떼", + "amount": 2900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ec21bf0a8991773e9087-history", - "label": "감자칼국수", - "amount": 9000, + "id": "a6010a54f6feacde5e37-history", + "label": "아메리카노", + "amount": 1800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "84bdf9198f27ae44f5a4-history", + "label": "카페라떼", + "amount": 2900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13842,51 +13202,37 @@ "comments": [] }, { - "id": "goodprice-19356", - "name": "무등산국밥", - "businessName": "무등산국밥", - "categorySlug": "korean", - "address": "광주광역시 동구 제봉로17번길 2 (학동) 1층", - "district": "광주광역시 동구", - "latitude": 35.14024503188192, - "longitude": 126.92183479745447, - "representativePriceAmount": 7000, - "representativePriceLabel": "암뽕순대국밥", + "id": "goodprice-18843", + "name": "쉼터미용실", + "businessName": "쉼터미용실", + "categorySlug": "beauty", + "address": "서울특별시 성북구 북악산로29길 67 (종암동, 극동아파트) 1층", + "district": "서울특별시 성북구", + "latitude": 37.59526145486044, + "longitude": 127.03423882308982, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 암뽕순대국밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-2051 / 영업시간: 매일 10:00~20:30 브레이크타임 2:00~2:30 첫째, 셋째 주 일요일 휴무(시장 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "75452c3f5b208cb22d46", - "label": "암뽕순대국밥", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d2aea4228515e9ed89b4", - "label": "살코기국밥", - "amount": 7000, + "id": "2c8c50fdf2696e3cf6be", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "75452c3f5b208cb22d46-history", - "label": "암뽕순대국밥", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d2aea4228515e9ed89b4-history", - "label": "살코기국밥", - "amount": 7000, + "id": "2c8c50fdf2696e3cf6be-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -13894,107 +13240,65 @@ "comments": [] }, { - "id": "goodprice-2264", - "name": "박순자녹두집", - "businessName": "박순자녹두집", + "id": "goodprice-4375", + "name": "골목손두부", + "businessName": "골목손두부", "categorySlug": "korean", - "address": "광주광역시 동구 구성로204번길 26 (대인동)", - "district": "광주광역시 동구", - "latitude": 35.1518665091161, - "longitude": 126.916416294973, - "representativePriceAmount": 6000, - "representativePriceLabel": "수제비", + "address": "강원특별자치도 춘천시 공지로 439번길 16-4 (근화동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8726486894719, + "longitude": 127.719572641824, + "representativePriceAmount": 8000, + "representativePriceLabel": "순두부", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 수제비 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-8694 / 영업시간: 화-일 11:30-21:00/ 월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-256-6259 / 영업시간: 11:00 - 16:00 라스트오더 15:00 매주 일요일 정기휴뮤", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3c37ba479fe8fa6cc177", - "label": "수제비", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bb57049bebaa85d00219", - "label": "팥죽", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6256deaaa98f9da16fac", - "label": "동지죽", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9f5041d5579f8c893cb2", - "label": "콩나물국밥", - "amount": 7000, + "id": "24c63ceed7b14d171816", + "label": "순두부", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5352f6362859edb2be0d", - "label": "콩물국수", - "amount": 8500, + "id": "f8dfeb360bfbc417291d", + "label": "비지찌개(2인이상)", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7c21100b2ff6d0594b46", - "label": "파전", - "amount": 9000, + "id": "330539baa060891944b0", + "label": "청국장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3c37ba479fe8fa6cc177-history", - "label": "수제비", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bb57049bebaa85d00219-history", - "label": "팥죽", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6256deaaa98f9da16fac-history", - "label": "동지죽", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9f5041d5579f8c893cb2-history", - "label": "콩나물국밥", - "amount": 7000, + "id": "24c63ceed7b14d171816-history", + "label": "순두부", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5352f6362859edb2be0d-history", - "label": "콩물국수", - "amount": 8500, + "id": "f8dfeb360bfbc417291d-history", + "label": "비지찌개(2인이상)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7c21100b2ff6d0594b46-history", - "label": "파전", - "amount": 9000, + "id": "330539baa060891944b0-history", + "label": "청국장", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14002,271 +13306,217 @@ "comments": [] }, { - "id": "goodprice-2265", - "name": "반디식당", - "businessName": "반디식당", - "categorySlug": "korean", - "address": "광주광역시 동구 구성로 258 (계림동)", - "district": "광주광역시 동구", - "latitude": 35.1570933401735, - "longitude": 126.918837815272, + "id": "goodprice-14757", + "name": "내수시민미용실", + "businessName": "내수시민미용실", + "categorySlug": "beauty", + "address": "충청북도 청주시 청원구 내수읍 내수로 729-2", + "district": "충청북도 청주시", + "latitude": 36.72673097882712, + "longitude": 127.53610288381759, "representativePriceAmount": 6000, - "representativePriceLabel": "백반", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-222-0809 / 영업시간: 월-목 09:00-15:00 금-일 09:00-20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-214-5124", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "debe2d932314ed5907fd", - "label": "백반", + "id": "e1274c13d8cd4b76e5cd", + "label": "커트", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "14bf8409775f801b39d4", + "label": "뿌리염색", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "debe2d932314ed5907fd-history", - "label": "백반", + "id": "e1274c13d8cd4b76e5cd-history", + "label": "커트", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "14bf8409775f801b39d4-history", + "label": "뿌리염색", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-2564", - "name": "뒤집어진뚝배기", - "businessName": "뒤집어진뚝배기", + "id": "goodprice-989", + "name": "풍년식당", + "businessName": "풍년식당", "categorySlug": "korean", - "address": "대전광역시 동구 동대전로131번길 8-11 (자양동)", - "district": "대전광역시 동구", - "latitude": 36.3346159683747, - "longitude": 127.445358439471, - "representativePriceAmount": 7500, - "representativePriceLabel": "제육", + "address": "서울특별시 중구 퇴계로36가길 47 (필동2가)", + "district": "서울특별시 중구", + "latitude": 37.5582187442402, + "longitude": 126.995702195702, + "representativePriceAmount": 7000, + "representativePriceLabel": "가정식백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-622-3692 / 영업시간: 10:00 ~ 19:00 / 토요일, 일요일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 가정식백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-227-0870 / 영업시간: 09:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "968d6d74fd1c637fd1b5", - "label": "제육", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "25d11598124354dc3727", - "label": "김치찌개", + "id": "3341ba9e19efeead50c4", + "label": "가정식백반", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "1376effedab108d5a83e", - "label": "닭계장", + "id": "3341ba9e19efeead50c4-history", + "label": "가정식백반", "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "7803ceaf4daf9338462e", - "label": "김치 볶음밥", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "829f5325118c463428f3", - "label": "뚝배기 김치찌개", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8263dd3157d0058c54ae", - "label": "뚝배기 닭계장", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ecadbbe5e1c44c9dc2a3", - "label": "뚝배기 라면", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "29e37499a3ec297011f4", - "label": "뚝배기 라면밥", - "amount": 4500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6427cffbe30e2be2592f", - "label": "뚝배기 만두국", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "7c16a40d39d0b9a755db", - "label": "뚝배기 수제비", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "dd37eeb5635b5bc238ad", - "label": "뚝배기 순대국", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15251", + "name": "오지선미용실", + "businessName": "오지선미용실", + "categorySlug": "beauty", + "address": "서울특별시 성북구 돌곶이로37길 23 (장위동, 장미원2차빌라) 1층상가1호", + "district": "서울특별시 성북구", + "latitude": 37.61642461654759, + "longitude": 127.04754823197801, + "representativePriceAmount": 10000, + "representativePriceLabel": "남성컷", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성컷 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-9991-3322", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "8228c0466980f3143642", - "label": "뚝배기 순두부", - "amount": 6000, + "id": "7fc36f7e36bfe6337408", + "label": "남성컷", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "82c444f803c12974e52d", - "label": "뚝배기 오징어볶음", - "amount": 6500, + "id": "7fc36f7e36bfe6337408-history", + "label": "남성컷", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-4368", + "name": "곱돌생삼겹살", + "businessName": "곱돌생삼겹살", + "categorySlug": "korean", + "address": "강원특별자치도 춘천시 백령로138번길 55 (효자동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8731172068198, + "longitude": 127.745471505129, + "representativePriceAmount": 10000, + "representativePriceLabel": "생삼겹살(캐나다)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생삼겹살(캐나다) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-4241 / 영업시간: 11:00-24:00 브레이크타임 14:00-16:00 매달 2,4번째 일요일 정기 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "9edb102bb923703d0cf7", - "label": "뚝배기 제육", - "amount": 6500, + "id": "2a17d71522c30fe71a0f", + "label": "생삼겹살(캐나다)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "222c5bffe6bab588024b", - "label": "뚝배기 참치찌개", - "amount": 6000, + "id": "ce00d6f3c6b61e86002f", + "label": "생목살(캐나다)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "968d6d74fd1c637fd1b5-history", - "label": "제육", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "25d11598124354dc3727-history", - "label": "김치찌개", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1376effedab108d5a83e-history", - "label": "닭계장", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "7803ceaf4daf9338462e-history", - "label": "김치 볶음밥", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "829f5325118c463428f3-history", - "label": "뚝배기 김치찌개", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8263dd3157d0058c54ae-history", - "label": "뚝배기 닭계장", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ecadbbe5e1c44c9dc2a3-history", - "label": "뚝배기 라면", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "29e37499a3ec297011f4-history", - "label": "뚝배기 라면밥", - "amount": 4500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6427cffbe30e2be2592f-history", - "label": "뚝배기 만두국", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "7c16a40d39d0b9a755db-history", - "label": "뚝배기 수제비", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "dd37eeb5635b5bc238ad-history", - "label": "뚝배기 순대국", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8228c0466980f3143642-history", - "label": "뚝배기 순두부", - "amount": 6000, + "id": "2a17d71522c30fe71a0f-history", + "label": "생삼겹살(캐나다)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "82c444f803c12974e52d-history", - "label": "뚝배기 오징어볶음", - "amount": 6500, + "id": "ce00d6f3c6b61e86002f-history", + "label": "생목살(캐나다)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-4912", + "name": "동은헤어", + "businessName": "동은헤어", + "categorySlug": "beauty", + "address": "충청남도 천안시 동남구 새말3길 38-4 지하1층(신방동)", + "district": "충청남도 천안시", + "latitude": 36.7945688750786, + "longitude": 127.131044743835, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-4036-7721 / 영업시간: 09:30~18:00 정기휴무(매주 일요일)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "9edb102bb923703d0cf7-history", - "label": "뚝배기 제육", - "amount": 6500, + "id": "4b627ab1e4a35bf94ec5", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "222c5bffe6bab588024b-history", - "label": "뚝배기 참치찌개", - "amount": 6000, + "id": "4b627ab1e4a35bf94ec5-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14274,51 +13524,37 @@ "comments": [] }, { - "id": "goodprice-16819", - "name": "또와짬뽕", - "businessName": "또와짬뽕", + "id": "goodprice-18571", + "name": "하우마라탕", + "businessName": "하우마라탕", "categorySlug": "chinese", - "address": "대전광역시 동구 동대전로 153-5 (자양동) 1층", - "district": "대전광역시 동구", - "latitude": 36.335615601209376, - "longitude": 127.446345541849, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "address": "서울특별시 중구 퇴계로27길 42 (충무로3가) 2층", + "district": "서울특별시 중구", + "latitude": 37.56318036878231, + "longitude": 126.99136979700421, + "representativePriceAmount": 9000, + "representativePriceLabel": "소고기 마라탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-623-6237 / 영업시간: 10:00 ~ 19:30( 매주 일요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 소고기 마라탕 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1405-5357", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "915670eca6799fae27d7", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "616ebfd5badf33b8a9b6", - "label": "짬뽕", - "amount": 7000, + "id": "93567d67b0abdd52cdb2", + "label": "소고기 마라탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "915670eca6799fae27d7-history", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "616ebfd5badf33b8a9b6-history", - "label": "짬뽕", - "amount": 7000, + "id": "93567d67b0abdd52cdb2-history", + "label": "소고기 마라탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14326,51 +13562,37 @@ "comments": [] }, { - "id": "goodprice-2575", - "name": "마실", - "businessName": "마실", - "categorySlug": "korean", - "address": "대전광역시 동구 동산초교로 22번길 45 (홍도동)", - "district": "대전광역시 동구", - "latitude": 36.3475476850448, - "longitude": 127.429039114596, - "representativePriceAmount": 7000, - "representativePriceLabel": "수제비", + "id": "goodprice-18846", + "name": "필래뽀끌래", + "businessName": "필래뽀끌래", + "categorySlug": "beauty", + "address": "서울특별시 성북구 오패산로10길 50 (하월곡동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.60468194456091, + "longitude": 127.03901050519049, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트(경로우대)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 수제비 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-635-7086 / 영업시간: 11:00 ~ 22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(경로우대) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e3bf68ada9bf9499a474", - "label": "수제비", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "42c9f13e5e1a190741c1", - "label": "손수제비", - "amount": 7000, + "id": "2da70189110b96e1c3b4", + "label": "커트(경로우대)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e3bf68ada9bf9499a474-history", - "label": "수제비", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "42c9f13e5e1a190741c1-history", - "label": "손수제비", - "amount": 7000, + "id": "2da70189110b96e1c3b4-history", + "label": "커트(경로우대)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14378,51 +13600,37 @@ "comments": [] }, { - "id": "goodprice-14774", - "name": "송림식당", - "businessName": "송림식당", + "id": "goodprice-15768", + "name": "가이오청년밥상", + "businessName": "가이오청년밥상", "categorySlug": "korean", - "address": "울산광역시 중구 성안6길 1 (성안동) 1층", - "district": "울산광역시 중구", - "latitude": 35.575033452695315, - "longitude": 129.31651249571607, - "representativePriceAmount": 8000, - "representativePriceLabel": "정식", + "address": "충청북도 청주시 서원구 사직대로164번길 27 (사창동) 1층", + "district": "충청북도 청주시", + "latitude": 36.6339341047818, + "longitude": 127.46555600261848, + "representativePriceAmount": 3000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-246-8751 / 영업시간: 월요일~토요일 11:00~17:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-271-1009", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d2dbe13167ff89157f79", - "label": "정식", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "7a1a9a1e3ca7d8412e1c", + "id": "dca331fc13a1e8cd89f3", "label": "김치찌개", - "amount": 9000, + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d2dbe13167ff89157f79-history", - "label": "정식", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "7a1a9a1e3ca7d8412e1c-history", + "id": "dca331fc13a1e8cd89f3-history", "label": "김치찌개", - "amount": 9000, + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14430,51 +13638,37 @@ "comments": [] }, { - "id": "goodprice-2994", - "name": "수다라", - "businessName": "수다라", - "categorySlug": "korean", - "address": "울산광역시 중구 서원1길 3 (반구동)", - "district": "울산광역시 중구", - "latitude": 35.5632555809223, - "longitude": 129.335301504887, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "id": "goodprice-18216", + "name": "에바다미용실", + "businessName": "에바다미용실", + "categorySlug": "beauty", + "address": "전북특별자치도 전주시 완산구 관선1길 74-4 (남노송동) 1층", + "district": "전북특별자치도 전주시", + "latitude": 35.81910634092517, + "longitude": 127.15785208426966, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-293-8818 / 영업시간: 10:00~18:00 -1인분은13:30이후주문가능", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00~19:00 / 토요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f24d2eb74ac6f49a318c", - "label": "칼국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5a858002c4b084e7747b", - "label": "비빔밥", - "amount": 8000, + "id": "a8f21afc8c80ed90e2c2", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f24d2eb74ac6f49a318c-history", - "label": "칼국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5a858002c4b084e7747b-history", - "label": "비빔밥", - "amount": 8000, + "id": "a8f21afc8c80ed90e2c2-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14482,34 +13676,41 @@ "comments": [] }, { - "id": "goodprice-14577", - "name": "순정분식", - "businessName": "순정분식", + "id": "goodprice-990", + "name": "형제정육식당", + "businessName": "형제정육식당", "categorySlug": "korean", - "address": "울산광역시 중구 반구정15길 18 (반구동) 1층", - "district": "울산광역시 중구", - "latitude": 35.55845233751778, - "longitude": 129.34466380262637, + "address": "서울특별시 중구 다산로40길 56 1층(신당5동)", + "district": "서울특별시 중구", + "latitude": 37.5631864591946, + "longitude": 127.019075758025, "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:40~19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-9902 / 영업시간: 월~금 11:30-22:00 15:00-16:30브레이크타임 토~일 11:30-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8c27edd344aef9057696", - "label": "칼국수", + "id": "427e470b7082841099d5", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "967807d427281b4c30a1", - "label": "비빔밥", + "id": "42bcf29d3ea0e733d8f8", + "label": "김치찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a861490ef58ef08a99aa", + "label": "제육볶음", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -14517,15 +13718,22 @@ ], "history": [ { - "id": "8c27edd344aef9057696-history", - "label": "칼국수", + "id": "427e470b7082841099d5-history", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "967807d427281b4c30a1-history", - "label": "비빔밥", + "id": "42bcf29d3ea0e733d8f8-history", + "label": "김치찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a861490ef58ef08a99aa-history", + "label": "제육볶음", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -14534,51 +13742,37 @@ "comments": [] }, { - "id": "goodprice-10174", - "name": "복조갈비", - "businessName": "복조갈비", - "categorySlug": "korean", - "address": "세종특별자치시 조치원읍 새내12길 51 1층", - "district": "세종특별자치시 조치원읍", - "latitude": 36.6026560183833, - "longitude": 127.300695361905, - "representativePriceAmount": 8000, - "representativePriceLabel": "육개장", + "id": "goodprice-15250", + "name": "호수헤어", + "businessName": "호수헤어", + "categorySlug": "beauty", + "address": "서울특별시 성북구 지봉로 171 (보문동2가) 1층", + "district": "서울특별시 성북구", + "latitude": 37.58492930938145, + "longitude": 127.01783472300218, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 육개장 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-862-3890", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-927-0709", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "feb7c5375ccf1a9567ad", - "label": "육개장", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5c9cbbb6e6dd94cdeb0d", - "label": "갈비탕", - "amount": 9000, + "id": "ca3acf413114f3fb0621", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "feb7c5375ccf1a9567ad-history", - "label": "육개장", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5c9cbbb6e6dd94cdeb0d-history", - "label": "갈비탕", - "amount": 9000, + "id": "ca3acf413114f3fb0621-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14586,37 +13780,51 @@ "comments": [] }, { - "id": "goodprice-19176", - "name": "부산면가", - "businessName": "부산면가", + "id": "goodprice-4742", + "name": "감촌삼겹살", + "businessName": "감촌삼겹살", "categorySlug": "korean", - "address": "세종특별자치시 호려울로 29 (보람동) 110호", - "district": "세종특별자치시 호려울로", - "latitude": 36.477909935227785, - "longitude": 127.29023798268373, - "representativePriceAmount": 6500, - "representativePriceLabel": "옛날칼국수", + "address": "충청북도 청주시 청원구 안덕벌로39번길 43-1 (내덕동)", + "district": "충청북도 청주시", + "latitude": 36.6591837012203, + "longitude": 127.491676959315, + "representativePriceAmount": 10000, + "representativePriceLabel": "생삼겹살(180g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "5233600915", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-862-0626", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생삼겹살(180g) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-211-2472 / 영업시간: 매일 17:00~21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8e9ab34e11b7e10d86bf", - "label": "옛날칼국수", - "amount": 6500, + "id": "f158b74b2231eca7acf3", + "label": "생삼겹살(180g)", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5ad8f96978603127ec5c", + "label": "생목살(180g)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8e9ab34e11b7e10d86bf-history", - "label": "옛날칼국수", - "amount": 6500, + "id": "f158b74b2231eca7acf3-history", + "label": "생삼겹살(180g)", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "5ad8f96978603127ec5c-history", + "label": "생목살(180g)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14624,51 +13832,37 @@ "comments": [] }, { - "id": "goodprice-14528", - "name": "까페시모 우만점", - "businessName": "까페시모 우만점", - "categorySlug": "other-food", - "address": "경기도 수원시 팔달구 경수대로656번길 37-22 (우만동) 1층", - "district": "경기도 수원시", - "latitude": 37.28563203757849, - "longitude": 127.02975069485917, - "representativePriceAmount": 2900, - "representativePriceLabel": "아메리카노", + "id": "goodprice-10500", + "name": "우아미미용실", + "businessName": "우아미미용실", + "categorySlug": "beauty", + "address": "전라남도 목포시 영산로250번길 13 (용당동)", + "district": "전라남도 목포시", + "latitude": 34.8020067240489, + "longitude": 126.39447577251, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트(기본)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-304-0307 / 영업시간: 09:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(기본) 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-277-1869", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c12ccc64e732c15fb3c6", - "label": "아메리카노", - "amount": 2900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b3c037742f241acb148d", - "label": "카페라떼", - "amount": 3700, + "id": "9fe7377200906dfb12e1", + "label": "커트(기본)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c12ccc64e732c15fb3c6-history", - "label": "아메리카노", - "amount": 2900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b3c037742f241acb148d-history", - "label": "카페라떼", - "amount": 3700, + "id": "9fe7377200906dfb12e1-history", + "label": "커트(기본)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14676,51 +13870,37 @@ "comments": [] }, { - "id": "goodprice-14526", - "name": "꼼빠도르", - "businessName": "꼼빠도르", - "categorySlug": "bakery", - "address": "경기도 수원시 팔달구 정조로 797-2 (팔달로2가) 101, 102호", - "district": "경기도 수원시", - "latitude": 37.279316026053095, - "longitude": 127.01637087798076, - "representativePriceAmount": 2000, - "representativePriceLabel": "팥빵", + "id": "goodprice-991", + "name": "흑돈연가", + "businessName": "흑돈연가", + "categorySlug": "korean", + "address": "서울특별시 중구 퇴계로88길 20 1층 (신당5동)", + "district": "서울특별시 중구", + "latitude": 37.5647641578328, + "longitude": 127.020885801266, + "representativePriceAmount": 7000, + "representativePriceLabel": "점심백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 팥빵 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-243-0588 / 영업시간: 08:00~23:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 점심백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-7854 / 영업시간: 매일 11:00-22:00 14:00-17:00브레이크타임 -백반점심11:00~1400저녁17:00~19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "393b5e2b7035fd37d6b8", - "label": "팥빵", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e023ccfd5df8d23acd8b", - "label": "아메리카노", - "amount": 3500, + "id": "6ee09ff8a50c665a59f0", + "label": "점심백반", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "393b5e2b7035fd37d6b8-history", - "label": "팥빵", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e023ccfd5df8d23acd8b-history", - "label": "아메리카노", - "amount": 3500, + "id": "6ee09ff8a50c665a59f0-history", + "label": "점심백반", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14728,37 +13908,37 @@ "comments": [] }, { - "id": "goodprice-3367", - "name": "꽃씨미용실", - "businessName": "꽃씨미용실", + "id": "goodprice-16482", + "name": "극동머리방", + "businessName": "극동머리방", "categorySlug": "beauty", - "address": "경기도 수원시 권선구 금호로15번길12 (금곡동)", - "district": "경기도 수원시", - "latitude": 37.2692497847657, - "longitude": 126.953624838044, - "representativePriceAmount": 10000, + "address": "서울특별시 강북구 인수봉로72가길 7 (수유동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.6431756088048, + "longitude": 127.01313193605671, + "representativePriceAmount": 5000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-297-6106 / 영업시간: 10:00~19:00 (첫째, 셋째 일요일, 둘째,넷째 화요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-907-2251", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "951e63c163567473259a", + "id": "554da262ae7a421b52fc", "label": "커트", - "amount": 10000, + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "951e63c163567473259a-history", + "id": "554da262ae7a421b52fc-history", "label": "커트", - "amount": 10000, + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14766,79 +13946,79 @@ "comments": [] }, { - "id": "goodprice-15303", - "name": "남문건강제분소", - "businessName": "남문건강제분소", + "id": "goodprice-4708", + "name": "개미돈까스", + "businessName": "개미돈까스", "categorySlug": "korean", - "address": "경기도 수원시 팔달구 창룡대로26번길 42-7 (남수동) 1층", - "district": "경기도 수원시", - "latitude": 37.28002458529435, - "longitude": 127.0188847877665, - "representativePriceAmount": 6000, - "representativePriceLabel": "콩나물국밥", + "address": "충청북도 청주시 상당구 사직대로361번길 54-11 (북문로2가)", + "district": "충청북도 청주시", + "latitude": 36.6394461100471, + "longitude": 127.487984622146, + "representativePriceAmount": 8000, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-241-8002 / 영업시간: 09:00~21:00 화요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-223-7456 / 영업시간: 매일 11:00-19:30 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e4166fabea6e8b8229a7", - "label": "콩나물국밥", - "amount": 6000, + "id": "bcb8c66bf0a1b5fe1b06", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f9821c6901d3e9c45004", - "label": "잔치국수", - "amount": 6000, + "id": "28c0447ecc140114140c", + "label": "김치볶음밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "488afc84183a91d07510", - "label": "비빔국수", - "amount": 6000, + "id": "65844b4bf0ab980e4165", + "label": "셋트메뉴", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "96eab12924a0fb14f46a", - "label": "순두부", - "amount": 6000, + "id": "581da7556f4a4ae89388", + "label": "돈까스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e4166fabea6e8b8229a7-history", - "label": "콩나물국밥", - "amount": 6000, + "id": "bcb8c66bf0a1b5fe1b06-history", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f9821c6901d3e9c45004-history", - "label": "잔치국수", - "amount": 6000, + "id": "28c0447ecc140114140c-history", + "label": "김치볶음밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "488afc84183a91d07510-history", - "label": "비빔국수", - "amount": 6000, + "id": "65844b4bf0ab980e4165-history", + "label": "셋트메뉴", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "96eab12924a0fb14f46a-history", - "label": "순두부", - "amount": 6000, + "id": "581da7556f4a4ae89388-history", + "label": "돈까스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14846,41 +14026,34 @@ "comments": [] }, { - "id": "goodprice-10304", - "name": "낭만국시", - "businessName": "낭만국시", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 명동길29번길 3 (죽림동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8781171202343, - "longitude": 127.725962552609, - "representativePriceAmount": 7000, - "representativePriceLabel": "칼국시", + "id": "goodprice-18039", + "name": "꽃이피어나", + "businessName": "꽃이피어나", + "categorySlug": "beauty", + "address": "제주특별자치도 제주시 도남로 102-12 (도남동) 꽃이피어나", + "district": "제주특별자치도 제주시", + "latitude": 33.49138991942305, + "longitude": 126.52711922981103, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국시 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-252-6255 / 영업시간: 10:00 - 18:00 라스트오더 17:30 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-722-1202", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "751668ef606b1ac02aad", - "label": "칼국시", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0771aac23c5ade21f90e", - "label": "잔치국시", - "amount": 7000, + "id": "4937d425a8e501efd994", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2c39310e2e26d6a19f6f", - "label": "비빔국시", + "id": "ceddd8e3c08db374db8f", + "label": "아이커트", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -14888,22 +14061,15 @@ ], "history": [ { - "id": "751668ef606b1ac02aad-history", - "label": "칼국시", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0771aac23c5ade21f90e-history", - "label": "잔치국시", - "amount": 7000, + "id": "4937d425a8e501efd994-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2c39310e2e26d6a19f6f-history", - "label": "비빔국시", + "id": "ceddd8e3c08db374db8f-history", + "label": "아이커트", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -14912,65 +14078,79 @@ "comments": [] }, { - "id": "goodprice-4354", - "name": "누이네", - "businessName": "누이네", - "categorySlug": "japanese", - "address": "강원특별자치도 춘천시 영서로2279번길 25 (온의동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8628068929099, - "longitude": 127.720326390422, - "representativePriceAmount": 9000, - "representativePriceLabel": "회덮밥", + "id": "goodprice-14104", + "name": "5빠떡볶이", + "businessName": "5빠떡볶이", + "categorySlug": "korean", + "address": "서울특별시 용산구 후암로 37-1 (후암동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.54931978404158, + "longitude": 126.97740399387813, + "representativePriceAmount": 4000, + "representativePriceLabel": "떡볶이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 회덮밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-251-2261 / 영업시간: 11:30 21:00 매달 2, 4번째 일요일 정기 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3789-1489", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ace69905acad0bbab5c3", - "label": "회덮밥", - "amount": 9000, + "id": "39812bd1e9c7f1f5b617", + "label": "떡볶이", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6c616a8382253184d272", - "label": "알탕", - "amount": 10000, + "id": "5bf8594b4ec646814bef", + "label": "어묵", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4688354b55ddad95947a", - "label": "구이백반", - "amount": 10000, + "id": "710ce4c4b7b4bbed39f0", + "label": "튀김", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f10f532d29ff782c5277", + "label": "순대", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ace69905acad0bbab5c3-history", - "label": "회덮밥", - "amount": 9000, + "id": "39812bd1e9c7f1f5b617-history", + "label": "떡볶이", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6c616a8382253184d272-history", - "label": "알탕", - "amount": 10000, + "id": "5bf8594b4ec646814bef-history", + "label": "어묵", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4688354b55ddad95947a-history", - "label": "구이백반", - "amount": 10000, + "id": "710ce4c4b7b4bbed39f0-history", + "label": "튀김", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f10f532d29ff782c5277-history", + "label": "순대", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -14978,65 +14158,51 @@ "comments": [] }, { - "id": "goodprice-4327", - "name": "달콤한게으름", - "businessName": "달콤한게으름", - "categorySlug": "other-food", - "address": "강원특별자치도 춘천시 신북읍 신샘밭로 502 달콤한게으름", - "district": "강원특별자치도 춘천시", - "latitude": 37.9295512271344, - "longitude": 127.765130880111, - "representativePriceAmount": 4000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-115", + "name": "럭키미용실", + "businessName": "럭키미용실", + "categorySlug": "beauty", + "address": "서울특별시 강북구 오패산로 273 1층", + "district": "서울특별시 강북구", + "latitude": 37.6257488946126, + "longitude": 127.029538289863, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1359-7877 / 영업시간: 매일 11:00 - 19:30 라스트오더 19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-986-2530", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "59c64e68c76af501daeb", - "label": "아메리카노", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b051f9997a67624f5bf9", - "label": "아이스티", - "amount": 4500, + "id": "ea9e2743d705c7237378", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "840a24c2af32ddbfb655", - "label": "얼그레이", - "amount": 4000, + "id": "5bd1a98541a98495f8d9", + "label": "컷 커트", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "59c64e68c76af501daeb-history", - "label": "아메리카노", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b051f9997a67624f5bf9-history", - "label": "아이스티", - "amount": 4500, + "id": "ea9e2743d705c7237378-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "840a24c2af32ddbfb655-history", - "label": "얼그레이", - "amount": 4000, + "id": "5bd1a98541a98495f8d9-history", + "label": "컷 커트", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -15044,65 +14210,65 @@ "comments": [] }, { - "id": "goodprice-18315", - "name": "닭갈비짱", - "businessName": "닭갈비짱", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 스무숲1길 38-9 -", - "district": "강원특별자치도 춘천시", - "latitude": 37.8492683443013, - "longitude": 127.750878159251, - "representativePriceAmount": 10000, - "representativePriceLabel": "특선 도시락", + "id": "goodprice-11028", + "name": "겨자씨까페", + "businessName": "겨자씨까페", + "categorySlug": "other-food", + "address": "충청남도 천안시 동남구 사직로 10-6 (사직동)", + "district": "충청남도 천안시", + "latitude": 36.8006603819216, + "longitude": 127.150044275946, + "representativePriceAmount": 2000, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 특선 도시락 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-261-3688", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-555-0738 / 영업시간: 09:30~17:30 명절휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "05516091ff2faa9f178c", - "label": "특선 도시락", - "amount": 10000, + "id": "da0270c422e8f3e55436", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4111dc51498daccc6580", - "label": "냉동 삼겹살", - "amount": 10000, + "id": "81fc55ca88578e0a5d68", + "label": "카페라떼", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7954571b2e15a7f02521", - "label": "대패 삼겹살", - "amount": 10000, + "id": "8eb4692b74d569b152bf", + "label": "카페모카", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "05516091ff2faa9f178c-history", - "label": "특선 도시락", - "amount": 10000, + "id": "da0270c422e8f3e55436-history", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4111dc51498daccc6580-history", - "label": "냉동 삼겹살", - "amount": 10000, + "id": "81fc55ca88578e0a5d68-history", + "label": "카페라떼", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7954571b2e15a7f02521-history", - "label": "대패 삼겹살", - "amount": 10000, + "id": "8eb4692b74d569b152bf-history", + "label": "카페모카", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -15110,37 +14276,37 @@ "comments": [] }, { - "id": "goodprice-16059", - "name": "그레이스 칼국수", - "businessName": "그레이스 칼국수", - "categorySlug": "korean", - "address": "충청북도 청주시 상당구 남일면 효촌송암길 18-11 1층 103호", - "district": "충청북도 청주시", - "latitude": 36.58914562523452, - "longitude": 127.50987272855514, - "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "id": "goodprice-11185", + "name": "정원이용원", + "businessName": "정원이용원", + "categorySlug": "barber", + "address": "부산광역시 중구 대청로134번길16 (동광동3가)", + "district": "부산광역시 중구", + "latitude": 35.1014290808544, + "longitude": 129.034814332461, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-288-1932 / 영업시간: 영업 10:30 - 15:00 14:30 라스트오더", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-0108", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c27c37310072791440fb", - "label": "칼국수", - "amount": 7000, + "id": "50531fb144926121ebde", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c27c37310072791440fb-history", - "label": "칼국수", - "amount": 7000, + "id": "50531fb144926121ebde-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -15148,51 +14314,51 @@ "comments": [] }, { - "id": "goodprice-4746", - "name": "금와가든", - "businessName": "금와가든", - "categorySlug": "korean", - "address": "충청북도 청주시 청원구 팔결로 66 (주중동)", - "district": "충청북도 청주시", - "latitude": 36.6890862826954, - "longitude": 127.482711215662, - "representativePriceAmount": 6000, - "representativePriceLabel": "한식뷔페", + "id": "goodprice-14698", + "name": "Y brew(와이브루)", + "businessName": "Y brew(와이브루)", + "categorySlug": "other-food", + "address": "서울특별시 용산구 서빙고로 17 (한강로3가) 센트럴파크몰 A동 1층 76호", + "district": "서울특별시 용산구", + "latitude": 37.52560239924648, + "longitude": 126.96674079441847, + "representativePriceAmount": 1800, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-211-8660 / 영업시간: 매일 11:30-21:00 매주 일요일 정기휴무", + "description": "카페", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4446-5218 / 영업시간: 영업시간 : 평일 08:00~19:00, 주말 09:00~17:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d41df5501e8462705fa8", - "label": "한식뷔페", - "amount": 6000, + "id": "93d70c29ce76be2aab28", + "label": "아메리카노", + "amount": 1800, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "514552fef1f075725c4c", - "label": "돼지고기 김치찌개", - "amount": 9000, + "id": "2a3e22bff03113520e15", + "label": "카페라떼", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d41df5501e8462705fa8-history", - "label": "한식뷔페", - "amount": 6000, + "id": "93d70c29ce76be2aab28-history", + "label": "아메리카노", + "amount": 1800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "514552fef1f075725c4c-history", - "label": "돼지고기 김치찌개", - "amount": 9000, + "id": "2a3e22bff03113520e15-history", + "label": "카페라떼", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -15200,165 +14366,65 @@ "comments": [] }, { - "id": "goodprice-16069", - "name": "기쁨가득 엄마밥상", - "businessName": "기쁨가득 엄마밥상", - "categorySlug": "korean", - "address": "충청북도 청주시 흥덕구 사운로190번길 1 (운천동)", - "district": "충청북도 청주시", - "latitude": 36.64618197563589, - "longitude": 127.47854183832706, - "representativePriceAmount": 6000, - "representativePriceLabel": "된장찌개", + "id": "goodprice-116", + "name": "머리하는집", + "businessName": "머리하는집", + "categorySlug": "beauty", + "address": "서울특별시 강북구 오현로9길 132 1층", + "district": "서울특별시 강북구", + "latitude": 37.62242295372, + "longitude": 127.0327510333, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-985-0234 / 영업시간: 17:00에17시0분에 금 09:30-17:00 토 정기휴무(매주토요일) 일 09:30-17:00 월 09:30-17:00 화 09:30-17:00 수 09:30-17:00 목 09:30-17:00 -하절기는6시마감3월중순~9월중순", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d10fa185c4111ed3f338", - "label": "된장찌개", - "amount": 6000, + "id": "c2a584a1cd57320789c1", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "29dd0404ebb25a96757b", - "label": "순두부찌개", - "amount": 6000, + "id": "d41697cced03d67a183d", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "d10fa185c4111ed3f338-history", - "label": "된장찌개", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "29dd0404ebb25a96757b-history", - "label": "순두부찌개", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15849", - "name": "김진헤어", - "businessName": "김진헤어", - "categorySlug": "beauty", - "address": "충청북도 청주시 흥덕구 증안로 44 (복대동) 2층", - "district": "충청북도 청주시", - "latitude": 36.63652312339393, - "longitude": 127.42812791746137, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-239-4129", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "32efda9dfa42915a3c5a", - "label": "커트", - "amount": 10000, + "id": "4967b281cca2d7bda67c", + "label": "컷 커트", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "32efda9dfa42915a3c5a-history", + "id": "c2a584a1cd57320789c1-history", "label": "커트", - "amount": 10000, + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-19313", - "name": "깨돌이김밥", - "businessName": "깨돌이김밥", - "categorySlug": "korean", - "address": "충청남도 천안시 동남구 각원사길 52 (안서동) 깨돌이김밥", - "district": "충청남도 천안시", - "latitude": 36.830711862714494, - "longitude": 127.1776761133309, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1420-7277", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "e6646b5b885e609b83d4", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "e6646b5b885e609b83d4-history", - "label": "김밥", - "amount": 3000, + "id": "d41697cced03d67a183d-history", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18220", - "name": "만족", - "businessName": "만족", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 안터6길 41 (서신동) 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.8300315070019, - "longitude": 127.11645550914488, - "representativePriceAmount": 8000, - "representativePriceLabel": "비빔밥/순두부찌개/비빔막국수/바지락칼국수(점심)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥/순두부찌개/비빔막국수/바지락칼국수(점심) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1358-5650 / 영업시간: 10:30~22:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "4f6ad6b8aeba8882a119", - "label": "비빔밥/순두부찌개/비빔막국수/바지락칼국수(점심)", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "4f6ad6b8aeba8882a119-history", - "label": "비빔밥/순두부찌개/비빔막국수/바지락칼국수(점심)", - "amount": 8000, + "id": "4967b281cca2d7bda67c-history", + "label": "컷 커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -15366,173 +14432,103 @@ "comments": [] }, { - "id": "goodprice-5425", - "name": "맛자랑 팥고향집", - "businessName": "맛자랑 팥고향집", + "id": "goodprice-11409", + "name": "경북당", + "businessName": "경북당", "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 서학로 32-4", - "district": "전북특별자치도 전주시", - "latitude": 35.8093835840183, - "longitude": 127.152905612703, + "address": "충청남도 천안시 동남구 병천면 아우내장터2길 46", + "district": "충청남도 천안시", + "latitude": 36.7626220651971, + "longitude": 127.297917324637, "representativePriceAmount": 7000, - "representativePriceLabel": "손칼국수", + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-231-0993", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-561-4133 / 영업시간: 10:00~15:00 일요일 휴무(병천장날 제외)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5ddd346193ead1403888", - "label": "손칼국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3a64512ae4b163d91457", - "label": "수제비", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f76b70ac7411791853bc", - "label": "비빔국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "26ac6b25d3fa63898b9a", - "label": "비빔냉면", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "48c5cfdca728f63d79ae", - "label": "새알팥", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6edb1760271046232b96", - "label": "열무냉면", + "id": "2f7d99d7436e543b01e4", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7342ff9bb3ff4d3efc0b", + "id": "723ba712fff6f652776a", "label": "콩국수", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "0a073ee47d85b1d84a2e", - "label": "팥칼국수", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5ddd346193ead1403888-history", - "label": "손칼국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3a64512ae4b163d91457-history", - "label": "수제비", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f76b70ac7411791853bc-history", - "label": "비빔국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "26ac6b25d3fa63898b9a-history", - "label": "비빔냉면", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "48c5cfdca728f63d79ae-history", - "label": "새알팥", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6edb1760271046232b96-history", - "label": "열무냉면", + "id": "2f7d99d7436e543b01e4-history", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7342ff9bb3ff4d3efc0b-history", + "id": "723ba712fff6f652776a-history", "label": "콩국수", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "0a073ee47d85b1d84a2e-history", - "label": "팥칼국수", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-5419", - "name": "명보헤어", - "businessName": "명보헤어", - "categorySlug": "beauty", - "address": "전북특별자치도 전주시 완산구 팔달로 101-26", - "district": "전북특별자치도 전주시", - "latitude": 35.8123674581985, - "longitude": 127.148537758879, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-10199", + "name": "자연셀프 세차장", + "businessName": "자연셀프 세차장", + "categorySlug": "other-service", + "address": "세종특별자치시 금남면 용포로 32", + "district": "세종특별자치시 금남면", + "latitude": 36.4613848948516, + "longitude": 127.280691708831, + "representativePriceAmount": 1000, + "representativePriceLabel": "고압세척(2분30초)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-282-1643 / 영업시간: 월-토 10:00-19:00 (일요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 고압세척(2분30초) 1,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "40adc52430bed74b804a", - "label": "커트", - "amount": 10000, + "id": "39e8238573ef6b7fe94f", + "label": "고압세척(2분30초)", + "amount": 1000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "220cf8bc20b062312379", + "label": "에어청소(3분)", + "amount": 500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "40adc52430bed74b804a-history", - "label": "커트", - "amount": 10000, + "id": "39e8238573ef6b7fe94f-history", + "label": "고압세척(2분30초)", + "amount": 1000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "220cf8bc20b062312379-history", + "label": "에어청소(3분)", + "amount": 500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -15540,37 +14536,37 @@ "comments": [] }, { - "id": "goodprice-18209", - "name": "바다미용샵", - "businessName": "바다미용샵", - "categorySlug": "beauty", - "address": "전북특별자치도 전주시 완산구 영경1길 21 (중화산동2가) 우성근영타운상가 1-101", - "district": "전북특별자치도 전주시", - "latitude": 35.81809189327877, - "longitude": 127.12518062331628, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트(학생)", + "id": "goodprice-14108", + "name": "가마골", + "businessName": "가마골", + "categorySlug": "korean", + "address": "서울특별시 용산구 이촌로75길 16-5 (이촌동) 107호", + "district": "서울특별시 용산구", + "latitude": 37.52072429510628, + "longitude": 126.97467501755911, + "representativePriceAmount": 8000, + "representativePriceLabel": "오늘의정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(학생) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-223-8840 / 영업시간: 09:00~19:00 / 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 오늘의정식 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-794-6489 / 영업시간: 영업시간 월~금 06:30~20:30 14:00~15:30(브레이크타임) 토 06:30~14:30 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "846c5f93ac02c15bc985", - "label": "커트(학생)", - "amount": 10000, + "id": "02007ed523baf483be7c", + "label": "오늘의정식", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "846c5f93ac02c15bc985-history", - "label": "커트(학생)", - "amount": 10000, + "id": "02007ed523baf483be7c-history", + "label": "오늘의정식", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -15578,27 +14574,27 @@ "comments": [] }, { - "id": "goodprice-15151", - "name": "몽헤어갤러리", - "businessName": "몽헤어갤러리", - "categorySlug": "beauty", - "address": "전라남도 목포시 산정로 211 (용당동) 몽헤어갤러리", - "district": "전라남도 목포시", - "latitude": 34.80675654469635, - "longitude": 126.38939338794059, + "id": "goodprice-14193", + "name": "미주이발소", + "businessName": "미주이발소", + "categorySlug": "barber", + "address": "서울특별시 강북구 인수봉로79길 32 (수유동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.64430707644983, + "longitude": 127.00929698556787, "representativePriceAmount": 7000, - "representativePriceLabel": "학생커트", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 학생커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-276-0479", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4753-1726", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fd7465cbf63d5ce69aae", - "label": "학생커트", + "id": "c057bfb6a7214a97fb31", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -15606,8 +14602,8 @@ ], "history": [ { - "id": "fd7465cbf63d5ce69aae-history", - "label": "학생커트", + "id": "c057bfb6a7214a97fb31-history", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -15616,37 +14612,51 @@ "comments": [] }, { - "id": "goodprice-15141", - "name": "미달이네집밥", - "businessName": "미달이네집밥", + "id": "goodprice-16877", + "name": "경자네칼국수", + "businessName": "경자네칼국수", "categorySlug": "korean", - "address": "전라남도 목포시 용당로 52 (산정동) 미달이네집밥", - "district": "전라남도 목포시", - "latitude": 34.79223219163826, - "longitude": 126.40229481607567, - "representativePriceAmount": 9000, - "representativePriceLabel": "한식뷔페", + "address": "충청남도 천안시 서북구 월봉5길 7 (쌍용동) 102호", + "district": "충청남도 천안시", + "latitude": 36.790593294551826, + "longitude": 127.11713150353609, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-244-0222", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-578-7676 / 영업시간: 영업시간 10:00~22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "308b1dc7aedb92d05068", - "label": "한식뷔페", - "amount": 9000, + "id": "61fb3c20b5d2ca027b2f", + "label": "칼국수", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "bb39a76e50b3c1a6ea3d", + "label": "청국장", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "308b1dc7aedb92d05068-history", - "label": "한식뷔페", - "amount": 9000, + "id": "61fb3c20b5d2ca027b2f-history", + "label": "칼국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "bb39a76e50b3c1a6ea3d-history", + "label": "청국장", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -15654,51 +14664,51 @@ "comments": [] }, { - "id": "goodprice-10507", - "name": "백련가정식백반", - "businessName": "백련가정식백반", - "categorySlug": "korean", - "address": "전라남도 목포시 백년대로 83 (용당동)", - "district": "전라남도 목포시", - "latitude": 34.7993153187521, - "longitude": 126.398708002647, - "representativePriceAmount": 9000, - "representativePriceLabel": "고등어구이백반", + "id": "goodprice-3400", + "name": "동남세탁소", + "businessName": "동남세탁소", + "categorySlug": "laundry", + "address": "경기도 수원시 장안구 만석로101번길 46 (정자동)", + "district": "경기도 수원시", + "latitude": 37.3007439187584, + "longitude": 126.991377835815, + "representativePriceAmount": 7000, + "representativePriceLabel": "드라이클리닝", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고등어구이백반 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-281-3931", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 드라이클리닝 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-253-1414 / 영업시간: 09:00~22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7fe6bed28d1e3429824b", - "label": "고등어구이백반", - "amount": 9000, + "id": "b9dd6eb50d4e0982f2c6", + "label": "드라이클리닝", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0c344ea2e2d595dc43e3", - "label": "김치찌개", - "amount": 9000, + "id": "f716032a089d31acfc9a", + "label": "수선", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7fe6bed28d1e3429824b-history", - "label": "고등어구이백반", - "amount": 9000, + "id": "b9dd6eb50d4e0982f2c6-history", + "label": "드라이클리닝", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0c344ea2e2d595dc43e3-history", - "label": "김치찌개", - "amount": 9000, + "id": "f716032a089d31acfc9a-history", + "label": "수선", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -15706,471 +14716,317 @@ "comments": [] }, { - "id": "goodprice-6388", - "name": "고향식당", - "businessName": "고향식당", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 오천읍 세계길 34-2 고향식당", - "district": "경상북도 포항시", - "latitude": 35.9651038865803, - "longitude": 129.415954040359, - "representativePriceAmount": 7000, - "representativePriceLabel": "정식", + "id": "goodprice-886", + "name": "감베로니", + "businessName": "감베로니", + "categorySlug": "western", + "address": "서울특별시 용산구 한강대로 81길 5 1층", + "district": "서울특별시 용산구", + "latitude": 37.5429793370245, + "longitude": 126.971946055378, + "representativePriceAmount": 9000, + "representativePriceLabel": "돈 까 스 (1인분)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-291-5806 / 영업시간: 5시 30분~17시 (브레이크타임 14시30분~17시) 명절 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈 까 스 (1인분) 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3273-1791 / 영업시간: 11:00~21:00(일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "74015a8b72777526b52c", - "label": "정식", - "amount": 7000, + "id": "817a8e584079c0de72e4", + "label": "돈 까 스 (1인분)", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b3afd5378138bfdcfd6b", - "label": "비빔밥", - "amount": 7000, + "id": "73d9b7635bf79655f118", + "label": "파스타", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "74015a8b72777526b52c-history", - "label": "정식", - "amount": 7000, + "id": "4385300e368843c24450", + "label": "날치알 로지 스파게티", + "amount": 9500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "b3afd5378138bfdcfd6b-history", - "label": "비빔밥", - "amount": 7000, + "id": "10692acf22e9527a1b17", + "label": "날치알 크림스파게티", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16132", - "name": "공원분식", - "businessName": "공원분식", - "categorySlug": "korean", - "address": "경상북도 포항시 북구 환호공원길 19-1 (환호동) 공원분식", - "district": "경상북도 포항시", - "latitude": 36.06805492716173, - "longitude": 129.3918551381414, - "representativePriceAmount": 6000, - "representativePriceLabel": "잔치국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-242-9337", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "37a5cfb5aea0128d0cff", - "label": "잔치국수", - "amount": 6000, + "id": "78e73c15abefaa978910", + "label": "닭고기 철판 볶음밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "be65fe5e71e17e07df73", - "label": "콩국수", - "amount": 7000, + "id": "846197d6c6a2a98a0d8a", + "label": "돈까스", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "37a5cfb5aea0128d0cff-history", - "label": "잔치국수", - "amount": 6000, + "id": "1d00263b494f136f67d3", + "label": "디마레 샐러드", + "amount": 8500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "be65fe5e71e17e07df73-history", - "label": "콩국수", - "amount": 7000, + "id": "b80a5e1d85d37ebd98e0", + "label": "로지소스 해물스파게티", + "amount": 9500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-6428", - "name": "곽헤어뷰티", - "businessName": "곽헤어뷰티", - "categorySlug": "beauty", - "address": "경상북도 포항시 북구 장량중앙로65번길 18-1 (양덕동) 1층", - "district": "경상북도 포항시", - "latitude": 36.09024160303488, - "longitude": 129.3898774029156, - "representativePriceAmount": 6000, - "representativePriceLabel": "남자커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남자커트 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1449-1250", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "5e910dff72088d32f430", - "label": "남자커트", - "amount": 6000, + "id": "12515795f704118662eb", + "label": "믹스 오븐스파게티", + "amount": 9500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e29d82a25317fb61f503", - "label": "여자커트", + "id": "6035348c21b8733c78af", + "label": "볼로내세", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "5e910dff72088d32f430-history", - "label": "남자커트", - "amount": 6000, + "id": "08389aee3af936add833", + "label": "브카나에리", + "amount": 9000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "e29d82a25317fb61f503-history", - "label": "여자커트", - "amount": 8000, + "id": "47c8acdce2c4c351e4b2", + "label": "상하이 스파게티", + "amount": 9500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15582", - "name": "낙지엔닭갈비", - "businessName": "낙지엔닭갈비", - "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 내서읍 중리상곡로 77 101호", - "district": "경상남도 창원시", - "latitude": 35.24768918750772, - "longitude": 128.50844422463186, - "representativePriceAmount": 10000, - "representativePriceLabel": "낙지비빔밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 낙지비빔밥 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-231-3217", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "5a4de9a27ba2b32af2ef", - "label": "낙지비빔밥", - "amount": 10000, + "id": "b83890b5c8ff7499943c", + "label": "오일스파게티", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "5a4de9a27ba2b32af2ef-history", - "label": "낙지비빔밥", - "amount": 10000, + "id": "74174d52e54061dfa0ba", + "label": "치킨 오이스터 스파게티", + "amount": 9000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-10579", - "name": "남양스튜디오", - "businessName": "남양스튜디오", - "categorySlug": "other-service", - "address": "경상남도 창원시 마산합포구 장장군로 31-23 (장군동4가)", - "district": "경상남도 창원시", - "latitude": 35.1971042919322, - "longitude": 128.565386781544, - "representativePriceAmount": 10000, - "representativePriceLabel": "가족사진", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 가족사진 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-245-0548 / 영업시간: 월~금 : 09:00~17:00 토 : 10:00~14:00 매주 일요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "0f3671e4a445390d71a6", - "label": "가족사진", - "amount": 10000, + "id": "3da6c95b44430637a160", + "label": "치킨도리아", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "0f3671e4a445390d71a6-history", - "label": "가족사진", - "amount": 10000, + "id": "b727d5ddc4d5c330fea6", + "label": "치킨스테이크", + "amount": 9000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15129", - "name": "남원식당", - "businessName": "남원식당", - "categorySlug": "korean", - "address": "경상남도 창원시 의창구 도계로83번길 6-24 (도계동) 1층", - "district": "경상남도 창원시", - "latitude": 35.25676280757884, - "longitude": 128.6403988733871, - "representativePriceAmount": 8000, - "representativePriceLabel": "가정식 백반", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 가정식 백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-238-0517", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "ed8010247b41922f5e19", - "label": "가정식 백반", - "amount": 8000, + "id": "def99925755a8109aca4", + "label": "카보나라", + "amount": 9500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "eb8df1eddebc4719c5ea", - "label": "김치찌개", + "id": "07d8c43c479ad9953911", + "label": "케이준치킨 샐러드", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8fac1bdb8ce3bec3270f", - "label": "된장찌개", - "amount": 8000, + "id": "a85cde6aac7534dd9a0d", + "label": "폴로", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d1f5c6f74863baf32cf1", - "label": "순두부찌개", - "amount": 8000, + "id": "9e2dc6fa55856cc6df07", + "label": "폴로아라비아타 오븐스파게티", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "aed9588cf6b0ead5c292", + "label": "해물도리아", + "amount": 9500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ed8010247b41922f5e19-history", - "label": "가정식 백반", - "amount": 8000, + "id": "817a8e584079c0de72e4-history", + "label": "돈 까 스 (1인분)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "eb8df1eddebc4719c5ea-history", - "label": "김치찌개", + "id": "73d9b7635bf79655f118-history", + "label": "파스타", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8fac1bdb8ce3bec3270f-history", - "label": "된장찌개", - "amount": 8000, + "id": "4385300e368843c24450-history", + "label": "날치알 로지 스파게티", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d1f5c6f74863baf32cf1-history", - "label": "순두부찌개", - "amount": 8000, + "id": "10692acf22e9527a1b17-history", + "label": "날치알 크림스파게티", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-17648", - "name": "뉴헤어라인 이용원", - "businessName": "뉴헤어라인 이용원", - "categorySlug": "barber", - "address": "경상남도 창원시 진해구 제황로 83-1 (충무동) 1층", - "district": "경상남도 창원시", - "latitude": 35.15172782098772, - "longitude": 128.66680204776503, - "representativePriceAmount": 9000, - "representativePriceLabel": "남성커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 남성커트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1405-1427", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "2fdf97762dd7ec37d164", - "label": "남성커트", + "id": "78e73c15abefaa978910-history", + "label": "닭고기 철판 볶음밥", "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "791e159366a70c60d39e", - "label": "70세 이상 커드", - "amount": 8000, + "id": "846197d6c6a2a98a0d8a-history", + "label": "돈까스", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "c2f0a8eb36e5dc2fd22b", - "label": "청소년 커트", - "amount": 7000, + "id": "1d00263b494f136f67d3-history", + "label": "디마레 샐러드", + "amount": 8500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "2fdf97762dd7ec37d164-history", - "label": "남성커트", - "amount": 9000, + "id": "b80a5e1d85d37ebd98e0-history", + "label": "로지소스 해물스파게티", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "791e159366a70c60d39e-history", - "label": "70세 이상 커드", + "id": "12515795f704118662eb-history", + "label": "믹스 오븐스파게티", + "amount": 9500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6035348c21b8733c78af-history", + "label": "볼로내세", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c2f0a8eb36e5dc2fd22b-history", - "label": "청소년 커트", - "amount": 7000, + "id": "08389aee3af936add833-history", + "label": "브카나에리", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-7068", - "name": "귀빈반점", - "businessName": "귀빈반점", - "categorySlug": "chinese", - "address": "제주특별자치도 제주시 정원로 53-1 (노형동)", - "district": "제주특별자치도 제주시", - "latitude": 33.4771339388759, - "longitude": 126.47755224554, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-749-3080 / 영업시간: 19:15에라스트오더 19시15분에라스트오더 목 10:00-19:30 19:15라스트오더 금 10:00-19:30 19:15라스트오더 토 10:00-19:30 19:15라스트오더 일 정기휴무(매주일요일) 월 10:00-19:30 19:15라스트오더 화 10:00-19:30 19:15라스트오더 수 10:00-19:30 19:15라스트오더", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "3255eb85ffb83365cdf6", - "label": "짜장면", - "amount": 5000, + "id": "47c8acdce2c4c351e4b2-history", + "label": "상하이 스파게티", + "amount": 9500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "5f1f828c55e5cb838837", - "label": "짬뽕", - "amount": 6000, + "id": "b83890b5c8ff7499943c-history", + "label": "오일스파게티", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "4122038c540974b7c625", - "label": "고기짬뽕", - "amount": 7000, + "id": "74174d52e54061dfa0ba-history", + "label": "치킨 오이스터 스파게티", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "a479919e533e019ac74d", - "label": "짜장밥", - "amount": 7000, + "id": "3da6c95b44430637a160-history", + "label": "치킨도리아", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "035f3bb1b783447e5c4f", - "label": "짬뽕밥", - "amount": 6000, + "id": "b727d5ddc4d5c330fea6-history", + "label": "치킨스테이크", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "3255eb85ffb83365cdf6-history", - "label": "짜장면", - "amount": 5000, + "id": "def99925755a8109aca4-history", + "label": "카보나라", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5f1f828c55e5cb838837-history", - "label": "짬뽕", - "amount": 6000, + "id": "07d8c43c479ad9953911-history", + "label": "케이준치킨 샐러드", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4122038c540974b7c625-history", - "label": "고기짬뽕", - "amount": 7000, + "id": "a85cde6aac7534dd9a0d-history", + "label": "폴로", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a479919e533e019ac74d-history", - "label": "짜장밥", - "amount": 7000, + "id": "9e2dc6fa55856cc6df07-history", + "label": "폴로아라비아타 오븐스파게티", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "035f3bb1b783447e5c4f-history", - "label": "짬뽕밥", - "amount": 6000, + "id": "aed9588cf6b0ead5c292-history", + "label": "해물도리아", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16178,51 +15034,51 @@ "comments": [] }, { - "id": "goodprice-11423", - "name": "금악 똣똣라면", - "businessName": "금악 똣똣라면", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 한림읍 금악로 18", - "district": "제주특별자치도 제주시", - "latitude": 33.3586559057476, - "longitude": 126.296620943982, - "representativePriceAmount": 6500, - "representativePriceLabel": "똣똣라면(오리지널)", + "id": "goodprice-114", + "name": "백양세탁소", + "businessName": "백양세탁소", + "categorySlug": "laundry", + "address": "서울특별시 강북구 인수봉로 251-1 1층", + "district": "서울특별시 강북구", + "latitude": 37.6411378755368, + "longitude": 127.010739559379, + "representativePriceAmount": 7000, + "representativePriceLabel": "양복세탁료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 똣똣라면(오리지널) 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복세탁료 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-997-9390", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c9f40e1c42381560a249", - "label": "똣똣라면(오리지널)", - "amount": 6500, + "id": "d42b27c47e3c32c00e73", + "label": "양복세탁료", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5dde784b339aec88659d", - "label": "똣똣라면(순한맛)", - "amount": 6500, + "id": "418b5147701706ac85bf", + "label": "의복수선료", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c9f40e1c42381560a249-history", - "label": "똣똣라면(오리지널)", - "amount": 6500, + "id": "d42b27c47e3c32c00e73-history", + "label": "양복세탁료", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5dde784b339aec88659d-history", - "label": "똣똣라면(순한맛)", - "amount": 6500, + "id": "418b5147701706ac85bf-history", + "label": "의복수선료", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16230,37 +15086,51 @@ "comments": [] }, { - "id": "goodprice-17999", - "name": "금악리자양식당", - "businessName": "금악리자양식당", - "categorySlug": "chinese", - "address": "제주특별자치도 제주시 한림읍 금악로 18 자양식당", - "district": "제주특별자치도 제주시", - "latitude": 33.35865254119738, - "longitude": 126.29662954404655, - "representativePriceAmount": 9000, - "representativePriceLabel": "닭짬뽕", + "id": "goodprice-13651", + "name": "고운육회방앗간", + "businessName": "고운육회방앗간", + "categorySlug": "korean", + "address": "충청남도 천안시 서북구 백석3로 25 (백석동) 1층", + "district": "충청남도 천안시", + "latitude": 36.821819579628574, + "longitude": 127.11424205567585, + "representativePriceAmount": 10000, + "representativePriceLabel": "한우육회비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 닭짬뽕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-7163-3544", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한우육회비빔밥 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-551-8890 / 영업시간: 10:30~21:00 (15:00~17:00 브레이크타임) 정기휴무 매주 월요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8e7fb0fb36592123c972", - "label": "닭짬뽕", - "amount": 9000, + "id": "1cc5d31be856fc54d2fb", + "label": "한우육회비빔밥", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "af4170b0538c07538f7a", + "label": "들기름막국수", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8e7fb0fb36592123c972-history", - "label": "닭짬뽕", - "amount": 9000, + "id": "1cc5d31be856fc54d2fb-history", + "label": "한우육회비빔밥", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "af4170b0538c07538f7a-history", + "label": "들기름막국수", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16268,51 +15138,37 @@ "comments": [] }, { - "id": "goodprice-14004", - "name": "서울식당", - "businessName": "서울식당", - "categorySlug": "korean", - "address": "서울특별시 종로구 창신길 50 (창신동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.57383386363352, - "longitude": 127.01070027218017, - "representativePriceAmount": 8000, - "representativePriceLabel": "백반", + "id": "goodprice-3393", + "name": "동아사우나", + "businessName": "동아사우나", + "categorySlug": "bath", + "address": "경기도 수원시 영통구 매여울로40번길 45 (매탄동)", + "district": "경기도 수원시", + "latitude": 37.2727443891937, + "longitude": 127.047494082233, + "representativePriceAmount": 10000, + "representativePriceLabel": "일반 입욕비", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-764-7587 / 영업시간: 10:00-20:00(일요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 일반 입욕비 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-214-3537 / 영업시간: 매일 05:30~19:00 * 계절별 조율", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "830940aae72c16d83a2d", - "label": "백반", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4e55d00ce953b9ddeb9f", - "label": "된장찌개", - "amount": 9000, + "id": "500c141507437ecee324", + "label": "일반 입욕비", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "830940aae72c16d83a2d-history", - "label": "백반", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4e55d00ce953b9ddeb9f-history", - "label": "된장찌개", - "amount": 9000, + "id": "500c141507437ecee324-history", + "label": "일반 입욕비", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16320,65 +15176,37 @@ "comments": [] }, { - "id": "goodprice-13892", - "name": "세종커피", - "businessName": "세종커피", - "categorySlug": "other-food", - "address": "서울특별시 종로구 세종대로23길 54 (당주동) 지하1층 26호", - "district": "서울특별시 종로구", - "latitude": 37.57183953065674, - "longitude": 126.97328450326039, - "representativePriceAmount": 2500, - "representativePriceLabel": "아메리카노", + "id": "goodprice-17224", + "name": "갑을", + "businessName": "갑을", + "categorySlug": "korean", + "address": "서울특별시 용산구 이촌로77길 19 (이촌동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.52053381564489, + "longitude": 126.97489050011073, + "representativePriceAmount": 10000, + "representativePriceLabel": "떡만두국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "테이크아웃 시 예쁜 캔에 실링하여 편하게 가지고 가실 수 있도록 포장해드립니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-5827-9542 / 영업시간: 영업시간 : 월~금 06:00 ~ 15:00 / 토 06:00 ~ 13:00 휴무일 : 일요일, 공휴일", + "description": "용산구 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-795-6003 / 영업시간: 11:30~21:00 (평일) 일부 품목 포장 가능(불고기, 낙지만 포장 가능)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "aebe8bb4831474a64dc6", - "label": "아메리카노", - "amount": 2500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5b76cbc9342d19e56ac5", - "label": "카페라떼", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d75fa438dc234fc55a4b", - "label": "에이드/스무디", - "amount": 4500, + "id": "491998054308b815a799", + "label": "떡만두국", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "aebe8bb4831474a64dc6-history", - "label": "아메리카노", - "amount": 2500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5b76cbc9342d19e56ac5-history", - "label": "카페라떼", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d75fa438dc234fc55a4b-history", - "label": "에이드/스무디", - "amount": 4500, + "id": "491998054308b815a799-history", + "label": "떡만두국", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16386,41 +15214,27 @@ "comments": [] }, { - "id": "goodprice-1637", - "name": "미도리우동", - "businessName": "미도리우동", - "categorySlug": "japanese", - "address": "부산광역시 중구 흑교로 45번길 10-1 (보수동)", - "district": "부산광역시 중구", - "latitude": 35.1036985758005, - "longitude": 129.024128409662, - "representativePriceAmount": 4000, - "representativePriceLabel": "유부초밥", + "id": "goodprice-117", + "name": "별미용실", + "businessName": "별미용실", + "categorySlug": "beauty", + "address": "서울특별시 강북구 삼양로41길 17 1층", + "district": "서울특별시 강북구", + "latitude": 37.6218363410093, + "longitude": 127.019135590462, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 유부초밥 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-244-8246 / 영업시간: 10:30 - 15:00, 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-983-0650 / 영업시간: 09:00 ~ 18:00 매주 화요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0dd8eea8d696633292eb", - "label": "유부초밥", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5ea365b83b6a80f89238", - "label": "우동", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "432af4dcd26e1381275b", - "label": "모밀국수", + "id": "f14753bb24e4c1dd2a59", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -16428,22 +15242,8 @@ ], "history": [ { - "id": "0dd8eea8d696633292eb-history", - "label": "유부초밥", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5ea365b83b6a80f89238-history", - "label": "우동", - "amount": 5500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "432af4dcd26e1381275b-history", - "label": "모밀국수", + "id": "f14753bb24e4c1dd2a59-history", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -16452,41 +15252,34 @@ "comments": [] }, { - "id": "goodprice-17051", - "name": "미향장어탕", - "businessName": "미향장어탕", - "categorySlug": "korean", - "address": "부산광역시 중구 남포길 45-1 (남포동2가) 1층", - "district": "부산광역시 중구", - "latitude": 35.09811695918981, - "longitude": 129.03373733333655, - "representativePriceAmount": 10000, - "representativePriceLabel": "장어탕", + "id": "goodprice-13856", + "name": "돈초야", + "businessName": "돈초야", + "categorySlug": "western", + "address": "전북특별자치도 전주시 완산구 송정로 43 (효자동1가)", + "district": "전북특별자치도 전주시", + "latitude": 35.802405949453835, + "longitude": 127.12153109657699, + "representativePriceAmount": 5900, + "representativePriceLabel": "돈가스 2장", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1430-2452", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈가스 2장 5,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-222-1983 / 영업시간: 매일 (AM)10:00~(AM)2:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "21b813ee10539f5b6b97", - "label": "장어탕", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "05698e2d28ba78dd1ff7", - "label": "물냉면", - "amount": 9000, + "id": "45e1ac4eb9dfd4168fbd", + "label": "돈가스 2장", + "amount": 5900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0ece2db7189f0014c1a1", - "label": "비빔냉면", + "id": "cc0912107db70a36a783", + "label": "히레(안심)가스(미니우동 포함)", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -16494,22 +15287,15 @@ ], "history": [ { - "id": "21b813ee10539f5b6b97-history", - "label": "장어탕", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "05698e2d28ba78dd1ff7-history", - "label": "물냉면", - "amount": 9000, + "id": "45e1ac4eb9dfd4168fbd-history", + "label": "돈가스 2장", + "amount": 5900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0ece2db7189f0014c1a1-history", - "label": "비빔냉면", + "id": "cc0912107db70a36a783-history", + "label": "히레(안심)가스(미니우동 포함)", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -16518,65 +15304,37 @@ "comments": [] }, { - "id": "goodprice-14624", - "name": "예원생선구이", - "businessName": "예원생선구이", - "categorySlug": "korean", - "address": "대구광역시 중구 동덕로 114-12 (삼덕동2가) 1층", - "district": "대구광역시 중구", - "latitude": 35.8646330747017, - "longitude": 128.60381216563215, - "representativePriceAmount": 9000, - "representativePriceLabel": "고등어구이 정식", + "id": "goodprice-11109", + "name": "박설매미용실", + "businessName": "박설매미용실", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 서부대성로 126-1 1층(운교동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8783657017514, + "longitude": 127.73400940214, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고등어구이 정식 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-421-4440 / 영업시간: 평일 10:30 - 20:00 15:00 - 16:00 브레이크타임 19:30 라스트오더 (토, 일 정기휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ccf2862d7c44ba120557", - "label": "고등어구이 정식", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "60ca412b5c6768262dea", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4ba5de9dd196b0d9096b", - "label": "순두부찌개", - "amount": 8000, + "id": "96d9e317af7948f7b465", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ccf2862d7c44ba120557-history", - "label": "고등어구이 정식", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "60ca412b5c6768262dea-history", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4ba5de9dd196b0d9096b-history", - "label": "순두부찌개", - "amount": 8000, + "id": "96d9e317af7948f7b465-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16584,34 +15342,27 @@ "comments": [] }, { - "id": "goodprice-15358", - "name": "옛고을", - "businessName": "옛고을", + "id": "goodprice-15298", + "name": "강남화로숯불갈비", + "businessName": "강남화로숯불갈비", "categorySlug": "korean", - "address": "대구광역시 중구 달구벌대로 2197-39 (삼덕동2가) 옛고을식당", - "district": "대구광역시 중구", - "latitude": 35.86464415410117, - "longitude": 128.60349499293326, + "address": "서울특별시 용산구 청파로47길 56 (청파동2가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.54493079081581, + "longitude": 126.96730533508787, "representativePriceAmount": 8000, - "representativePriceLabel": "제육덮밥", + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육덮밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-427-8503", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-713-9708", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "971d2201e466cfc873b7", - "label": "제육덮밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "00bf1ea43be2559b2a81", - "label": "된장찌개", + "id": "fa36c2f50e34b6ee4278", + "label": "백반", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -16619,15 +15370,8 @@ ], "history": [ { - "id": "971d2201e466cfc873b7-history", - "label": "제육덮밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "00bf1ea43be2559b2a81-history", - "label": "된장찌개", + "id": "fa36c2f50e34b6ee4278-history", + "label": "백반", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -16636,51 +15380,37 @@ "comments": [] }, { - "id": "goodprice-10074", - "name": "옛날국수", - "businessName": "옛날국수", - "categorySlug": "korean", - "address": "대구광역시 중구 중앙대로 439 향촌동", - "district": "대구광역시 중구", - "latitude": 35.8724146556383, - "longitude": 128.594100102946, - "representativePriceAmount": 2000, - "representativePriceLabel": "잔치국수", + "id": "goodprice-19038", + "name": "봄날헤어", + "businessName": "봄날헤어", + "categorySlug": "beauty", + "address": "서울특별시 강북구 삼각산로 142-1 (수유동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.640981908516444, + "longitude": 127.02006640087626, + "representativePriceAmount": 8000, + "representativePriceLabel": "남자 커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-256-1221", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남자 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-902-1233", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bac684aa9229002191a1", - "label": "잔치국수", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "11e6b304423b06b51aa1", - "label": "연탄불고기(1/2)", - "amount": 3000, + "id": "333b54cba0d8ecc0872a", + "label": "남자 커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bac684aa9229002191a1-history", - "label": "잔치국수", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "11e6b304423b06b51aa1-history", - "label": "연탄불고기(1/2)", - "amount": 3000, + "id": "333b54cba0d8ecc0872a-history", + "label": "남자 커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16688,51 +15418,51 @@ "comments": [] }, { - "id": "goodprice-17977", - "name": "와래이수제꼬치전문점", - "businessName": "와래이수제꼬치전문점", + "id": "goodprice-5435", + "name": "동래분식", + "businessName": "동래분식", "categorySlug": "korean", - "address": "대구광역시 중구 달구벌대로450길 16-6 (대봉동) 달구벌대로450길 16-6", - "district": "대구광역시 중구", - "latitude": 35.86127644033642, - "longitude": 128.60713054755325, - "representativePriceAmount": 4000, - "representativePriceLabel": "닭꼬치", + "address": "전북특별자치도 전주시 완산구 풍남문2길 39", + "district": "전북특별자치도 전주시", + "latitude": 35.8125817693067, + "longitude": 127.147152512312, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 닭꼬치 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-254-1553", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-288-4607", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "597e56444a8edbd0b616", - "label": "닭꼬치", - "amount": 4000, + "id": "429a300e8e475b4709d4", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "901440c19185c8c9a7fb", - "label": "염통꼬치(8pcs)", - "amount": 5500, + "id": "fd3c89c165e10ac4cf37", + "label": "손수제비", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "597e56444a8edbd0b616-history", - "label": "닭꼬치", - "amount": 4000, + "id": "429a300e8e475b4709d4-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "901440c19185c8c9a7fb-history", - "label": "염통꼬치(8pcs)", - "amount": 5500, + "id": "fd3c89c165e10ac4cf37-history", + "label": "손수제비", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16740,37 +15470,37 @@ "comments": [] }, { - "id": "goodprice-2234", - "name": "신신분식", - "businessName": "신신분식", - "categorySlug": "korean", - "address": "인천광역시 중구 자유공원로27번길 1 (내동)", - "district": "인천광역시 중구", - "latitude": 37.475111739177, - "longitude": 126.627848403961, - "representativePriceAmount": 5500, - "representativePriceLabel": "우동", + "id": "goodprice-4342", + "name": "박혜숙헤어", + "businessName": "박혜숙헤어", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 춘천로309번길 7 (후평동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8823136801827, + "longitude": 127.746727606313, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우동 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-762-0992 / 영업시간: 11:00~16:00 정기휴무(화요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-257-1360", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "86af0e63ff25026bf1be", - "label": "우동", - "amount": 5500, + "id": "edb4ef5364fd6bde14c4", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "86af0e63ff25026bf1be-history", - "label": "우동", - "amount": 5500, + "id": "edb4ef5364fd6bde14c4-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16778,51 +15508,51 @@ "comments": [] }, { - "id": "goodprice-2225", - "name": "신포대패", - "businessName": "신포대패", + "id": "goodprice-14096", + "name": "경리단578", + "businessName": "경리단578", "categorySlug": "korean", - "address": "인천광역시 중구 개항로 23 (관동3가)", - "district": "인천광역시 중구", - "latitude": 37.4719246800065, - "longitude": 126.625275097774, - "representativePriceAmount": 6000, - "representativePriceLabel": "신포대패(120g)", + "address": "서울특별시 용산구 녹사평대로 226 (이태원동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53781692227876, + "longitude": 126.98697115721664, + "representativePriceAmount": 10000, + "representativePriceLabel": "부대찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 신포대패(120g) 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-5237 / 영업시간: 16:00~01:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 부대찌개 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-798-6577", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3c524898e96b91558a54", - "label": "신포대패(120g)", - "amount": 6000, + "id": "3a54f343c8488b2ac5a9", + "label": "부대찌개", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "207a1dad1c0c2af09497", - "label": "냉동삼겹(120g)", - "amount": 6000, + "id": "19649f675811e698093f", + "label": "짜글이", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3c524898e96b91558a54-history", - "label": "신포대패(120g)", - "amount": 6000, + "id": "3a54f343c8488b2ac5a9-history", + "label": "부대찌개", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "207a1dad1c0c2af09497-history", - "label": "냉동삼겹(120g)", - "amount": 6000, + "id": "19649f675811e698093f-history", + "label": "짜글이", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16830,51 +15560,37 @@ "comments": [] }, { - "id": "goodprice-2235", - "name": "신포화로구이", - "businessName": "신포화로구이", - "categorySlug": "korean", - "address": "인천광역시 중구 신포로 27번길 16 (관동3가)", - "district": "인천광역시 중구", - "latitude": 37.4719823087487, - "longitude": 126.624610999499, - "representativePriceAmount": 7500, - "representativePriceLabel": "김치찌개", + "id": "goodprice-17926", + "name": "세븐미용실", + "businessName": "세븐미용실", + "categorySlug": "beauty", + "address": "서울특별시 강북구 삼양로38길 13 (미아동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.62115561793724, + "longitude": 127.02146533471753, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-777-0099 / 영업시간: 11:30~23:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-984-7306", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1425fa97eed209cdb448", - "label": "김치찌개", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c9773354e1b10224b0e1", - "label": "양푼비빔밥", - "amount": 7000, + "id": "62a66207b962e1fe78e4", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1425fa97eed209cdb448-history", - "label": "김치찌개", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c9773354e1b10224b0e1-history", - "label": "양푼비빔밥", - "amount": 7000, + "id": "62a66207b962e1fe78e4-history", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16882,37 +15598,37 @@ "comments": [] }, { - "id": "goodprice-2226", - "name": "신흥숯불갈비", - "businessName": "신흥숯불갈비", + "id": "goodprice-16971", + "name": "곰순이식당", + "businessName": "곰순이식당", "categorySlug": "korean", - "address": "인천광역시 중구 서해대로454번길 14-2 (선화동)", - "district": "인천광역시 중구", - "latitude": 37.4656929791796, - "longitude": 126.636120369468, - "representativePriceAmount": 10000, - "representativePriceLabel": "냉면", + "address": "전라남도 목포시 용당로216번길 21 (용당동) 곰순이식당", + "district": "전라남도 목포시", + "latitude": 34.80645255778166, + "longitude": 126.40056637892347, + "representativePriceAmount": 8000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-883-7717 / 영업시간: 10:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-279-4811", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4c4bb3eb690ec16c2d60", - "label": "냉면", - "amount": 10000, + "id": "42b2b68f744ccd902c28", + "label": "백반", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4c4bb3eb690ec16c2d60-history", - "label": "냉면", - "amount": 10000, + "id": "42b2b68f744ccd902c28-history", + "label": "백반", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -16920,107 +15636,155 @@ "comments": [] }, { - "id": "goodprice-2266", - "name": "밥s", - "businessName": "밥s", - "categorySlug": "korean", - "address": "광주광역시 동구 지산로 21 (지산동)", - "district": "광주광역시 동구", - "latitude": 35.1460563034625, - "longitude": 126.931121713111, - "representativePriceAmount": 4500, - "representativePriceLabel": "돈가스", + "id": "goodprice-7044", + "name": "남문이용원", + "businessName": "남문이용원", + "categorySlug": "barber", + "address": "제주특별자치도 제주시 남성로 125 (삼도일동)", + "district": "제주특별자치도 제주시", + "latitude": 33.5090975162483, + "longitude": 126.518756056763, + "representativePriceAmount": 10000, + "representativePriceLabel": "일반컷트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 4,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-222-2838 / 영업시간: 11:00-20:30 휴일 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 일반컷트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-757-5935 / 영업시간: 휴게시간 13:00에영업시작 13시0분에영업시작 화 08:00-18:00 12:00-13:00휴게시간 수 08:00-18:00 12:00-13:00휴게시간 목 08:00-18:00 12:00-13:00휴게시간 금 08:00-18:00 12:00-13:00휴게시간 토 08:00-18:00 12:00-13:00휴게시간 일 정기휴무(매주일요일) 월 08:00-18:00 12:00-13:00휴게시간", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6136b6929e51c959155d", - "label": "돈가스", - "amount": 4500, + "id": "34c2ead86073e84db27e", + "label": "일반컷트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d6867df1620da57623e0", - "label": "치즈돈가스", - "amount": 6000, + "id": "434879a5992bfb82139a", + "label": "학생컷트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a597f42336e5d96b7b20", - "label": "도리아(치킨 해물 김치 피자)", - "amount": 4500, + "id": "d1119eb47eff58f906c9", + "label": "컷 학생 컷트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "ef0be6f803895d3d6426", - "label": "돈까스", - "amount": 4500, + "id": "34c2ead86073e84db27e-history", + "label": "일반컷트", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "342f62f8f63391446790", - "label": "치즈돈까스", - "amount": 6000, + "id": "434879a5992bfb82139a-history", + "label": "학생컷트", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "a01cf777fefe2a904b13", - "label": "치킨·해물·김치·피자 도리아", - "amount": 4500, + "id": "d1119eb47eff58f906c9-history", + "label": "컷 학생 컷트", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" } ], - "history": [ + "comments": [] + }, + { + "id": "goodprice-16637", + "name": "기사식당(효창동짜장우동)", + "businessName": "기사식당(효창동짜장우동)", + "categorySlug": "chinese", + "address": "서울특별시 용산구 백범로 283 (효창동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53966141960287, + "longitude": 126.96086956384646, + "representativePriceAmount": 5000, + "representativePriceLabel": "짜장면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "용산구 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-703-5287 / 영업시간: 09:00~20:00(평일) 배달 불가능, 포장만 가능", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "6136b6929e51c959155d-history", - "label": "돈가스", - "amount": 4500, + "id": "a1cca8e5eea3fafd051e", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "d6867df1620da57623e0-history", - "label": "치즈돈가스", - "amount": 6000, + "id": "05db2fb8e226716927c9", + "label": "우동", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "a597f42336e5d96b7b20-history", - "label": "도리아(치킨 해물 김치 피자)", - "amount": 4500, + "id": "a1cca8e5eea3fafd051e-history", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ef0be6f803895d3d6426-history", - "label": "돈까스", - "amount": 4500, + "id": "05db2fb8e226716927c9-history", + "label": "우동", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-118", + "name": "송미용실", + "businessName": "송미용실", + "categorySlug": "beauty", + "address": "서울특별시 강북구 인수봉로78길 13 1층(수유동)", + "district": "서울특별시 강북구", + "latitude": 37.6446109094185, + "longitude": 127.011587606952, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-998-7775", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "342f62f8f63391446790-history", - "label": "치즈돈까스", - "amount": 6000, + "id": "f87f048b4374307c817f", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "a01cf777fefe2a904b13-history", - "label": "치킨·해물·김치·피자 도리아", - "amount": 4500, + "id": "f87f048b4374307c817f-history", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17028,65 +15792,65 @@ "comments": [] }, { - "id": "goodprice-10138", - "name": "삼미관", - "businessName": "삼미관", + "id": "goodprice-5616", + "name": "광양숯불갈비", + "businessName": "광양숯불갈비", "categorySlug": "korean", - "address": "광주광역시 동구 백서로189번길 14-32 (서석동)", - "district": "광주광역시 동구", - "latitude": 35.1458043478303, - "longitude": 126.924281394451, - "representativePriceAmount": 8000, - "representativePriceLabel": "간짜장", + "address": "전라남도 목포시 노적봉길 21 (죽동)", + "district": "전라남도 목포시", + "latitude": 34.7896123625075, + "longitude": 126.383187062276, + "representativePriceAmount": 7000, + "representativePriceLabel": "산채비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 간짜장 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-227-0391 / 영업시간: 월-토 11:00~15:00 휴무일 일요일, 공휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 산채비빔밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-5282 / 영업시간: 10:30-21:00 정기휴무(매주 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cfc2a6194cfcd3eb49bd", - "label": "간짜장", - "amount": 8000, + "id": "7e8251d3688b8403561f", + "label": "산채비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d96115f5ed37a3094072", - "label": "짬뽕", + "id": "51a14b61f19fcb09c99e", + "label": "냉면", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "890a2b70ed4f0a4afea8", - "label": "짜장", - "amount": 7000, + "id": "7b9a909e7b05c9fcd91a", + "label": "육개장", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "cfc2a6194cfcd3eb49bd-history", - "label": "간짜장", - "amount": 8000, + "id": "7e8251d3688b8403561f-history", + "label": "산채비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d96115f5ed37a3094072-history", - "label": "짬뽕", + "id": "51a14b61f19fcb09c99e-history", + "label": "냉면", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "890a2b70ed4f0a4afea8-history", - "label": "짜장", - "amount": 7000, + "id": "7b9a909e7b05c9fcd91a-history", + "label": "육개장", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17094,51 +15858,51 @@ "comments": [] }, { - "id": "goodprice-2530", - "name": "머리카락&피부샵", - "businessName": "머리카락&피부샵", + "id": "goodprice-2249", + "name": "주영미용실", + "businessName": "주영미용실", "categorySlug": "beauty", - "address": "대전광역시 동구 동서대로 1692번길 153 (성남동)", - "district": "대전광역시 동구", - "latitude": 36.3424896102607, - "longitude": 127.438366074824, - "representativePriceAmount": 8000, - "representativePriceLabel": "미용료(여자커트)", + "address": "광주광역시 동구 무등로375번길 27-1 1층(계림동)", + "district": "광주광역시 동구", + "latitude": 35.1630933471234, + "longitude": 126.924296217507, + "representativePriceAmount": 10000, + "representativePriceLabel": "성인남녀컷트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(여자커트) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00 ~ 20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 성인남녀컷트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-529-3184 / 영업시간: 09:30-18:00 휴무 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fcaeeb63d33b42d5a28b", - "label": "미용료(여자커트)", - "amount": 8000, + "id": "c4ea8ff6386742d45a3c", + "label": "성인남녀컷트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "810a84ac80c50de48b41", - "label": "커트(성인 일반)", - "amount": 7000, + "id": "04acd47e7859ddb088bc", + "label": "남녀커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fcaeeb63d33b42d5a28b-history", - "label": "미용료(여자커트)", - "amount": 8000, + "id": "c4ea8ff6386742d45a3c-history", + "label": "성인남녀컷트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "810a84ac80c50de48b41-history", - "label": "커트(성인 일반)", - "amount": 7000, + "id": "04acd47e7859ddb088bc-history", + "label": "남녀커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17146,93 +15910,51 @@ "comments": [] }, { - "id": "goodprice-16081", - "name": "메밀고개 시골막국수", - "businessName": "메밀고개 시골막국수", + "id": "goodprice-15301", + "name": "김정문숯불갈비", + "businessName": "김정문숯불갈비", "categorySlug": "korean", - "address": "대전광역시 동구 판교3길 3 (판암동) 메밀고개 시골막국수", - "district": "대전광역시 동구", - "latitude": 36.31841600671825, - "longitude": 127.45230275069078, - "representativePriceAmount": 6000, - "representativePriceLabel": "메밀만두", + "address": "서울특별시 용산구 장문로 98 (보광동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.52599742281353, + "longitude": 127.00038037049828, + "representativePriceAmount": 8000, + "representativePriceLabel": "된장찌게", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 메밀만두 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-274-7787 / 영업시간: 11:00~15:00 / 매주 월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌게 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-792-6088", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "97255311643d762b605b", - "label": "메밀만두", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "eeb9b4250141c8552383", - "label": "물막국수", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "88d4d07894265b8a6606", - "label": "비빔막국수", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5506f93d282204b45f93", - "label": "들깨수제비", - "amount": 9000, + "id": "de3fcb5bc3a2b78608d3", + "label": "된장찌게", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "343123752f9a077f538e", - "label": "수제왕돈까스", - "amount": 9000, + "id": "9ddd567afabf58c2c9b1", + "label": "김치찌게", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "97255311643d762b605b-history", - "label": "메밀만두", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "eeb9b4250141c8552383-history", - "label": "물막국수", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "88d4d07894265b8a6606-history", - "label": "비빔막국수", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5506f93d282204b45f93-history", - "label": "들깨수제비", - "amount": 9000, + "id": "de3fcb5bc3a2b78608d3-history", + "label": "된장찌게", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "343123752f9a077f538e-history", - "label": "수제왕돈까스", - "amount": 9000, + "id": "9ddd567afabf58c2c9b1-history", + "label": "김치찌게", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17240,163 +15962,155 @@ "comments": [] }, { - "id": "goodprice-16083", - "name": "명동만두", - "businessName": "명동만두", - "categorySlug": "korean", - "address": "대전광역시 동구 중앙로203번길 15 (중동) 약수식당", - "district": "대전광역시 동구", - "latitude": 36.331539175383156, - "longitude": 127.43111599831819, + "id": "goodprice-16479", + "name": "수경머리방", + "businessName": "수경머리방", + "categorySlug": "beauty", + "address": "서울특별시 강북구 도봉로49길 50 (미아동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.62469739941569, + "longitude": 127.0236964703264, "representativePriceAmount": 7000, - "representativePriceLabel": "비빔밥", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-256-0444 / 영업시간: 08:00~21:00 / 매주 일요일 정기 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-982-0204", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c50ae2d299a22b770fb6", - "label": "비빔밥", + "id": "d9972f41241d0d346616", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "d612c941b5afb28cbb55", - "label": "갈비탕", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "308a680d766079f9851c", - "label": "냉면", + "id": "d9972f41241d0d346616-history", + "label": "커트", "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-16974", + "name": "김밥나라(중앙병원점)", + "businessName": "김밥나라(중앙병원점)", + "categorySlug": "korean", + "address": "전라남도 목포시 텃골로13번길 32 (석현동) 상가동 104호", + "district": "전라남도 목포시", + "latitude": 34.82007683022403, + "longitude": 126.41976655741243, + "representativePriceAmount": 6000, + "representativePriceLabel": "김치찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-282-5888", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "311e61c2b9f273ffde5b", - "label": "콩나물국밥", + "id": "d23ffa7c560042eab671", + "label": "김치찌개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c8ea766fc76a33962432", - "label": "고기만두", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ac610a1e3a8e55b14c7d", - "label": "김치만두", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ece6a8e8eaa8524af341", - "label": "해물라면", + "id": "4e682284233580af54f8", + "label": "된장찌개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fb2169ecf96f3fbec687", - "label": "육개장", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4370c9fb015d10957f20", - "label": "손만두국", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "882daae7dceca67a1b86", - "label": "떡만두국", - "amount": 7000, + "id": "7e177f19c740209b565d", + "label": "순두부찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c50ae2d299a22b770fb6-history", - "label": "비빔밥", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d612c941b5afb28cbb55-history", - "label": "갈비탕", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "308a680d766079f9851c-history", - "label": "냉면", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "311e61c2b9f273ffde5b-history", - "label": "콩나물국밥", + "id": "d23ffa7c560042eab671-history", + "label": "김치찌개", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c8ea766fc76a33962432-history", - "label": "고기만두", - "amount": 5000, + "id": "4e682284233580af54f8-history", + "label": "된장찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ac610a1e3a8e55b14c7d-history", - "label": "김치만두", - "amount": 5000, + "id": "7e177f19c740209b565d-history", + "label": "순두부찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-2533", + "name": "송미용실", + "businessName": "송미용실", + "categorySlug": "beauty", + "address": "대전광역시 동구 산내로 1302 (낭월동) 103호", + "district": "대전광역시 동구", + "latitude": 36.27973981942758, + "longitude": 127.46857116346227, + "representativePriceAmount": 8000, + "representativePriceLabel": "미용료(커트)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-271-9443", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "ece6a8e8eaa8524af341-history", - "label": "해물라면", - "amount": 6000, + "id": "3c54f63516c32d1aa9b1", + "label": "미용료(커트)", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "fb2169ecf96f3fbec687-history", - "label": "육개장", - "amount": 9000, + "id": "14af74ec2d58b59c5e0d", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "4370c9fb015d10957f20-history", - "label": "손만두국", - "amount": 7000, + "id": "3c54f63516c32d1aa9b1-history", + "label": "미용료(커트)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "882daae7dceca67a1b86-history", - "label": "떡만두국", - "amount": 7000, + "id": "14af74ec2d58b59c5e0d-history", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17404,79 +16118,141 @@ "comments": [] }, { - "id": "goodprice-2545", - "name": "미가칼국수", - "businessName": "미가칼국수", + "id": "goodprice-15299", + "name": "대도식당", + "businessName": "대도식당", "categorySlug": "korean", - "address": "대전광역시 동구 백룡로 3 (자양동)", - "district": "대전광역시 동구", - "latitude": 36.3365141375393, - "longitude": 127.447715649929, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "address": "서울특별시 용산구 청파로93길 9 (서계동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.55426568003423, + "longitude": 126.96829602755408, + "representativePriceAmount": 8000, + "representativePriceLabel": "된장찌게", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-621-7533 / 영업시간: 11:00 ~ 15:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌게 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-704-2033", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a2fbf71b41db68773f98", - "label": "칼국수", - "amount": 6000, + "id": "cf1c628e985584161080", + "label": "된장찌게", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5678b4d0b4e5f8abb3e3", - "label": "수제비", - "amount": 7000, + "id": "8a6a6f95cb841a776357", + "label": "김치찌게", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "cf1c628e985584161080-history", + "label": "된장찌게", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" }, { - "id": "2361f79e49285ec49000", - "label": "양푼이 비빔밥", - "amount": 7000, + "id": "8a6a6f95cb841a776357-history", + "label": "김치찌게", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-19375", + "name": "아이시떼루 헤어클럽", + "businessName": "아이시떼루 헤어클럽", + "categorySlug": "beauty", + "address": "서울특별시 강북구 삼양로163나길 2 (우이동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.65874122780649, + "longitude": 127.012575141424, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "f8cfcf148953e283f06c", - "label": "칼제비", - "amount": 7000, + "id": "856d02add4efe9fa95dd", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a2fbf71b41db68773f98-history", - "label": "칼국수", - "amount": 6000, + "id": "856d02add4efe9fa95dd-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-18284", + "name": "김밥마트(용당점)", + "businessName": "김밥마트(용당점)", + "categorySlug": "korean", + "address": "전라남도 목포시 영산로 260 (용당동) 김밥마트", + "district": "전라남도 목포시", + "latitude": 34.803356100920574, + "longitude": 126.3947727037926, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-272-4288", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "5678b4d0b4e5f8abb3e3-history", - "label": "수제비", - "amount": 7000, + "id": "68579e82250a6cf772b0", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "2361f79e49285ec49000-history", - "label": "양푼이 비빔밥", - "amount": 7000, + "id": "5c2e1d6c901df49fef8f", + "label": "참치김밥", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "68579e82250a6cf772b0-history", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f8cfcf148953e283f06c-history", - "label": "칼제비", - "amount": 7000, + "id": "5c2e1d6c901df49fef8f-history", + "label": "참치김밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17484,51 +16260,37 @@ "comments": [] }, { - "id": "goodprice-2995", - "name": "엄마네뷔페", - "businessName": "엄마네뷔페", - "categorySlug": "korean", - "address": "울산광역시 중구 당산4길 22 (우정동)", - "district": "울산광역시 중구", - "latitude": 35.5537031836629, - "longitude": 129.310593372233, - "representativePriceAmount": 7000, - "representativePriceLabel": "정식", + "id": "goodprice-2524", + "name": "수정목욕탕", + "businessName": "수정목욕탕", + "categorySlug": "bath", + "address": "대전광역시 동구 비래서로62번길 103 (가양동)", + "district": "대전광역시 동구", + "latitude": 36.3498831171768, + "longitude": 127.449018725201, + "representativePriceAmount": 6000, + "representativePriceLabel": "목욕료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 정기휴무(매주 일요일 오후) 08:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕료 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-631-3660 / 영업시간: 05:00 ~ 18:00 매주 수요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b58d6aa93223736e0c1a", - "label": "정식", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "82e599b443c7424b8ca9", - "label": "삼겹살(120g)", - "amount": 9000, + "id": "2ea7a3724ebf058ee693", + "label": "목욕료", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b58d6aa93223736e0c1a-history", - "label": "정식", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "82e599b443c7424b8ca9-history", - "label": "삼겹살(120g)", - "amount": 9000, + "id": "2ea7a3724ebf058ee693-history", + "label": "목욕료", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17536,51 +16298,51 @@ "comments": [] }, { - "id": "goodprice-16557", - "name": "에뜨왈베이커리", - "businessName": "에뜨왈베이커리", - "categorySlug": "bakery", - "address": "울산광역시 중구 화합로 492-1 (복산동) 1층", - "district": "울산광역시 중구", - "latitude": 35.5679065905029, - "longitude": 129.33295718527037, - "representativePriceAmount": 1200, - "representativePriceLabel": "단팥빵", + "id": "goodprice-14107", + "name": "대포항", + "businessName": "대포항", + "categorySlug": "korean", + "address": "서울특별시 용산구 새창로 116-7 (용문동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53676666362042, + "longitude": 126.9602632225852, + "representativePriceAmount": 10000, + "representativePriceLabel": "삼치구이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵 1,200원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-227-8388 / 영업시간: 월~금 09:00~22:30 토 12:00~22:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼치구이 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3211-3272", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "78580876c5b89eb11ad0", - "label": "단팥빵", - "amount": 1200, + "id": "9204af92e97e05fe1329", + "label": "삼치구이", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "79c7ebef2540ba79e16b", - "label": "소보루빵", - "amount": 1200, + "id": "bb54a487a3e6be6084ac", + "label": "초밥", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "78580876c5b89eb11ad0-history", - "label": "단팥빵", - "amount": 1200, + "id": "9204af92e97e05fe1329-history", + "label": "삼치구이", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "79c7ebef2540ba79e16b-history", - "label": "소보루빵", - "amount": 1200, + "id": "bb54a487a3e6be6084ac-history", + "label": "초밥", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17588,37 +16350,37 @@ "comments": [] }, { - "id": "goodprice-11677", - "name": "옥교국밥", - "businessName": "옥교국밥", - "categorySlug": "korean", - "address": "울산광역시 중구 중앙시장길 2-5 (옥교동)", - "district": "울산광역시 중구", - "latitude": 35.5550846130913, - "longitude": 129.322138841423, - "representativePriceAmount": 9000, - "representativePriceLabel": "돼지국밥", + "id": "goodprice-112", + "name": "아쿠아산소사우나", + "businessName": "아쿠아산소사우나", + "categorySlug": "bath", + "address": "서울특별시 강북구 한천로 1131 지층", + "district": "서울특별시 강북구", + "latitude": 37.6454358502605, + "longitude": 127.018624497272, + "representativePriceAmount": 10000, + "representativePriceLabel": "목욕료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지국밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-245-1163", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕료 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-991-6388 / 영업시간: 05:00 ~ 09:00(여탕) 05:00 ` 10:00(남탕)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "aca3f745e94361f51d8f", - "label": "돼지국밥", - "amount": 9000, + "id": "61829364e53a7fdbed8e", + "label": "목욕료", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "aca3f745e94361f51d8f-history", - "label": "돼지국밥", - "amount": 9000, + "id": "61829364e53a7fdbed8e-history", + "label": "목욕료", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17626,51 +16388,65 @@ "comments": [] }, { - "id": "goodprice-2996", - "name": "유가냉면", - "businessName": "유가냉면", + "id": "goodprice-6368", + "name": "강가박가92", + "businessName": "강가박가92", "categorySlug": "korean", - "address": "울산광역시 중구 먹자거리 12 (성남동)", - "district": "울산광역시 중구", - "latitude": 35.5545078517398, - "longitude": 129.320075389132, - "representativePriceAmount": 9000, - "representativePriceLabel": "물냉면", + "address": "경상북도 포항시 남구 중앙로134번길 3 강가박가92", + "district": "경상북도 포항시", + "latitude": 36.025206265541, + "longitude": 129.368486584177, + "representativePriceAmount": 5000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물냉면 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-258-6696 / 영업시간: 11:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-281-7838 / 영업시간: 11시~19시", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d83cde0a7c9287fcab3d", - "label": "물냉면", - "amount": 9000, + "id": "2aa404cc20ad510569e3", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "568b249cfe73386e6316", - "label": "비빔냉면", - "amount": 9500, + "id": "0cf225164971f21fbb33", + "label": "칼국수", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "35b929c3bcfe01b8428e", + "label": "수제비", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d83cde0a7c9287fcab3d-history", - "label": "물냉면", - "amount": 9000, + "id": "2aa404cc20ad510569e3-history", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "568b249cfe73386e6316-history", - "label": "비빔냉면", - "amount": 9500, + "id": "0cf225164971f21fbb33-history", + "label": "칼국수", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "35b929c3bcfe01b8428e-history", + "label": "수제비", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17678,51 +16454,51 @@ "comments": [] }, { - "id": "goodprice-10183", - "name": "세종세탁 명품", - "businessName": "세종세탁 명품", - "categorySlug": "laundry", - "address": "세종특별자치시 만남로 190 상가 203호", - "district": "세종특별자치시 만남로", - "latitude": 36.5170635630589, - "longitude": 127.241017466402, - "representativePriceAmount": 10000, - "representativePriceLabel": "이불", + "id": "goodprice-18132", + "name": "슈퍼몽테마파크", + "businessName": "슈퍼몽테마파크", + "categorySlug": "other-service", + "address": "대전광역시 동구 석천로 8 (낭월동) 2층", + "district": "대전광역시 동구", + "latitude": 36.27670405471021, + "longitude": 127.46581697285043, + "representativePriceAmount": 5000, + "representativePriceLabel": "이용료(1시간)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 이불 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-2226", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 이용료(1시간) 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-271-1644 / 영업시간: 평일(수, 목, 금) 14:00 ~ 18:00 / 주말(공휴일) 11:00 ~ 18:00 매주 월요일, 화요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "16fca95d5bf03bc33bf6", - "label": "이불", - "amount": 10000, + "id": "6f48025fab16125a38f7", + "label": "이용료(1시간)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8cc85838e93e0a2893c1", - "label": "정장", - "amount": 7000, + "id": "91800c208dc8353779c7", + "label": "이용료(2시간)", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "16fca95d5bf03bc33bf6-history", - "label": "이불", - "amount": 10000, + "id": "6f48025fab16125a38f7-history", + "label": "이용료(1시간)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8cc85838e93e0a2893c1-history", - "label": "정장", - "amount": 7000, + "id": "91800c208dc8353779c7-history", + "label": "이용료(2시간)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17730,51 +16506,37 @@ "comments": [] }, { - "id": "goodprice-10168", - "name": "송덕이용원", - "businessName": "송덕이용원", - "categorySlug": "barber", - "address": "세종특별자치시 전동면 금이로 266", - "district": "세종특별자치시 전동면", - "latitude": 36.6302394683097, - "longitude": 127.260476864844, - "representativePriceAmount": 10000, - "representativePriceLabel": "조발", + "id": "goodprice-17212", + "name": "만나칼국수", + "businessName": "만나칼국수", + "categorySlug": "korean", + "address": "서울특별시 용산구 청파로49길 18 (청파동2가, 덕수빌라) 1층", + "district": "서울특별시 용산구", + "latitude": 37.54543174471915, + "longitude": 126.96936561673434, + "representativePriceAmount": 8000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 조발 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-1488", + "description": "용산구 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1497-5224 / 영업시간: 월요일~일요일 11:00~22:00 (브레이크타임 15:00~17:00) 매주 토요일(정기휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b65a37608da6a8e24445", - "label": "조발", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d1db79db0f0b7ce5cb75", - "label": "염색", - "amount": 10000, + "id": "6921fc4e5e487377a587", + "label": "칼국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b65a37608da6a8e24445-history", - "label": "조발", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d1db79db0f0b7ce5cb75-history", - "label": "염색", - "amount": 10000, + "id": "6921fc4e5e487377a587-history", + "label": "칼국수", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17782,37 +16544,37 @@ "comments": [] }, { - "id": "goodprice-10196", - "name": "스페이스", - "businessName": "스페이스", - "categorySlug": "western", - "address": "세종특별자치시 한누리대로 311 110호~111호", - "district": "세종특별자치시 한누리대로", - "latitude": 36.492070617908, - "longitude": 127.255836690696, - "representativePriceAmount": 9900, - "representativePriceLabel": "갈릭누들파스타", + "id": "goodprice-119", + "name": "주헤어필", + "businessName": "주헤어필", + "categorySlug": "beauty", + "address": "서울특별시 강북구 한천로144길 53 1층", + "district": "서울특별시 강북구", + "latitude": 37.6430854280736, + "longitude": 127.027119494487, + "representativePriceAmount": 6000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 갈릭누들파스타 9,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-863-1122", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-905-1588 / 영업시간: 09:00 ~ 18:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1fe89e56e0a7ce8d8911", - "label": "갈릭누들파스타", - "amount": 9900, + "id": "6ed9ec2583ad999ba562", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1fe89e56e0a7ce8d8911-history", - "label": "갈릭누들파스타", - "amount": 9900, + "id": "6ed9ec2583ad999ba562-history", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17820,51 +16582,65 @@ "comments": [] }, { - "id": "goodprice-10186", - "name": "시장감자탕", - "businessName": "시장감자탕", + "id": "goodprice-14874", + "name": "강변식당", + "businessName": "강변식당", "categorySlug": "korean", - "address": "세종특별자치시 조치원읍 조치원로 30-8 101호", - "district": "세종특별자치시 조치원읍", - "latitude": 36.6012589737358, - "longitude": 127.300019359062, - "representativePriceAmount": 7000, - "representativePriceLabel": "뼈해장국", + "address": "경상북도 포항시 북구 죽도로40번길 44-2 (죽도동) 강변식당", + "district": "경상북도 포항시", + "latitude": 36.02997134258029, + "longitude": 129.36267202809643, + "representativePriceAmount": 8000, + "representativePriceLabel": "정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-862-6513", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-272-8328", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2c8c36853a41b93faaaa", - "label": "뼈해장국", - "amount": 7000, + "id": "982cff70193b7ded5e8b", + "label": "정식", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d41544045b8a3d54de98", - "label": "콩나물해장국", - "amount": 6000, + "id": "43ada5360fbfb5898af8", + "label": "비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "72d036ac3ffd6bcacb88", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2c8c36853a41b93faaaa-history", - "label": "뼈해장국", - "amount": 7000, + "id": "982cff70193b7ded5e8b-history", + "label": "정식", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d41544045b8a3d54de98-history", - "label": "콩나물해장국", - "amount": 6000, + "id": "43ada5360fbfb5898af8-history", + "label": "비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "72d036ac3ffd6bcacb88-history", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17872,65 +16648,65 @@ "comments": [] }, { - "id": "goodprice-15882", - "name": "냉삼집", - "businessName": "냉삼집", - "categorySlug": "korean", - "address": "경기도 수원시 영통구 영통로214번길 9 (영통동) 106호", - "district": "경기도 수원시", - "latitude": 37.246578887390704, - "longitude": 127.05763865693096, - "representativePriceAmount": 9900, - "representativePriceLabel": "급랭삼겹살(200g)", + "id": "goodprice-16648", + "name": "백양세탁소", + "businessName": "백양세탁소", + "categorySlug": "laundry", + "address": "강원특별자치도 춘천시 춘천로 263-1 (후평동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8799279349072, + "longitude": 127.74265772378813, + "representativePriceAmount": 5000, + "representativePriceLabel": "양복상의", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 급랭삼겹살(200g) 9,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-206-3389", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복상의 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-252-6311 / 영업시간: 매일 09:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "18b4012f8a2dba791d3a", - "label": "급랭삼겹살(200g)", - "amount": 9900, + "id": "a7b23641d8a9cc56ad29", + "label": "양복상의", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "01954e678a6c4c9cccf3", - "label": "차돌된장찌개", - "amount": 5000, + "id": "2fb9d14f48673a5c9015", + "label": "양복하의", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a549238239c91339deba", - "label": "계란찜", - "amount": 3000, + "id": "349b2d08e465c0809d7a", + "label": "셔츠", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "18b4012f8a2dba791d3a-history", - "label": "급랭삼겹살(200g)", - "amount": 9900, + "id": "a7b23641d8a9cc56ad29-history", + "label": "양복상의", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "01954e678a6c4c9cccf3-history", - "label": "차돌된장찌개", - "amount": 5000, + "id": "2fb9d14f48673a5c9015-history", + "label": "양복하의", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a549238239c91339deba-history", - "label": "계란찜", - "amount": 3000, + "id": "349b2d08e465c0809d7a-history", + "label": "셔츠", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -17938,103 +16714,37 @@ "comments": [] }, { - "id": "goodprice-3419", - "name": "논골손칼국수", - "businessName": "논골손칼국수", + "id": "goodprice-16337", + "name": "맛사랑", + "businessName": "맛사랑", "categorySlug": "korean", - "address": "경기도 수원시 장안구 장안로75번길 52-2 102호(정자동)", - "district": "경기도 수원시", - "latitude": 37.2903281507546, - "longitude": 127.000141983781, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "address": "서울특별시 용산구 한강대로42길 5 (한강로2가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53083808140842, + "longitude": 126.97007202323455, + "representativePriceAmount": 10000, + "representativePriceLabel": "쭈꾸미 비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-252-9696 / 영업시간: 10:30~19:00 화요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 쭈꾸미 비빔밥 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-796-8778 / 영업시간: 평일 11:0021:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "069e23b5a12414009833", - "label": "칼국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9a547388375aa41f09b2", - "label": "만둣국", - "amount": 6000, + "id": "35b6f07be8e52650734e", + "label": "쭈꾸미 비빔밥", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "069e23b5a12414009833-history", - "label": "칼국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9a547388375aa41f09b2-history", - "label": "만둣국", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-17117", - "name": "늘하얀세탁소", - "businessName": "늘하얀세탁소", - "categorySlug": "laundry", - "address": "경기도 수원시 팔달구 화양로68번길 61 (화서동) 1층", - "district": "경기도 수원시", - "latitude": 37.28181847804219, - "longitude": 126.99725940969884, - "representativePriceAmount": 8000, - "representativePriceLabel": "드라이클리닝(신사복)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 드라이클리닝(신사복) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-242-5554 / 영업시간: 08:00~20:00 / 일요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "5d4f9b0d6264a9e79e8d", - "label": "드라이클리닝(신사복)", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4bc573741c3f7ac8b5a3", - "label": "수선료(바지밑단)", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "5d4f9b0d6264a9e79e8d-history", - "label": "드라이클리닝(신사복)", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4bc573741c3f7ac8b5a3-history", - "label": "수선료(바지밑단)", - "amount": 4000, + "id": "35b6f07be8e52650734e-history", + "label": "쭈꾸미 비빔밥", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18042,37 +16752,37 @@ "comments": [] }, { - "id": "goodprice-3401", - "name": "닛시헤어필", - "businessName": "닛시헤어필", + "id": "goodprice-16481", + "name": "착한가격머리방", + "businessName": "착한가격머리방", "categorySlug": "beauty", - "address": "경기도 수원시 장안구 파장로21번길 27 (송죽동)", - "district": "경기도 수원시", - "latitude": 37.3033791048968, - "longitude": 126.997399634911, - "representativePriceAmount": 8000, + "address": "서울특별시 강북구 삼양로27길 43 (미아동) 101호", + "district": "서울특별시 강북구", + "latitude": 37.618550452391496, + "longitude": 127.01884716618042, + "representativePriceAmount": 6000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-257-1411 / 영업시간: 10:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-986-1605", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5bb0af0ea18e2d562304", + "id": "8e4f8a7aa227dd9ff86f", "label": "커트", - "amount": 8000, + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5bb0af0ea18e2d562304-history", + "id": "8e4f8a7aa227dd9ff86f-history", "label": "커트", - "amount": 8000, + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18080,65 +16790,65 @@ "comments": [] }, { - "id": "goodprice-10313", - "name": "더밥", - "businessName": "더밥", + "id": "goodprice-18324", + "name": "개나리분식", + "businessName": "개나리분식", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 춘주로91번길 10 (온의동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.862555029709, - "longitude": 127.720541103243, - "representativePriceAmount": 8900, - "representativePriceLabel": "제육덮밥", + "address": "경상북도 포항시 남구 정몽주로879번길 8 (청림동) 개나리분식", + "district": "경상북도 포항시", + "latitude": 35.99320750163037, + "longitude": 129.40410586349998, + "representativePriceAmount": 7000, + "representativePriceLabel": "정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육덮밥 8,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-242-2178 / 영업시간: 10:00 - 20:00 라스트오더 19:30 * 배달주문시 8,900원", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-292-9136", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ad23a47aa3834388560e", - "label": "제육덮밥", - "amount": 8900, + "id": "b313422c175eef83653c", + "label": "정식", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "58b4291a3325e385af14", - "label": "오므라이스", - "amount": 8900, + "id": "5fb4bb2106ef744eed21", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4c424c21e47efc2f16a4", - "label": "불고기필라프", - "amount": 8900, + "id": "ef8eef3706fc890ab226", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ad23a47aa3834388560e-history", - "label": "제육덮밥", - "amount": 8900, + "id": "b313422c175eef83653c-history", + "label": "정식", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "58b4291a3325e385af14-history", - "label": "오므라이스", - "amount": 8900, + "id": "5fb4bb2106ef744eed21-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4c424c21e47efc2f16a4-history", - "label": "불고기필라프", - "amount": 8900, + "id": "ef8eef3706fc890ab226-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18146,37 +16856,65 @@ "comments": [] }, { - "id": "goodprice-4340", - "name": "동네미용실", - "businessName": "동네미용실", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 동내면 영서로 1747 1층", + "id": "goodprice-16651", + "name": "백조컴퓨터세탁", + "businessName": "백조컴퓨터세탁", + "categorySlug": "laundry", + "address": "강원특별자치도 춘천시 퇴계로146번길 12-1 (퇴계동)", "district": "강원특별자치도 춘천시", - "latitude": 37.8327701426154, - "longitude": 127.761293705291, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "latitude": 37.85855890084086, + "longitude": 127.73469966103542, + "representativePriceAmount": 5000, + "representativePriceLabel": "양복상의", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-3257 / 영업시간: 09:00 - 20:00 휴게시간 12:30 - 13:00 매주 월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복상의 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-261-8348", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "469044ccf4c96da0605b", - "label": "커트", - "amount": 10000, + "id": "145e5e2aff423a5b73ab", + "label": "양복상의", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "37291fd3ead059e4bbe5", + "label": "양복하의", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "66c61efa6c13d5079bba", + "label": "셔츠", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "469044ccf4c96da0605b-history", - "label": "커트", - "amount": 10000, + "id": "145e5e2aff423a5b73ab-history", + "label": "양복상의", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "37291fd3ead059e4bbe5-history", + "label": "양복하의", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "66c61efa6c13d5079bba-history", + "label": "셔츠", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18184,65 +16922,65 @@ "comments": [] }, { - "id": "goodprice-10310", - "name": "동이만두", - "businessName": "동이만두", + "id": "goodprice-892", + "name": "면마루", + "businessName": "면마루", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 효제길 36 (효자동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8709546627662, - "longitude": 127.737049930361, - "representativePriceAmount": 6000, - "representativePriceLabel": "김치찌개", + "address": "서울특별시 용산구 신흥로 86 2층", + "district": "서울특별시 용산구", + "latitude": 37.5456536557396, + "longitude": 126.985939031575, + "representativePriceAmount": 9000, + "representativePriceLabel": "물냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-3633 / 영업시간: 09:00 - 22:00 생방송투데이 3385회(23.09.22.)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물냉면 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-797-3449 / 영업시간: 10:00~22:00(1,3번째 화 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a6e1819c32fc48701a42", - "label": "김치찌개", - "amount": 6000, + "id": "91dfaf748533b6106646", + "label": "물냉면", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c54d01c1d180ca223f92", - "label": "잔치국수", - "amount": 5000, + "id": "3114400099d176fbc54b", + "label": "칼국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "42fc5b5d5b27fe50374f", + "id": "b6b5ae9fbee89d80da9e", "label": "제육볶음", - "amount": 7000, + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a6e1819c32fc48701a42-history", - "label": "김치찌개", - "amount": 6000, + "id": "91dfaf748533b6106646-history", + "label": "물냉면", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c54d01c1d180ca223f92-history", - "label": "잔치국수", - "amount": 5000, + "id": "3114400099d176fbc54b-history", + "label": "칼국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "42fc5b5d5b27fe50374f-history", + "id": "b6b5ae9fbee89d80da9e-history", "label": "제육볶음", - "amount": 7000, + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18250,51 +16988,51 @@ "comments": [] }, { - "id": "goodprice-15783", - "name": "꽃돼지댁", - "businessName": "꽃돼지댁", - "categorySlug": "korean", - "address": "충청북도 청주시 서원구 서원남로20번길 4 (모충동) 1층", - "district": "충청북도 청주시", - "latitude": 36.6220030068416, - "longitude": 127.48577351993595, - "representativePriceAmount": 10000, - "representativePriceLabel": "1인보쌈정식", + "id": "goodprice-121", + "name": "착한이발", + "businessName": "착한이발", + "categorySlug": "barber", + "address": "서울특별시 강북구 도봉로 371 지층", + "district": "서울특별시 강북구", + "latitude": 37.6404579904869, + "longitude": 127.027836761941, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 1인보쌈정식 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-295-3423", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-8866-2350 / 영업시간: 17:00에17시0분에 수 07:00-17:00 목 07:00-17:00 금 07:00-17:00 토 정기휴무(매주토요일) 일 07:00-17:00 월 07:00-17:00 화 07:00-17:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6de1595354bd39f2465d", - "label": "1인보쌈정식", - "amount": 10000, + "id": "317eafed98579b40364a", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e60fa561e099305d5765", - "label": "1인삼겹김치찜", - "amount": 10000, + "id": "4a833a3f19cc411f3e87", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6de1595354bd39f2465d-history", - "label": "1인보쌈정식", - "amount": 10000, + "id": "317eafed98579b40364a-history", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e60fa561e099305d5765-history", - "label": "1인삼겹김치찜", - "amount": 10000, + "id": "4a833a3f19cc411f3e87-history", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18302,79 +17040,75 @@ "comments": [] }, { - "id": "goodprice-4687", - "name": "나누리장터", - "businessName": "나누리장터", + "id": "goodprice-6380", + "name": "거성갈비살", + "businessName": "거성갈비살", "categorySlug": "korean", - "address": "충청북도 청주시 상당구 쇠내로 69-1 (금천동)", - "district": "충청북도 청주시", - "latitude": 36.6249932875208, - "longitude": 127.501521214447, - "representativePriceAmount": 4000, - "representativePriceLabel": "장터칼국수", + "address": "경상북도 포항시 남구 대해로 134 거성갈비살", + "district": "경상북도 포항시", + "latitude": 36.0193468713474, + "longitude": 129.365579165755, + "representativePriceAmount": 9000, + "representativePriceLabel": "정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장터칼국수 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 10:00-22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 09:00-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4b4d55156223430dbeae", - "label": "장터칼국수", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8f697746c32510a33280", - "label": "바지락칼국수", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9c615e2b212f3f1d8315", - "label": "떡만두국", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "71352ee06b7140a02e1a", - "label": "비빔국수", - "amount": 5000, + "id": "2efb5e0350c8f3879de6", + "label": "정식", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4b4d55156223430dbeae-history", - "label": "장터칼국수", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8f697746c32510a33280-history", - "label": "바지락칼국수", - "amount": 5000, + "id": "2efb5e0350c8f3879de6-history", + "label": "정식", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-4961", + "name": "루미너스헤어", + "businessName": "루미너스헤어", + "categorySlug": "beauty", + "address": "충청남도 천안시 서북구 서부12길12 (성정동)", + "district": "충청남도 천안시", + "latitude": 36.8207843702587, + "longitude": 127.137340027875, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-575-0727 / 영업시간: 10:00~18:00 정기휴무(2, 4째주 화요일)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "9c615e2b212f3f1d8315-history", - "label": "떡만두국", - "amount": 5000, + "id": "05c6a69e24e5a6d0b58a", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "71352ee06b7140a02e1a-history", - "label": "비빔국수", - "amount": 5000, + "id": "05c6a69e24e5a6d0b58a-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18382,51 +17116,37 @@ "comments": [] }, { - "id": "goodprice-4747", - "name": "나성불고기쌈밥", - "businessName": "나성불고기쌈밥", - "categorySlug": "korean", - "address": "충청북도 청주시 청원구 향군로 51 (우암동)", - "district": "충청북도 청주시", - "latitude": 36.6501623292297, - "longitude": 127.485399652549, - "representativePriceAmount": 6000, - "representativePriceLabel": "된장찌개", + "id": "goodprice-15743", + "name": "미스터 아메리카노", + "businessName": "미스터 아메리카노", + "categorySlug": "other-food", + "address": "서울특별시 용산구 백범로99길 46 (한강로1가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.536108089260864, + "longitude": 126.97202246968268, + "representativePriceAmount": 2500, + "representativePriceLabel": "아메리카노(테이크아웃만 가능)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-253-3511 / 영업시간: 매일 11:00~21:00 매주 일요일 정기휴무", + "description": "한강로동 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-7868-5557", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "420b234cc7df8cb5a739", - "label": "된장찌개", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3479badd86901c0c6ee0", - "label": "된장백반", - "amount": 5000, + "id": "818d4c45e945bc08a5f8", + "label": "아메리카노(테이크아웃만 가능)", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "420b234cc7df8cb5a739-history", - "label": "된장찌개", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3479badd86901c0c6ee0-history", - "label": "된장백반", - "amount": 5000, + "id": "818d4c45e945bc08a5f8-history", + "label": "아메리카노(테이크아웃만 가능)", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18434,37 +17154,37 @@ "comments": [] }, { - "id": "goodprice-4959", - "name": "남성커트오천", - "businessName": "남성커트오천", - "categorySlug": "barber", - "address": "충청남도 천안시 서북구 월봉로 66 (쌍용동)", - "district": "충청남도 천안시", - "latitude": 36.7964851683758, - "longitude": 127.118063685574, - "representativePriceAmount": 7000, + "id": "goodprice-122", + "name": "현정헤어샵", + "businessName": "현정헤어샵", + "categorySlug": "beauty", + "address": "서울특별시 강북구 삼양로87길 24 1층(수유동)", + "district": "서울특별시 강북구", + "latitude": 37.6356182388523, + "longitude": 127.01641698907, + "representativePriceAmount": 8000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00~18:00 정기휴무(매주 화, 수요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-905-2225", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "94f7f3c1fc4d8eb87add", + "id": "85a385d22996962a66bc", "label": "커트", - "amount": 7000, + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "94f7f3c1fc4d8eb87add-history", + "id": "85a385d22996962a66bc-history", "label": "커트", - "amount": 7000, + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18472,51 +17192,51 @@ "comments": [] }, { - "id": "goodprice-4911", - "name": "남성컷트오천냥클럽", - "businessName": "남성컷트오천냥클럽", - "categorySlug": "barber", - "address": "충청남도 천안시 동남구 서부대로 257-3 105호(신방동)", - "district": "충청남도 천안시", - "latitude": 36.7910983221181, - "longitude": 127.128572630944, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", + "id": "goodprice-6792", + "name": "고인돌", + "businessName": "고인돌", + "categorySlug": "korean", + "address": "경상남도 창원시 마산회원구 합성옛길 309 (합성동)", + "district": "경상남도 창원시", + "latitude": 35.2443031085876, + "longitude": 128.588528120564, + "representativePriceAmount": 10000, + "representativePriceLabel": "흑돼지삼겹살", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-572-5283 / 영업시간: 09:00~20:00 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 흑돼지삼겹살 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-297-9070", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f7a80cf023fef4fa1feb", - "label": "커트", - "amount": 7000, + "id": "280e999dd17edbc4526c", + "label": "흑돼지삼겹살", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5ec42106ff35d77d26ae", - "label": "커트(70세이상)", - "amount": 5000, + "id": "27ff3bd00c28f49bf118", + "label": "차돌박이", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f7a80cf023fef4fa1feb-history", - "label": "커트", - "amount": 7000, + "id": "280e999dd17edbc4526c-history", + "label": "흑돼지삼겹살", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5ec42106ff35d77d26ae-history", - "label": "커트(70세이상)", - "amount": 5000, + "id": "27ff3bd00c28f49bf118-history", + "label": "차돌박이", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18524,37 +17244,37 @@ "comments": [] }, { - "id": "goodprice-10392", - "name": "넘버원 남성컷트", - "businessName": "넘버원 남성컷트", + "id": "goodprice-4962", + "name": "머리못하는집", + "businessName": "머리못하는집", "categorySlug": "beauty", - "address": "충청남도 천안시 서북구 두정로 263 (두정동)", + "address": "충청남도 천안시 서북구 불당17길 14 (불당동)", "district": "충청남도 천안시", - "latitude": 36.8334141610709, - "longitude": 127.146148378172, - "representativePriceAmount": 7700, + "latitude": 36.8091043219242, + "longitude": 127.11029060282, + "representativePriceAmount": 10000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,700원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-904-1020 / 영업시간: 09:00~20:00 명절휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-551-9111 / 영업시간: 10:30~20:00 정기휴무(매주 목요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "05c7fe5e6f4f8a7d222d", + "id": "000796b9461ea31a16ce", "label": "커트", - "amount": 7700, + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "05c7fe5e6f4f8a7d222d-history", + "id": "000796b9461ea31a16ce-history", "label": "커트", - "amount": 7700, + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18562,79 +17282,65 @@ "comments": [] }, { - "id": "goodprice-13848", - "name": "백운면", - "businessName": "백운면", + "id": "goodprice-16969", + "name": "보광정 이태원점", + "businessName": "보광정 이태원점", "categorySlug": "korean", - "address": "전북특별자치도 전주시 덕진구 떡전4길 20-1 (금암동)", - "district": "전북특별자치도 전주시", - "latitude": 35.83744887478051, - "longitude": 127.12964026212448, - "representativePriceAmount": 5000, - "representativePriceLabel": "잔치국수", + "address": "서울특별시 용산구 보광로 118 (이태원동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53332632270216, + "longitude": 126.99454869716465, + "representativePriceAmount": 8000, + "representativePriceLabel": "찌게", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-277-1007 / 영업시간: 운영시간 - (월요일~금요일) 10:30~19:00(브레이크 타임 15:00-17:00) - (토요일) 10:30 ~ 15:00 - (일요일) 정기휴무", + "description": "용산구 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1466-9272 / 영업시간: 16:00~23:00 (월~목) 12:00~23:00 (금~일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "90b64341e16932244b5f", - "label": "잔치국수", - "amount": 5000, + "id": "cb68478193457a24e4f5", + "label": "찌게", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "db664707e014980b9248", + "id": "11f3b5150b5fa996cb8c", "label": "칼국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "32d52d173fa9d6123dac", - "label": "냉밀면", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "df7a134f1aae7fbe1873", - "label": "수제 돈가스", - "amount": 8500, + "id": "37c85f3d32a14c156e33", + "label": "갓김치말이국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "90b64341e16932244b5f-history", - "label": "잔치국수", - "amount": 5000, + "id": "cb68478193457a24e4f5-history", + "label": "찌게", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "db664707e014980b9248-history", + "id": "11f3b5150b5fa996cb8c-history", "label": "칼국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "32d52d173fa9d6123dac-history", - "label": "냉밀면", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "df7a134f1aae7fbe1873-history", - "label": "수제 돈가스", - "amount": 8500, + "id": "37c85f3d32a14c156e33-history", + "label": "갓김치말이국수", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18642,79 +17348,51 @@ "comments": [] }, { - "id": "goodprice-13852", - "name": "백운면아중점", - "businessName": "백운면아중점", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 덕진구 가재미로 38 (인후동1가) 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.82849083250596, - "longitude": 127.16271510485184, - "representativePriceAmount": 5900, - "representativePriceLabel": "잔치국수", + "id": "goodprice-441", + "name": "도깨비머리방", + "businessName": "도깨비머리방", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 방학로 6가길 76", + "district": "서울특별시 도봉구", + "latitude": 37.6659396262151, + "longitude": 127.040182640253, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-714-3877 / 영업시간: 운영시간 - (월요일~금요일) 10:30 ~ 19:30 (브레이크 타임 16:00 ~ 17:00) - (토요일) 10:30 ~ 16:00 - (일요일) 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-349-4724 / 영업시간: 일요일휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "83de07179908889b9467", - "label": "잔치국수", - "amount": 5900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4b284365460afdde05d3", - "label": "비빔국수", - "amount": 6900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a52909f7a40ecff6cbe2", - "label": "냉밀면", - "amount": 7900, + "id": "8ad5a4e482da3db932cd", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7906c42d32927271b18a", - "label": "등심돈가스", - "amount": 9000, + "id": "24010217e3b7ed91b8cd", + "label": "커트(경로우대)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "83de07179908889b9467-history", - "label": "잔치국수", - "amount": 5900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4b284365460afdde05d3-history", - "label": "비빔국수", - "amount": 6900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a52909f7a40ecff6cbe2-history", - "label": "냉밀면", - "amount": 7900, + "id": "8ad5a4e482da3db932cd-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7906c42d32927271b18a-history", - "label": "등심돈가스", - "amount": 9000, + "id": "24010217e3b7ed91b8cd-history", + "label": "커트(경로우대)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18722,51 +17400,65 @@ "comments": [] }, { - "id": "goodprice-5414", - "name": "빵굽는나라", - "businessName": "빵굽는나라", - "categorySlug": "bakery", - "address": "전북특별자치도 전주시 완산구 팔달로 263", - "district": "전북특별자치도 전주시", - "latitude": 35.8254765184598, - "longitude": 127.143901262223, - "representativePriceAmount": 1000, - "representativePriceLabel": "도너츠(2개)", + "id": "goodprice-6929", + "name": "곰내커피", + "businessName": "곰내커피", + "categorySlug": "other-food", + "address": "경상남도 창원시 진해구 웅천중로56번길 12-1 1,2층(성내동)", + "district": "경상남도 창원시", + "latitude": 35.1113597022546, + "longitude": 128.750465382937, + "representativePriceAmount": 2500, + "representativePriceLabel": "아메리카노(hot)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 도너츠(2개) 1,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-275-2974 / 영업시간: 매일 06:30-20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노(hot) 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-544-3040", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "66ed61b15f5a8ee71c89", - "label": "도너츠(2개)", - "amount": 1000, + "id": "465ae2659f21654d3d2f", + "label": "아메리카노(hot)", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3ae4644d7c0d6c7107d5", - "label": "크림빵(1개)", - "amount": 1000, + "id": "594e07abe92d3cfe5693", + "label": "생강차", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1cb4935685a044c98c94", + "label": "팥빙수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "66ed61b15f5a8ee71c89-history", - "label": "도너츠(2개)", - "amount": 1000, + "id": "465ae2659f21654d3d2f-history", + "label": "아메리카노(hot)", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3ae4644d7c0d6c7107d5-history", - "label": "크림빵(1개)", - "amount": 1000, + "id": "594e07abe92d3cfe5693-history", + "label": "생강차", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1cb4935685a044c98c94-history", + "label": "팥빙수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18774,79 +17466,65 @@ "comments": [] }, { - "id": "goodprice-5439", - "name": "서신정", - "businessName": "서신정", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 감나무4길 26", + "id": "goodprice-5401", + "name": "제일크리너스샵", + "businessName": "제일크리너스샵", + "categorySlug": "laundry", + "address": "전북특별자치도 전주시 덕진구 쪽구름로 37", "district": "전북특별자치도 전주시", - "latitude": 35.8317212468129, - "longitude": 127.119926240397, - "representativePriceAmount": 10000, - "representativePriceLabel": "고등어구이", + "latitude": 35.8686263475242, + "longitude": 127.077142048735, + "representativePriceAmount": 9000, + "representativePriceLabel": "양복(1벌)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고등어구이 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-277-3455 / 영업시간: 월~토 11:30-22:00 (휴일 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복(1벌) 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-211-2177 / 영업시간: 월~토 09:00-19:00 (일요일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "196ff6eb3521dc9ae697", - "label": "고등어구이", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0cb7ba9e444ed0953d46", - "label": "김치찌개", - "amount": 8000, + "id": "520f4becdbc8bdfbcfab", + "label": "양복(1벌)", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b9859c41ab517909c607", - "label": "제육볶음", - "amount": 9000, + "id": "ad600e3d70b05487b2e2", + "label": "바지", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "184639c8ba12d31afaa5", - "label": "이상배달)", - "amount": 8000, + "id": "20b6a3bb3f5d6a1aa793", + "label": "티셔츠", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "196ff6eb3521dc9ae697-history", - "label": "고등어구이", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0cb7ba9e444ed0953d46-history", - "label": "김치찌개", - "amount": 8000, + "id": "520f4becdbc8bdfbcfab-history", + "label": "양복(1벌)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b9859c41ab517909c607-history", - "label": "제육볶음", - "amount": 9000, + "id": "ad600e3d70b05487b2e2-history", + "label": "바지", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "184639c8ba12d31afaa5-history", - "label": "이상배달)", - "amount": 8000, + "id": "20b6a3bb3f5d6a1aa793-history", + "label": "티셔츠", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18854,37 +17532,51 @@ "comments": [] }, { - "id": "goodprice-15145", - "name": "복스짜장짬뽕(용해점)", - "businessName": "복스짜장짬뽕(용해점)", + "id": "goodprice-15741", + "name": "부자반점", + "businessName": "부자반점", "categorySlug": "chinese", - "address": "전라남도 목포시 대양로 111 (용해동) 복스짜장짬뽕(용해점)", - "district": "전라남도 목포시", - "latitude": 34.82166789677919, - "longitude": 126.39167301998671, - "representativePriceAmount": 6000, + "address": "서울특별시 용산구 한강대로 275-1 (갈월동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.542891074563585, + "longitude": 126.97213617564002, + "representativePriceAmount": 6500, "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-277-2737", + "description": "남영동 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-718-7889 / 영업시간: 09:00~21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "74ed96c6204d7d0b83d4", + "id": "23001a05e18a0dd87ac3", "label": "짜장면", - "amount": 6000, + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "dd18f5365954fde0e829", + "label": "볶음밥", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "74ed96c6204d7d0b83d4-history", + "id": "23001a05e18a0dd87ac3-history", "label": "짜장면", - "amount": 6000, + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "dd18f5365954fde0e829-history", + "label": "볶음밥", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -18892,317 +17584,409 @@ "comments": [] }, { - "id": "goodprice-5609", - "name": "삼국지", - "businessName": "삼국지", - "categorySlug": "chinese", - "address": "전라남도 목포시 하당남부로 108 (옥암동)", - "district": "전라남도 목포시", - "latitude": 34.8022264162699, - "longitude": 126.435217612049, - "representativePriceAmount": 6000, - "representativePriceLabel": "자장면", + "id": "goodprice-442", + "name": "마르떼헤어", + "businessName": "마르떼헤어", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 도봉로113길 38 (쌍문동)", + "district": "서울특별시 도봉구", + "latitude": 37.6485613480828, + "longitude": 127.032101770911, + "representativePriceAmount": 10000, + "representativePriceLabel": "여성커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-284-8775 / 영업시간: 11:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여성커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-990-6965 / 영업시간: 화요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "57287162157decfbdbb0", - "label": "자장면", - "amount": 6000, + "id": "1a8067a4d7f8241ee59f", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fe4abe27502504c8bfc8", - "label": "짬뽕", - "amount": 8000, + "id": "39ac642c9b33e2ad391c", + "label": "커트(여성)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d24db216cce9e743c5a9", - "label": "간짜장", - "amount": 8000, + "id": "c7c7615aa6a65157cb11", + "label": "컷 커트(학생)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "b19230bf31fea2b04293", - "label": "갈비탕", - "amount": 8000, + "id": "1a8067a4d7f8241ee59f-history", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "6fc8a9170233778ea26f", - "label": "곰탕", - "amount": 8000, + "id": "39ac642c9b33e2ad391c-history", + "label": "커트(여성)", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "fb7a7c646dedc7cd46b7", - "label": "떡국", - "amount": 8000, + "id": "c7c7615aa6a65157cb11-history", + "label": "컷 커트(학생)", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-10635", + "name": "감나무집", + "businessName": "감나무집", + "categorySlug": "korean", + "address": "제주특별자치도 제주시 오남로 12 1층", + "district": "제주특별자치도 제주시", + "latitude": 33.4941885992074, + "longitude": 126.519518313018, + "representativePriceAmount": 10000, + "representativePriceLabel": "흑돼지두루치기정식", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 흑돼지두루치기정식 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-722-8292", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "d120605263662b645376", - "label": "떡만두국", - "amount": 8000, + "id": "7750b8f548a954e5a228", + "label": "흑돼지두루치기정식", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "853f8bff341a805cf8d8", - "label": "만두국", - "amount": 8000, + "id": "db0dd97eb0a7a8d46fde", + "label": "돌솥갈비비빔밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4141f87ba20ccfe9c704", - "label": "볶음밥", + "id": "1dbcf01fec338b056cf1", + "label": "차돌국밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1abe81fd01dd40f081f0", - "label": "볶짜면", - "amount": 10000, + "id": "af7b6113e108f84d8545", + "label": "차돌된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "9e528a92b98409070588", - "label": "볶짬면", + "id": "7750b8f548a954e5a228-history", + "label": "흑돼지두루치기정식", "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e842af80c8cd359a3e71", - "label": "사이다 1.25mL", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "40d444c35e66a2e2a478", - "label": "사이다 500mL", - "amount": 2000, + "id": "db0dd97eb0a7a8d46fde-history", + "label": "돌솥갈비비빔밥", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "eac97474c7f60405023f", - "label": "삼선볶음밥", - "amount": 10000, + "id": "1dbcf01fec338b056cf1-history", + "label": "차돌국밥", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "e1fd30c04c47c76720ac", - "label": "새우볶음밥", - "amount": 10000, + "id": "af7b6113e108f84d8545-history", + "label": "차돌된장찌개", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-18212", + "name": "조선옥미용실", + "businessName": "조선옥미용실", + "categorySlug": "beauty", + "address": "전북특별자치도 전주시 완산구 완산길 105 (서완산동1가) 1층", + "district": "전북특별자치도 전주시", + "latitude": 35.81196716378034, + "longitude": 127.13938563394339, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트(학생)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(학생) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-288-1229 / 영업시간: 09:00~18:00 / 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "85f8a8dde7c5d1304f5c", - "label": "우동", + "id": "b13190ba426a02608a5a", + "label": "커트(학생)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6b8f18e08a7d5f1ccef9", - "label": "짜장면", - "amount": 6000, + "id": "f05107ce65a47b2a2999", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "fd7b8fa3652a77981a94", - "label": "짬뽕밥", + "id": "b13190ba426a02608a5a-history", + "label": "커트(학생)", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "364a90efac0606959c6f", - "label": "짬짜면", + "id": "f05107ce65a47b2a2999-history", + "label": "커트", "amount": 10000, "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-16334", + "name": "서리김밥", + "businessName": "서리김밥", + "categorySlug": "korean", + "address": "서울특별시 용산구 원효로 220 (원효로2가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53772931789348, + "longitude": 126.96635693270667, + "representativePriceAmount": 3000, + "representativePriceLabel": "서리김밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 서리김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-707-0936 / 영업시간: 평일07:00~19:30 토요일, 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "16a976514ba2b79d7006", + "label": "서리김밥", + "amount": 3000, + "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "594aa06e98144d5111fc", - "label": "콜라 1.25mL", - "amount": 3000, + "id": "974c7ad128a03748f1d5", + "label": "참치김밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4f23a7ba91747661dec6", - "label": "콜라 500mL", - "amount": 2000, + "id": "85c3c90827db3c673692", + "label": "치즈김밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "57287162157decfbdbb0-history", - "label": "자장면", - "amount": 6000, + "id": "16a976514ba2b79d7006-history", + "label": "서리김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fe4abe27502504c8bfc8-history", - "label": "짬뽕", - "amount": 8000, + "id": "974c7ad128a03748f1d5-history", + "label": "참치김밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d24db216cce9e743c5a9-history", - "label": "간짜장", - "amount": 8000, + "id": "85c3c90827db3c673692-history", + "label": "치즈김밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-10308", + "name": "머리깎자", + "businessName": "머리깎자", + "categorySlug": "barber", + "address": "서울특별시 도봉구 해등로243 (방학동)", + "district": "서울특별시 도봉구", + "latitude": 37.6576268981974, + "longitude": 127.029523602361, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "b19230bf31fea2b04293-history", - "label": "갈비탕", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6fc8a9170233778ea26f-history", - "label": "곰탕", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "fb7a7c646dedc7cd46b7-history", - "label": "떡국", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d120605263662b645376-history", - "label": "떡만두국", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "853f8bff341a805cf8d8-history", - "label": "만두국", - "amount": 8000, + "id": "2e0f0fd05543f8a87d93", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "4141f87ba20ccfe9c704-history", - "label": "볶음밥", - "amount": 8000, + "id": "2e0f0fd05543f8a87d93-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-7114", + "name": "강김밥집", + "businessName": "강김밥집", + "categorySlug": "korean", + "address": "제주특별자치도 제주시 애월읍 하귀9길 2 1층 114호", + "district": "제주특별자치도 제주시", + "latitude": 33.4864182898895, + "longitude": 126.414565502113, + "representativePriceAmount": 2900, + "representativePriceLabel": "강김밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 강김밥 2,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-711-5096 / 영업시간: 목 08:00-19:30 금 08:00-19:30 토 08:00-19:30 일 정기휴무(매주일요일) 월 08:00-19:30 화 08:00-19:30 수 08:00-19:30", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "1abe81fd01dd40f081f0-history", - "label": "볶짜면", - "amount": 10000, + "id": "dfe290287c15985bedb0", + "label": "강김밥", + "amount": 2900, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "9e528a92b98409070588-history", - "label": "볶짬면", - "amount": 10000, + "id": "1f2df78ffce0c8fbb025", + "label": "멸치김밥", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "e842af80c8cd359a3e71-history", - "label": "사이다 1.25mL", - "amount": 3000, + "id": "61b76b781caa4d861175", + "label": "우엉김밥", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "40d444c35e66a2e2a478-history", - "label": "사이다 500mL", - "amount": 2000, + "id": "c6a9b5a83d9d42a6764a", + "label": "치즈김밥", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "eac97474c7f60405023f-history", - "label": "삼선볶음밥", - "amount": 10000, + "id": "cfa78e45eb527f6a4d1d", + "label": "참치김밥", + "amount": 3500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "e1fd30c04c47c76720ac-history", - "label": "새우볶음밥", - "amount": 10000, + "id": "4f51358c063e8f336627", + "label": "진미김밥", + "amount": 3500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "85f8a8dde7c5d1304f5c-history", - "label": "우동", - "amount": 8000, + "id": "dfe290287c15985bedb0-history", + "label": "강김밥", + "amount": 2900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6b8f18e08a7d5f1ccef9-history", - "label": "짜장면", - "amount": 6000, + "id": "1f2df78ffce0c8fbb025-history", + "label": "멸치김밥", + "amount": 3800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fd7b8fa3652a77981a94-history", - "label": "짬뽕밥", - "amount": 8000, + "id": "61b76b781caa4d861175-history", + "label": "우엉김밥", + "amount": 3800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "364a90efac0606959c6f-history", - "label": "짬짜면", - "amount": 10000, + "id": "c6a9b5a83d9d42a6764a-history", + "label": "치즈김밥", + "amount": 3800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "594aa06e98144d5111fc-history", - "label": "콜라 1.25mL", - "amount": 3000, + "id": "cfa78e45eb527f6a4d1d-history", + "label": "참치김밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4f23a7ba91747661dec6-history", - "label": "콜라 500mL", - "amount": 2000, + "id": "4f51358c063e8f336627-history", + "label": "진미김밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19210,51 +17994,65 @@ "comments": [] }, { - "id": "goodprice-16968", - "name": "서울대중", - "businessName": "서울대중", - "categorySlug": "chinese", - "address": "전남 목포시 소영길 7 (용당동)", - "district": "전남 목포시", - "latitude": 34.8046888223113, - "longitude": 126.395998892103, - "representativePriceAmount": 6500, - "representativePriceLabel": "짜장", + "id": "goodprice-6324", + "name": "김육환 미용실", + "businessName": "김육환 미용실", + "categorySlug": "beauty", + "address": "경상북도 포항시 남구 대이로 14 김육환 미용실", + "district": "경상북도 포항시", + "latitude": 36.0170774969108, + "longitude": 129.343624477205, + "representativePriceAmount": 10000, + "representativePriceLabel": "여자커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-276-0242", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여자커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-281-7918 / 영업시간: 금 09:30-20:00 토 09:30-18:00 일 09:30-18:00 월 정기휴무(매주월요일) 화 09:30-20:00 수 09:30-20:00 목 09:30-20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "53c8884d0d49f2926e06", - "label": "짜장", - "amount": 6500, + "id": "d1a76f35b76a79296a1e", + "label": "여자커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a817a7a7e8612f8f9d44", - "label": "짬뽕", - "amount": 7000, + "id": "566bbc3ccb3aeeeed7dc", + "label": "남자커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6c37e8e82bfbdf79e03a", + "label": "학생커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "53c8884d0d49f2926e06-history", - "label": "짜장", - "amount": 6500, + "id": "d1a76f35b76a79296a1e-history", + "label": "여자커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a817a7a7e8612f8f9d44-history", - "label": "짬뽕", - "amount": 7000, + "id": "566bbc3ccb3aeeeed7dc-history", + "label": "남자커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6c37e8e82bfbdf79e03a-history", + "label": "학생커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19262,93 +18060,117 @@ "comments": [] }, { - "id": "goodprice-5617", - "name": "손가네분식", - "businessName": "손가네분식", + "id": "goodprice-14103", + "name": "소문난국수집", + "businessName": "소문난국수집", "categorySlug": "korean", - "address": "전라남도 목포시 남해로 8-1 (산정동)", - "district": "전라남도 목포시", - "latitude": 34.7900774150742, - "longitude": 126.396716006428, - "representativePriceAmount": 2500, - "representativePriceLabel": "김밥", + "address": "서울특별시 용산구 보광로 41 (보광동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.52776014147213, + "longitude": 126.99926795358544, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-3375", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-790-8494", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b487a8fb655a489dfc21", - "label": "김밥", - "amount": 2500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b1325fdcffcc471076f5", + "id": "925f0b5ece0da03f333e", "label": "칼국수", - "amount": 7000, + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0f5a593522f328cf3b1f", - "label": "팥죽", - "amount": 7000, + "id": "2dca1dfeea574e3d2e29", + "label": "우동", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "28989ea315f0d903d897", - "label": "동지죽", + "id": "e9e5a8a90d8ecc01e8a8", + "label": "열무냉면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "da43af9d0c2186fc2e6c", - "label": "팥칼국수", - "amount": 6000, + "id": "8ee07c8c0dd62d85156d", + "label": "쫄면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b487a8fb655a489dfc21-history", - "label": "김밥", - "amount": 2500, + "id": "925f0b5ece0da03f333e-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b1325fdcffcc471076f5-history", - "label": "칼국수", - "amount": 7000, + "id": "2dca1dfeea574e3d2e29-history", + "label": "우동", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0f5a593522f328cf3b1f-history", - "label": "팥죽", + "id": "e9e5a8a90d8ecc01e8a8-history", + "label": "열무냉면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "28989ea315f0d903d897-history", - "label": "동지죽", + "id": "8ee07c8c0dd62d85156d-history", + "label": "쫄면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-13395", + "name": "미용실 시현", + "businessName": "미용실 시현", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 덕릉로60바길 14 (창동, 성원하이츠) 1층", + "district": "서울특별시 도봉구", + "latitude": 37.63845652514259, + "longitude": 127.04112208231514, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "da43af9d0c2186fc2e6c-history", - "label": "팥칼국수", - "amount": 6000, + "id": "4da5b94c0079d9b9b928", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "4da5b94c0079d9b9b928-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19356,65 +18178,107 @@ "comments": [] }, { - "id": "goodprice-6374", - "name": "국수마을", - "businessName": "국수마을", + "id": "goodprice-7202", + "name": "고기서맛나(하몽이네)", + "businessName": "고기서맛나(하몽이네)", "categorySlug": "korean", - "address": "경상북도 포항시 남구 효자동5번길 10 나동 국수마을", - "district": "경상북도 포항시", - "latitude": 36.0078387636712, - "longitude": 129.329195759208, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "address": "제주특별자치도 제주시 중앙로21길 4 1층(이도일동)", + "district": "제주특별자치도 제주시", + "latitude": 33.5078471486649, + "longitude": 126.524747667261, + "representativePriceAmount": 5000, + "representativePriceLabel": "제주산 생뒷고기", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목 11:00-15:00 금 11:00-15:00 토 11:00-15:00 일(12/24) 정기휴무(매달2,4번째일요일) 월 11:00-15:00 화 11:00-15:00 수 11:00-15:00 매달2,4번째일요일정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제주산 생뒷고기 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1322-1011 / 영업시간: 매일 11:00-22:00 브레이크다임 15:00`17:00 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "452d6dd00d54ae1c3672", - "label": "칼국수", - "amount": 6000, + "id": "a0bbd0f2f8179f57b983", + "label": "제주산 생뒷고기", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0f7295146e6ba2933806", - "label": "잔치국수", + "id": "0a647ed4f4747f9a4c40", + "label": "흑돼지 제육백반", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "231fef98c1476ca30bb4", + "label": "추억의 냉동삼겹", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ff42ed3c643e620425fd", - "label": "김밥", - "amount": 3000, + "id": "80034990534affe1f1c4", + "label": "해물된장찌개", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6745f9907878d060dbf2", + "label": "흑돈 제육밴반", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "20f9c35838639a01c16f", + "label": "흑돈김치찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "452d6dd00d54ae1c3672-history", - "label": "칼국수", - "amount": 6000, + "id": "a0bbd0f2f8179f57b983-history", + "label": "제주산 생뒷고기", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0f7295146e6ba2933806-history", - "label": "잔치국수", + "id": "0a647ed4f4747f9a4c40-history", + "label": "흑돼지 제육백반", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "231fef98c1476ca30bb4-history", + "label": "추억의 냉동삼겹", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ff42ed3c643e620425fd-history", - "label": "김밥", - "amount": 3000, + "id": "80034990534affe1f1c4-history", + "label": "해물된장찌개", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6745f9907878d060dbf2-history", + "label": "흑돈 제육밴반", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "20f9c35838639a01c16f-history", + "label": "흑돈김치찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19422,51 +18286,89 @@ "comments": [] }, { - "id": "goodprice-14723", - "name": "국시묵자", - "businessName": "국시묵자", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 장기면 동해안로 3271-1 -", + "id": "goodprice-16134", + "name": "까꼬뽀꼬", + "businessName": "까꼬뽀꼬", + "categorySlug": "beauty", + "address": "경상북도 포항시 북구 흥해읍 동해대로1574번길 18 까꼬뽀꼬", "district": "경상북도 포항시", - "latitude": 35.87906957004322, - "longitude": 129.5171647482038, - "representativePriceAmount": 6000, - "representativePriceLabel": "잔치국수", + "latitude": 36.11248157816856, + "longitude": 129.34344079201517, + "representativePriceAmount": 10000, + "representativePriceLabel": "학생컷", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 학생컷 10,000원입니다.", "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "73e42d3d50ceb273e862", - "label": "잔치국수", - "amount": 6000, + "id": "ff224ada076d280d0e5f", + "label": "학생컷", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "ff224ada076d280d0e5f-history", + "label": "학생컷", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-17230", + "name": "손맛집", + "businessName": "손맛집", + "categorySlug": "korean", + "address": "서울특별시 용산구 원효로89길 13-3 (원효로1가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.54053570472628, + "longitude": 126.96815583996997, + "representativePriceAmount": 8000, + "representativePriceLabel": "된장찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "용산구 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-702-7677 / 영업시간: 월요일~금요일 10:00~20:30 토요일 10:00~16:00 일요일 (정기휴무)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "9e9b07359f5ccedf9665", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4751a8df9cf113cbf16a", - "label": "만두국", - "amount": 7000, + "id": "9d57154fcb45ac47a7fb", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "73e42d3d50ceb273e862-history", - "label": "잔치국수", - "amount": 6000, + "id": "9e9b07359f5ccedf9665-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4751a8df9cf113cbf16a-history", - "label": "만두국", - "amount": 7000, + "id": "9d57154fcb45ac47a7fb-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19474,33 +18376,33 @@ "comments": [] }, { - "id": "goodprice-10551", - "name": "굿맨", - "businessName": "굿맨", - "categorySlug": "barber", - "address": "경상북도 포항시 북구 아치로 57 상가동 101호 (우현동,화성아파트)", - "district": "경상북도 포항시", - "latitude": 36.0511457346007, - "longitude": 129.355698800567, + "id": "goodprice-444", + "name": "박연헤어", + "businessName": "박연헤어", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 도봉로136길111 103호(창동,창동2차현대아파트상가)", + "district": "서울특별시 도봉구", + "latitude": 37.6616434568955, + "longitude": 127.046380281378, "representativePriceAmount": 10000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-900-0838 / 영업시간: 월, 화, 수, 목, 금, 토 : 9:00~20:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4401410467336e218626", + "id": "e8fefffb62d5d13d7dac", "label": "커트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8b583938aa4f0b28ffdf", + "id": "0db3586e7271d5b32456", "label": "학생커트", "amount": 8000, "verificationStatus": "verified", @@ -19509,14 +18411,14 @@ ], "history": [ { - "id": "4401410467336e218626-history", + "id": "e8fefffb62d5d13d7dac-history", "label": "커트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8b583938aa4f0b28ffdf-history", + "id": "0db3586e7271d5b32456-history", "label": "학생커트", "amount": 8000, "verificationStatus": "verified", @@ -19526,27 +18428,34 @@ "comments": [] }, { - "id": "goodprice-16131", - "name": "권민선남성컷", - "businessName": "권민선남성컷", - "categorySlug": "beauty", - "address": "경상북도 포항시 남구 상공로221번길 28 (해도동) 권민선남성컷", - "district": "경상북도 포항시", - "latitude": 36.02519921582511, - "longitude": 129.3695250773602, + "id": "goodprice-19006", + "name": "남포설렁탕", + "businessName": "남포설렁탕", + "categorySlug": "korean", + "address": "부산광역시 중구 구덕로34번길 5 (남포동2가) 1층", + "district": "부산광역시 중구", + "latitude": 35.098466691867394, + "longitude": 129.03204192140768, "representativePriceAmount": 10000, - "representativePriceLabel": "컷트", + "representativePriceLabel": "설렁탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-277-4596", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 설렁탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-255-2263 / 영업시간: 00:00~24:00(24시간영업)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5423f6077055a604ab96", - "label": "컷트", + "id": "8728e87de7a398f79d78", + "label": "설렁탕", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d0fad082c41e37e8fcfa", + "label": "맑은양지탕", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -19554,8 +18463,15 @@ ], "history": [ { - "id": "5423f6077055a604ab96-history", - "label": "컷트", + "id": "8728e87de7a398f79d78-history", + "label": "설렁탕", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d0fad082c41e37e8fcfa-history", + "label": "맑은양지탕", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -19564,131 +18480,89 @@ "comments": [] }, { - "id": "goodprice-14472", - "name": "다래성", - "businessName": "다래성", - "categorySlug": "chinese", - "address": "경상남도 창원시 마산합포구 교방북2길 1 (교방동) 육일약국 인근", - "district": "경상남도 창원시", - "latitude": 35.2148898765735, - "longitude": 128.56421595996898, - "representativePriceAmount": 7000, - "representativePriceLabel": "짜장면", + "id": "goodprice-14064", + "name": "MHK정미용실", + "businessName": "MHK정미용실", + "categorySlug": "beauty", + "address": "대구광역시 동구 반야월로 134-1 (신기동) 동부프라자 나동", + "district": "대구광역시 동구", + "latitude": 35.87268975976554, + "longitude": 128.70304821144194, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-243-6166", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-2829-6158 / 영업시간: 만65세이상 고객 커트비 2,000원 할인", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e67d5f35a0c3bb2f806c", - "label": "짜장면", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a48c97e026d335178d18", - "label": "콩국수", + "id": "fcbf4c88a02705c97240", + "label": "커트", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "78e5b1f5be767c0c7f36", - "label": "간짜장", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "50f44674f1a284dabd19", - "label": "우동", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e67d5f35a0c3bb2f806c-history", - "label": "짜장면", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a48c97e026d335178d18-history", - "label": "콩국수", + "id": "fcbf4c88a02705c97240-history", + "label": "커트", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "78e5b1f5be767c0c7f36-history", - "label": "간짜장", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "50f44674f1a284dabd19-history", - "label": "우동", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-13714", - "name": "다래원", - "businessName": "다래원", - "categorySlug": "korean", - "address": "경상남도 창원시 성산구 신촌로 21 (신촌동) 지하 21호(신촌동, 유신종합상가)", - "district": "경상남도 창원시", - "latitude": 35.20756422962718, - "longitude": 128.62678091758497, - "representativePriceAmount": 7000, - "representativePriceLabel": "한식부페", + "id": "goodprice-17215", + "name": "시온", + "businessName": "시온", + "categorySlug": "other-food", + "address": "서울특별시 용산구 한강대로7길 13 (한강로3가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.524325920409254, + "longitude": 126.96211985401933, + "representativePriceAmount": 3300, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "소방파출소 뒷편 양곡교회 맞은편", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-261-1930", + "description": "용산구 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-792-4688 / 영업시간: 월요일~금요일 08:00~17:30 토요일, 일요일 12:00~17:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ffc5afe538ca686dd61c", - "label": "한식부페", - "amount": 7000, + "id": "1226cba03ec9cb91731c", + "label": "아메리카노", + "amount": 3300, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1bbaa75eba45137ca793", - "label": "된장찌개", - "amount": 8000, + "id": "0942ade3fe8785d6cbd2", + "label": "까페라떼", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ffc5afe538ca686dd61c-history", - "label": "한식부페", - "amount": 7000, + "id": "1226cba03ec9cb91731c-history", + "label": "아메리카노", + "amount": 3300, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1bbaa75eba45137ca793-history", - "label": "된장찌개", - "amount": 8000, + "id": "0942ade3fe8785d6cbd2-history", + "label": "까페라떼", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19696,51 +18570,51 @@ "comments": [] }, { - "id": "goodprice-13719", - "name": "다복식당", - "businessName": "다복식당", - "categorySlug": "korean", - "address": "경상남도 창원시 마산합포구 진동면 진북산업로 82 1층", - "district": "경상남도 창원시", - "latitude": 35.123393709489115, - "longitude": 128.4878116919056, - "representativePriceAmount": 6000, - "representativePriceLabel": "한식(뷔페)", + "id": "goodprice-13397", + "name": "뷰티헤어", + "businessName": "뷰티헤어", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 도봉로123길 14 (쌍문동)", + "district": "서울특별시 도봉구", + "latitude": 37.65283568517923, + "longitude": 127.03612055048983, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "방문접수/출장", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-271-7783 / 영업시간: 월 11:00 - 13:30 화 11:00 - 13:30 수 11:00 - 13:30 목 11:00 - 13:30 금 11:00 - 13:30 토 정기휴무 (매주 토요일) 일 정기휴무 (매주 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1da55d5cd13c4148d9f1", - "label": "한식(뷔페)", - "amount": 6000, + "id": "f31cd5562a251c0182c5", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "594b0b30c62c062e6c86", - "label": "도시락(배달)", - "amount": 6000, + "id": "df9f92c64a0ebf94f613", + "label": "커트(경로우대)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1da55d5cd13c4148d9f1-history", - "label": "한식(뷔페)", - "amount": 6000, + "id": "f31cd5562a251c0182c5-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "594b0b30c62c062e6c86-history", - "label": "도시락(배달)", - "amount": 6000, + "id": "df9f92c64a0ebf94f613-history", + "label": "커트(경로우대)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19748,64 +18622,92 @@ "comments": [] }, { - "id": "goodprice-6810", - "name": "다복한식부페", - "businessName": "다복한식부페", + "id": "goodprice-1648", + "name": "남포수제비", + "businessName": "남포수제비", "categorySlug": "korean", - "address": "경상남도 창원시 성산구 동산로65번길 33 (상남동)", - "district": "경상남도 창원시", - "latitude": 35.2170705144953, - "longitude": 128.684009304443, - "representativePriceAmount": 7000, - "representativePriceLabel": "뷔페 1인", + "address": "부산광역시 중구 광복로 49번길 7-1 (창선동)", + "district": "부산광역시 중구", + "latitude": 35.0998830313842, + "longitude": 129.030510175225, + "representativePriceAmount": 6500, + "representativePriceLabel": "충무김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뷔페 1인 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-282-1212", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 충무김밥 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-245-6821 / 영업시간: 영업시간 09:00 - 20:30 연중무휴", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4f504bded820354ee27f", - "label": "뷔페 1인", + "id": "03e6e57e0d54bc6f101d", + "label": "충무김밥", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fde52b8d69803118d518", + "label": "수제비", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "3affe8654f96b7c247e1", + "label": "비빔국수", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4f504bded820354ee27f-history", - "label": "뷔페 1인", + "id": "03e6e57e0d54bc6f101d-history", + "label": "충무김밥", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fde52b8d69803118d518-history", + "label": "수제비", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "3affe8654f96b7c247e1-history", + "label": "비빔국수", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-7201", - "name": "금천미용실", - "businessName": "금천미용실", - "categorySlug": "beauty", - "address": "제주특별자치도 제주시 중앙로23길 6 .", - "district": "제주특별자치도 제주시", - "latitude": 33.5069619652156, - "longitude": 126.525476490278, + "id": "goodprice-18695", + "name": "헤이맨남성컷", + "businessName": "헤이맨남성컷", + "categorySlug": "barber", + "address": "세종특별자치시 새롬북로 13 (새롬동, 새뜸마을4단지) 상가동 1층", + "district": "세종특별자치시 새롬북로", + "latitude": 36.48655065561284, + "longitude": 127.24647322838923, "representativePriceAmount": 10000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-758-9254", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-7004", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8b5bfa5646aa6ee0bc92", + "id": "df3e20780e2cd4f3edbc", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -19814,7 +18716,7 @@ ], "history": [ { - "id": "8b5bfa5646aa6ee0bc92-history", + "id": "df3e20780e2cd4f3edbc-history", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -19824,51 +18726,51 @@ "comments": [] }, { - "id": "goodprice-7019", - "name": "김녕빵집", - "businessName": "김녕빵집", - "categorySlug": "bakery", - "address": "제주특별자치도 제주시 구좌읍 김녕로1길 25 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.5559045926848, - "longitude": 126.747620056758, - "representativePriceAmount": 2100, - "representativePriceLabel": "소금버터빵", + "id": "goodprice-11577", + "name": "영광정육식당", + "businessName": "영광정육식당", + "categorySlug": "korean", + "address": "서울특별시 용산구 서빙고로91나길 104 1층", + "district": "서울특별시 용산구", + "latitude": 37.5252696495859, + "longitude": 126.996147660543, + "representativePriceAmount": 9000, + "representativePriceLabel": "곰탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 소금버터빵 2,100원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목 10:00-17:00 금 10:00-17:00 토 10:00-17:00 일 10:00-17:00 월 10:00-17:00 화 정기휴무(매주화요일) 수 정기휴무(매주수요일) --통로앞정차금지-", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 곰탕 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-798-2423", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5152fce2db5cc2d3fdb4", - "label": "소금버터빵", - "amount": 2100, + "id": "8a41e967500079d8288d", + "label": "곰탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0ac60737e39278293deb", - "label": "누룽지빵", - "amount": 2500, + "id": "ce56c56ca3f19ae03e0a", + "label": "청국장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5152fce2db5cc2d3fdb4-history", - "label": "소금버터빵", - "amount": 2100, + "id": "8a41e967500079d8288d-history", + "label": "곰탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0ac60737e39278293deb-history", - "label": "누룽지빵", - "amount": 2500, + "id": "ce56c56ca3f19ae03e0a-history", + "label": "청국장", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19876,51 +18778,51 @@ "comments": [] }, { - "id": "goodprice-15002", - "name": "스윗샐러드", - "businessName": "스윗샐러드", - "categorySlug": "korean", - "address": "서울특별시 종로구 종로1길 50 (중학동) 지하1층", - "district": "서울특별시 종로구", - "latitude": 37.57491239937121, - "longitude": 126.97896535083947, - "representativePriceAmount": 7900, - "representativePriceLabel": "버섯샐러드", + "id": "goodprice-11052", + "name": "블루커트", + "businessName": "블루커트", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 해등로255 101동131호(쌍문동,에벤에셀아파트상가)", + "district": "서울특별시 도봉구", + "latitude": 37.6573748589473, + "longitude": 127.028191786525, + "representativePriceAmount": 6000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "구운 계란, 푸실리, 오이 피클, 할라피뇨, 통밀빵 등 매일 매일 다른 재료의 무료 토핑을 제공하고 있습니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-733-3225 / 영업시간: 영업시간 : 11:00-20:00 (휴게시간 14:30-16:30) 휴무일 : 주말 및 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-998-6923", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c1db80d47fa5fe7f6e16", - "label": "버섯샐러드", - "amount": 7900, + "id": "5edb73ba7185644ae37f", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f8cf42ca1c9bda7426b0", - "label": "닭가슴살샐러드", - "amount": 8900, + "id": "fead00ae193c2098bd42", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c1db80d47fa5fe7f6e16-history", - "label": "버섯샐러드", - "amount": 7900, + "id": "5edb73ba7185644ae37f-history", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f8cf42ca1c9bda7426b0-history", - "label": "닭가슴살샐러드", - "amount": 8900, + "id": "fead00ae193c2098bd42-history", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19928,51 +18830,51 @@ "comments": [] }, { - "id": "goodprice-943", - "name": "약속커피숍", - "businessName": "약속커피숍", - "categorySlug": "other-food", - "address": "서울특별시 종로구 종로 302 (창신동)", - "district": "서울특별시 종로구", - "latitude": 37.5716332944196, - "longitude": 127.01140072111, - "representativePriceAmount": 2000, - "representativePriceLabel": "맥심커피", + "id": "goodprice-1649", + "name": "단골식당", + "businessName": "단골식당", + "categorySlug": "korean", + "address": "부산광역시 중구 동광길 193 (영주1동)", + "district": "부산광역시 중구", + "latitude": 35.1109965770514, + "longitude": 129.037200736899, + "representativePriceAmount": 8000, + "representativePriceLabel": "묵은지김치전골", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 맥심커피 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-764-1100", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 묵은지김치전골 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-441-8540 / 영업시간: 영업시간 09:00 - 21:00, ,일요일 휴무(예약시 일요일 가능)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "55f21ee37fad20742c81", - "label": "맥심커피", - "amount": 2000, + "id": "8484e82e12fccb4f630c", + "label": "묵은지김치전골", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "48f4faf835f12c5b1aca", - "label": "녹차", - "amount": 2000, + "id": "e19baca9d16c8f41a779", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "55f21ee37fad20742c81-history", - "label": "맥심커피", - "amount": 2000, + "id": "8484e82e12fccb4f630c-history", + "label": "묵은지김치전골", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "48f4faf835f12c5b1aca-history", - "label": "녹차", - "amount": 2000, + "id": "e19baca9d16c8f41a779-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -19980,37 +18882,37 @@ "comments": [] }, { - "id": "goodprice-947", - "name": "영미용실", - "businessName": "영미용실", + "id": "goodprice-14332", + "name": "렛츠헤어", + "businessName": "렛츠헤어", "categorySlug": "beauty", - "address": "서울특별시 종로구 지봉로 62 (숭인동)", - "district": "서울특별시 종로구", - "latitude": 37.5755618391963, - "longitude": 127.015850681862, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트", + "address": "경기도 수원시 권선구 권광로27번길 51 (권선동) 1층", + "district": "경기도 수원시", + "latitude": 37.251111070274, + "longitude": 127.02439282380257, + "representativePriceAmount": 10000, + "representativePriceLabel": "컷트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-743-6052 / 영업시간: 10:00~19:00(동네장사로 유동적)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bce0c66c28633940fff5", - "label": "커트", - "amount": 8000, + "id": "40f630d17b57cf4f217a", + "label": "컷트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bce0c66c28633940fff5-history", - "label": "커트", - "amount": 8000, + "id": "40f630d17b57cf4f217a-history", + "label": "컷트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20018,37 +18920,51 @@ "comments": [] }, { - "id": "goodprice-1655", - "name": "민아식당", - "businessName": "민아식당", - "categorySlug": "korean", - "address": "부산광역시 중구 충장대로9번길 21-1 (중앙동4가)", - "district": "부산광역시 중구", - "latitude": 35.107289725493, - "longitude": 129.037456085025, - "representativePriceAmount": 9000, - "representativePriceLabel": "따로국밥", + "id": "goodprice-16628", + "name": "와이브루", + "businessName": "와이브루", + "categorySlug": "other-food", + "address": "서울특별시 용산구 새창로45길 12 (신계동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53449127588085, + "longitude": 126.9630012638545, + "representativePriceAmount": 2000, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 따로국밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-462-1774 / 영업시간: 11:00 - 20:00 일요일,공휴일 휴일,", + "description": "용산구 착한가격업소(커피)", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 평일08:30~18:30 토,일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0286e90b72d575254680", - "label": "따로국밥", - "amount": 9000, + "id": "3d8ebc83a55ead420bba", + "label": "아메리카노", + "amount": 2000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "85eaaacbf10015467cc7", + "label": "라떼", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0286e90b72d575254680-history", - "label": "따로국밥", - "amount": 9000, + "id": "3d8ebc83a55ead420bba-history", + "label": "아메리카노", + "amount": 2000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "85eaaacbf10015467cc7-history", + "label": "라떼", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20056,65 +18972,51 @@ "comments": [] }, { - "id": "goodprice-1638", - "name": "석기시대", - "businessName": "석기시대", - "categorySlug": "chinese", - "address": "부산광역시 중구 동광길 75-1 1층(동광동5가)", - "district": "부산광역시 중구", - "latitude": 35.1061565412503, - "longitude": 129.034868484553, - "representativePriceAmount": 7000, - "representativePriceLabel": "만둣국", + "id": "goodprice-11002", + "name": "뽀빠이포토스튜디오원", + "businessName": "뽀빠이포토스튜디오원", + "categorySlug": "other-service", + "address": "서울특별시 도봉구 도당로13길50 (방학동)", + "district": "서울특별시 도봉구", + "latitude": 37.6667446350337, + "longitude": 127.034240206205, + "representativePriceAmount": 8000, + "representativePriceLabel": "사진촬영료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 만둣국 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월~토 15:00~22:00 매주 일요일 휴무 명절 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 사진촬영료 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-955-3795", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "90be9cfabbae89a06c59", - "label": "만둣국", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e6cd1311830e29811642", - "label": "찐만두", - "amount": 7000, + "id": "e885e3e0aac0699317d1", + "label": "사진촬영료", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "538c2922de55b1b33762", - "label": "군만두", - "amount": 7000, + "id": "2ef9988d5c5db6985c70", + "label": "사진인화료", + "amount": 350, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "90be9cfabbae89a06c59-history", - "label": "만둣국", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e6cd1311830e29811642-history", - "label": "찐만두", - "amount": 7000, + "id": "e885e3e0aac0699317d1-history", + "label": "사진촬영료", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "538c2922de55b1b33762-history", - "label": "군만두", - "amount": 7000, + "id": "2ef9988d5c5db6985c70-history", + "label": "사진인화료", + "amount": 350, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20122,79 +19024,79 @@ "comments": [] }, { - "id": "goodprice-17050", - "name": "양가손만두 부평직영점", - "businessName": "양가손만두 부평직영점", + "id": "goodprice-14626", + "name": "동인1번지", + "businessName": "동인1번지", "categorySlug": "korean", - "address": "부산광역시 중구 부평1길 48 (부평동2가) 1층", - "district": "부산광역시 중구", - "latitude": 35.101570977897914, - "longitude": 129.02602680604465, - "representativePriceAmount": 7000, - "representativePriceLabel": "고기찐만두", + "address": "대구광역시 중구 동덕로36길 78 (동인동4가) 동인1번지", + "district": "대구광역시 중구", + "latitude": 35.869513126099164, + "longitude": 128.6084875504821, + "representativePriceAmount": 8000, + "representativePriceLabel": "김치돼지찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고기찐만두 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-243-8436", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치돼지찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-257-6244", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c978c3f7c66a39ed66f1", - "label": "고기찐만두", - "amount": 7000, + "id": "029fcc538cd19a4303f8", + "label": "김치돼지찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ed9e210fd664e04181b3", - "label": "고기군만두", - "amount": 7000, + "id": "215670c21d5e5dee723f", + "label": "돼지갈비(200g)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bec52f4a97622533d877", - "label": "김치찐만두", - "amount": 7000, + "id": "d5c03fb6505aaae6f6c1", + "label": "차돌된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0ad6b287f0e5c6ade870", - "label": "김치군만두", - "amount": 7000, + "id": "346c055e61cbd40f18af", + "label": "국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c978c3f7c66a39ed66f1-history", - "label": "고기찐만두", - "amount": 7000, + "id": "029fcc538cd19a4303f8-history", + "label": "김치돼지찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ed9e210fd664e04181b3-history", - "label": "고기군만두", - "amount": 7000, + "id": "215670c21d5e5dee723f-history", + "label": "돼지갈비(200g)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bec52f4a97622533d877-history", - "label": "김치찐만두", - "amount": 7000, + "id": "d5c03fb6505aaae6f6c1-history", + "label": "차돌된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0ad6b287f0e5c6ade870-history", - "label": "김치군만두", - "amount": 7000, + "id": "346c055e61cbd40f18af-history", + "label": "국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20202,55 +19104,121 @@ "comments": [] }, { - "id": "goodprice-14625", - "name": "용정반점", - "businessName": "용정반점", - "categorySlug": "chinese", - "address": "대구광역시 중구 중앙대로 376-16 (덕산동) .", - "district": "대구광역시 중구", - "latitude": 35.8664000572041, - "longitude": 128.5943258541125, - "representativePriceAmount": 5500, - "representativePriceLabel": "쇠고기짜장면", + "id": "goodprice-4994", + "name": "문헤어갤러리", + "businessName": "문헤어갤러리", + "categorySlug": "beauty", + "address": "충청남도 천안시 서북구 미라14길 20 (쌍용동)", + "district": "충청남도 천안시", + "latitude": 36.8056741666016, + "longitude": 127.13015496868, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 쇠고기짜장면 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-423-8118 / 영업시간: 평일, 토요일 10:30 - 20:30 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-577-4466 / 영업시간: 10:00~19:00 정기휴무(매주 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0e7c9a64868c0096c327", - "label": "쇠고기짜장면", - "amount": 5500, + "id": "559bb2baa3c1272ef0e2", + "label": "커트", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "559bb2baa3c1272ef0e2-history", + "label": "커트", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-900", + "name": "용대박", + "businessName": "용대박", + "categorySlug": "korean", + "address": "서울특별시 용산구 원효로83길 13-5 102호", + "district": "서울특별시 용산구", + "latitude": 37.5400072571702, + "longitude": 126.967560569215, + "representativePriceAmount": 8000, + "representativePriceLabel": "순대국", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-718-8853 / 영업시간: (평일)07:00~21:00 (토) 07:00~13:00 (일) 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "d2dcfe7af8a36a7f75ed", + "label": "순대국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8300ade851bc19ca5f98", - "label": "짬뽕", - "amount": 6500, + "id": "503e076ff7c9cb5dc5a1", + "label": "비빔국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8df52d9b92a90956e057", - "label": "해물야끼우동", + "id": "9230b3d13400183b3959", + "label": "찌게백반", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1e169373da1a71dde8fd", + "label": "된장찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d6c0484c58d3e3efe401", + "label": "오징어볶음", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0cadf78055d29e8ca9a0", - "label": "우동", - "amount": 6500, + "id": "9b1d56d3d09a2ff143a3", + "label": "제육볶음", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3045c4408f6f80600d31", - "label": "볶음밥", + "id": "d02876707d2c7339441c", + "label": "찌개백반", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "745b1ec9087c509910a6", + "label": "청국장(2인)", + "amount": 1400, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "3bcdf10109df7d40eac6", + "label": "황태탕", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -20258,36 +19226,64 @@ ], "history": [ { - "id": "0e7c9a64868c0096c327-history", - "label": "쇠고기짜장면", - "amount": 5500, + "id": "d2dcfe7af8a36a7f75ed-history", + "label": "순대국", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8300ade851bc19ca5f98-history", - "label": "짬뽕", - "amount": 6500, + "id": "503e076ff7c9cb5dc5a1-history", + "label": "비빔국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8df52d9b92a90956e057-history", - "label": "해물야끼우동", + "id": "9230b3d13400183b3959-history", + "label": "찌게백반", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1e169373da1a71dde8fd-history", + "label": "된장찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d6c0484c58d3e3efe401-history", + "label": "오징어볶음", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0cadf78055d29e8ca9a0-history", - "label": "우동", - "amount": 6500, + "id": "9b1d56d3d09a2ff143a3-history", + "label": "제육볶음", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3045c4408f6f80600d31-history", - "label": "볶음밥", + "id": "d02876707d2c7339441c-history", + "label": "찌개백반", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "745b1ec9087c509910a6-history", + "label": "청국장(2인)", + "amount": 1400, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "3bcdf10109df7d40eac6-history", + "label": "황태탕", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -20296,65 +19292,117 @@ "comments": [] }, { - "id": "goodprice-2018", - "name": "우리할매칼국수", - "businessName": "우리할매칼국수", + "id": "goodprice-11053", + "name": "세나미용실", + "businessName": "세나미용실", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 덕릉로57길 22 (창동)", + "district": "서울특별시 도봉구", + "latitude": 37.6396869947247, + "longitude": 127.037375060198, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "7417be29a5483d3e2872", + "label": "커트", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "7417be29a5483d3e2872-history", + "label": "커트", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-17986", + "name": "동인식당", + "businessName": "동인식당", "categorySlug": "korean", - "address": "대구광역시 중구 남산로7길 44 (남산)", + "address": "대구광역시 중구 동덕로36길 130 (동인동4가) 동인동", "district": "대구광역시 중구", - "latitude": 35.8587866686385, - "longitude": 128.580391726297, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "latitude": 35.869224595714726, + "longitude": 128.6114387547134, + "representativePriceAmount": 7000, + "representativePriceLabel": "정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-255-8802 / 영업시간: 10:00~19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-423-9961", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c0d8462b59ebf338ce48", - "label": "칼국수", - "amount": 6000, + "id": "90263472c8212c00d06c", + "label": "정식", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3cff33a3dcec4f057d79", - "label": "칼제비", - "amount": 6000, + "id": "e96223a1bbac10ac34a1", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b180fd10b9b8d3b9ae3c", - "label": "손수제비", - "amount": 6000, + "id": "c06d1b159d3a0fcdeec5", + "label": "돼지국밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ffdf5286021df621990a", + "label": "순대국밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c0d8462b59ebf338ce48-history", - "label": "칼국수", - "amount": 6000, + "id": "90263472c8212c00d06c-history", + "label": "정식", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3cff33a3dcec4f057d79-history", - "label": "칼제비", - "amount": 6000, + "id": "e96223a1bbac10ac34a1-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b180fd10b9b8d3b9ae3c-history", - "label": "손수제비", - "amount": 6000, + "id": "c06d1b159d3a0fcdeec5-history", + "label": "돼지국밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ffdf5286021df621990a-history", + "label": "순대국밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20362,79 +19410,131 @@ "comments": [] }, { - "id": "goodprice-14950", - "name": "윤소인고단백장어죽", - "businessName": "윤소인고단백장어죽", - "categorySlug": "korean", - "address": "대구광역시 중구 동성로 19-11 (사일동) 1층", - "district": "대구광역시 중구", - "latitude": 35.86899504826444, - "longitude": 128.59462940407954, + "id": "goodprice-10501", + "name": "착한가격헤어", + "businessName": "착한가격헤어", + "categorySlug": "beauty", + "address": "전라남도 목포시 상리로9번길 22 1층(상동)", + "district": "전라남도 목포시", + "latitude": 34.8137466442366, + "longitude": 126.41499805728, "representativePriceAmount": 6000, - "representativePriceLabel": "김치찌개", + "representativePriceLabel": "커트(기본)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-255-7097 / 영업시간: 11:00 ~ 21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(기본) 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-278-1571", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2471f3f144f0f6387a08", - "label": "김치찌개", + "id": "c220e2977a20f26351e2", + "label": "커트(기본)", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "ce84d13c3048b2bbc70d", - "label": "된장찌개", + "id": "c220e2977a20f26351e2-history", + "label": "커트(기본)", "amount": 6000, "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-893", + "name": "용산풍천숯불민물장어", + "businessName": "용산풍천숯불민물장어", + "categorySlug": "korean", + "address": "서울특별시 용산구 한강대로39길 10 1층", + "district": "서울특별시 용산구", + "latitude": 37.5312479318758, + "longitude": 126.968986718823, + "representativePriceAmount": 5500, + "representativePriceLabel": "손칼국수", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-749-5905 / 영업시간: 11:00~22:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "86b7f4732343d678c57e", + "label": "손칼국수", + "amount": 5500, + "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3c1f90d4016c87ced9d1", - "label": "굴국밥", + "id": "a33a1a69d1b9945b1cb7", + "label": "손칼국수만두", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "609238e7a422027ccf25", - "label": "제육덮밥", - "amount": 6000, + "id": "4ca52bcd8c2478747efd", + "label": "멸치손칼국수", + "amount": 4900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4a3eb71280085cc9458d", + "label": "멸치손칼국수만두", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "eb02904d7f477d4e710f", + "label": "찐만두(고기)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2471f3f144f0f6387a08-history", - "label": "김치찌개", - "amount": 6000, + "id": "86b7f4732343d678c57e-history", + "label": "손칼국수", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ce84d13c3048b2bbc70d-history", - "label": "된장찌개", + "id": "a33a1a69d1b9945b1cb7-history", + "label": "손칼국수만두", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3c1f90d4016c87ced9d1-history", - "label": "굴국밥", - "amount": 6000, + "id": "4ca52bcd8c2478747efd-history", + "label": "멸치손칼국수", + "amount": 4900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "609238e7a422027ccf25-history", - "label": "제육덮밥", - "amount": 6000, + "id": "4a3eb71280085cc9458d-history", + "label": "멸치손칼국수만두", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "eb02904d7f477d4e710f-history", + "label": "찐만두(고기)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20442,37 +19542,37 @@ "comments": [] }, { - "id": "goodprice-14012", - "name": "옹진찰밥", - "businessName": "옹진찰밥", - "categorySlug": "korean", - "address": "인천광역시 중구 제물량로306번길 45 (북성동2가) 1층", - "district": "인천광역시 중구", - "latitude": 37.476757097944784, - "longitude": 126.61796394907029, - "representativePriceAmount": 8000, - "representativePriceLabel": "소라된장찌개", + "id": "goodprice-13396", + "name": "써니헤어", + "businessName": "써니헤어", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 도봉로150길 8 (방학동) 2층 201호", + "district": "서울특별시 도봉구", + "latitude": 37.66575627591173, + "longitude": 127.04363892994309, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소라된장찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-2773", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7dbdcb1584bc109479ab", - "label": "소라된장찌개", - "amount": 8000, + "id": "eff5759276eef37ed4fb", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7dbdcb1584bc109479ab-history", - "label": "소라된장찌개", - "amount": 8000, + "id": "eff5759276eef37ed4fb-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20480,51 +19580,65 @@ "comments": [] }, { - "id": "goodprice-13120", - "name": "우리두리머물다", - "businessName": "우리두리머물다", - "categorySlug": "other-food", - "address": "인천광역시 중구 제물량로166번길 5 (신생동) 1층", - "district": "인천광역시 중구", - "latitude": 37.47050706598982, - "longitude": 126.62550477060184, - "representativePriceAmount": 3000, - "representativePriceLabel": "미식혜(500ml)", + "id": "goodprice-14949", + "name": "만리장성", + "businessName": "만리장성", + "categorySlug": "chinese", + "address": "대구광역시 중구 공평로 95 (동문동) .", + "district": "대구광역시 중구", + "latitude": 35.87252613112093, + "longitude": 128.60076336835849, + "representativePriceAmount": 2000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 미식혜(500ml) 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1446-1503", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-2412 / 영업시간: 11:00 ~20:00 (일요일 : 정기휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7231553709d1149d394a", - "label": "미식혜(500ml)", - "amount": 3000, + "id": "4e9bece4bff507f8c909", + "label": "짜장면", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "64658319208128e9beb1", - "label": "박식혜(500ml)", - "amount": 3500, + "id": "d4df1afef8fa73d5b7b2", + "label": "짬뽕", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "65941241259b61e7d563", + "label": "미니탕수육", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7231553709d1149d394a-history", - "label": "미식혜(500ml)", - "amount": 3000, + "id": "4e9bece4bff507f8c909-history", + "label": "짜장면", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "64658319208128e9beb1-history", - "label": "박식혜(500ml)", - "amount": 3500, + "id": "d4df1afef8fa73d5b7b2-history", + "label": "짬뽕", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "65941241259b61e7d563-history", + "label": "미니탕수육", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20532,27 +19646,27 @@ "comments": [] }, { - "id": "goodprice-13187", - "name": "서림미용실", - "businessName": "서림미용실", + "id": "goodprice-11126", + "name": "하나둘미용실", + "businessName": "하나둘미용실", "categorySlug": "beauty", - "address": "광주광역시 동구 운림길 23 (운림동, 무등파크맨션) 상가동 202호", - "district": "광주광역시 동구", - "latitude": 35.13428906928481, - "longitude": 126.94139361034274, + "address": "전라남도 목포시 수강로 6 (수강동1가)", + "district": "전라남도 목포시", + "latitude": 34.7856055450319, + "longitude": 126.386018127697, "representativePriceAmount": 10000, - "representativePriceLabel": "커트(성인)", + "representativePriceLabel": "여성(일반)컷트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(성인) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-228-2909 / 영업시간: 09:00~21:00 / 일요일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여성(일반)컷트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-243-9098", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1e67da33ccc7748676cd", - "label": "커트(성인)", + "id": "a974478b8a1f35a99737", + "label": "여성(일반)컷트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -20560,8 +19674,8 @@ ], "history": [ { - "id": "1e67da33ccc7748676cd-history", - "label": "커트(성인)", + "id": "a974478b8a1f35a99737-history", + "label": "여성(일반)컷트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -20570,277 +19684,387 @@ "comments": [] }, { - "id": "goodprice-2284", - "name": "서석식당", - "businessName": "서석식당", - "categorySlug": "korean", - "address": "광주광역시 동구 백서로 171-3 1층(서석동)", - "district": "광주광역시 동구", - "latitude": 35.1438778671915, - "longitude": 126.92342010806, - "representativePriceAmount": 9000, - "representativePriceLabel": "낚지비빔밥", + "id": "goodprice-889", + "name": "원돈까스우동", + "businessName": "원돈까스우동", + "categorySlug": "japanese", + "address": "서울특별시 용산구 서빙고로65길 10 1층", + "district": "서울특별시 용산구", + "latitude": 37.5206387935546, + "longitude": 126.994548371044, + "representativePriceAmount": 7000, + "representativePriceLabel": "원우동", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 낚지비빔밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-9009 / 영업시간: 11:00-22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 원우동 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-797-9718 / 영업시간: (평일)11:00~20:00 (토) 11:00~14:00 (일) 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a3826046570543db133c", - "label": "낚지비빔밥", + "id": "46fc4db74c69ccf0d6e3", + "label": "원우동", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fd463d4cedab414d102f", + "label": "야채비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9999458086b4615aafe2", + "label": "돈까스+(우동/도시락)", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "770d6cdd5f8722c5e587", - "label": "낚지볶음밥", + "id": "5f0077f2c529d219c4f3", + "label": "계란덮밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fcb684515be9e7472a83", + "label": "김밥우동", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "63dd086bd93fe743e4cc", + "label": "김치 순두부", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "a3826046570543db133c-history", - "label": "낚지비빔밥", + "id": "f14d10973a95c0654bdb", + "label": "김치우동", "amount": 9000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "770d6cdd5f8722c5e587-history", - "label": "낚지볶음밥", + "id": "852be849eaf843d3ae5d", + "label": "날치알밥", "amount": 9000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2269", - "name": "수라상", - "businessName": "수라상", - "categorySlug": "korean", - "address": "광주광역시 동구 제봉로82번길 13-9 (동명동)", - "district": "광주광역시 동구", - "latitude": 35.1469059969152, - "longitude": 126.922577872694, - "representativePriceAmount": 7000, - "representativePriceLabel": "찌개(된장순두부청국장김치)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 찌개(된장순두부청국장김치) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-234-2002 / 영업시간: 11:00-21:00 휴무일 일요일, 새해첫날", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "5350144105790c5cad8f", - "label": "찌개(된장순두부청국장김치)", - "amount": 7000, + "id": "780d06740e1165206d3f", + "label": "돈까스도시락", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d953a623062d34e492fc", - "label": "돌솥(된장순두부청국장김치)", + "id": "7fdd1b3b50c9eb8662b7", + "label": "돈까스우동", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2375ddff47c791faee4e", - "label": "덮밥(낙지새우제육)", + "id": "a3fe9f8e07e7a3bd8efc", + "label": "떡떡만두국만두", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "acdfa50a95974d674ed6", + "label": "생선까스 도시락", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "7c7881221fcb5cf539b5", + "label": "생선까스 우동", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6d4799046b25249da442", + "label": "쇠고기 도시락", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "70e2b71af2d0f6afe465", + "label": "쇠고기덮밥", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d45ef674073f47ef7fe9", + "label": "어묵계란우동", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "87787b56273154c47c2f", - "label": "돌솥진지상", + "id": "494b74f1ab101a080a56", + "label": "어묵우동", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5dd8619529fbc6d99540", - "label": "막국수 (땅콩 알레르기 확인 요함)", - "amount": 7000, + "id": "6d992ebf92225238015d", + "label": "원 국수", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d3b22dc1e631054ed641", - "label": "생등심 돈가스(수제소스 따로 제공)", + "id": "8e84a337ed80b5439804", + "label": "원 냉모밀", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5275fc3b705d576604d8", + "label": "유부초밥우동", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6bb4349b4fc36f0d837c", + "label": "육개장", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5c60b45ec78810bfa2a9", + "label": "카레덮밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "70366d3f4c9d9f95cf53", - "label": "진지상(밥+정찬+찌개택일)", - "amount": 6000, + "id": "262710a83a7083e2798d", + "label": "카레돈까스", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "713afab5b764ec2e9fe7", + "label": "판모밀", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "71c24dd5155c869f8e03", + "label": "해물우동", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8966965a82db217b31b6", + "label": "회덮밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5350144105790c5cad8f-history", - "label": "찌개(된장순두부청국장김치)", + "id": "46fc4db74c69ccf0d6e3-history", + "label": "원우동", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d953a623062d34e492fc-history", - "label": "돌솥(된장순두부청국장김치)", + "id": "fd463d4cedab414d102f-history", + "label": "야채비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9999458086b4615aafe2-history", + "label": "돈까스+(우동/도시락)", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2375ddff47c791faee4e-history", - "label": "덮밥(낙지새우제육)", + "id": "5f0077f2c529d219c4f3-history", + "label": "계란덮밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "87787b56273154c47c2f-history", - "label": "돌솥진지상", + "id": "fcb684515be9e7472a83-history", + "label": "김밥우동", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5dd8619529fbc6d99540-history", - "label": "막국수 (땅콩 알레르기 확인 요함)", - "amount": 7000, + "id": "63dd086bd93fe743e4cc-history", + "label": "김치 순두부", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d3b22dc1e631054ed641-history", - "label": "생등심 돈가스(수제소스 따로 제공)", + "id": "f14d10973a95c0654bdb-history", + "label": "김치우동", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "852be849eaf843d3ae5d-history", + "label": "날치알밥", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "780d06740e1165206d3f-history", + "label": "돈까스도시락", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7fdd1b3b50c9eb8662b7-history", + "label": "돈까스우동", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a3fe9f8e07e7a3bd8efc-history", + "label": "떡떡만두국만두", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "acdfa50a95974d674ed6-history", + "label": "생선까스 도시락", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7c7881221fcb5cf539b5-history", + "label": "생선까스 우동", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6d4799046b25249da442-history", + "label": "쇠고기 도시락", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "70e2b71af2d0f6afe465-history", + "label": "쇠고기덮밥", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d45ef674073f47ef7fe9-history", + "label": "어묵계란우동", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "70366d3f4c9d9f95cf53-history", - "label": "진지상(밥+정찬+찌개택일)", - "amount": 6000, + "id": "494b74f1ab101a080a56-history", + "label": "어묵우동", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13185", - "name": "옥땡김밥", - "businessName": "옥땡김밥", - "categorySlug": "korean", - "address": "광주광역시 동구 무등로 503-1 (산수동) 1층", - "district": "광주광역시 동구", - "latitude": 35.15563375812957, - "longitude": 126.93466382911126, - "representativePriceAmount": 2500, - "representativePriceLabel": "김밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-263-0527 / 영업시간: 09:00~20:30(휴게시간 15:00~16:00)/ 일요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "d6eeb687685a0d61aff2", - "label": "김밥", - "amount": 2500, + "id": "6d992ebf92225238015d-history", + "label": "원 국수", + "amount": 8500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "d6eeb687685a0d61aff2-history", - "label": "김밥", - "amount": 2500, + "id": "8e84a337ed80b5439804-history", + "label": "원 냉모밀", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18131", - "name": "별이네 분식", - "businessName": "별이네 분식", - "categorySlug": "korean", - "address": "대전광역시 동구 비래서로42번길 70 (가양동) (가양동)", - "district": "대전광역시 동구", - "latitude": 36.3512336467034, - "longitude": 127.44731554696641, - "representativePriceAmount": 5000, - "representativePriceLabel": "잔치국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-673-7737", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "e8a8bfbad03b38e0d0c7", - "label": "잔치국수", - "amount": 5000, + "id": "5275fc3b705d576604d8-history", + "label": "유부초밥우동", + "amount": 8500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "75feb946aa8a51d9da9f", - "label": "비빔국수", - "amount": 6000, + "id": "6bb4349b4fc36f0d837c-history", + "label": "육개장", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "d0431dbd82ee2abe99ef", - "label": "라면", - "amount": 4000, + "id": "5c60b45ec78810bfa2a9-history", + "label": "카레덮밥", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "e8a8bfbad03b38e0d0c7-history", - "label": "잔치국수", - "amount": 5000, + "id": "262710a83a7083e2798d-history", + "label": "카레돈까스", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "75feb946aa8a51d9da9f-history", - "label": "비빔국수", - "amount": 6000, + "id": "713afab5b764ec2e9fe7-history", + "label": "판모밀", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d0431dbd82ee2abe99ef-history", - "label": "라면", - "amount": 4000, + "id": "71c24dd5155c869f8e03-history", + "label": "해물우동", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8966965a82db217b31b6-history", + "label": "회덮밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20848,27 +20072,34 @@ "comments": [] }, { - "id": "goodprice-2531", - "name": "복지이용원", - "businessName": "복지이용원", - "categorySlug": "barber", - "address": "대전광역시 동구 대전로 791번길 50 (중동)", - "district": "대전광역시 동구", - "latitude": 36.3295205271986, - "longitude": 127.430506838139, - "representativePriceAmount": 7000, - "representativePriceLabel": "이용료", + "id": "goodprice-452", + "name": "엄지헤어", + "businessName": "엄지헤어", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 우이천로4다길 13 (창동)", + "district": "서울특별시 도봉구", + "latitude": 37.634491387427, + "longitude": 127.040867210782, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-251-8428 / 영업시간: 08:00 ~ 20:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-902-4697 / 영업시간: 목 09:00-20:00 금 09:00-20:00 토 09:00-20:00 일 09:00-20:00 월 09:00-20:00 화 정기휴무(매주화요일) 수 09:00-20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c432d5594cb929b8bb38", - "label": "이용료", + "id": "c3a4f06d8f88774b1e04", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c9a7582bb2a7a2a22bdf", + "label": "커트(경로우대)", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -20876,8 +20107,15 @@ ], "history": [ { - "id": "c432d5594cb929b8bb38-history", - "label": "이용료", + "id": "c3a4f06d8f88774b1e04-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c9a7582bb2a7a2a22bdf-history", + "label": "커트(경로우대)", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -20886,89 +20124,93 @@ "comments": [] }, { - "id": "goodprice-16673", - "name": "자금성", - "businessName": "자금성", + "id": "goodprice-2012", + "name": "만리향반점", + "businessName": "만리향반점", "categorySlug": "chinese", - "address": "울산광역시 중구 구교9길 64 (반구동) 1층", - "district": "울산광역시 중구", - "latitude": 35.56321242205221, - "longitude": 129.3378786473305, - "representativePriceAmount": 5500, - "representativePriceLabel": "자장면", + "address": "대구광역시 중구 명덕로35길 112 (남산)", + "district": "대구광역시 중구", + "latitude": 35.8614534554198, + "longitude": 128.590364961693, + "representativePriceAmount": 6000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-292-2346 / 영업시간: 매일 11:00~20:00 15:00~17:00 브레이크타임", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-255-9380 / 영업시간: 11:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2c7c72bd25c0b980a4e4", - "label": "자장면", - "amount": 5500, + "id": "37f1b2a0603790c7a5ed", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "689c3d29289775d30c4f", + "id": "9472fb294a2cf5f4b93e", "label": "짬뽕", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "f9b470b9d8675c5ed72f", + "label": "볶음밥(기본)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a56fd77fcbbe8572e3b6", + "label": "우동", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1dc2c2aeadd1d877031e", + "label": "간짜장", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2c7c72bd25c0b980a4e4-history", - "label": "자장면", - "amount": 5500, + "id": "37f1b2a0603790c7a5ed-history", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "689c3d29289775d30c4f-history", + "id": "9472fb294a2cf5f4b93e-history", "label": "짬뽕", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2997", - "name": "장현돼지국밥", - "businessName": "장현돼지국밥", - "categorySlug": "korean", - "address": "울산광역시 중구 종가로 745 (장현동)", - "district": "울산광역시 중구", - "latitude": 35.5881230965409, - "longitude": 129.343478559476, - "representativePriceAmount": 8000, - "representativePriceLabel": "돼지국밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-293-0392 / 영업시간: 일~토 09:30~21:30 (매월 첫번째, 세번째 일요일 휴무)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "10e7b1d0e911f70ad0b2", - "label": "돼지국밥", - "amount": 8000, + "id": "f9b470b9d8675c5ed72f-history", + "label": "볶음밥(기본)", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "10e7b1d0e911f70ad0b2-history", - "label": "돼지국밥", - "amount": 8000, + "id": "a56fd77fcbbe8572e3b6-history", + "label": "우동", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1dc2c2aeadd1d877031e-history", + "label": "간짜장", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -20976,51 +20218,51 @@ "comments": [] }, { - "id": "goodprice-10188", - "name": "엉클생고기(보람동)", - "businessName": "엉클생고기(보람동)", - "categorySlug": "korean", - "address": "세종특별자치시 호려울로 29 207호", - "district": "세종특별자치시 호려울로", - "latitude": 36.4779099639115, - "longitude": 127.290238012216, + "id": "goodprice-6326", + "name": "나미화헤어클럽", + "businessName": "나미화헤어클럽", + "categorySlug": "beauty", + "address": "경상북도 포항시 남구 송도로 10-1", + "district": "경상북도 포항시", + "latitude": 36.0337446127344, + "longitude": 129.372175309483, "representativePriceAmount": 10000, - "representativePriceLabel": "파불고기+공기밥된장찌개(점심특선)", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 파불고기+공기밥된장찌개(점심특선) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-868-9242", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10시~17시 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2104446ec8c807edc2dd", - "label": "파불고기+공기밥된장찌개(점심특선)", + "id": "c7fd3d69efa5f351bde6", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "cd4aac34a2901cc7b548", - "label": "대패삼겹+공기밥된장찌개(점심특선)", - "amount": 10000, + "id": "70b1a689297c345d3cba", + "label": "기타 성인여자커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2104446ec8c807edc2dd-history", - "label": "파불고기+공기밥된장찌개(점심특선)", + "id": "c7fd3d69efa5f351bde6-history", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cd4aac34a2901cc7b548-history", - "label": "대패삼겹+공기밥된장찌개(점심특선)", - "amount": 10000, + "id": "70b1a689297c345d3cba-history", + "label": "기타 성인여자커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21028,34 +20270,41 @@ "comments": [] }, { - "id": "goodprice-10193", - "name": "엉클생고기(아름동)", - "businessName": "엉클생고기(아름동)", + "id": "goodprice-14102", + "name": "원조보리밥수제비", + "businessName": "원조보리밥수제비", "categorySlug": "korean", - "address": "세종특별자치시 보듬3로 100 209, 210호", - "district": "세종특별자치시 보듬3로", - "latitude": 36.5119529197334, - "longitude": 127.248623728597, - "representativePriceAmount": 10000, - "representativePriceLabel": "파불고기+공기밥된장찌개 점십특선", + "address": "서울특별시 용산구 이태원로14길 24 (이태원동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53327181801306, + "longitude": 126.99077102753624, + "representativePriceAmount": 9000, + "representativePriceLabel": "감자수제비", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 파불고기+공기밥된장찌개 점십특선 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-862-0267", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 감자수제비 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-798-4762", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6daf75385fb1f66fcb9d", - "label": "파불고기+공기밥된장찌개 점십특선", - "amount": 10000, + "id": "558a2cf0f78c81ca8f4b", + "label": "감자수제비", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6fcabe069347fa57e9ab", - "label": "대패삼겹+공기밥된장찌개 점심특선", + "id": "7d3962c91c2a56ef9436", + "label": "김치수제비", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c7f541b9bcaece8fa372", + "label": "원조비빔밥", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -21063,15 +20312,22 @@ ], "history": [ { - "id": "6daf75385fb1f66fcb9d-history", - "label": "파불고기+공기밥된장찌개 점십특선", - "amount": 10000, + "id": "558a2cf0f78c81ca8f4b-history", + "label": "감자수제비", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6fcabe069347fa57e9ab-history", - "label": "대패삼겹+공기밥된장찌개 점심특선", + "id": "7d3962c91c2a56ef9436-history", + "label": "김치수제비", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c7f541b9bcaece8fa372-history", + "label": "원조비빔밥", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -21080,75 +20336,37 @@ "comments": [] }, { - "id": "goodprice-3363", - "name": "당수여성사우나", - "businessName": "당수여성사우나", - "categorySlug": "bath", - "address": "경기도 수원시 권선구 당진로15번길 56 (당수동)", - "district": "경기도 수원시", - "latitude": 37.2920971102154, - "longitude": 126.938984343475, - "representativePriceAmount": 8000, - "representativePriceLabel": "목욕료", + "id": "goodprice-17010", + "name": "원헤어", + "businessName": "원헤어", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 도당로13가길 63-1 (방학동, 대광맨션) 1층", + "district": "서울특별시 도봉구", + "latitude": 37.66738840350434, + "longitude": 127.03821123582789, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕료 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-419-9042 / 영업시간: 06:00~18:00 (화요일 휴무)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "8af448a46d9a0e6142e2", - "label": "목욕료", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "8af448a46d9a0e6142e2-history", - "label": "목욕료", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-3428", - "name": "대복식당", - "businessName": "대복식당", - "categorySlug": "korean", - "address": "경기도 수원시 팔달구 매산로84-1 (매산로3가)", - "district": "경기도 수원시", - "latitude": 37.269844360739, - "longitude": 127.010370350622, - "representativePriceAmount": 6000, - "representativePriceLabel": "한식뷔페", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-238-2080 / 영업시간: 11:00~14:30 토요일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-2074-6160", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "af92146eb190832c13ad", - "label": "한식뷔페", - "amount": 6000, + "id": "39545fa22cb07c932fa3", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "af92146eb190832c13ad-history", - "label": "한식뷔페", - "amount": 6000, + "id": "39545fa22cb07c932fa3-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21156,65 +20374,65 @@ "comments": [] }, { - "id": "goodprice-11723", - "name": "뚝배기마을", - "businessName": "뚝배기마을", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 중앙로37-3 (중앙로1가)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8814765592669, - "longitude": 127.728258889089, - "representativePriceAmount": 7000, - "representativePriceLabel": "된장찌개", + "id": "goodprice-16953", + "name": "마카롱데이즈", + "businessName": "마카롱데이즈", + "categorySlug": "bakery", + "address": "인천광역시 중구 우현로35번길 13-2 (신생동) 1층", + "district": "인천광역시 중구", + "latitude": 37.47044194467634, + "longitude": 126.62613140213853, + "representativePriceAmount": 1700, + "representativePriceLabel": "다쿠마롱(10개 이상 주문시)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-5455 / 영업시간: 10:00 - 22:00 매월 두번째 화요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 다쿠마롱(10개 이상 주문시) 1,700원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1485-5016", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "95bd5df0eee7d02b94ca", - "label": "된장찌개", - "amount": 7000, + "id": "fda68ad7ef9a5d1829f4", + "label": "다쿠마롱(10개 이상 주문시)", + "amount": 1700, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2f9b89fbdb9232968278", - "label": "두부찌개", - "amount": 7000, + "id": "d2735f6b8409c638120b", + "label": "다쿠마롱(10개 이하 주문시)", + "amount": 1800, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "626cf3d2373cd9d98fcf", - "label": "제육덮밥", - "amount": 7000, + "id": "ef9665f9b336776fe277", + "label": "아메키라노", + "amount": 1900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "95bd5df0eee7d02b94ca-history", - "label": "된장찌개", - "amount": 7000, + "id": "fda68ad7ef9a5d1829f4-history", + "label": "다쿠마롱(10개 이상 주문시)", + "amount": 1700, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2f9b89fbdb9232968278-history", - "label": "두부찌개", - "amount": 7000, + "id": "d2735f6b8409c638120b-history", + "label": "다쿠마롱(10개 이하 주문시)", + "amount": 1800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "626cf3d2373cd9d98fcf-history", - "label": "제육덮밥", - "amount": 7000, + "id": "ef9665f9b336776fe277-history", + "label": "아메키라노", + "amount": 1900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21222,37 +20440,51 @@ "comments": [] }, { - "id": "goodprice-4381", - "name": "롯데자율식당", - "businessName": "롯데자율식당", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 공지로 387 지하층(약사동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8716410438521, - "longitude": 127.723885862381, - "representativePriceAmount": 8000, - "representativePriceLabel": "한식뷔페", + "id": "goodprice-7013", + "name": "다마내기", + "businessName": "다마내기", + "categorySlug": "other-service", + "address": "제주특별자치도 제주시 원노형로 26 202호 (서림빌딩)", + "district": "제주특별자치도 제주시", + "latitude": 33.4864471773391, + "longitude": 126.484759413813, + "representativePriceAmount": 1700, + "representativePriceLabel": "중대 10분", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1395-5955 / 영업시간: 11:00 - 22:00 브레이크타임 14:00 - 17:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 중대 10분 1,700원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-747-0618 / 영업시간: 목요일12:00-00:00 매일12:00-00:00 금요일12:00-00:00 토요일12:00-00:00 일요일12:00-00:00 월요일12:00-00:00 화요일12:00-00:00 수요일12:00-00:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a6437fe4621de3be5c08", - "label": "한식뷔페", - "amount": 8000, + "id": "bbff1e48933862c8375c", + "label": "중대 10분", + "amount": 1700, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "70efd2e12e5955def681", + "label": "기본 30분", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a6437fe4621de3be5c08-history", - "label": "한식뷔페", - "amount": 8000, + "id": "bbff1e48933862c8375c-history", + "label": "중대 10분", + "amount": 1700, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "70efd2e12e5955def681-history", + "label": "기본 30분", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21260,65 +20492,51 @@ "comments": [] }, { - "id": "goodprice-4356", - "name": "만리향", - "businessName": "만리향", - "categorySlug": "chinese", - "address": "강원특별자치도 춘천시 명동길29번길 4-5 (죽림동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8779879948066, - "longitude": 127.725893087544, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "id": "goodprice-16634", + "name": "원효로돈가스&어쩌다열게된소주집", + "businessName": "원효로돈가스&어쩌다열게된소주집", + "categorySlug": "korean", + "address": "서울특별시 용산구 백범로 323-1 (원효로1가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.538479463013985, + "longitude": 126.96500499893364, + "representativePriceAmount": 8000, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-251-2227 / 영업시간: 10:00 - 21:00 매주 일요일 정기휴무", + "description": "용산구 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-718-1695 / 영업시간: 11:00~20:00 (평일) 토.일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1a98c9d84453277c7b49", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5a7492b3f45a54a92fc5", - "label": "짬뽕", - "amount": 6000, + "id": "6efd58a0106ea07791f0", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "197d8b7c748cc1bdbb38", - "label": "탕수육(소)", - "amount": 9000, + "id": "35a8e1d8c0a1a5221e2a", + "label": "함박", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1a98c9d84453277c7b49-history", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5a7492b3f45a54a92fc5-history", - "label": "짬뽕", - "amount": 6000, + "id": "6efd58a0106ea07791f0-history", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "197d8b7c748cc1bdbb38-history", - "label": "탕수육(소)", - "amount": 9000, + "id": "35a8e1d8c0a1a5221e2a-history", + "label": "함박", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21326,26 +20544,26 @@ "comments": [] }, { - "id": "goodprice-16642", - "name": "머릿결사랑", - "businessName": "머릿결사랑", + "id": "goodprice-454", + "name": "이지헤어", + "businessName": "이지헤어", "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 칠전서길 15-2 (칠전동, 칠전대우2차아파트)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8403768426874, - "longitude": 127.71243175796782, + "address": "서울특별시 도봉구 도봉로130길 31 101호", + "district": "서울특별시 도봉구", + "latitude": 37.6542767410144, + "longitude": 127.040297497099, "representativePriceAmount": 10000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-8940", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목 09:00-21:00 금 09:00-21:00 토 09:00-21:00 일 정기휴무(매주일요일) 월 09:00-21:00 화 09:00-21:00 수 09:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6b29b4816f2de47b43e0", + "id": "e1b78c034321a7a2052b", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -21354,7 +20572,7 @@ ], "history": [ { - "id": "6b29b4816f2de47b43e0-history", + "id": "e1b78c034321a7a2052b-history", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -21364,65 +20582,51 @@ "comments": [] }, { - "id": "goodprice-16981", - "name": "남문갤러리카페", - "businessName": "남문갤러리카페", - "categorySlug": "other-food", - "address": "충청북도 청주시 상당구 무심동로336번길 105 (남문로2가) (남문로2가)", - "district": "충청북도 청주시", - "latitude": 36.63162469216909, - "longitude": 127.4888655463895, - "representativePriceAmount": 3000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-17145", + "name": "명동식당", + "businessName": "명동식당", + "categorySlug": "korean", + "address": "인천광역시 중구 답동로30번길 25 (경동) 1층", + "district": "인천광역시 중구", + "latitude": 37.47170701109189, + "longitude": 126.63290688540795, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1437-8606 / 영업시간: 10:30~18:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-5668", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "330cee2d9761628b1916", - "label": "아메리카노", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3f65828b1ecf0a5beff7", - "label": "쌍화차", - "amount": 5000, + "id": "b35d607374c66c1a3955", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6cf90869cb219a53e153", - "label": "대추차", - "amount": 4000, + "id": "efe3ff7f0f89be35e09b", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "330cee2d9761628b1916-history", - "label": "아메리카노", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3f65828b1ecf0a5beff7-history", - "label": "쌍화차", - "amount": 5000, + "id": "b35d607374c66c1a3955-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6cf90869cb219a53e153-history", - "label": "대추차", - "amount": 4000, + "id": "efe3ff7f0f89be35e09b-history", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21430,27 +20634,27 @@ "comments": [] }, { - "id": "goodprice-16070", - "name": "남원추어탕", - "businessName": "남원추어탕", - "categorySlug": "korean", - "address": "충청북도 청주시 흥덕구 풍산로25번길 38-1 (가경동)", - "district": "충청북도 청주시", - "latitude": 36.62809148912409, - "longitude": 127.43233008358878, + "id": "goodprice-18078", + "name": "다인헤어", + "businessName": "다인헤어", + "categorySlug": "beauty", + "address": "제주특별자치도 제주시 원노형로 9 (노형동) 다인헤어", + "district": "제주특별자치도 제주시", + "latitude": 33.487776208529105, + "longitude": 126.48422199658157, "representativePriceAmount": 10000, - "representativePriceLabel": "찰솥밥추어탕", + "representativePriceLabel": "컷트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 찰솥밥추어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-236-8959", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-744-9242", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "021df2059f7225ab8a06", - "label": "찰솥밥추어탕", + "id": "bc492fd6657fe1d9812e", + "label": "컷트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -21458,8 +20662,8 @@ ], "history": [ { - "id": "021df2059f7225ab8a06-history", - "label": "찰솥밥추어탕", + "id": "bc492fd6657fe1d9812e-history", + "label": "컷트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -21468,51 +20672,51 @@ "comments": [] }, { - "id": "goodprice-4938", - "name": "늑대골", - "businessName": "늑대골", - "categorySlug": "korean", - "address": "충청남도 천안시 동남구 풍세로696 (구룡동)", - "district": "충청남도 천안시", - "latitude": 36.7722721143035, - "longitude": 127.13808266914, - "representativePriceAmount": 8000, - "representativePriceLabel": "백반", + "id": "goodprice-16126", + "name": "인디에어", + "businessName": "인디에어", + "categorySlug": "other-food", + "address": "서울특별시 용산구 백범로 325 (원효로1가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53843282270516, + "longitude": 126.96524220023485, + "representativePriceAmount": 3000, + "representativePriceLabel": "아메리카노(테이크아웃만 가능)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-573-5122 / 영업시간: 06:00~21:00 (1월 1일, 명절 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노(테이크아웃만 가능) 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2420-9999 / 영업시간: 08:00~19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3fa9349df27c5538579e", - "label": "백반", - "amount": 8000, + "id": "873938e75c4ca043a218", + "label": "아메리카노(테이크아웃만 가능)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "50cff938a52d2265ce57", - "label": "김치찌개", - "amount": 9000, + "id": "aeef2200a075dc3370ef", + "label": "까페라떼(테이크아웃만 가능)", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3fa9349df27c5538579e-history", - "label": "백반", - "amount": 8000, + "id": "873938e75c4ca043a218-history", + "label": "아메리카노(테이크아웃만 가능)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "50cff938a52d2265ce57-history", - "label": "김치찌개", - "amount": 9000, + "id": "aeef2200a075dc3370ef-history", + "label": "까페라떼(테이크아웃만 가능)", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21520,51 +20724,51 @@ "comments": [] }, { - "id": "goodprice-19291", - "name": "단대로", - "businessName": "단대로", - "categorySlug": "korean", - "address": "충청남도 천안시 동남구 단대로 110 (신부동) 가동 1층", - "district": "충청남도 천안시", - "latitude": 36.83081336695418, - "longitude": 127.16257265306993, - "representativePriceAmount": 7000, - "representativePriceLabel": "삼겹살 200g", + "id": "goodprice-456", + "name": "착한이발관", + "businessName": "착한이발관", + "categorySlug": "barber", + "address": "서울특별시 도봉구 도당로27길 48 (방학동)", + "district": "서울특별시 도봉구", + "latitude": 37.6694936890142, + "longitude": 127.041067864224, + "representativePriceAmount": 6000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살 200g 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-562-7767", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목 08:00-20:00 금 08:00-20:00 토 08:00-20:00 일 08:00-20:00 월 정기휴무(매주월요일) 화 08:00-20:00 수 08:00-20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d2e578f8459eab215329", - "label": "삼겹살 200g", - "amount": 7000, + "id": "92c9978cc03b673f0aa8", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a23ac1036c2170b864f0", - "label": "육회비빔밥", - "amount": 8500, + "id": "ac920bce1c0c96b1c40c", + "label": "염색", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d2e578f8459eab215329-history", - "label": "삼겹살 200g", - "amount": 7000, + "id": "92c9978cc03b673f0aa8-history", + "label": "커트", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a23ac1036c2170b864f0-history", - "label": "육회비빔밥", - "amount": 8500, + "id": "ac920bce1c0c96b1c40c-history", + "label": "염색", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21572,183 +20776,187 @@ "comments": [] }, { - "id": "goodprice-18728", - "name": "달식당", - "businessName": "달식당", + "id": "goodprice-2259", + "name": "대왕김밥(학동)", + "businessName": "대왕김밥(학동)", "categorySlug": "korean", - "address": "충청남도 천안시 동남구 대흥로 215 (대흥동) 달식당", - "district": "충청남도 천안시", - "latitude": 36.80733781767005, - "longitude": 127.14715925093927, - "representativePriceAmount": 8000, - "representativePriceLabel": "냉모밀", + "address": "광주광역시 동구 남문로 671 (학동)", + "district": "광주광역시 동구", + "latitude": 35.1305985718859, + "longitude": 126.929101660948, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉모밀 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-557-2266", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-0868 / 영업시간: 08:00-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9f90dccd12569b91cb8e", - "label": "냉모밀", - "amount": 8000, + "id": "851421a095f615319405", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "9f90dccd12569b91cb8e-history", - "label": "냉모밀", + "id": "c8526a8c3e62e6648c5e", + "label": "라면", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "613a12f23ed5a9bd704e", + "label": "돈가스", "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5440", - "name": "섬진강백반", - "businessName": "섬진강백반", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 꽃밭정로 13", - "district": "전북특별자치도 전주시", - "latitude": 35.7967253851275, - "longitude": 127.134316971962, - "representativePriceAmount": 7000, - "representativePriceLabel": "김치찌개", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-226-6809", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "12651c5ef8497ca10a3e", - "label": "김치찌개", - "amount": 7000, + "id": "a1cf82a34512a7cb378f", + "label": "고추참치김밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "49c3b564da82a2eb6dd2", - "label": "동태찌개", - "amount": 7000, + "id": "e00fc6cfc4e33b152133", + "label": "김치김밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d998a5dcf42324a3c09f", - "label": "된장찌개", - "amount": 7000, + "id": "0340974e787b9db61d31", + "label": "대왕김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "204c0a52dffa26d2ae10", - "label": "돼지주물럭", - "amount": 8000, + "id": "1b6fe8cb891f0c813351", + "label": "참치김밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3d7950a3520b4fe5905b", - "label": "홍어찌개", - "amount": 10000, + "id": "328231d8905cd6930276", + "label": "치즈김밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "12651c5ef8497ca10a3e-history", - "label": "김치찌개", - "amount": 7000, + "id": "851421a095f615319405-history", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "49c3b564da82a2eb6dd2-history", - "label": "동태찌개", - "amount": 7000, + "id": "c8526a8c3e62e6648c5e-history", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d998a5dcf42324a3c09f-history", - "label": "된장찌개", - "amount": 7000, + "id": "613a12f23ed5a9bd704e-history", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "204c0a52dffa26d2ae10-history", - "label": "돼지주물럭", - "amount": 8000, + "id": "a1cf82a34512a7cb378f-history", + "label": "고추참치김밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3d7950a3520b4fe5905b-history", - "label": "홍어찌개", - "amount": 10000, + "id": "e00fc6cfc4e33b152133-history", + "label": "김치김밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5426", - "name": "세은이네집", - "businessName": "세은이네집", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 풍남문2길 42-3 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.8135584755908, - "longitude": 127.146849696525, - "representativePriceAmount": 7000, - "representativePriceLabel": "국수", + }, + { + "id": "0340974e787b9db61d31-history", + "label": "대왕김밥", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1b6fe8cb891f0c813351-history", + "label": "참치김밥", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "328231d8905cd6930276-history", + "label": "치즈김밥", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-1393", + "name": "777헤어샵", + "businessName": "777헤어샵", + "categorySlug": "beauty", + "address": "부산광역시 서구 자갈치로 8-1 (충무동1가)", + "district": "부산광역시 서구", + "latitude": 35.0961210951299, + "longitude": 129.025327657564, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트(남)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-283-3376 / 영업시간: 월~토 11:30-21:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(남) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-244-2430 / 영업시간: 09:30~19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ccb43b04b280416299e1", - "label": "국수", - "amount": 7000, + "id": "e5c4df49a26681b91ac8", + "label": "커트(남)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d76b59514e3afa9bbe1a", - "label": "보리비빔밥(계절 5월~)", - "amount": 8000, + "id": "4cd75aa50b1daf44eec0", + "label": "커트(여)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ccb43b04b280416299e1-history", - "label": "국수", - "amount": 7000, + "id": "e5c4df49a26681b91ac8-history", + "label": "커트(남)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d76b59514e3afa9bbe1a-history", - "label": "보리비빔밥(계절 5월~)", - "amount": 8000, + "id": "4cd75aa50b1daf44eec0-history", + "label": "커트(여)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21756,51 +20964,107 @@ "comments": [] }, { - "id": "goodprice-5415", - "name": "수제왕돈까스(경원점)", - "businessName": "수제왕돈까스(경원점)", - "categorySlug": "western", - "address": "전북특별자치도 전주시 완산구 충경로 84", - "district": "전북특별자치도 전주시", - "latitude": 35.8187713842813, - "longitude": 127.148157077333, - "representativePriceAmount": 7500, - "representativePriceLabel": "기본돈가스", + "id": "goodprice-902", + "name": "일공오삼겹살", + "businessName": "일공오삼겹살", + "categorySlug": "korean", + "address": "서울특별시 용산구 백범로87길 52 1층", + "district": "서울특별시 용산구", + "latitude": 37.5394589579514, + "longitude": 126.969434444107, + "representativePriceAmount": 8000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 기본돈가스 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-282-8855", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3273-0105 / 영업시간: 11:00~23:00 14:00~17:00 브레이크타임", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0e4bec155b3ae1f6125d", - "label": "기본돈가스", - "amount": 7500, + "id": "7364162d8cb7e2001d81", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0351515dcdbb5aec0b3f", - "label": "왕돈가스", - "amount": 9000, + "id": "a4d4c00fad90ea0dc8e0", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "53f27698147bdb340634", + "label": "순두부찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "addaebfc964178c4c9f7", + "label": "냉면", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d1b6ed5aceda40fbe8cf", + "label": "라면사리", + "amount": 1000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "452c6397aa51717ce6a4", + "label": "순두부", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0e4bec155b3ae1f6125d-history", - "label": "기본돈가스", - "amount": 7500, + "id": "7364162d8cb7e2001d81-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0351515dcdbb5aec0b3f-history", - "label": "왕돈가스", - "amount": 9000, + "id": "a4d4c00fad90ea0dc8e0-history", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "53f27698147bdb340634-history", + "label": "순두부찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "addaebfc964178c4c9f7-history", + "label": "냉면", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d1b6ed5aceda40fbe8cf-history", + "label": "라면사리", + "amount": 1000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "452c6397aa51717ce6a4-history", + "label": "순두부", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21808,51 +21072,51 @@ "comments": [] }, { - "id": "goodprice-5442", - "name": "신뱅이", - "businessName": "신뱅이", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 경기전길 153-9", - "district": "전북특별자치도 전주시", - "latitude": 35.8126362604144, - "longitude": 127.151819419275, - "representativePriceAmount": 8000, - "representativePriceLabel": "야채비빔밥", + "id": "goodprice-17011", + "name": "쿨헤어", + "businessName": "쿨헤어", + "categorySlug": "barber", + "address": "서울특별시 도봉구 해등로 48 (창동)", + "district": "서울특별시 도봉구", + "latitude": 37.6485969579426, + "longitude": 127.04372099622822, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 야채비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-282-3030", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-903-4760", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d5e3cea80692f71b5659", - "label": "야채비빔밥", - "amount": 8000, + "id": "984f4699669e8b7524f7", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4046713fac44337dc9ce", - "label": "알비빔밥", - "amount": 10000, + "id": "ad56dd4b50e2b3c63e32", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d5e3cea80692f71b5659-history", - "label": "야채비빔밥", - "amount": 8000, + "id": "984f4699669e8b7524f7-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4046713fac44337dc9ce-history", - "label": "알비빔밥", - "amount": 10000, + "id": "ad56dd4b50e2b3c63e32-history", + "label": "염색", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21860,65 +21124,79 @@ "comments": [] }, { - "id": "goodprice-11789", - "name": "시골집 순두부(연산)", - "businessName": "시골집 순두부(연산)", + "id": "goodprice-15363", + "name": "대접", + "businessName": "대접", "categorySlug": "korean", - "address": "전라남도 목포시 연산로 140 (연산동)", - "district": "전라남도 목포시", - "latitude": 34.8096541758217, - "longitude": 126.3815570128, - "representativePriceAmount": 9000, - "representativePriceLabel": "순두부", + "address": "광주광역시 동구 서석로85번길 8-7 (대의동) 1층", + "district": "광주광역시 동구", + "latitude": 35.150050907279855, + "longitude": 126.9203188050476, + "representativePriceAmount": 4500, + "representativePriceLabel": "잔치국수/비빔국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-274-9999", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수/비빔국수 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-651-9998 / 영업시간: 월~토 10:00-19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "726bacfc6565241140e2", - "label": "순두부", - "amount": 9000, + "id": "4a48e10e48e1c650017e", + "label": "잔치국수/비빔국수", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fc28168b420dd0a54046", - "label": "청국장", - "amount": 9000, + "id": "d9c51afa54dd8255cd18", + "label": "라면", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3871c191d22cdf864f7a", - "label": "청국장백반", - "amount": 9000, + "id": "344db3218ce407f34bb3", + "label": "콩나물국밥", + "amount": 4500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "49da7ea78c24239788bc", + "label": "김치찌개", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "726bacfc6565241140e2-history", - "label": "순두부", - "amount": 9000, + "id": "4a48e10e48e1c650017e-history", + "label": "잔치국수/비빔국수", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fc28168b420dd0a54046-history", - "label": "청국장", - "amount": 9000, + "id": "d9c51afa54dd8255cd18-history", + "label": "라면", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3871c191d22cdf864f7a-history", - "label": "청국장백반", - "amount": 9000, + "id": "344db3218ce407f34bb3-history", + "label": "콩나물국밥", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "49da7ea78c24239788bc-history", + "label": "김치찌개", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -21926,27 +21204,79 @@ "comments": [] }, { - "id": "goodprice-15155", - "name": "어락", - "businessName": "어락", + "id": "goodprice-2222", + "name": "현대세탁소", + "businessName": "현대세탁소", + "categorySlug": "laundry", + "address": "인천광역시 중구 인항로 34 1층 102호 (신흥동3가)", + "district": "인천광역시 중구", + "latitude": 37.4571633075413, + "longitude": 126.634101603919, + "representativePriceAmount": 5000, + "representativePriceLabel": "바지", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 바지 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-891-5252 / 영업시간: 월~금 : 09:30~21:00 토 : 10;00~17;00 정기휴무(일요일)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "e7b80e9540039dce2f39", + "label": "바지", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b35abd377b024318813c", + "label": "정장1벌", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "e7b80e9540039dce2f39-history", + "label": "바지", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b35abd377b024318813c-history", + "label": "정장1벌", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15300", + "name": "장군이네", + "businessName": "장군이네", "categorySlug": "korean", - "address": "전라남도 목포시 평화로 45 (상동) 어락", - "district": "전라남도 목포시", - "latitude": 34.795442625350994, - "longitude": 126.43019587300199, + "address": "서울특별시 용산구 청파로 325 (청파동1가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.548674610487964, + "longitude": 126.96980743648191, "representativePriceAmount": 10000, - "representativePriceLabel": "장어탕", + "representativePriceLabel": "버섯불고시", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-287-8789", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 버섯불고시 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-712-7708", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1e8db80c38807ee3800c", - "label": "장어탕", + "id": "1bff4464be159def5bff", + "label": "버섯불고시", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -21954,8 +21284,8 @@ ], "history": [ { - "id": "1e8db80c38807ee3800c-history", - "label": "장어탕", + "id": "1bff4464be159def5bff-history", + "label": "버섯불고시", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -21964,51 +21294,51 @@ "comments": [] }, { - "id": "goodprice-11788", - "name": "연산순대국밥", - "businessName": "연산순대국밥", - "categorySlug": "korean", - "address": "전라남도 목포시 후광대로 105번안길 21 (옥암동)", - "district": "전라남도 목포시", - "latitude": 34.8114935235184, - "longitude": 126.44243592283, - "representativePriceAmount": 9000, - "representativePriceLabel": "순대국밥", + "id": "goodprice-16477", + "name": "킹당구클럽", + "businessName": "킹당구클럽", + "categorySlug": "other-service", + "address": "서울특별시 도봉구 노해로69길 21-11 (창동) 4층", + "district": "서울특별시 도봉구", + "latitude": 37.65311007089221, + "longitude": 127.05007528398089, + "representativePriceAmount": 7200, + "representativePriceLabel": "1시간 이용료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-285-4012", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 1시간 이용료 7,200원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-7576-3832", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ca1a9f75ccecd4db66be", - "label": "순대국밥", - "amount": 9000, + "id": "9f414eb1cda54aeac60b", + "label": "1시간 이용료", + "amount": 7200, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7b9ae25cbddb5662ad54", - "label": "순대한접시", - "amount": 9000, + "id": "48ee9ef0098b4b7e1e27", + "label": "경로우대", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ca1a9f75ccecd4db66be-history", - "label": "순대국밥", - "amount": 9000, + "id": "9f414eb1cda54aeac60b-history", + "label": "1시간 이용료", + "amount": 7200, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7b9ae25cbddb5662ad54-history", - "label": "순대한접시", - "amount": 9000, + "id": "48ee9ef0098b4b7e1e27-history", + "label": "경로우대", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22016,37 +21346,37 @@ "comments": [] }, { - "id": "goodprice-10499", - "name": "영빈미용실", - "businessName": "영빈미용실", - "categorySlug": "beauty", - "address": "전라남도 목포시 삼학로343번길 6 (용해동)", - "district": "전라남도 목포시", - "latitude": 34.8018144738611, - "longitude": 126.408611997702, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트(기본)", + "id": "goodprice-14224", + "name": "덕산오징어보쌈", + "businessName": "덕산오징어보쌈", + "categorySlug": "korean", + "address": "광주광역시 동구 남문로622번길 20 (소태동) 1층", + "district": "광주광역시 동구", + "latitude": 35.127077487064696, + "longitude": 126.93344224312833, + "representativePriceAmount": 8000, + "representativePriceLabel": "점심 백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(기본) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 점심 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-5868 / 영업시간: 월-토 11:30-21:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ad41c9c68ad35724628c", - "label": "커트(기본)", - "amount": 7000, + "id": "1b2b1b1501e0b1398bd3", + "label": "점심 백반", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ad41c9c68ad35724628c-history", - "label": "커트(기본)", - "amount": 7000, + "id": "1b2b1b1501e0b1398bd3-history", + "label": "점심 백반", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22054,51 +21384,51 @@ "comments": [] }, { - "id": "goodprice-6430", - "name": "권헤어", - "businessName": "권헤어", + "id": "goodprice-17166", + "name": "헤어필(학동)", + "businessName": "헤어필(학동)", "categorySlug": "beauty", - "address": "경상북도 포항시 북구 죽도시장5길 4-6 권헤어", - "district": "경상북도 포항시", - "latitude": 36.0353351270253, - "longitude": 129.366985164135, + "address": "광주광역시 동구 천변우로 603 (학동, 백화아파트) 상가102동 104호", + "district": "광주광역시 동구", + "latitude": 35.13097376055375, + "longitude": 126.92644589626747, "representativePriceAmount": 10000, - "representativePriceLabel": "커트(여성)", + "representativePriceLabel": "성인커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(여성) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 8시~18시 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 성인커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 영업일: 월~토 08:30~17:30 휴무일: 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d7e8dcdcf8b3a7218a35", - "label": "커트(여성)", + "id": "2b6375cab58b23acd2fb", + "label": "성인커트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1dbcc5c03b7016c67c79", - "label": "여성 커트", - "amount": 10000, + "id": "da31e14cc4246429590c", + "label": "학생커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d7e8dcdcf8b3a7218a35-history", - "label": "커트(여성)", + "id": "2b6375cab58b23acd2fb-history", + "label": "성인커트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1dbcc5c03b7016c67c79-history", - "label": "여성 커트", - "amount": 10000, + "id": "da31e14cc4246429590c-history", + "label": "학생커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22106,34 +21436,34 @@ "comments": [] }, { - "id": "goodprice-6323", - "name": "그린빌미용실", - "businessName": "그린빌미용실", - "categorySlug": "beauty", - "address": "경상북도 포항시 남구 대이로 138 그린빌미용실", - "district": "경상북도 포항시", - "latitude": 36.0267483836043, - "longitude": 129.341432453617, - "representativePriceAmount": 10000, - "representativePriceLabel": "여자커트", + "id": "goodprice-903", + "name": "장원", + "businessName": "장원", + "categorySlug": "korean", + "address": "서울특별시 용산구 원효로19길 34 1층", + "district": "서울특별시 용산구", + "latitude": 37.5331134182461, + "longitude": 126.953729977052, + "representativePriceAmount": 9000, + "representativePriceLabel": "오늘의메뉴(백반찌개류)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여자커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-274-0450 / 영업시간: 10시~19시 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 오늘의메뉴(백반찌개류) 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-711-8948 / 영업시간: 11:00~15:00(주말 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f7656c9eead850126549", - "label": "여자커트", - "amount": 10000, + "id": "2f0763de0167eae681fa", + "label": "오늘의메뉴(백반찌개류)", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9d97b59dc651ec69ae40", - "label": "남자커트", + "id": "e970bc183e16b1c976f2", + "label": "오늘의메뉴(불고기류)", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -22141,15 +21471,15 @@ ], "history": [ { - "id": "f7656c9eead850126549-history", - "label": "여자커트", - "amount": 10000, + "id": "2f0763de0167eae681fa-history", + "label": "오늘의메뉴(백반찌개류)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9d97b59dc651ec69ae40-history", - "label": "남자커트", + "id": "e970bc183e16b1c976f2-history", + "label": "오늘의메뉴(불고기류)", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -22158,65 +21488,37 @@ "comments": [] }, { - "id": "goodprice-6369", - "name": "그린손칼국수", - "businessName": "그린손칼국수", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 오천읍 장기로1690번길 7-1 1층", - "district": "경상북도 포항시", - "latitude": 35.9662564080845, - "longitude": 129.4171669752, - "representativePriceAmount": 3000, - "representativePriceLabel": "손칼국수", + "id": "goodprice-13399", + "name": "홍 미용실", + "businessName": "홍 미용실", + "categorySlug": "beauty", + "address": "서울특별시 도봉구 도봉로121길 8 (쌍문동) 1층", + "district": "서울특별시 도봉구", + "latitude": 37.6520071796717, + "longitude": 127.03600505029534, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 11시~17시 매월 첫째, 셋째 화요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "652881ed5452415dbb40", - "label": "손칼국수", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "36d4910fce62ffc16639", - "label": "손수제비", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "fc824afc2610083c3075", - "label": "수제비칼국수", - "amount": 6000, + "id": "d2ae831d610f6904f3ea", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "652881ed5452415dbb40-history", - "label": "손칼국수", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "36d4910fce62ffc16639-history", - "label": "손수제비", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "fc824afc2610083c3075-history", - "label": "수제비칼국수", - "amount": 6000, + "id": "d2ae831d610f6904f3ea-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22224,144 +21526,106 @@ "comments": [] }, { - "id": "goodprice-15982", - "name": "다정다맛", - "businessName": "다정다맛", + "id": "goodprice-14430", + "name": "넘치는국수한그릇", + "businessName": "넘치는국수한그릇", "categorySlug": "korean", - "address": "경상남도 창원시 의창구 퇴촌로25번길 6-31 (사림동) 다정다맛", - "district": "경상남도 창원시", - "latitude": 35.24267515982134, - "longitude": 128.68959344279395, - "representativePriceAmount": 7000, - "representativePriceLabel": "김치찌개", + "address": "대전광역시 동구 신기로 123-15 (가오동) 가오초등학교 앞", + "district": "대전광역시 동구", + "latitude": 36.31171842237039, + "longitude": 127.458444535411, + "representativePriceAmount": 5000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-284-6114", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-284-7888 / 영업시간: 11:00 ~ 20:30 (15:00~16:00 브레이크 타임) / 매주 일요일 정기 휴무 /", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9f2b6cb1cf6189c5819c", - "label": "김치찌개", - "amount": 7000, + "id": "7917751f80db1b7e3ff4", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a8e803a17352dc89ca05", - "label": "된장찌개", - "amount": 7000, + "id": "bf7b8cc9a1a31089ffac", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e2a856962b1d3d96f88d", - "label": "순두부찌개", - "amount": 7000, + "id": "3cab0c34fb3afcf90786", + "label": "냉비빔국수(4~11월)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a4c03bc456bb73fbbda2", - "label": "돼지찌개", - "amount": 7500, + "id": "d066ac7ca4cbcd8eb158", + "label": "동치미국수(4~10월)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "9f2b6cb1cf6189c5819c-history", - "label": "김치찌개", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a8e803a17352dc89ca05-history", - "label": "된장찌개", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "e2a856962b1d3d96f88d-history", - "label": "순두부찌개", - "amount": 7000, + "id": "9edad30051340aa74b5c", + "label": "어묵국수", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "a4c03bc456bb73fbbda2-history", - "label": "돼지찌개", - "amount": 7500, + "id": "b4d763f86db3a79385ea", + "label": "반반국수", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" } ], - "comments": [] - }, - { - "id": "goodprice-6834", - "name": "대도식당", - "businessName": "대도식당", - "categorySlug": "korean", - "address": "경상남도 창원시 진해구 중원로 67-14 (평안동)", - "district": "경상남도 창원시", - "latitude": 35.1504050990581, - "longitude": 128.659012145261, - "representativePriceAmount": 9000, - "representativePriceLabel": "추어탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-546-3458", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "history": [ { - "id": "33d26ac2f77bb05c8849", - "label": "추어탕", - "amount": 9000, + "id": "7917751f80db1b7e3ff4-history", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "5922e146b7eb33fa6d38", - "label": "된장찌개", - "amount": 8000, + "id": "bf7b8cc9a1a31089ffac-history", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "0566341d1a3a705cfa80", - "label": "김치찌개", - "amount": 8000, + "id": "3cab0c34fb3afcf90786-history", + "label": "냉비빔국수(4~11월)", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "33d26ac2f77bb05c8849-history", - "label": "추어탕", - "amount": 9000, + "id": "d066ac7ca4cbcd8eb158-history", + "label": "동치미국수(4~10월)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5922e146b7eb33fa6d38-history", - "label": "된장찌개", - "amount": 8000, + "id": "9edad30051340aa74b5c-history", + "label": "어묵국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0566341d1a3a705cfa80-history", - "label": "김치찌개", + "id": "b4d763f86db3a79385ea-history", + "label": "반반국수", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -22370,79 +21634,79 @@ "comments": [] }, { - "id": "goodprice-17127", - "name": "대림식당", - "businessName": "대림식당", - "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 회원동24길 36 (회원동) 대림식당", - "district": "경상남도 창원시", - "latitude": 35.21968201084791, - "longitude": 128.57667591118778, - "representativePriceAmount": 8000, - "representativePriceLabel": "삼겹살", + "id": "goodprice-2887", + "name": "경주이용원", + "businessName": "경주이용원", + "categorySlug": "barber", + "address": "울산광역시 남구 월평로159번길 4 1층", + "district": "울산광역시 남구", + "latitude": 35.545149268254, + "longitude": 129.322629378239, + "representativePriceAmount": 10000, + "representativePriceLabel": "초등부컷트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-223-2407", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 초등부컷트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-268-5170 / 영업시간: 07:30~20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5d9679d0e4cfbcf31110", - "label": "삼겹살", - "amount": 8000, + "id": "8670c1cb6d454dfeb00f", + "label": "초등부컷트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9658d787087e20d730b0", - "label": "불고기", - "amount": 8000, + "id": "36d3629e0b85d117cc6c", + "label": "중고등학생 컷트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4fc5a4baed5b7bf92ac4", - "label": "된장찌개", - "amount": 8000, + "id": "cc5fad78ca00471a809c", + "label": "중고생커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ac439e49aef611de0f86", - "label": "오리불고기", - "amount": 9000, + "id": "c9d0a8b0866ead151f4e", + "label": "초등부커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5d9679d0e4cfbcf31110-history", - "label": "삼겹살", - "amount": 8000, + "id": "8670c1cb6d454dfeb00f-history", + "label": "초등부컷트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9658d787087e20d730b0-history", - "label": "불고기", - "amount": 8000, + "id": "36d3629e0b85d117cc6c-history", + "label": "중고등학생 컷트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4fc5a4baed5b7bf92ac4-history", - "label": "된장찌개", - "amount": 8000, + "id": "cc5fad78ca00471a809c-history", + "label": "중고생커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ac439e49aef611de0f86-history", - "label": "오리불고기", - "amount": 9000, + "id": "c9d0a8b0866ead151f4e-history", + "label": "초등부커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22450,65 +21714,65 @@ "comments": [] }, { - "id": "goodprice-14394", - "name": "대복갈비", - "businessName": "대복갈비", + "id": "goodprice-16335", + "name": "정가네왕김밥", + "businessName": "정가네왕김밥", "categorySlug": "korean", - "address": "경남 창원시 마산회원구 3.15성역로 131 대복갈비(구암동)", - "district": "경남 창원시", - "latitude": 35.2520164772151, - "longitude": 128.593762598517, - "representativePriceAmount": 7000, - "representativePriceLabel": "물냉면", + "address": "서울특별시 용산구 효창원로 91 (용문동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.53709820413125, + "longitude": 126.9590431309581, + "representativePriceAmount": 3000, + "representativePriceLabel": "정가네왕김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물냉면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1351-3061", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정가네왕김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1386-5598 / 영업시간: 평일, 토,일 09:00~20:00 매주 화요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "420950f063159f2a6827", - "label": "물냉면", - "amount": 7000, + "id": "7721e929dfbb52463551", + "label": "정가네왕김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2af70ac89fa6bb94466a", - "label": "비빔냉면", - "amount": 8000, + "id": "eb646764259203326d81", + "label": "참치김밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2191567b3cd214345b6b", - "label": "김치(된장)찌개", - "amount": 8000, + "id": "c0b235bb65ae7bca2ed4", + "label": "치즈김밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "420950f063159f2a6827-history", - "label": "물냉면", - "amount": 7000, + "id": "7721e929dfbb52463551-history", + "label": "정가네왕김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2af70ac89fa6bb94466a-history", - "label": "비빔냉면", - "amount": 8000, + "id": "eb646764259203326d81-history", + "label": "참치김밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2191567b3cd214345b6b-history", - "label": "김치(된장)찌개", - "amount": 8000, + "id": "c0b235bb65ae7bca2ed4-history", + "label": "치즈김밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22516,51 +21780,51 @@ "comments": [] }, { - "id": "goodprice-17558", - "name": "완판생국수", - "businessName": "완판생국수", - "categorySlug": "korean", - "address": "서울특별시 종로구 종로 258 (종로6가) 1층", - "district": "서울특별시 종로구", - "latitude": 37.5706572089172, - "longitude": 127.00647971676864, - "representativePriceAmount": 5500, - "representativePriceLabel": "멸치국수", + "id": "goodprice-411", + "name": "경노이발관", + "businessName": "경노이발관", + "categorySlug": "barber", + "address": "서울특별시 노원구 석계로 27", + "district": "서울특별시 노원구", + "latitude": 37.617294742104, + "longitude": 127.063913865481, + "representativePriceAmount": 6000, + "representativePriceLabel": "이용료(컷트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2272-0066", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(컷트) 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-917-7050 / 영업시간: 매일 10:00~ 18:00 매주 수요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "eb2e7363c89139327d93", - "label": "멸치국수", - "amount": 5500, + "id": "6e00a7c23a1ee4c66950", + "label": "이용료(컷트)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "883e38c7ef88f2392f15", - "label": "콩국수", - "amount": 8000, + "id": "1f02976936f374d23e38", + "label": "염색", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "eb2e7363c89139327d93-history", - "label": "멸치국수", - "amount": 5500, + "id": "6e00a7c23a1ee4c66950-history", + "label": "이용료(컷트)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "883e38c7ef88f2392f15-history", - "label": "콩국수", - "amount": 8000, + "id": "1f02976936f374d23e38-history", + "label": "염색", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22568,191 +21832,217 @@ "comments": [] }, { - "id": "goodprice-944", - "name": "왕관커피숍", - "businessName": "왕관커피숍", - "categorySlug": "other-food", - "address": "서울특별시 종로구 종로 222 (종로5가)", - "district": "서울특별시 종로구", - "latitude": 37.570760396587, - "longitude": 127.002357657235, - "representativePriceAmount": 2000, - "representativePriceLabel": "커피", + "id": "goodprice-14196", + "name": "떡볶이가좋다", + "businessName": "떡볶이가좋다", + "categorySlug": "korean", + "address": "울산광역시 중구 중앙시장길 2-7 (옥교동) 1층", + "district": "울산광역시 중구", + "latitude": 35.55501926169491, + "longitude": 129.32205281017949, + "representativePriceAmount": 3000, + "representativePriceLabel": "즉석떡볶이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2266-8365 / 영업시간: 09:00~18:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 즉석떡볶이 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-246-4702 / 영업시간: 월~일 10:00~20:30 (라스트오더 20:00)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "589b50ab85c3d3b1339b", - "label": "커피", - "amount": 2000, + "id": "6f96eef1ec37f3aa712f", + "label": "즉석떡볶이", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a13c9d3d8da8bd238191", - "label": "국산차", - "amount": 2000, + "id": "89890e63a738df1d6442", + "label": "치즈떡볶이", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "0da9e5fac80ae607b184", - "label": "냉커피", - "amount": 5000, + "id": "6f96eef1ec37f3aa712f-history", + "label": "즉석떡볶이", + "amount": 3000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "4051288f2212f7110ff5", - "label": "대추차", + "id": "89890e63a738df1d6442-history", + "label": "치즈떡볶이", "amount": 3500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-10202", + "name": "멋진남자", + "businessName": "멋진남자", + "categorySlug": "barber", + "address": "경기도 수원시 영통구 매봉로35번길 50 1층(매탄동)", + "district": "경기도 수원시", + "latitude": 37.2719859731344, + "longitude": 127.050140470108, + "representativePriceAmount": 10000, + "representativePriceLabel": "남성커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 남성커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "9681f1d0f0ab1e0a2686", - "label": "둥굴레차", - "amount": 3000, + "id": "380217261036e1650647", + "label": "남성커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "288da99611c4d647cc83", - "label": "레몬차", - "amount": 4000, + "id": "380217261036e1650647-history", + "label": "남성커트", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15297", + "name": "준참치", + "businessName": "준참치", + "categorySlug": "japanese", + "address": "서울특별시 용산구 두텁바위로 79-1 (후암동) 1층 준참치", + "district": "서울특별시 용산구", + "latitude": 37.54660113519156, + "longitude": 126.98077828947247, + "representativePriceAmount": 9000, + "representativePriceLabel": "회덮밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 회덮밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-773-3838", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "f36a175292c51d3eec5b", - "label": "마차", - "amount": 3500, + "id": "3859858e8a734472bcf2", + "label": "회덮밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "925a6a927ae2b424a2ca", - "label": "매실차", - "amount": 4000, + "id": "3859858e8a734472bcf2-history", + "label": "회덮밥", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-17761", + "name": "금호헤어", + "businessName": "금호헤어", + "categorySlug": "beauty", + "address": "서울특별시 노원구 한글비석로46나길 3 (상계동) 1층", + "district": "서울특별시 노원구", + "latitude": 37.66668108719866, + "longitude": 127.06947762279536, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-951-5597", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "ca29ecf06b2079fcab10", - "label": "쌍화차", - "amount": 6000, + "id": "25d6cfe7c9b226d0749f", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "7ad3a58569c8a7f9eae4", - "label": "오미자", - "amount": 4000, + "id": "25d6cfe7c9b226d0749f-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-16674", + "name": "마마칼국수", + "businessName": "마마칼국수", + "categorySlug": "korean", + "address": "울산광역시 중구 남외1길 56 (남외동) 1층", + "district": "울산광역시 중구", + "latitude": 35.56704089419386, + "longitude": 129.35042603603065, + "representativePriceAmount": 7000, + "representativePriceLabel": "돌솥비빔밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비빔밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-291-1159 / 영업시간: 월~토: 10:30~20:00 / 19:30 라스트오더 일: 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "5ad15331f58b4136fcd8", - "label": "율무차", - "amount": 3000, + "id": "21ebc90cdcb3a27ae77d", + "label": "돌솥비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d1e4f48f43afac440ec4", - "label": "칡차", - "amount": 3500, + "id": "5b6953bd2c10a59e736a", + "label": "순두부찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "589b50ab85c3d3b1339b-history", - "label": "커피", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a13c9d3d8da8bd238191-history", - "label": "국산차", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0da9e5fac80ae607b184-history", - "label": "냉커피", - "amount": 5000, + "id": "21ebc90cdcb3a27ae77d-history", + "label": "돌솥비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4051288f2212f7110ff5-history", - "label": "대추차", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9681f1d0f0ab1e0a2686-history", - "label": "둥굴레차", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "288da99611c4d647cc83-history", - "label": "레몬차", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f36a175292c51d3eec5b-history", - "label": "마차", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "925a6a927ae2b424a2ca-history", - "label": "매실차", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ca29ecf06b2079fcab10-history", - "label": "쌍화차", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "7ad3a58569c8a7f9eae4-history", - "label": "오미자", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5ad15331f58b4136fcd8-history", - "label": "율무차", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d1e4f48f43afac440ec4-history", - "label": "칡차", - "amount": 3500, + "id": "5b6953bd2c10a59e736a-history", + "label": "순두부찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22760,51 +22050,51 @@ "comments": [] }, { - "id": "goodprice-19246", - "name": "유로시안커피전문점", - "businessName": "유로시안커피전문점", - "categorySlug": "other-food", - "address": "서울특별시 종로구 종로40길 4 (종로6가) 1층", - "district": "서울특별시 종로구", - "latitude": 37.57075442433323, - "longitude": 127.00654859833715, - "representativePriceAmount": 1500, - "representativePriceLabel": "아메리카노(16oz) 포장", + "id": "goodprice-15843", + "name": "더 맨", + "businessName": "더 맨", + "categorySlug": "beauty", + "address": "충청북도 청주시 청원구 율봉로 258 (율량동)", + "district": "충청북도 청주시", + "latitude": 36.666703430250955, + "longitude": 127.49720884874743, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노(16oz) 포장 1,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2268-1007", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-214-2500", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2c591da9d2aa85636432", - "label": "아메리카노(16oz) 포장", - "amount": 1500, + "id": "8538a72416af671b3ed3", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7b6b4b24806a785a4c65", - "label": "아메리카노(1L) 포장", - "amount": 2500, + "id": "7bb74927e421cb36864f", + "label": "커트(학생)", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2c591da9d2aa85636432-history", - "label": "아메리카노(16oz) 포장", - "amount": 1500, + "id": "8538a72416af671b3ed3-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7b6b4b24806a785a4c65-history", - "label": "아메리카노(1L) 포장", - "amount": 2500, + "id": "7bb74927e421cb36864f-history", + "label": "커트(학생)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22812,34 +22102,27 @@ "comments": [] }, { - "id": "goodprice-17052", - "name": "오야꼬", - "businessName": "오야꼬", - "categorySlug": "japanese", - "address": "부산광역시 중구 중구로 68 (대청동4가) 1층", - "district": "부산광역시 중구", - "latitude": 35.10349395265852, - "longitude": 129.02867590895872, + "id": "goodprice-11361", + "name": "지혜식당", + "businessName": "지혜식당", + "categorySlug": "korean", + "address": "서울특별시 용산구 이촌로18길 21-15 (이촌동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.525791802369646, + "longitude": 126.95497065595673, "representativePriceAmount": 9000, - "representativePriceLabel": "모밀셋트", + "representativePriceLabel": "가정식백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 모밀셋트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-462-8989", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 가정식백반 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-706-5255", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0d6c71d1226f4f504c9e", - "label": "모밀셋트", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "eb893cc8f310600b51a6", - "label": "우동셋트", + "id": "b3d8535ce978a151b9c6", + "label": "가정식백반", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -22847,15 +22130,8 @@ ], "history": [ { - "id": "0d6c71d1226f4f504c9e-history", - "label": "모밀셋트", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "eb893cc8f310600b51a6-history", - "label": "우동셋트", + "id": "b3d8535ce978a151b9c6-history", + "label": "가정식백반", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -22864,51 +22140,37 @@ "comments": [] }, { - "id": "goodprice-1635", - "name": "용두산이용원", - "businessName": "용두산이용원", - "categorySlug": "barber", - "address": "부산광역시 중구 남포길 43 (남포동2가)", - "district": "부산광역시 중구", - "latitude": 35.0981609773096, - "longitude": 129.033460927363, - "representativePriceAmount": 5000, + "id": "goodprice-14236", + "name": "나드리헤어", + "businessName": "나드리헤어", + "categorySlug": "beauty", + "address": "서울특별시 노원구 덕릉로 459-37 (상계동) 203호", + "district": "서울특별시 노원구", + "latitude": 37.646800513214316, + "longitude": 127.05959299911272, + "representativePriceAmount": 8000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-242-7007 / 영업시간: 7:00-17:00, 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6406-2080", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "38b005a03ec17376a075", + "id": "3af3bec554472221c424", "label": "커트", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f40aee7a4dee63c9e433", - "label": "염색", - "amount": 5000, + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "38b005a03ec17376a075-history", + "id": "3af3bec554472221c424-history", "label": "커트", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f40aee7a4dee63c9e433-history", - "label": "염색", - "amount": 5000, + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22916,65 +22178,51 @@ "comments": [] }, { - "id": "goodprice-1658", - "name": "일미기사식당", - "businessName": "일미기사식당", + "id": "goodprice-2999", + "name": "만수원숯불갈비", + "businessName": "만수원숯불갈비", "categorySlug": "korean", - "address": "부산광역시 중구 흑교로 16-1 (부평동)", - "district": "부산광역시 중구", - "latitude": 35.1008721419571, - "longitude": 129.02530342269, - "representativePriceAmount": 4500, - "representativePriceLabel": "시락국밥", + "address": "울산광역시 중구 해오름16길 2 (남외동)", + "district": "울산광역시 중구", + "latitude": 35.5607915680552, + "longitude": 129.342737348461, + "representativePriceAmount": 8000, + "representativePriceLabel": "쌈정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 시락국밥 4,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-253-4440 / 영업시간: 24시간 매주 월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 쌈정식 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-297-4327", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bb43475fb649859bbcf0", - "label": "시락국밥", - "amount": 4500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1df15c9b9f1f257c038c", - "label": "선지국밥", - "amount": 5000, + "id": "511924dcbb4f0c748f92", + "label": "쌈정식", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2c1984aeab4d63b75fb8", - "label": "우동", - "amount": 3500, + "id": "ecd2d1aabfd88ed02092", + "label": "삼겹살(120g)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bb43475fb649859bbcf0-history", - "label": "시락국밥", - "amount": 4500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1df15c9b9f1f257c038c-history", - "label": "선지국밥", - "amount": 5000, + "id": "511924dcbb4f0c748f92-history", + "label": "쌈정식", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2c1984aeab4d63b75fb8-history", - "label": "우동", - "amount": 3500, + "id": "ecd2d1aabfd88ed02092-history", + "label": "삼겹살(120g)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -22982,51 +22230,37 @@ "comments": [] }, { - "id": "goodprice-14157", - "name": "재성밀면", - "businessName": "재성밀면", - "categorySlug": "korean", - "address": "부산광역시 중구 중앙대로41번길 14-1 (동광동3가) 1층", - "district": "부산광역시 중구", - "latitude": 35.1011509548915, - "longitude": 129.03476576507273, - "representativePriceAmount": 7500, - "representativePriceLabel": "물밀면", + "id": "goodprice-4964", + "name": "미헤어샵", + "businessName": "미헤어샵", + "categorySlug": "beauty", + "address": "충청남도 천안시 서북구 쌍용16길 24 (쌍용동)", + "district": "충청남도 천안시", + "latitude": 36.798721258652, + "longitude": 127.120954088064, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물밀면 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-242-3836 / 영업시간: 10:00~16:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-575-1196 / 영업시간: 10:00~18:00 정기휴무(매주 월요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "adfb245e85615664bd7d", - "label": "물밀면", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b317446981832cb962cf", - "label": "비빔밀면", - "amount": 7500, + "id": "3d6eaedd18da5c5c9e7c", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "adfb245e85615664bd7d-history", - "label": "물밀면", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b317446981832cb962cf-history", - "label": "비빔밀면", - "amount": 7500, + "id": "3d6eaedd18da5c5c9e7c-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -23034,65 +22268,79 @@ "comments": [] }, { - "id": "goodprice-2013", - "name": "장성루", - "businessName": "장성루", - "categorySlug": "chinese", - "address": "대구광역시 중구 국채보상로139길 10 (동인동4가) 장성루", - "district": "대구광역시 중구", - "latitude": 35.86951806204098, - "longitude": 128.606526645754, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "id": "goodprice-905", + "name": "진미식당", + "businessName": "진미식당", + "categorySlug": "korean", + "address": "서울특별시 용산구 백범로 90길 46 1층", + "district": "서울특별시 용산구", + "latitude": 37.5366958702301, + "longitude": 126.970177576899, + "representativePriceAmount": 10000, + "representativePriceLabel": "오징어볶음", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-4303 / 영업시간: 금 10:00-21:00 토 10:00-21:00 일 정기휴무(매주일요일) 월 10:00-21:00 화 10:00-21:00 수 10:00-21:00 목 10:00-21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 오징어볶음 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-703-6842 / 영업시간: (평일)09:00~20:30 (토) 09:00~19:00 (일) 09:30~15:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b52e031e6fa4c0bb03fe", - "label": "짜장면", - "amount": 5000, + "id": "cb4aa5d3926c0403c5ec", + "label": "오징어볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8f5b635a5a80379ad958", - "label": "짬뽕", - "amount": 6500, + "id": "a3d3eacd8abafb5defa8", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2ad0a04fecdcf9581065", - "label": "볶음밥", - "amount": 7000, + "id": "20e3afbeb585aef7f068", + "label": "문경콩청국장", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0f9c497d6eec5970b0ea", + "label": "비빔밥", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b52e031e6fa4c0bb03fe-history", - "label": "짜장면", - "amount": 5000, + "id": "cb4aa5d3926c0403c5ec-history", + "label": "오징어볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8f5b635a5a80379ad958-history", - "label": "짬뽕", - "amount": 6500, + "id": "a3d3eacd8abafb5defa8-history", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2ad0a04fecdcf9581065-history", - "label": "볶음밥", - "amount": 7000, + "id": "20e3afbeb585aef7f068-history", + "label": "문경콩청국장", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0f9c497d6eec5970b0ea-history", + "label": "비빔밥", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -23100,93 +22348,179 @@ "comments": [] }, { - "id": "goodprice-2025", - "name": "장셰프한식전통중화요리", - "businessName": "장셰프한식전통중화요리", - "categorySlug": "chinese", - "address": "대구광역시 중구 경상감영길 117-7 (향촌동)", - "district": "대구광역시 중구", - "latitude": 35.872626221362, - "longitude": 128.593626482761, - "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", + "id": "goodprice-10277", + "name": "남성헤어컷", + "businessName": "남성헤어컷", + "categorySlug": "barber", + "address": "서울특별시 노원구 월계로55길 16 204호", + "district": "서울특별시 노원구", + "latitude": 37.6329639777027, + "longitude": 127.060508959979, + "representativePriceAmount": 7000, + "representativePriceLabel": "기본컷", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-214-0706 / 영업시간: 10:00~20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 기본컷 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1c07e60235eb66ef2430", - "label": "짜장면", - "amount": 6000, + "id": "1012aa365b2d1eb533d4", + "label": "기본컷", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e139bb940cd0b51d94da", - "label": "짬뽕", + "id": "3457c6615d85053e42d1", + "label": "투블럭", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "9defbd8da25d44d2f6f8", - "label": "점심특선(매일변동)", + "id": "1012aa365b2d1eb533d4-history", + "label": "기본컷", "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "d34617fc60371d13f54b", - "label": "누룽지 짜장면", - "amount": 8000, + "id": "3457c6615d85053e42d1-history", + "label": "투블럭", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-19370", + "name": "모닝베이커리", + "businessName": "모닝베이커리", + "categorySlug": "bakery", + "address": "울산광역시 중구 구교6길 63 (반구동) 모닝베이커리", + "district": "울산광역시 중구", + "latitude": 35.565210010138046, + "longitude": 129.34129671811115, + "representativePriceAmount": 1000, + "representativePriceLabel": "팥빵", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 팥빵 1,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-294-6636 / 영업시간: 07:00~21:00 / 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "f60a47bfb867e2bc5d0b", + "label": "팥빵", + "amount": 1000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b38364fc4ca0e5527bfb", - "label": "누룽지 짬뽕", - "amount": 9000, + "id": "e7252a9efbc87280b15f", + "label": "머핀", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1c07e60235eb66ef2430-history", - "label": "짜장면", - "amount": 6000, + "id": "f60a47bfb867e2bc5d0b-history", + "label": "팥빵", + "amount": 1000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e139bb940cd0b51d94da-history", - "label": "짬뽕", - "amount": 7000, + "id": "e7252a9efbc87280b15f-history", + "label": "머핀", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-4913", + "name": "박정미5000냥헤어", + "businessName": "박정미5000냥헤어", + "categorySlug": "beauty", + "address": "충청남도 천안시 동남구 대흥로 127 (사직동)", + "district": "충청남도 천안시", + "latitude": 36.800548575871, + "longitude": 127.148519132471, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-561-3344 / 영업시간: 09:00~20:00 명절휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "9defbd8da25d44d2f6f8-history", - "label": "점심특선(매일변동)", + "id": "8c16c87ab89b8084da73", + "label": "커트", "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "d34617fc60371d13f54b-history", - "label": "누룽지 짜장면", - "amount": 8000, + "id": "8c16c87ab89b8084da73-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-11346", + "name": "친구의천", + "businessName": "친구의천", + "categorySlug": "korean", + "address": "서울특별시 용산구 장문로 88", + "district": "서울특별시 용산구", + "latitude": 37.525986638102, + "longitude": 126.999353921205, + "representativePriceAmount": 5000, + "representativePriceLabel": "즉석떡볶이", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 즉석떡볶이 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-790-9415", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "b38364fc4ca0e5527bfb-history", - "label": "누룽지 짬뽕", - "amount": 9000, + "id": "8585123c4fa8dbcc357b", + "label": "즉석떡볶이", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "8585123c4fa8dbcc357b-history", + "label": "즉석떡볶이", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -23194,41 +22528,41 @@ "comments": [] }, { - "id": "goodprice-10078", - "name": "제일분식", - "businessName": "제일분식", - "categorySlug": "korean", - "address": "대구광역시 중구 남산로2길 26 (남산동)", - "district": "대구광역시 중구", - "latitude": 35.8569075638758, - "longitude": 128.584273183178, - "representativePriceAmount": 1500, - "representativePriceLabel": "떡볶이", + "id": "goodprice-409", + "name": "브랜드특수크리닝", + "businessName": "브랜드특수크리닝", + "categorySlug": "laundry", + "address": "서울특별시 노원구 섬밭로 263 1층 4호 (롯데상가)", + "district": "서울특별시 노원구", + "latitude": 37.6391399283859, + "longitude": 127.06381950095, + "representativePriceAmount": 7000, + "representativePriceLabel": "양복세탁", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 1,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-256-6630", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복세탁 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-979-5474", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7757f9a1894cf70510db", - "label": "떡볶이", - "amount": 1500, + "id": "a578119b6e838d28f0f6", + "label": "양복세탁", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ac07f3ca5a35dac14d14", - "label": "김밥", - "amount": 2500, + "id": "2824a8c9a17b07d285ab", + "label": "드라이(셔츠)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3c904db5f7f4c6dc97f8", - "label": "순대", + "id": "0ffa3268d7397d4d8c03", + "label": "드라이(블라우스)", "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -23236,22 +22570,22 @@ ], "history": [ { - "id": "7757f9a1894cf70510db-history", - "label": "떡볶이", - "amount": 1500, + "id": "a578119b6e838d28f0f6-history", + "label": "양복세탁", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ac07f3ca5a35dac14d14-history", - "label": "김밥", - "amount": 2500, + "id": "2824a8c9a17b07d285ab-history", + "label": "드라이(셔츠)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3c904db5f7f4c6dc97f8-history", - "label": "순대", + "id": "0ffa3268d7397d4d8c03-history", + "label": "드라이(블라우스)", "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -23260,51 +22594,51 @@ "comments": [] }, { - "id": "goodprice-2014", - "name": "중해반점", - "businessName": "중해반점", + "id": "goodprice-15902", + "name": "만리장성", + "businessName": "만리장성", "categorySlug": "chinese", - "address": "대구광역시 중구 명륜로 63 (남산동)", - "district": "대구광역시 중구", - "latitude": 35.8617367040049, - "longitude": 128.591676584073, + "address": "세종특별자치시 조치원읍 충현로 91 101호 만리장성", + "district": "세종특별자치시 조치원읍", + "latitude": 36.59668528394338, + "longitude": 127.29539473219728, "representativePriceAmount": 6000, "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-255-8555 / 영업시간: 금 11:00-21:00 토 11:00-21:00 일 정기휴무(매주일요일) 월 11:00-21:00 화 11:00-21:00 수 11:00-21:00 목 11:00-21:00", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-868-5400", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1889eda77a10238d3fe0", + "id": "d068a6690371d4a2a718", "label": "짜장면", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3a3fb336173a72573ff5", - "label": "원조야끼우동", - "amount": 10000, + "id": "efcb3135ce46ba5e8636", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1889eda77a10238d3fe0-history", + "id": "d068a6690371d4a2a718-history", "label": "짜장면", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3a3fb336173a72573ff5-history", - "label": "원조야끼우동", - "amount": 10000, + "id": "efcb3135ce46ba5e8636-history", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -23312,651 +22646,635 @@ "comments": [] }, { - "id": "goodprice-2224", - "name": "월미식당", - "businessName": "월미식당", - "categorySlug": "korean", - "address": "인천광역시 중구 월미로234번길 6 (북성동1가)", - "district": "인천광역시 중구", - "latitude": 37.4754721671142, - "longitude": 126.598889031169, + "id": "goodprice-11119", + "name": "박정미5000냥헤어2호점", + "businessName": "박정미5000냥헤어2호점", + "categorySlug": "beauty", + "address": "충청남도 천안시 동남구 영성로 36 (중앙동)", + "district": "충청남도 천안시", + "latitude": 36.8014348547938, + "longitude": 127.150782653869, "representativePriceAmount": 7000, - "representativePriceLabel": "짜장면", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 짜장면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-761-6800 / 영업시간: 월~금 : 10:00~22:30 토, 일 : 09:00~24:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 09:00~20:00 명절휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5a9729bb4a1a700f0650", - "label": "짜장면", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6f26ac36a6eb641a891d", - "label": "새우우동", + "id": "510f3ca575467210f36f", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "f61365aa71a3965d1a50", - "label": "해물라면", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "241ab5662a8e3a7cd7a4", - "label": "냉면", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5a9729bb4a1a700f0650-history", - "label": "짜장면", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6f26ac36a6eb641a891d-history", - "label": "새우우동", + "id": "510f3ca575467210f36f-history", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "f61365aa71a3965d1a50-history", - "label": "해물라면", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "241ab5662a8e3a7cd7a4-history", - "label": "냉면", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-13118", - "name": "일등짬뽕", - "businessName": "일등짬뽕", - "categorySlug": "chinese", - "address": "인천광역시 중구 운중로 28 (운남동) 1층", - "district": "인천광역시 중구", - "latitude": 37.493135983340906, - "longitude": 126.53660042079217, - "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", + "id": "goodprice-885", + "name": "커피스모키", + "businessName": "커피스모키", + "categorySlug": "other-food", + "address": "서울특별시 용산구 한강대로30길 25 지하1층 26호", + "district": "서울특별시 용산구", + "latitude": 37.527358545339, + "longitude": 126.968861735609, + "representativePriceAmount": 2900, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-747-0660", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: (평일)07:30~21:30 (토) 휴무 (일) 12:00~21:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4afa38907d4861c19996", - "label": "짜장면", - "amount": 6000, + "id": "830dcec0058d377d25ec", + "label": "아메리카노", + "amount": 2900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "48bb5a461c32561eba42", - "label": "짬뽕", - "amount": 8500, + "id": "948610f08d8be4495dfe", + "label": "콜드브루", + "amount": 3400, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "4afa38907d4861c19996-history", - "label": "짜장면", - "amount": 6000, + "id": "92c0b2c66373c4285b5b", + "label": "헤이즐넛아메리카노", + "amount": 3200, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "48bb5a461c32561eba42-history", - "label": "짬뽕", - "amount": 8500, + "id": "c1038f51a2e19ceeccda", + "label": "녹차라떼", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2270", - "name": "우리뷔페", - "businessName": "우리뷔페", - "categorySlug": "korean", - "address": "광주광역시 동구 금남로 181 1층 102호(금남로5가)", - "district": "광주광역시 동구", - "latitude": 35.1519634025693, - "longitude": 126.913207209362, - "representativePriceAmount": 6000, - "representativePriceLabel": "백반", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-364-3816 / 영업시간: 월~금 10:30-14:00 휴일 주말, 공휴일", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "016f9c8e114a5c9a4efb", - "label": "백반", - "amount": 6000, + "id": "8e5aa98d667f1e5bb903", + "label": "디카페인 라떼", + "amount": 4200, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3970c190bc5bf32b4537", - "label": "백반 1인", - "amount": 6000, + "id": "a06b933b21aa83cc1800", + "label": "디카페인 아메리카노", + "amount": 3700, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "016f9c8e114a5c9a4efb-history", - "label": "백반", - "amount": 6000, + "id": "ec73855f9851c3991925", + "label": "딸기바나나주스", + "amount": 4200, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "3970c190bc5bf32b4537-history", - "label": "백반 1인", - "amount": 6000, + "id": "41d339cc02d3e5b2de77", + "label": "딸기요거트 스무디", + "amount": 4500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14226", - "name": "이가진우동", - "businessName": "이가진우동", - "categorySlug": "korean", - "address": "광주광역시 동구 학소로 141 (학동) 1층", - "district": "광주광역시 동구", - "latitude": 35.13224809736366, - "longitude": 126.93196652792969, - "representativePriceAmount": 5500, - "representativePriceLabel": "우동", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우동 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-233-3488 / 영업시간: 월-금 09:00-20:00 토,일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "fa33bd1d23b12e0fec90", - "label": "우동", - "amount": 5500, + "id": "c0fcffcc50a22feb8895", + "label": "레몬생강차", + "amount": 4200, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "fa33bd1d23b12e0fec90-history", - "label": "우동", - "amount": 5500, + "id": "51c97119b4cc2487210f", + "label": "레몬에이드", + "amount": 4500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2565", - "name": "부림식당", - "businessName": "부림식당", - "categorySlug": "korean", - "address": "대전광역시 동구 중앙로 200번길 27 (중동)", - "district": "대전광역시 동구", - "latitude": 36.329614784984, - "longitude": 127.43223119972, - "representativePriceAmount": 7000, - "representativePriceLabel": "된장찌개 백반", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 백반 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-226-8346 / 영업시간: 10:00 ~ 15:00 / 목요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "fb94d1443e4e3c642625", - "label": "된장찌개 백반", - "amount": 7000, + "id": "dfa2faad0e854b1ab9b2", + "label": "망고바나나주스", + "amount": 4200, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8dafd01b36769af31444", - "label": "김치찌개 백반", - "amount": 7000, + "id": "1d2d6c18a6ea3aa9e60c", + "label": "망고요거트스무디", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ce97efd1f47803d645f5", - "label": "시골밥상", - "amount": 7000, + "id": "2895abd23e32fde364d2", + "label": "몽실이라떼", + "amount": 3900, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "fb94d1443e4e3c642625-history", - "label": "된장찌개 백반", - "amount": 7000, + "id": "20c241b733899cf0b7e4", + "label": "민트초코라떼", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "8dafd01b36769af31444-history", - "label": "김치찌개 백반", - "amount": 7000, + "id": "d8ad624060e9cea5d0a4", + "label": "밀크티", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "ce97efd1f47803d645f5-history", - "label": "시골밥상", - "amount": 7000, + "id": "4800d287a75fe89a80e8", + "label": "바닐라라떼", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2532", - "name": "뿌리미용실", - "businessName": "뿌리미용실", - "categorySlug": "beauty", - "address": "대전광역시 동구 충무로 219 (인동)", - "district": "대전광역시 동구", - "latitude": 36.3225191758149, - "longitude": 127.440235253078, - "representativePriceAmount": 8000, - "representativePriceLabel": "미용료(커트)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-286-4444 / 영업시간: 08:00 ~ 19:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "848102457249a42636eb", - "label": "미용료(커트)", - "amount": 8000, + "id": "35b7316cef8b4077aea8", + "label": "복숭아아이스티", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e4f0bdb9555a3ea7c742", - "label": "커트(성인 일반)", - "amount": 8000, + "id": "115cad612a7a292092ba", + "label": "블루베리바나나주스", + "amount": 4200, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "848102457249a42636eb-history", - "label": "미용료(커트)", - "amount": 8000, + "id": "df80244a07df1154180c", + "label": "생강차/유자차/레몬차/매실차", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "e4f0bdb9555a3ea7c742-history", - "label": "커트(성인 일반)", - "amount": 8000, + "id": "816e195f14aed0e3d901", + "label": "아샷추", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-17349", - "name": "좋은고기팜", - "businessName": "좋은고기팜", - "categorySlug": "korean", - "address": "울산광역시 중구 유곡로 58 (유곡동) 1층", - "district": "울산광역시 중구", - "latitude": 35.557166607144175, - "longitude": 129.3034434213232, - "representativePriceAmount": 6000, - "representativePriceLabel": "생 삼겹살(100g)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생 삼겹살(100g) 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1342-5431 / 영업시간: 매일 09:00~23:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "8fe30b159961f4024e6c", - "label": "생 삼겹살(100g)", - "amount": 6000, + "id": "75899538d6e2d50c8a52", + "label": "얼그레이/캐모마일/히비스커스/페퍼민트/루이보스", + "amount": 3200, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "cbee7a7e072de3c9f530", - "label": "생 목살(100g)", - "amount": 6000, + "id": "ebf973906806ac1dd646", + "label": "에스프레소", + "amount": 2900, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "8fe30b159961f4024e6c-history", - "label": "생 삼겹살(100g)", - "amount": 6000, + "id": "3d689deaf4803c197c08", + "label": "연유라떼", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "cbee7a7e072de3c9f530-history", - "label": "생 목살(100g)", - "amount": 6000, + "id": "fc99275b421a6101d976", + "label": "유자생강차", + "amount": 4200, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11315", - "name": "탕짜", - "businessName": "탕짜", - "categorySlug": "chinese", - "address": "울산광역시 중구 시계탑거리 6 (성남동)", - "district": "울산광역시 중구", - "latitude": 35.5550431249539, - "longitude": 129.321593713924, - "representativePriceAmount": 6500, - "representativePriceLabel": "짜장면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-246-5566", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "7751369f534fd84d5e66", - "label": "짜장면", - "amount": 6500, + "id": "063f823a54b475d9fde3", + "label": "자몽에이드", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "24d62bebfe53b1a3a4f1", - "label": "짬뽕", - "amount": 7000, + "id": "ec748f8bf3f5eeb117bc", + "label": "자몽차", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "7751369f534fd84d5e66-history", - "label": "짜장면", - "amount": 6500, + "id": "c0acc4e4ae91bcb40924", + "label": "자몽허니블랙티", + "amount": 4800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "24d62bebfe53b1a3a4f1-history", - "label": "짬뽕", - "amount": 7000, + "id": "97cf211904bef12ea8df", + "label": "진저라떼", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-3001", - "name": "태화식육식당", - "businessName": "태화식육식당", - "categorySlug": "korean", - "address": "울산광역시 중구 중앙시장길 21-3 (성남동)", - "district": "울산광역시 중구", - "latitude": 35.5552643330267, - "longitude": 129.323407871925, - "representativePriceAmount": 4700, - "representativePriceLabel": "삼겹살(100g)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살(100g) 4,700원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-244-7968 / 영업시간: 10:00~21:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "bb8386c22a424db015a9", - "label": "삼겹살(100g)", - "amount": 4700, + "id": "1c978472e031c2ea99c2", + "label": "청포도에이드", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "bb8386c22a424db015a9-history", - "label": "삼겹살(100g)", - "amount": 4700, + "id": "a90542b13a201b40a589", + "label": "초코라떼", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-10178", - "name": "옛날통닭", - "businessName": "옛날통닭", - "categorySlug": "korean", - "address": "세종특별자치시 조치원읍 조치원6길 16 조치원읍", - "district": "세종특별자치시 조치원읍", - "latitude": 36.6009257081913, - "longitude": 127.299491553093, - "representativePriceAmount": 7500, - "representativePriceLabel": "옛날통닭", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 옛날통닭 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "fc162fc42b5fe2a0fdb0", - "label": "옛날통닭", - "amount": 7500, + "id": "e6e9f088dccce36c71c6", + "label": "카라멜 마끼아또", + "amount": 3800, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "26b6b84a7a7f0839c32f", - "label": "수제핫도그", - "amount": 2000, + "id": "7d192a91b580fa5d4b9a", + "label": "카페라떼", + "amount": 3400, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "fc162fc42b5fe2a0fdb0-history", - "label": "옛날통닭", - "amount": 7500, + "id": "604f2230b8ee0921796c", + "label": "카페모카", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "26b6b84a7a7f0839c32f-history", - "label": "수제핫도그", - "amount": 2000, + "id": "de75220c17407abc51e7", + "label": "카페민트모카", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-19180", - "name": "오가네빵굼터", - "businessName": "오가네빵굼터", - "categorySlug": "other-food", - "address": "세종특별자치시 조치원읍 조치원6길 27 1층", - "district": "세종특별자치시 조치원읍", - "latitude": 36.600210807134104, - "longitude": 127.2997884074273, - "representativePriceAmount": 800, - "representativePriceLabel": "단팥빵", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 단팥빵 800원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-0261", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "ed839a09fa371232d114", - "label": "단팥빵", - "amount": 800, + "id": "cbe24eb0820c1d7b906d", + "label": "카푸치노", + "amount": 3400, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2d7e832b46f55db65934", - "label": "슈크림빵", - "amount": 800, + "id": "bd51533cc4236578da22", + "label": "콜드브루라떼", + "amount": 3800, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "ed839a09fa371232d114-history", - "label": "단팥빵", - "amount": 800, + "id": "9169109fe740d2979588", + "label": "플레인요거트스무디", + "amount": 4500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "2d7e832b46f55db65934-history", - "label": "슈크림빵", - "amount": 800, + "id": "074018b612288e901706", + "label": "핸드드립", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-10191", - "name": "유정칼국수", - "businessName": "유정칼국수", - "categorySlug": "korean", - "address": "세종특별자치시 장군면 장척로 417-1", - "district": "세종특별자치시 장군면", - "latitude": 36.4980690848686, - "longitude": 127.206482661374, - "representativePriceAmount": 8000, - "representativePriceLabel": "돌솥비빔밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-857-5999", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "198fd293e1edb0ec5392", - "label": "돌솥비빔밥", - "amount": 8000, + "id": "4f91ebb1940e74736d7f", + "label": "헤이즐넛 아메리카노", + "amount": 3200, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "774e9fc03c0546bd8873", - "label": "칼국수", - "amount": 7000, + "id": "a5135185d652391963d1", + "label": "헤이즐넛라떼", + "amount": 3800, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "33c1c8eb7790fafbdc5d", - "label": "순두부찌개", - "amount": 7000, + "id": "6fa0f000dec18e754013", + "label": "호두바나나주스", + "amount": 4200, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "198fd293e1edb0ec5392-history", - "label": "돌솥비빔밥", - "amount": 8000, + "id": "830dcec0058d377d25ec-history", + "label": "아메리카노", + "amount": 2900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "774e9fc03c0546bd8873-history", - "label": "칼국수", - "amount": 7000, + "id": "948610f08d8be4495dfe-history", + "label": "콜드브루", + "amount": 3400, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "33c1c8eb7790fafbdc5d-history", - "label": "순두부찌개", - "amount": 7000, + "id": "92c0b2c66373c4285b5b-history", + "label": "헤이즐넛아메리카노", + "amount": 3200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c1038f51a2e19ceeccda-history", + "label": "녹차라떼", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8e5aa98d667f1e5bb903-history", + "label": "디카페인 라떼", + "amount": 4200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a06b933b21aa83cc1800-history", + "label": "디카페인 아메리카노", + "amount": 3700, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ec73855f9851c3991925-history", + "label": "딸기바나나주스", + "amount": 4200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "41d339cc02d3e5b2de77-history", + "label": "딸기요거트 스무디", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c0fcffcc50a22feb8895-history", + "label": "레몬생강차", + "amount": 4200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "51c97119b4cc2487210f-history", + "label": "레몬에이드", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "dfa2faad0e854b1ab9b2-history", + "label": "망고바나나주스", + "amount": 4200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1d2d6c18a6ea3aa9e60c-history", + "label": "망고요거트스무디", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2895abd23e32fde364d2-history", + "label": "몽실이라떼", + "amount": 3900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "20c241b733899cf0b7e4-history", + "label": "민트초코라떼", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d8ad624060e9cea5d0a4-history", + "label": "밀크티", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4800d287a75fe89a80e8-history", + "label": "바닐라라떼", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "35b7316cef8b4077aea8-history", + "label": "복숭아아이스티", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "115cad612a7a292092ba-history", + "label": "블루베리바나나주스", + "amount": 4200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "df80244a07df1154180c-history", + "label": "생강차/유자차/레몬차/매실차", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "816e195f14aed0e3d901-history", + "label": "아샷추", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "75899538d6e2d50c8a52-history", + "label": "얼그레이/캐모마일/히비스커스/페퍼민트/루이보스", + "amount": 3200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ebf973906806ac1dd646-history", + "label": "에스프레소", + "amount": 2900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "3d689deaf4803c197c08-history", + "label": "연유라떼", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fc99275b421a6101d976-history", + "label": "유자생강차", + "amount": 4200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "063f823a54b475d9fde3-history", + "label": "자몽에이드", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ec748f8bf3f5eeb117bc-history", + "label": "자몽차", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c0acc4e4ae91bcb40924-history", + "label": "자몽허니블랙티", + "amount": 4800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "97cf211904bef12ea8df-history", + "label": "진저라떼", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1c978472e031c2ea99c2-history", + "label": "청포도에이드", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a90542b13a201b40a589-history", + "label": "초코라떼", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e6e9f088dccce36c71c6-history", + "label": "카라멜 마끼아또", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7d192a91b580fa5d4b9a-history", + "label": "카페라떼", + "amount": 3400, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "604f2230b8ee0921796c-history", + "label": "카페모카", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "de75220c17407abc51e7-history", + "label": "카페민트모카", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "cbe24eb0820c1d7b906d-history", + "label": "카푸치노", + "amount": 3400, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "bd51533cc4236578da22-history", + "label": "콜드브루라떼", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9169109fe740d2979588-history", + "label": "플레인요거트스무디", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "074018b612288e901706-history", + "label": "핸드드립", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4f91ebb1940e74736d7f-history", + "label": "헤이즐넛 아메리카노", + "amount": 3200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a5135185d652391963d1-history", + "label": "헤이즐넛라떼", + "amount": 3800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6fa0f000dec18e754013-history", + "label": "호두바나나주스", + "amount": 4200, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -23964,51 +23282,51 @@ "comments": [] }, { - "id": "goodprice-16805", - "name": "대왕칼국수", - "businessName": "대왕칼국수", - "categorySlug": "korean", - "address": "경기도 수원시 팔달구 창룡대로7번길 11 (북수동) 1층", - "district": "경기도 수원시", - "latitude": 37.28246168863594, - "longitude": 127.01757013330725, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수 보통", + "id": "goodprice-10272", + "name": "샤보이 남성커트", + "businessName": "샤보이 남성커트", + "categorySlug": "beauty", + "address": "서울특별시 노원구 덕릉로82길 25 1층(중계동, 동우상가)", + "district": "서울특별시 노원구", + "latitude": 37.6584395197218, + "longitude": 127.076694268075, + "representativePriceAmount": 8000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 보통 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-252-2820 / 영업시간: 10:00~19:00 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 이용료(커트) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-977-3135", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a5b4d5b723247de7ae39", - "label": "칼국수 보통", - "amount": 6000, + "id": "53ec21ae3adbbbd50751", + "label": "이용료(커트)", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8d721627df886cba9325", - "label": "칼국수 중특", - "amount": 6000, + "id": "629399d1d968f71b0ac5", + "label": "새치염색", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a5b4d5b723247de7ae39-history", - "label": "칼국수 보통", - "amount": 6000, + "id": "53ec21ae3adbbbd50751-history", + "label": "이용료(커트)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8d721627df886cba9325-history", - "label": "칼국수 중특", - "amount": 6000, + "id": "629399d1d968f71b0ac5-history", + "label": "새치염색", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24016,37 +23334,65 @@ "comments": [] }, { - "id": "goodprice-19003", - "name": "데일리샌듀(DailySandew)", - "businessName": "데일리샌듀(DailySandew)", + "id": "goodprice-10190", + "name": "맛있는 수다", + "businessName": "맛있는 수다", "categorySlug": "bakery", - "address": "경기도 수원시 영통구 광교중앙로248번길 95-1 (하동) 102호", - "district": "경기도 수원시", - "latitude": 37.291532557494804, - "longitude": 127.06836414210785, - "representativePriceAmount": 7000, - "representativePriceLabel": "단호박샌드위치", + "address": "세종특별자치시 조치원읍 새내10길 41 맛있는 수다", + "district": "세종특별자치시 조치원읍", + "latitude": 36.6006451799859, + "longitude": 127.300531090282, + "representativePriceAmount": 5000, + "representativePriceLabel": "고기만두(8개)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단호박샌드위치 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 08:00~19:00(브레이크타임 14:00~16:00) 토요일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 고기만두(8개) 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-4967", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f3d408a08c97c508d291", - "label": "단호박샌드위치", - "amount": 7000, + "id": "da70e68ebc4cfb8b68cb", + "label": "고기만두(8개)", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4dadc3bbeb3ca6378693", + "label": "김치만두(8개)", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "3becf493f79fd4f786a1", + "label": "오색쌀찐빵(5개)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f3d408a08c97c508d291-history", - "label": "단호박샌드위치", - "amount": 7000, + "id": "da70e68ebc4cfb8b68cb-history", + "label": "고기만두(8개)", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4dadc3bbeb3ca6378693-history", + "label": "김치만두(8개)", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "3becf493f79fd4f786a1-history", + "label": "오색쌀찐빵(5개)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24054,65 +23400,51 @@ "comments": [] }, { - "id": "goodprice-14336", - "name": "도담칡냉면", - "businessName": "도담칡냉면", - "categorySlug": "korean", - "address": "경기도 수원시 장안구 수성로382번길 32-3 (영화동) .", - "district": "경기도 수원시", - "latitude": 37.29270733638951, - "longitude": 127.01452356573881, - "representativePriceAmount": 7000, - "representativePriceLabel": "냉면", + "id": "goodprice-5421", + "name": "초희미용실", + "businessName": "초희미용실", + "categorySlug": "beauty", + "address": "전북특별자치도 전주시 완산구 모악로 4683 우미아파트 상가", + "district": "전북특별자치도 전주시", + "latitude": 35.7876745457672, + "longitude": 127.130038142656, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트(성인)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-247-0925 / 영업시간: 10:00~15:00 / 매주 일요일 휴무(하절기 정상영업)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(성인) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-226-3701 / 영업시간: 매일 9:00-19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7673753a575dcd223146", - "label": "냉면", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a0a6ac029b4f8d656c4e", - "label": "잔치국수", - "amount": 5000, + "id": "36a472224728b891455d", + "label": "커트(성인)", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b8fb0dbaff9640718dba", - "label": "칼제비", - "amount": 6000, + "id": "670b08838d2782e4fe24", + "label": "커트(학생)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7673753a575dcd223146-history", - "label": "냉면", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a0a6ac029b4f8d656c4e-history", - "label": "잔치국수", - "amount": 5000, + "id": "36a472224728b891455d-history", + "label": "커트(성인)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b8fb0dbaff9640718dba-history", - "label": "칼제비", - "amount": 6000, + "id": "670b08838d2782e4fe24-history", + "label": "커트(학생)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24120,37 +23452,51 @@ "comments": [] }, { - "id": "goodprice-14020", - "name": "동남사우나", - "businessName": "동남사우나", - "categorySlug": "bath", - "address": "경기도 수원시 장안구 영화로25번길 22 (영화동, 태영아파트) .", - "district": "경기도 수원시", - "latitude": 37.288921701882735, - "longitude": 127.00821781483458, - "representativePriceAmount": 10000, - "representativePriceLabel": "목욕비", + "id": "goodprice-16125", + "name": "콩양황군", + "businessName": "콩양황군", + "categorySlug": "korean", + "address": "서울특별시 용산구 청파로93길 7 (서계동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.55427950761147, + "longitude": 126.96844975026704, + "representativePriceAmount": 9000, + "representativePriceLabel": "황태콩나물해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕비 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-243-6422 / 영업시간: 05:00~22:00 연중무휴", + "description": "청파동 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6369-4023 / 영업시간: 평일:0730~20:30 토요일:10:30~17:00 일요일:휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "333a47bae8b960a75c81", - "label": "목욕비", - "amount": 10000, + "id": "e7b8b6240d9735735f68", + "label": "황태콩나물해장국", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c91974f3149755d6a5b4", + "label": "돌솥비빔밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "333a47bae8b960a75c81-history", - "label": "목욕비", - "amount": 10000, + "id": "e7b8b6240d9735735f68-history", + "label": "황태콩나물해장국", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c91974f3149755d6a5b4-history", + "label": "돌솥비빔밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24158,65 +23504,65 @@ "comments": [] }, { - "id": "goodprice-4328", - "name": "메이카드", - "businessName": "메이카드", - "categorySlug": "other-food", - "address": "강원특별자치도 춘천시 복골길6번길 21 1층(후평동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8743681928941, - "longitude": 127.755540944248, - "representativePriceAmount": 3500, - "representativePriceLabel": "아메리카노", + "id": "goodprice-410", + "name": "세탁편의점", + "businessName": "세탁편의점", + "categorySlug": "laundry", + "address": "서울특별시 노원구 한글비석로444 (교림노원프라자 1층)", + "district": "서울특별시 노원구", + "latitude": 37.663613046348, + "longitude": 127.068492606148, + "representativePriceAmount": 6000, + "representativePriceLabel": "양복세탁", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1391-1402 / 영업시간: 10:00 - 22:00 매주 월요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복세탁 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-339-4459 / 영업시간: 금 09:00-21:00 토 09:00-19:00 일 정보없음 월 09:00-21:00 화 09:00-21:00 수 09:00-21:00 목 09:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1f164b31103c657d4a92", - "label": "아메리카노", - "amount": 3500, + "id": "c6a44cc9880b6d610c44", + "label": "양복세탁", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b14bda9a2d7575828278", - "label": "에이드", - "amount": 4500, + "id": "52d147211af8ccca2619", + "label": "드라이(셔츠)", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "23b52bec28cca0100b13", - "label": "콤부차", - "amount": 3500, + "id": "23ec7c7041f6f795f954", + "label": "드라이(블라우스)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1f164b31103c657d4a92-history", - "label": "아메리카노", - "amount": 3500, + "id": "c6a44cc9880b6d610c44-history", + "label": "양복세탁", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b14bda9a2d7575828278-history", - "label": "에이드", - "amount": 4500, + "id": "52d147211af8ccca2619-history", + "label": "드라이(셔츠)", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "23b52bec28cca0100b13-history", - "label": "콤부차", - "amount": 3500, + "id": "23ec7c7041f6f795f954-history", + "label": "드라이(블라우스)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24224,51 +23570,65 @@ "comments": [] }, { - "id": "goodprice-4332", - "name": "바위목욕탕", - "businessName": "바위목욕탕", - "categorySlug": "bath", - "address": "강원특별자치도 춘천시 춘천로213번길 9 (효자동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8781770353052, - "longitude": 127.737068247626, - "representativePriceAmount": 8000, - "representativePriceLabel": "대인", + "id": "goodprice-15567", + "name": "고운돈 79냉삼집", + "businessName": "고운돈 79냉삼집", + "categorySlug": "korean", + "address": "경기도 수원시 영통구 반달로 50 (영통동) 1층", + "district": "경기도 수원시", + "latitude": 37.249825831037455, + "longitude": 127.07722668063614, + "representativePriceAmount": 7900, + "representativePriceLabel": "냉삼겹(150g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 대인 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-3610", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉삼겹(150g) 7,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-205-5678 / 영업시간: 16:00~01:30 월요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "654a900f5c9576ba7b32", - "label": "대인", - "amount": 8000, + "id": "ba784350a1ea24409a84", + "label": "냉삼겹(150g)", + "amount": 7900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9b3a48ce955e78c64943", - "label": "소인", - "amount": 6000, + "id": "27f258eada25c948846d", + "label": "김치찌개", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "61669d372441f81a7ff9", + "label": "우삼겹(150g)", + "amount": 9500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "654a900f5c9576ba7b32-history", - "label": "대인", - "amount": 8000, + "id": "ba784350a1ea24409a84-history", + "label": "냉삼겹(150g)", + "amount": 7900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9b3a48ce955e78c64943-history", - "label": "소인", - "amount": 6000, + "id": "27f258eada25c948846d-history", + "label": "김치찌개", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "61669d372441f81a7ff9-history", + "label": "우삼겹(150g)", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24276,65 +23636,51 @@ "comments": [] }, { - "id": "goodprice-4382", - "name": "바탕골분식", - "businessName": "바탕골분식", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 서부대성로44번길 19 (요선동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.88168933514, - "longitude": 127.727315490081, - "representativePriceAmount": 8000, - "representativePriceLabel": "김치찌개", + "id": "goodprice-6327", + "name": "내가본미용실", + "businessName": "내가본미용실", + "categorySlug": "beauty", + "address": "경상북도 포항시 남구 대이로45번길 15 내가본미용실", + "district": "경상북도 포항시", + "latitude": 36.0187057254121, + "longitude": 129.340316118787, + "representativePriceAmount": 10000, + "representativePriceLabel": "여자커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-254-3564 / 영업시간: 매일 10:00-21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여자커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-274-7754 / 영업시간: 18:00에18시0분에 금 10:00-18:00 토 10:00-18:00 일 정기휴무(매주일요일) 월 10:00-18:00 화 10:00-18:00 수 10:00-18:00 목 10:00-18:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "536425aed5930eece8da", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9f8339f06bd675f41ec5", - "label": "된장찌개", - "amount": 8000, + "id": "83a4638fc1727d98e015", + "label": "여자커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "729605784c506f688a3f", - "label": "숝두부찌개", - "amount": 8000, + "id": "5be7270e6b5f140f4590", + "label": "남자커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "536425aed5930eece8da-history", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9f8339f06bd675f41ec5-history", - "label": "된장찌개", - "amount": 8000, + "id": "83a4638fc1727d98e015-history", + "label": "여자커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "729605784c506f688a3f-history", - "label": "숝두부찌개", - "amount": 8000, + "id": "5be7270e6b5f140f4590-history", + "label": "남자커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24342,79 +23688,51 @@ "comments": [] }, { - "id": "goodprice-4759", - "name": "내고향맛집", - "businessName": "내고향맛집", + "id": "goodprice-15742", + "name": "쿠쿠스", + "businessName": "쿠쿠스", "categorySlug": "korean", - "address": "충청북도 청주시 흥덕구 운천로3번길 2 (운천동)", - "district": "충청북도 청주시", - "latitude": 36.6506697774039, - "longitude": 127.474773448765, + "address": "서울특별시 용산구 한강대로15길 19-2 (한강로3가) 1층", + "district": "서울특별시 용산구", + "latitude": 37.526022091947766, + "longitude": 126.96307096171546, "representativePriceAmount": 7000, - "representativePriceLabel": "청국장", + "representativePriceLabel": "제육덮밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-276-4414 / 영업시간: 매일 09:00-21:00 매주 일요일 정기휴무", + "description": "한강로동 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-798-9233 / 영업시간: 매일 11:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ebe25566c25218ee4a76", - "label": "청국장", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b777d1158f9c2a62665c", - "label": "비지장", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9db2ef4c0296f59bc07c", - "label": "김치찌개", + "id": "e2892ec15eb5705e292c", + "label": "제육덮밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "15862eb2aed14bda3fd7", - "label": "양푼이동태탕", - "amount": 8000, + "id": "6d09224ba2abb72cb978", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ebe25566c25218ee4a76-history", - "label": "청국장", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b777d1158f9c2a62665c-history", - "label": "비지장", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9db2ef4c0296f59bc07c-history", - "label": "김치찌개", + "id": "e2892ec15eb5705e292c-history", + "label": "제육덮밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "15862eb2aed14bda3fd7-history", - "label": "양푼이동태탕", - "amount": 8000, + "id": "6d09224ba2abb72cb978-history", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24422,51 +23740,51 @@ "comments": [] }, { - "id": "goodprice-14757", - "name": "내수시민미용실", - "businessName": "내수시민미용실", - "categorySlug": "beauty", - "address": "충청북도 청주시 청원구 내수읍 내수로 729-2", - "district": "충청북도 청주시", - "latitude": 36.72673097882712, - "longitude": 127.53610288381759, - "representativePriceAmount": 6000, - "representativePriceLabel": "커트", + "id": "goodprice-414", + "name": "은영이발관", + "businessName": "은영이발관", + "categorySlug": "barber", + "address": "서울특별시 노원구 석계로 15길25", + "district": "서울특별시 노원구", + "latitude": 37.6220625118578, + "longitude": 127.06134243043, + "representativePriceAmount": 5000, + "representativePriceLabel": "이용료(컷트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-214-5124", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(컷트) 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 09:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e1274c13d8cd4b76e5cd", - "label": "커트", - "amount": 6000, + "id": "c35caab9d4f4cc131afc", + "label": "이용료(컷트)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "14bf8409775f801b39d4", - "label": "뿌리염색", - "amount": 10000, + "id": "bede2a4035572faf2d82", + "label": "컷 이용료", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e1274c13d8cd4b76e5cd-history", - "label": "커트", - "amount": 6000, + "id": "c35caab9d4f4cc131afc-history", + "label": "이용료(컷트)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "14bf8409775f801b39d4-history", - "label": "뿌리염색", - "amount": 10000, + "id": "bede2a4035572faf2d82-history", + "label": "컷 이용료", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24474,41 +23792,72 @@ "comments": [] }, { - "id": "goodprice-13536", - "name": "네모샘밥집", - "businessName": "네모샘밥집", - "categorySlug": "korean", - "address": "충청북도 청주시 청원구 상당로232번길 34 (우암동)", - "district": "충청북도 청주시", - "latitude": 36.64906312692569, - "longitude": 127.49115091042215, - "representativePriceAmount": 6000, - "representativePriceLabel": "보리밥", + "id": "goodprice-14640", + "name": "광명수산 수원역점", + "businessName": "광명수산 수원역점", + "categorySlug": "japanese", + "address": "경기도 수원시 팔달구 갓매산로 38 (매산로2가) 1층", + "district": "경기도 수원시", + "latitude": 37.267869938538816, + "longitude": 127.00558487313573, + "representativePriceAmount": 8000, + "representativePriceLabel": "활어회덮밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보리밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 활어회덮밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-244-8899", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8b9f8b46c9d7ab6cfe78", - "label": "보리밥", - "amount": 6000, + "id": "91772ea5ed9663a78080", + "label": "활어회덮밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "1556f13c522998cf133b", - "label": "칼국수", - "amount": 6000, + "id": "91772ea5ed9663a78080-history", + "label": "활어회덮밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13022", + "name": "남성여성커트전문점", + "businessName": "남성여성커트전문점", + "categorySlug": "beauty", + "address": "인천광역시 동구 샛골로161번길 26 (송림동) 1층", + "district": "인천광역시 동구", + "latitude": 37.47703198808541, + "longitude": 126.64334345184642, + "representativePriceAmount": 5000, + "representativePriceLabel": "남성커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8670-9155 / 영업시간: 월~일 09:00-20:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "e35fad3c00636f73168c", + "label": "남성커트", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0c0903492988cc2a6baf", - "label": "제육덮밥", + "id": "bdf83478435f603d35e2", + "label": "여성커트", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -24516,22 +23865,15 @@ ], "history": [ { - "id": "8b9f8b46c9d7ab6cfe78-history", - "label": "보리밥", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1556f13c522998cf133b-history", - "label": "칼국수", - "amount": 6000, + "id": "e35fad3c00636f73168c-history", + "label": "남성커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0c0903492988cc2a6baf-history", - "label": "제육덮밥", + "id": "bdf83478435f603d35e2-history", + "label": "여성커트", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -24540,51 +23882,51 @@ "comments": [] }, { - "id": "goodprice-15580", - "name": "더드림빵", - "businessName": "더드림빵", - "categorySlug": "bakery", - "address": "충청남도 천안시 동남구 차돌고개5길 15 (다가동) 1동 102호", - "district": "충청남도 천안시", - "latitude": 36.79908109750335, - "longitude": 127.13558280814556, - "representativePriceAmount": 1500, - "representativePriceLabel": "단팥빵/소보로빵/슈크림빵/생크림빵", + "id": "goodprice-17216", + "name": "테폼", + "businessName": "테폼", + "categorySlug": "other-food", + "address": "서울특별시 용산구 녹사평대로26길 21 (이태원동) 1층 (이태원동, 미광빌딩)", + "district": "서울특별시 용산구", + "latitude": 37.53087259952325, + "longitude": 126.99128823933295, + "representativePriceAmount": 3000, + "representativePriceLabel": "아메리카노(핫)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵/소보로빵/슈크림빵/생크림빵 1,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-577-4473 / 영업시간: 07:00~20:00 정기휴무 매주 일요일", + "description": "용산구 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-793-6926 / 영업시간: 월요일~토요일 07:00~19:00 일요일 09:00~17:00 휴무일 없음", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0e1ff7170d31401abc06", - "label": "단팥빵/소보로빵/슈크림빵/생크림빵", - "amount": 1500, + "id": "9c24e2d4ed5fb2d1421d", + "label": "아메리카노(핫)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d85a86502ad518c0fd5d", - "label": "카스테라", - "amount": 1900, + "id": "8f29eecaee5960dc9be0", + "label": "까페라떼(핫)", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0e1ff7170d31401abc06-history", - "label": "단팥빵/소보로빵/슈크림빵/생크림빵", - "amount": 1500, + "id": "9c24e2d4ed5fb2d1421d-history", + "label": "아메리카노(핫)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d85a86502ad518c0fd5d-history", - "label": "카스테라", - "amount": 1900, + "id": "8f29eecaee5960dc9be0-history", + "label": "까페라떼(핫)", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24592,37 +23934,51 @@ "comments": [] }, { - "id": "goodprice-4912", - "name": "동은헤어", - "businessName": "동은헤어", + "id": "goodprice-415", + "name": "장미헤어컷트원", + "businessName": "장미헤어컷트원", "categorySlug": "beauty", - "address": "충청남도 천안시 동남구 새말3길 38-4 지하1층(신방동)", - "district": "충청남도 천안시", - "latitude": 36.7945688750786, - "longitude": 127.131044743835, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "address": "서울특별시 노원구 섬밭로196 (하계동, 하계장미6단지 상가B14호)", + "district": "서울특별시 노원구", + "latitude": 37.6339976168528, + "longitude": 127.067277883916, + "representativePriceAmount": 5000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-4036-7721 / 영업시간: 09:30~18:00 정기휴무(매주 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 이용료(커트) 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4b627ab1e4a35bf94ec5", - "label": "커트", - "amount": 10000, + "id": "de597b44628261c1335f", + "label": "이용료(커트)", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "bd787fb566f17285811b", + "label": "컷 이용료(컷트)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4b627ab1e4a35bf94ec5-history", - "label": "커트", - "amount": 10000, + "id": "de597b44628261c1335f-history", + "label": "이용료(커트)", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "bd787fb566f17285811b-history", + "label": "컷 이용료(컷트)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24630,79 +23986,65 @@ "comments": [] }, { - "id": "goodprice-15798", - "name": "동화당만두찐빵", - "businessName": "동화당만두찐빵", - "categorySlug": "bakery", - "address": "충청남도 천안시 서북구 미라8길 15 (쌍용동) 101호", - "district": "충청남도 천안시", - "latitude": 36.80331426026365, - "longitude": 127.12911330329518, - "representativePriceAmount": 5500, - "representativePriceLabel": "고기/김치만두(10개)", + "id": "goodprice-4376", + "name": "광치해장국", + "businessName": "광치해장국", + "categorySlug": "korean", + "address": "강원특별자치도 춘천시 소양로 108 (소양동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8932252439588, + "longitude": 127.726036660624, + "representativePriceAmount": 6000, + "representativePriceLabel": "선지해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 고기/김치만두(10개) 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-577-7238 / 영업시간: 매일 10:00~23:00 정기휴무 1, 3번째 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 선지해장국 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-1100 / 영업시간: 06:30 - 19:30 브레이크타임 15:00 - 17:00 라스트오더 19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "04d01d8567b67bc92854", - "label": "고기/김치만두(10개)", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "981fe42ab31a0501329a", - "label": "고기/김치왕만두(5개)", - "amount": 5500, + "id": "e478b3a32ffd704d858a", + "label": "선지해장국", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "771b8decfae022583858", - "label": "찐빵(5개)", - "amount": 5500, + "id": "b1083bba4bf8219041f1", + "label": "콩나물해장국", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "041e502a06a9d51b25f9", - "label": "방문포장 시", - "amount": 5000, + "id": "de509c5458fa554531ee", + "label": "우거지해장국", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "04d01d8567b67bc92854-history", - "label": "고기/김치만두(10개)", - "amount": 5500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "981fe42ab31a0501329a-history", - "label": "고기/김치왕만두(5개)", - "amount": 5500, + "id": "e478b3a32ffd704d858a-history", + "label": "선지해장국", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "771b8decfae022583858-history", - "label": "찐빵(5개)", - "amount": 5500, + "id": "b1083bba4bf8219041f1-history", + "label": "콩나물해장국", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "041e502a06a9d51b25f9-history", - "label": "방문포장 시", - "amount": 5000, + "id": "de509c5458fa554531ee-history", + "label": "우거지해장국", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24710,37 +24052,37 @@ "comments": [] }, { - "id": "goodprice-5411", - "name": "아리랑하우스", - "businessName": "아리랑하우스", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 덕진구 한배미1길 29", - "district": "전북특별자치도 전주시", - "latitude": 35.8236184860742, - "longitude": 127.165468633315, - "representativePriceAmount": 9000, - "representativePriceLabel": "한우탕", + "id": "goodprice-2093", + "name": "네오클리닝센타", + "businessName": "네오클리닝센타", + "categorySlug": "laundry", + "address": "인천광역시 동구 송현로 19번길 14 (송현동)", + "district": "인천광역시 동구", + "latitude": 37.4785676119164, + "longitude": 126.634101843256, + "representativePriceAmount": 10000, + "representativePriceLabel": "정장1벌", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한우탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-241-9300", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 정장1벌 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-766-0030 / 영업시간: 월~토 09:00:19:30 (일,공휴일) 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0f51deb75739214e8671", - "label": "한우탕", - "amount": 9000, + "id": "50b8f58682680df11daf", + "label": "정장1벌", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0f51deb75739214e8671-history", - "label": "한우탕", - "amount": 9000, + "id": "50b8f58682680df11daf-history", + "label": "정장1벌", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24748,37 +24090,37 @@ "comments": [] }, { - "id": "goodprice-5403", - "name": "야미전북대점", - "businessName": "야미전북대점", - "categorySlug": "western", - "address": "전북특별자치도 전주시 덕진구 명륜4길 21-5 2층", - "district": "전북특별자치도 전주시", - "latitude": 35.843953906049, - "longitude": 127.126451107898, - "representativePriceAmount": 6900, - "representativePriceLabel": "수제 생돈가스", + "id": "goodprice-17200", + "name": "통큰칼국수", + "businessName": "통큰칼국수", + "categorySlug": "korean", + "address": "서울특별시 용산구 장문로 112 (보광동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.52639637993005, + "longitude": 127.00196129835076, + "representativePriceAmount": 9000, + "representativePriceLabel": "손칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 수제 생돈가스 6,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-277-6678 / 영업시간: 매일 10:00-20:30 15:00-17:00브레이크타임", + "description": "용산구 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-712-9874 / 영업시간: 월요일~토요일 11:00~20:30 일요일(정기휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5a3b0803f6cf47537f82", - "label": "수제 생돈가스", - "amount": 6900, + "id": "75e932f36bda595b3286", + "label": "손칼국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5a3b0803f6cf47537f82-history", - "label": "수제 생돈가스", - "amount": 6900, + "id": "75e932f36bda595b3286-history", + "label": "손칼국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24786,26 +24128,26 @@ "comments": [] }, { - "id": "goodprice-18216", - "name": "에바다미용실", - "businessName": "에바다미용실", + "id": "goodprice-17188", + "name": "착한헤어", + "businessName": "착한헤어", "categorySlug": "beauty", - "address": "전북특별자치도 전주시 완산구 관선1길 74-4 (남노송동) 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.81910634092517, - "longitude": 127.15785208426966, + "address": "서울특별시 노원구 상계로24길 23-3 (상계동) 1층", + "district": "서울특별시 노원구", + "latitude": 37.65763237654204, + "longitude": 127.07047794036895, "representativePriceAmount": 10000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00~19:00 / 토요일 휴무", + "description": "미용실", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-933-2529", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a8f21afc8c80ed90e2c2", + "id": "3b66a744869fbdd5f138", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -24814,7 +24156,7 @@ ], "history": [ { - "id": "a8f21afc8c80ed90e2c2-history", + "id": "3b66a744869fbdd5f138-history", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -24824,37 +24166,65 @@ "comments": [] }, { - "id": "goodprice-15996", - "name": "영아네밥상", - "businessName": "영아네밥상", + "id": "goodprice-4358", + "name": "국수닭", + "businessName": "국수닭", "categorySlug": "korean", - "address": "전북특별자치도 전주시 덕진구 송천로 35-4 (송천동1가)", - "district": "전북특별자치도 전주시", - "latitude": 35.856686667251026, - "longitude": 127.1180991261228, - "representativePriceAmount": 8000, - "representativePriceLabel": "한식뷔페(점심)", + "address": "강원특별자치도 춘천시 남춘로 36번길 48 (퇴계동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8615806593812, + "longitude": 127.735535866785, + "representativePriceAmount": 6500, + "representativePriceLabel": "닭국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페(점심) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-274-6598 / 영업시간: 평일 : 11:00 ~ 22:00(브레이크 타임 14 : 30 ~ 17 : 00) 토요일 : 17:00 ~ 22:00 일요일 : 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 닭국수 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-6399 / 영업시간: 11:00 - 21:00 브레이크타임 15:00 - 17:00 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4b496e6ce95515933faa", - "label": "한식뷔페(점심)", - "amount": 8000, + "id": "76c1c7337d49062c4ad3", + "label": "닭국수", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f7a1530cf8c7285c8549", + "label": "비빔국수", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6af260349a1b531b4c8c", + "label": "얼큰닭국수", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4b496e6ce95515933faa-history", - "label": "한식뷔페(점심)", - "amount": 8000, + "id": "76c1c7337d49062c4ad3-history", + "label": "닭국수", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f7a1530cf8c7285c8549-history", + "label": "비빔국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6af260349a1b531b4c8c-history", + "label": "얼큰닭국수", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24862,37 +24232,37 @@ "comments": [] }, { - "id": "goodprice-5622", - "name": "예향밥상", - "businessName": "예향밥상", - "categorySlug": "korean", - "address": "전라남도 목포시 수문로20번길 7-3 1층(남교동)", - "district": "전라남도 목포시", - "latitude": 34.7925532071234, - "longitude": 126.383301637162, - "representativePriceAmount": 7000, - "representativePriceLabel": "한식뷔페", + "id": "goodprice-13184", + "name": "호수목욕탕", + "businessName": "호수목욕탕", + "categorySlug": "bath", + "address": "광주광역시 동구 구성로194번길 7-1 (대인동) 1층", + "district": "광주광역시 동구", + "latitude": 35.15276002074088, + "longitude": 126.9147242991847, + "representativePriceAmount": 4000, + "representativePriceLabel": "성인", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-247-8989 / 영업시간: 11:30~20:00 정기휴무(매주 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 성인 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-226-1142 / 영업시간: 월-토 04:30~16:00 / 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "69b28fb837efe2ba10a4", - "label": "한식뷔페", - "amount": 7000, + "id": "a299a6165b409b40254b", + "label": "성인", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "69b28fb837efe2ba10a4-history", - "label": "한식뷔페", - "amount": 7000, + "id": "a299a6165b409b40254b-history", + "label": "성인", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -24900,179 +24270,243 @@ "comments": [] }, { - "id": "goodprice-10496", - "name": "옛날짜장", - "businessName": "옛날짜장", + "id": "goodprice-907", + "name": "풍년숯불갈비", + "businessName": "풍년숯불갈비", "categorySlug": "korean", - "address": "전라남도 목포시 산정로 120-1 (산정동)", - "district": "전라남도 목포시", - "latitude": 34.7992827458212, - "longitude": 126.393162428108, - "representativePriceAmount": 6000, - "representativePriceLabel": "옛날짜장", + "address": "서울특별시 용산구 새창로 130 1,2층", + "district": "서울특별시 용산구", + "latitude": 37.5359434126284, + "longitude": 126.961088803009, + "representativePriceAmount": 9000, + "representativePriceLabel": "돌솥비밤밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 옛날짜장 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-272-1872", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비밤밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-719-6530 / 영업시간: 11:00~22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4569c03b51c1283b489f", - "label": "옛날짜장", - "amount": 6000, + "id": "31c77757b33f880e3ae4", + "label": "돌솥비밤밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c09e84a4def102210157", - "label": "잔치국수", - "amount": 6000, + "id": "e0b3ecb6a5215e3e5baf", + "label": "뚝배기불고기", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "4569c03b51c1283b489f-history", - "label": "옛날짜장", - "amount": 6000, + "id": "b804f6b860f961a4673b", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "c09e84a4def102210157-history", - "label": "잔치국수", - "amount": 6000, + "id": "d0f9fcf3910492579a7e", + "label": "갈비탕", + "amount": 9000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-10502", - "name": "용일식육식당", - "businessName": "용일식육식당", - "categorySlug": "korean", - "address": "전라남도 목포시 양을로196번길 7 (용당동, 용일아파트)", - "district": "전라남도 목포시", - "latitude": 34.8104772153102, - "longitude": 126.391872175823, - "representativePriceAmount": 9000, - "representativePriceLabel": "백반", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-272-0184", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "8c17f8a3bac87f3437b9", - "label": "백반", - "amount": 9000, + "id": "88db558011c26882dc77", + "label": "김치전골", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d64f84e1c73fb523e970", - "label": "김치찌개", - "amount": 9000, + "id": "210d131b980c597349b2", + "label": "냉면", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5ac9137767fdf481cb38", + "label": "누룽지", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4bc2ee77518473bde560", + "label": "돌솥비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a3302992c386154677c3", + "label": "맷보기 냉면", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1b2a7b2875d0de8ac5a5", + "label": "부대전골", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d18a9e94079b6f1ae377", + "label": "소내장탕", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a1c6273f13357ab64d60", + "label": "야채비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d91b233128c5ed13cfe3", + "label": "육개장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8c17f8a3bac87f3437b9-history", - "label": "백반", + "id": "31c77757b33f880e3ae4-history", + "label": "돌솥비밤밥", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d64f84e1c73fb523e970-history", - "label": "김치찌개", + "id": "e0b3ecb6a5215e3e5baf-history", + "label": "뚝배기불고기", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-10500", - "name": "우아미미용실", - "businessName": "우아미미용실", - "categorySlug": "beauty", - "address": "전라남도 목포시 영산로250번길 13 (용당동)", - "district": "전라남도 목포시", - "latitude": 34.8020067240489, - "longitude": 126.39447577251, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트(기본)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(기본) 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-277-1869", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "9fe7377200906dfb12e1", - "label": "커트(기본)", + "id": "b804f6b860f961a4673b-history", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d0f9fcf3910492579a7e-history", + "label": "갈비탕", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "88db558011c26882dc77-history", + "label": "김치전골", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "210d131b980c597349b2-history", + "label": "냉면", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "5ac9137767fdf481cb38-history", + "label": "누룽지", "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "9fe7377200906dfb12e1-history", - "label": "커트(기본)", + "id": "4bc2ee77518473bde560-history", + "label": "돌솥비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a3302992c386154677c3-history", + "label": "맷보기 냉면", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "1b2a7b2875d0de8ac5a5-history", + "label": "부대전골", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d18a9e94079b6f1ae377-history", + "label": "소내장탕", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a1c6273f13357ab64d60-history", + "label": "야채비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d91b233128c5ed13cfe3-history", + "label": "육개장", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-11261", - "name": "기계반점", - "businessName": "기계반점", - "categorySlug": "chinese", - "address": "경상북도 포항시 북구 기계면 자조길 15 1층", - "district": "경상북도 포항시", - "latitude": 36.070902333521, - "longitude": 129.211627068839, - "representativePriceAmount": 8000, - "representativePriceLabel": "짬뽕", + "id": "goodprice-416", + "name": "컷트클럽", + "businessName": "컷트클럽", + "categorySlug": "beauty", + "address": "서울특별시 노원구 동일로 1541 (상계동, 11단지종합상가 15-2)", + "district": "서울특별시 노원구", + "latitude": 37.6656742727167, + "longitude": 127.05705028385, + "representativePriceAmount": 10000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짬뽕 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-246-4244", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 이용료(커트) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-933-0221", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c609584069ad06057cb0", - "label": "짬뽕", - "amount": 8000, + "id": "632752b7a1ec624a3eaf", + "label": "이용료(커트)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c609584069ad06057cb0-history", - "label": "짬뽕", - "amount": 8000, + "id": "632752b7a1ec624a3eaf-history", + "label": "이용료(커트)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25080,65 +24514,65 @@ "comments": [] }, { - "id": "goodprice-6831", - "name": "대봉막창", - "businessName": "대봉막창", + "id": "goodprice-4359", + "name": "그랑블루바다향기칼국수", + "businessName": "그랑블루바다향기칼국수", "categorySlug": "korean", - "address": "경상남도 창원시 진해구 벚꽃로60번길 25 1층 1025호(화천동, 중앙시장)", - "district": "경상남도 창원시", - "latitude": 35.1510678992756, - "longitude": 128.665642625987, + "address": "강원특별자치도 춘천시 동내면 고은길 168 2층", + "district": "강원특별자치도 춘천시", + "latitude": 37.8383207877726, + "longitude": 127.783588716154, "representativePriceAmount": 9000, - "representativePriceLabel": "돼지막창", + "representativePriceLabel": "해물칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지막창 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-545-7292", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해물칼국수 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-263-2801 / 영업시간: 08:00 - 21:00 매주 일요일은 점심식사만 가능 (11:00 - 14:00)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "49b78999cd1e2d745c4e", - "label": "돼지막창", + "id": "7e078491a1b88611f581", + "label": "해물칼국수", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a41b62330d0d6581e063", - "label": "양념막창", - "amount": 10000, + "id": "b2709beac0aede322dfe", + "label": "야채비빔밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6cc00b980e1aa4aefa30", - "label": "생삼겹", - "amount": 10000, + "id": "fdf913938dabbaef97cd", + "label": "비빔국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "49b78999cd1e2d745c4e-history", - "label": "돼지막창", + "id": "7e078491a1b88611f581-history", + "label": "해물칼국수", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a41b62330d0d6581e063-history", - "label": "양념막창", - "amount": 10000, + "id": "b2709beac0aede322dfe-history", + "label": "야채비빔밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6cc00b980e1aa4aefa30-history", - "label": "생삼겹", - "amount": 10000, + "id": "fdf913938dabbaef97cd-history", + "label": "비빔국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25146,37 +24580,37 @@ "comments": [] }, { - "id": "goodprice-14220", - "name": "대패3000냥삼겹살", - "businessName": "대패3000냥삼겹살", - "categorySlug": "korean", - "address": "경상남도 창원시 마산합포구 산호남로 11 (산호동) 1층", - "district": "경상남도 창원시", - "latitude": 35.21758679106357, - "longitude": 128.58131775121527, - "representativePriceAmount": 3000, - "representativePriceLabel": "대패삼겹살(1인분_기본5인)", + "id": "goodprice-18678", + "name": "우리뷰티", + "businessName": "우리뷰티", + "categorySlug": "beauty", + "address": "대전광역시 동구 용운로1번길 5 (대동) 대동", + "district": "대전광역시 동구", + "latitude": 36.32944033216982, + "longitude": 127.44360995154223, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 대패삼겹살(1인분_기본5인) 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-223-3538 / 영업시간: 영업시간 영업 중21:30에 라스트오더21시 30분에 라스트오더 매일 10:00 - 22:00 21:30 라스트오더 - 명절 당일", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-282-7718 / 영업시간: 10:00 ~ 19:00 매주 월요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fc543510becaf8645c68", - "label": "대패삼겹살(1인분_기본5인)", - "amount": 3000, + "id": "a0f704f45a317b1f5b2f", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fc543510becaf8645c68-history", - "label": "대패삼겹살(1인분_기본5인)", - "amount": 3000, + "id": "a0f704f45a317b1f5b2f-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25184,65 +24618,51 @@ "comments": [] }, { - "id": "goodprice-15973", - "name": "돌솥밥 수", - "businessName": "돌솥밥 수", - "categorySlug": "korean", - "address": "경상남도 창원시 의창구 용지로293번길 21 (사림동) 돌솥밥 수", - "district": "경상남도 창원시", - "latitude": 35.240281774923226, - "longitude": 128.68795184702972, - "representativePriceAmount": 10000, - "representativePriceLabel": "돌솥밥 정식", + "id": "goodprice-890", + "name": "한일각", + "businessName": "한일각", + "categorySlug": "chinese", + "address": "서울특별시 용산구 보광로 21-1 2층", + "district": "서울특별시 용산구", + "latitude": 37.5263948828068, + "longitude": 127.000515078407, + "representativePriceAmount": 4000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥밥 정식 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-261-2905", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-796-2557 / 영업시간: 10:00~20:40", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a6ec06a067ff7bcaadc7", - "label": "돌솥밥 정식", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9a98f1d599567ecafdd7", - "label": "김치찌개", - "amount": 8000, + "id": "cb0b4806d9c5a916a520", + "label": "자장면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6471886fc4c35ee3cb41", - "label": "순두부찌개", - "amount": 8000, + "id": "602264816b575147d9c9", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a6ec06a067ff7bcaadc7-history", - "label": "돌솥밥 정식", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9a98f1d599567ecafdd7-history", - "label": "김치찌개", - "amount": 8000, + "id": "cb0b4806d9c5a916a520-history", + "label": "자장면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6471886fc4c35ee3cb41-history", - "label": "순두부찌개", - "amount": 8000, + "id": "602264816b575147d9c9-history", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25250,65 +24670,37 @@ "comments": [] }, { - "id": "goodprice-7121", - "name": "김희선제주몸국", - "businessName": "김희선제주몸국", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 어영길 45-6 1층(용담삼동)", - "district": "제주특별자치도 제주시", - "latitude": 33.5185567991117, - "longitude": 126.49807778062, - "representativePriceAmount": 9000, - "representativePriceLabel": "몸국", + "id": "goodprice-16464", + "name": "클래식", + "businessName": "클래식", + "categorySlug": "barber", + "address": "서울특별시 노원구 한글비석로22길 18 (중계동) 3층", + "district": "서울특별시 노원구", + "latitude": 37.66037534399267, + "longitude": 127.073423918189, + "representativePriceAmount": 7000, + "representativePriceLabel": "남성커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 몸국 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-745-0047 / 영업시간: 목 07:00-16:00 15:40라스트오더 금 07:00-16:00 15:40라스트오더 토 07:00-15:00 14:40라스트오더 일 정기휴무(매주일요일) 월 07:00-16:00 15:40라스트오더 화 07:00-16:00 15:40라스트오더 수 07:00-16:00 15:40라스트오더", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 남성커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 영업시간 09:00~19:00 / 연장무휴", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8c8ace33d8347cae2949", - "label": "몸국", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a0afc4424070607b609e", - "label": "고사리육개장", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8f394ca05bd3322806ae", - "label": "고등어구이", - "amount": 10000, + "id": "ce469fb774192d3bd5b3", + "label": "남성커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8c8ace33d8347cae2949-history", - "label": "몸국", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a0afc4424070607b609e-history", - "label": "고사리육개장", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8f394ca05bd3322806ae-history", - "label": "고등어구이", - "amount": 10000, + "id": "ce469fb774192d3bd5b3-history", + "label": "남성커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25316,51 +24708,65 @@ "comments": [] }, { - "id": "goodprice-14247", - "name": "꽃가마식당", - "businessName": "꽃가마식당", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 신산로 97 (일도이동) 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.50533987098967, - "longitude": 126.53587722621165, - "representativePriceAmount": 10000, - "representativePriceLabel": "갈비탕", + "id": "goodprice-14756", + "name": "고가네왕돈까스", + "businessName": "고가네왕돈까스", + "categorySlug": "korean", + "address": "충청북도 청주시 청원구 중앙로 135-2 (우암동)", + "district": "충청북도 청주시", + "latitude": 36.64938771590744, + "longitude": 127.48776069611203, + "representativePriceAmount": 8000, + "representativePriceLabel": "왕돈까스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 갈비탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-755-6454", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 왕돈까스 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-255-1855", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2842c9b78ad0a6f496a7", - "label": "갈비탕", - "amount": 10000, + "id": "bffc62fde919d2b7e84d", + "label": "왕돈까스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0a0de8bdbeba3d67a2f1", - "label": "성게국", - "amount": 10000, + "id": "a3dad97c4b0af72a3bcd", + "label": "양푼이비빔밥", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6aa6ce43ee5851f276f6", + "label": "부대찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2842c9b78ad0a6f496a7-history", - "label": "갈비탕", - "amount": 10000, + "id": "bffc62fde919d2b7e84d-history", + "label": "왕돈까스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0a0de8bdbeba3d67a2f1-history", - "label": "성게국", - "amount": 10000, + "id": "a3dad97c4b0af72a3bcd-history", + "label": "양푼이비빔밥", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6aa6ce43ee5851f276f6-history", + "label": "부대찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25368,51 +24774,89 @@ "comments": [] }, { - "id": "goodprice-18039", - "name": "꽃이피어나", - "businessName": "꽃이피어나", + "id": "goodprice-14912", + "name": "우리헤어클럽", + "businessName": "우리헤어클럽", "categorySlug": "beauty", - "address": "제주특별자치도 제주시 도남로 102-12 (도남동) 꽃이피어나", - "district": "제주특별자치도 제주시", - "latitude": 33.49138991942305, - "longitude": 126.52711922981103, + "address": "대전광역시 동구 백룡로57번길 118 (자양동) 자양동", + "district": "대전광역시 동구", + "latitude": 36.3383596687159, + "longitude": 127.45088284522323, "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "representativePriceLabel": "미용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-722-1202", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1367-4071 / 영업시간: 15:00~19:00 / 휴무일(토요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4937d425a8e501efd994", - "label": "커트", + "id": "58b0cc4344c396ed705f", + "label": "미용료(커트)", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "58b0cc4344c396ed705f-history", + "label": "미용료(커트)", "amount": 10000, "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15744", + "name": "홍콩중화요리", + "businessName": "홍콩중화요리", + "categorySlug": "chinese", + "address": "서울특별시 용산구 한강대로 367-1 (동자동) 1층", + "district": "서울특별시 용산구", + "latitude": 37.55137708872881, + "longitude": 126.97191979121847, + "representativePriceAmount": 6500, + "representativePriceLabel": "짜장면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "남영동 착한가격업소", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-6451-0653 / 영업시간: 09:21:00 (매주 일요일 휴무)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "08cb414cfa7d7da80348", + "label": "짜장면", + "amount": 6500, + "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ceddd8e3c08db374db8f", - "label": "아이커트", - "amount": 7000, + "id": "8a2c9c4b1aa9330771cd", + "label": "짬뽕", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4937d425a8e501efd994-history", - "label": "커트", - "amount": 10000, + "id": "08cb414cfa7d7da80348-history", + "label": "짜장면", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ceddd8e3c08db374db8f-history", - "label": "아이커트", - "amount": 7000, + "id": "8a2c9c4b1aa9330771cd-history", + "label": "짬뽕", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25420,37 +24864,51 @@ "comments": [] }, { - "id": "goodprice-948", - "name": "은미용실", - "businessName": "은미용실", - "categorySlug": "beauty", - "address": "서울특별시 종로구 사직로 108-6 (내자동)", - "district": "서울특별시 종로구", - "latitude": 37.5757821511679, - "longitude": 126.970611077009, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트", + "id": "goodprice-417", + "name": "행운이발관", + "businessName": "행운이발관", + "categorySlug": "barber", + "address": "서울특별시 노원구 화랑로 449 2층1호 (공릉동)", + "district": "서울특별시 노원구", + "latitude": 37.6185353708275, + "longitude": 127.07736255034, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-738-1882 / 영업시간: 09:00~14:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(커트) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 금 09:30-20:00 토 09:30-20:00 일 09:30-20:00 월 09:30-20:00 화 09:30-20:00 수 09:30-20:00 목 정기휴무(매주목요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "450c14e54f2a3bb2dc7d", - "label": "커트", - "amount": 5000, + "id": "302372d62b837258bf0f", + "label": "이용료(커트)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8dfc81ab13b54725fb18", + "label": "염색", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "450c14e54f2a3bb2dc7d-history", - "label": "커트", - "amount": 5000, + "id": "302372d62b837258bf0f-history", + "label": "이용료(커트)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8dfc81ab13b54725fb18-history", + "label": "염색", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25458,37 +24916,37 @@ "comments": [] }, { - "id": "goodprice-19244", - "name": "을밀대 (소문난국밥전문)", - "businessName": "을밀대 (소문난국밥전문)", + "id": "goodprice-15786", + "name": "고가네행복밥상", + "businessName": "고가네행복밥상", "categorySlug": "korean", - "address": "서울특별시 종로구 수표로 131 (낙원동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.572493575407705, - "longitude": 126.98826091182536, - "representativePriceAmount": 3000, - "representativePriceLabel": "우거지해장국", + "address": "충청북도 청주시 서원구 수곡로113번길 11 (수곡동) 1층", + "district": "충청북도 청주시", + "latitude": 36.6203686371318, + "longitude": 127.47013521623991, + "representativePriceAmount": 8000, + "representativePriceLabel": "동태찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우거지해장국 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-742-1633 / 영업시간: 04:00-22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 동태찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-285-6878", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1127911d1e95b303ee81", - "label": "우거지해장국", - "amount": 3000, + "id": "781d3edd28c885c48723", + "label": "동태찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1127911d1e95b303ee81-history", - "label": "우거지해장국", - "amount": 3000, + "id": "781d3edd28c885c48723-history", + "label": "동태찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25496,51 +24954,51 @@ "comments": [] }, { - "id": "goodprice-11182", - "name": "이레이발관", - "businessName": "이레이발관", - "categorySlug": "barber", - "address": "서울특별시 종로구 수표로 115 (낙원동)", - "district": "서울특별시 종로구", - "latitude": 37.5715425171338, - "longitude": 126.989053894726, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", + "id": "goodprice-2525", + "name": "운동화목욕한날", + "businessName": "운동화목욕한날", + "categorySlug": "laundry", + "address": "대전광역시 동구 용운로 170가동 102호(용운동)", + "district": "대전광역시 동구", + "latitude": 36.3276734373929, + "longitude": 127.460965313411, + "representativePriceAmount": 5000, + "representativePriceLabel": "운동화 빨래", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-7192-6413", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 운동화 빨래 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 08:30 ~ 19:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bf2fc652e47245678158", - "label": "커트", - "amount": 7000, + "id": "79d7d9be0c9d09c61767", + "label": "운동화 빨래", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4b68b122e7ae32510251", - "label": "염색", - "amount": 8000, + "id": "7b5d4f759cc379ef97c4", + "label": "운동화 빨래(물세탁)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bf2fc652e47245678158-history", - "label": "커트", - "amount": 7000, + "id": "79d7d9be0c9d09c61767-history", + "label": "운동화 빨래", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4b68b122e7ae32510251-history", - "label": "염색", - "amount": 8000, + "id": "7b5d4f759cc379ef97c4-history", + "label": "운동화 빨래(물세탁)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25548,65 +25006,121 @@ "comments": [] }, { - "id": "goodprice-1659", - "name": "전주식당", - "businessName": "전주식당", + "id": "goodprice-897", + "name": "화로가", + "businessName": "화로가", "categorySlug": "korean", - "address": "부산광역시 중구 대청로 137번길9-1 (중앙동)", - "district": "부산광역시 중구", - "latitude": 35.1036816954121, - "longitude": 129.034881739077, - "representativePriceAmount": 9000, - "representativePriceLabel": "돌솥밥", + "address": "서울특별시 용산구 한강대로 39길 5 1층", + "district": "서울특별시 용산구", + "latitude": 37.5305301811316, + "longitude": 126.96859635845, + "representativePriceAmount": 10000, + "representativePriceLabel": "돌솥비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-469-0771 / 영업시간: 월~금 : 10:00 - 22:00 영업 (토요일 09:00 - 20:00) 매주 일요일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비빔밥 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-798-8480 / 영업시간: 11:30~22:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6380d09504c638ac270c", - "label": "돌솥밥", + "id": "de14908cd42040c59561", + "label": "돌솥비빔밥", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "689c78154becd473f3df", + "label": "생선구이정식", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0a91e989925dfd0c362b", + "label": "(후식)냉면", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4e48e6a117149e30a272", + "label": "(후식)누룽지", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1b6fd9dca067040b4181", + "label": "김치찌개", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8e1c0819cd6701320216", - "label": "돌솥비빔밥", - "amount": 8000, + "id": "a9aefe68d70585e46063", + "label": "뚝배기불고기", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2703c820694b1f08bfd9", - "label": "치즈밥", - "amount": 8000, + "id": "4c9c7b13d5050b7b1703", + "label": "냉콩국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6380d09504c638ac270c-history", - "label": "돌솥밥", + "id": "de14908cd42040c59561-history", + "label": "돌솥비빔밥", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "689c78154becd473f3df-history", + "label": "생선구이정식", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0a91e989925dfd0c362b-history", + "label": "(후식)냉면", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4e48e6a117149e30a272-history", + "label": "(후식)누룽지", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1b6fd9dca067040b4181-history", + "label": "김치찌개", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8e1c0819cd6701320216-history", - "label": "돌솥비빔밥", - "amount": 8000, + "id": "a9aefe68d70585e46063-history", + "label": "뚝배기불고기", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2703c820694b1f08bfd9-history", - "label": "치즈밥", - "amount": 8000, + "id": "4c9c7b13d5050b7b1703-history", + "label": "냉콩국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25614,93 +25128,103 @@ "comments": [] }, { - "id": "goodprice-19098", - "name": "정가는집밥", - "businessName": "정가는집밥", - "categorySlug": "korean", - "address": "부산광역시 중구 동광길 28 (중앙동4가) 정가는집밥", - "district": "부산광역시 중구", - "latitude": 35.10397220382151, - "longitude": 129.03454710183587, + "id": "goodprice-16466", + "name": "현대세탁", + "businessName": "현대세탁", + "categorySlug": "laundry", + "address": "서울특별시 노원구 중계로 230 (중계동, 중계5단지주공아파트) 2상가 102호", + "district": "서울특별시 노원구", + "latitude": 37.65082132337281, + "longitude": 127.07473673124387, "representativePriceAmount": 8000, - "representativePriceLabel": "정식", + "representativePriceLabel": "양복 세탁", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-240-1138 / 영업시간: 11:00~20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복 세탁 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-951-1756 / 영업시간: 영업시간 8:30~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e1cf6ea7dd56d76455e4", - "label": "정식", + "id": "d3a39cb99b23d89ca7b6", + "label": "양복 세탁", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "6ac87f3e7db63b89301d", - "label": "된장찌개", + "id": "d3a39cb99b23d89ca7b6-history", + "label": "양복 세탁", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15852", + "name": "고드미손두부", + "businessName": "고드미손두부", + "categorySlug": "korean", + "address": "충청북도 청주시 흥덕구 서현로 12-31 (가경동)", + "district": "충청북도 청주시", + "latitude": 36.6159289050475, + "longitude": 127.42453456395413, + "representativePriceAmount": 9000, + "representativePriceLabel": "국산콩순두부", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국산콩순두부 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-284-0944", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "e84e2b10eec7bbe6248f", - "label": "수제비", - "amount": 6000, + "id": "e5fea02235fd66fe7c50", + "label": "국산콩순두부", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d2811fc177220df59686", - "label": "김치찌개", + "id": "0dc95ee288d7ad4eba3f", + "label": "국산콩비지장", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8fedfddef91a71595301", - "label": "불고기백반", - "amount": 10000, + "id": "82c05f63ab969fedeb42", + "label": "국산콩청국장", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e1cf6ea7dd56d76455e4-history", - "label": "정식", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6ac87f3e7db63b89301d-history", - "label": "된장찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e84e2b10eec7bbe6248f-history", - "label": "수제비", - "amount": 6000, + "id": "e5fea02235fd66fe7c50-history", + "label": "국산콩순두부", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d2811fc177220df59686-history", - "label": "김치찌개", + "id": "0dc95ee288d7ad4eba3f-history", + "label": "국산콩비지장", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8fedfddef91a71595301-history", - "label": "불고기백반", - "amount": 10000, + "id": "82c05f63ab969fedeb42-history", + "label": "국산콩청국장", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25708,26 +25232,26 @@ "comments": [] }, { - "id": "goodprice-11185", - "name": "정원이용원", - "businessName": "정원이용원", - "categorySlug": "barber", - "address": "부산광역시 중구 대청로134번길16 (동광동3가)", - "district": "부산광역시 중구", - "latitude": 35.1014290808544, - "longitude": 129.034814332461, + "id": "goodprice-17508", + "name": "꽃보다남자남성커트", + "businessName": "꽃보다남자남성커트", + "categorySlug": "beauty", + "address": "울산광역시 남구 두왕로190번길 31 (선암동) 1층", + "district": "울산광역시 남구", + "latitude": 35.518683361146806, + "longitude": 129.31515922674268, "representativePriceAmount": 10000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-0108", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1315-4144 / 영업시간: 10:00~19:00(매주 화요일 정기휴무, 매주 첫째주 일요일 정기휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "50531fb144926121ebde", + "id": "2f864f122e56ed02c126", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -25736,7 +25260,7 @@ ], "history": [ { - "id": "50531fb144926121ebde-history", + "id": "2f864f122e56ed02c126-history", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -25746,37 +25270,37 @@ "comments": [] }, { - "id": "goodprice-17980", - "name": "지정식당", - "businessName": "지정식당", + "id": "goodprice-18223", + "name": "5오돈까스", + "businessName": "5오돈까스", "categorySlug": "korean", - "address": "대구광역시 중구 중앙대로58길 10 (남산동) 남산동", - "district": "대구광역시 중구", - "latitude": 35.85740112997052, - "longitude": 128.59163907520352, - "representativePriceAmount": 6000, - "representativePriceLabel": "순두부", + "address": "서울특별시 성동구 용답중앙길 57-1 (용답동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.56432681506716, + "longitude": 127.05232354630908, + "representativePriceAmount": 9000, + "representativePriceLabel": "등심돈까스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-427-8322 / 영업시간: 월~토 10:00~21:00 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 등심돈까스 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1405-7573", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2f9467ebc816cc3b1d5c", - "label": "순두부", - "amount": 6000, + "id": "1a503b88fa119c2d3f6b", + "label": "등심돈까스", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2f9467ebc816cc3b1d5c-history", - "label": "순두부", - "amount": 6000, + "id": "1a503b88fa119c2d3f6b-history", + "label": "등심돈까스", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25784,51 +25308,65 @@ "comments": [] }, { - "id": "goodprice-2015", - "name": "천선루", - "businessName": "천선루", - "categorySlug": "chinese", - "address": "대구광역시 중구 대봉로 261-1 (봉산동)", - "district": "대구광역시 중구", - "latitude": 35.8618460883915, - "longitude": 128.600047477155, - "representativePriceAmount": 5500, - "representativePriceLabel": "짜장면", + "id": "goodprice-418", + "name": "힘북이용원", + "businessName": "힘북이용원", + "categorySlug": "barber", + "address": "서울특별시 노원구 동일로 1390 204(상계동, 상계주공아파트6단지 상가)", + "district": "서울특별시 노원구", + "latitude": 37.6527180726916, + "longitude": 127.061519941724, + "representativePriceAmount": 7000, + "representativePriceLabel": "이용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-422-4222 / 영업시간: 매일 11:00-21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이용료(커트) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-931-2331 / 영업시간: 18:30에18시30분에 목 08:00-18:30 금 08:00-18:30 토 08:00-18:30 일 08:00-18:30 월 08:00-18:30 화 08:00-18:30 수 정기휴무(매주수요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "de8080a658c318a727c9", - "label": "짜장면", - "amount": 5500, + "id": "e0efc8d036b55b6a3b65", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "14820699c3c0b28f88f8", - "label": "짬뽕", - "amount": 7000, + "id": "3d3598e45cfae5e5928b", + "label": "염색 염색", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "62f0feb215218ee7b76b", + "label": "컷 이발", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "de8080a658c318a727c9-history", - "label": "짜장면", - "amount": 5500, + "id": "e0efc8d036b55b6a3b65-history", + "label": "이용료(커트)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "14820699c3c0b28f88f8-history", - "label": "짬뽕", - "amount": 7000, + "id": "3d3598e45cfae5e5928b-history", + "label": "염색 염색", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "62f0feb215218ee7b76b-history", + "label": "컷 이발", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25836,51 +25374,51 @@ "comments": [] }, { - "id": "goodprice-10070", - "name": "춘사김밥", - "businessName": "춘사김밥", + "id": "goodprice-5410", + "name": "또또분식", + "businessName": "또또분식", "categorySlug": "korean", - "address": "대구광역시 중구 중앙대로 282 (남산동)", - "district": "대구광역시 중구", - "latitude": 35.8583288163274, - "longitude": 128.591617516822, - "representativePriceAmount": 3000, - "representativePriceLabel": "참치김밥", + "address": "전북특별자치도 전주시 덕진구 삼송3길 14", + "district": "전북특별자치도 전주시", + "latitude": 35.8424270036272, + "longitude": 127.135459918463, + "representativePriceAmount": 4500, + "representativePriceLabel": "떡볶이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 참치김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-423-7827", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f6f6ceae52993a1da95d", - "label": "참치김밥", - "amount": 3000, + "id": "ea9bd3f31d7800fbe561", + "label": "떡볶이", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ba3409f5bb110e88b6cf", - "label": "진미김밥", - "amount": 3000, + "id": "9206dc170a859a859780", + "label": "수제모듬튀김", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f6f6ceae52993a1da95d-history", - "label": "참치김밥", - "amount": 3000, + "id": "ea9bd3f31d7800fbe561-history", + "label": "떡볶이", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ba3409f5bb110e88b6cf-history", - "label": "진미김밥", - "amount": 3000, + "id": "9206dc170a859a859780-history", + "label": "수제모듬튀김", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25888,51 +25426,51 @@ "comments": [] }, { - "id": "goodprice-17981", - "name": "콩나물과시래기밥맛집", - "businessName": "콩나물과시래기밥맛집", - "categorySlug": "korean", - "address": "대구광역시 중구 약령길 58-7 (장관동) 1층", - "district": "대구광역시 중구", - "latitude": 35.86881460101817, - "longitude": 128.5898667124599, - "representativePriceAmount": 7000, - "representativePriceLabel": "콩나물국밥", + "id": "goodprice-3398", + "name": "명품세탁 빨래터", + "businessName": "명품세탁 빨래터", + "categorySlug": "laundry", + "address": "경기도 수원시 영통구 동탄원천로 915번길 36 104호", + "district": "경기도 수원시", + "latitude": 37.2569793706321, + "longitude": 127.043828501468, + "representativePriceAmount": 7500, + "representativePriceLabel": "세탁료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1342-9756 / 영업시간: 월~토 11:00~21:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 세탁료 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-216-8939 / 영업시간: 매일 09:00~20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9c4fbf16da3528bc8ea0", - "label": "콩나물국밥", - "amount": 7000, + "id": "b44b33137bc7284e67fa", + "label": "세탁료", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d4d18bee457d5874d5a3", - "label": "콩나물비빔밥", - "amount": 7000, + "id": "236a0579eee4a8ccaf80", + "label": "의복수선료", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9c4fbf16da3528bc8ea0-history", - "label": "콩나물국밥", - "amount": 7000, + "id": "b44b33137bc7284e67fa-history", + "label": "세탁료", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d4d18bee457d5874d5a3-history", - "label": "콩나물비빔밥", - "amount": 7000, + "id": "236a0579eee4a8ccaf80-history", + "label": "의복수선료", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -25940,34 +25478,27 @@ "comments": [] }, { - "id": "goodprice-2227", - "name": "장터삼겹살(신흥)", - "businessName": "장터삼겹살(신흥)", + "id": "goodprice-755", + "name": "고바우생삼겹", + "businessName": "고바우생삼겹", "categorySlug": "korean", - "address": "인천광역시 중구 서해대로454번길 11-3 (선화동)", - "district": "인천광역시 중구", - "latitude": 37.466061476741, - "longitude": 126.635998763313, - "representativePriceAmount": 10000, - "representativePriceLabel": "삼겹살(200g)", + "address": "서울특별시 성동구 동일로 221 1층", + "district": "서울특별시 성동구", + "latitude": 37.551669481941, + "longitude": 127.069016755899, + "representativePriceAmount": 8000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살(200g) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-887-5355 / 영업시간: 16:00~24:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-498-8442 / 영업시간: 07:30~22:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8a312be1a55ed7b9af67", - "label": "삼겹살(200g)", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b643b8c17fd6e7672bd8", - "label": "냉면", + "id": "3c3781adad2e36e0110b", + "label": "백반", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -25975,15 +25506,8 @@ ], "history": [ { - "id": "8a312be1a55ed7b9af67-history", - "label": "삼겹살(200g)", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b643b8c17fd6e7672bd8-history", - "label": "냉면", + "id": "3c3781adad2e36e0110b-history", + "label": "백반", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -25992,51 +25516,37 @@ "comments": [] }, { - "id": "goodprice-2228", - "name": "장터삼겹살(연안)", - "businessName": "장터삼겹살(연안)", - "categorySlug": "korean", - "address": "인천광역시 중구 연안부두로53번길 31 (항동7가)", - "district": "인천광역시 중구", - "latitude": 37.4534364723169, - "longitude": 126.604052571574, - "representativePriceAmount": 9000, - "representativePriceLabel": "삼겹살 (180g)", + "id": "goodprice-15942", + "name": "다다다헤어", + "businessName": "다다다헤어", + "categorySlug": "beauty", + "address": "서울특별시 은평구 응암로28길 36 (응암동, 임창폴라리스) 101호", + "district": "서울특별시 은평구", + "latitude": 37.593874578604826, + "longitude": 126.92195781796335, + "representativePriceAmount": 10000, + "representativePriceLabel": "학생 컷", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살 (180g) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-882-6880 / 영업시간: 15:00~23:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 학생 컷 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-356-6811 / 영업시간: 매일 10:00~20:00(매주 화요일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bcd88fde243b5377c6dd", - "label": "삼겹살 (180g)", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "de2afa9a2eb156f749e8", - "label": "냉면", - "amount": 7000, + "id": "e3b81cb5cf5c7386623e", + "label": "학생 컷", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bcd88fde243b5377c6dd-history", - "label": "삼겹살 (180g)", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "de2afa9a2eb156f749e8-history", - "label": "냉면", - "amount": 7000, + "id": "e3b81cb5cf5c7386623e-history", + "label": "학생 컷", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26044,65 +25554,65 @@ "comments": [] }, { - "id": "goodprice-15362", - "name": "인촌", - "businessName": "인촌", - "categorySlug": "korean", - "address": "광주광역시 동구 구성로194번길 20-1 (금남로4가) 1-2층", - "district": "광주광역시 동구", - "latitude": 35.151739719004304, - "longitude": 126.91559598810717, - "representativePriceAmount": 10000, - "representativePriceLabel": "고등어구이", + "id": "goodprice-13854", + "name": "또또커피", + "businessName": "또또커피", + "categorySlug": "other-food", + "address": "전북특별자치도 전주시 덕진구 삼송3길 11-1 (금암동) 1층", + "district": "전북특별자치도 전주시", + "latitude": 35.842528730789724, + "longitude": 127.13507910263799, + "representativePriceAmount": 2000, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고등어구이 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-234-3389 / 영업시간: 매일 11:30-21:00 브레이크타임 14:30~17:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 운영시간 - (월요일~금요일) 08:00 ~ 17:00 - (토요일~일요일) 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6797a39547b1f483a94d", - "label": "고등어구이", - "amount": 10000, + "id": "5775daff34ce353fc537", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "34110c983869b3e3ed91", - "label": "숯불주물럭구이", - "amount": 10000, + "id": "1e0b78ca486403b40892", + "label": "카페라떼", + "amount": 2700, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "853f0355990e0d469cb7", - "label": "콩나물불고기", - "amount": 10000, + "id": "48aecec2a77f9e0eb606", + "label": "3샷 아메리카노", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6797a39547b1f483a94d-history", - "label": "고등어구이", - "amount": 10000, + "id": "5775daff34ce353fc537-history", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "34110c983869b3e3ed91-history", - "label": "숯불주물럭구이", - "amount": 10000, + "id": "1e0b78ca486403b40892-history", + "label": "카페라떼", + "amount": 2700, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "853f0355990e0d469cb7-history", - "label": "콩나물불고기", - "amount": 10000, + "id": "48aecec2a77f9e0eb606-history", + "label": "3샷 아메리카노", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26110,37 +25620,37 @@ "comments": [] }, { - "id": "goodprice-13190", - "name": "전지적돼지시점", - "businessName": "전지적돼지시점", - "categorySlug": "korean", - "address": "광주광역시 동구 지산로 40 (지산동) 1층", - "district": "광주광역시 동구", - "latitude": 35.147333475396294, - "longitude": 126.93215202959168, - "representativePriceAmount": 7500, - "representativePriceLabel": "김치찌개", + "id": "goodprice-11096", + "name": "모아헤어", + "businessName": "모아헤어", + "categorySlug": "beauty", + "address": "경기도 수원시 장안구 화산로 285번길 12 화남아파트상가 102호(율전동)", + "district": "경기도 수원시", + "latitude": 37.3002864705875, + "longitude": 126.964407790648, + "representativePriceAmount": 9000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1354-1656 / 영업시간: (월~금) 11:30~20:30 (토) 18:00~20:30 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-295-4005", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7e9a772806d5ad5058e3", - "label": "김치찌개", - "amount": 7500, + "id": "624984a4be48bff5f97a", + "label": "커트", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7e9a772806d5ad5058e3-history", - "label": "김치찌개", - "amount": 7500, + "id": "624984a4be48bff5f97a-history", + "label": "커트", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26148,131 +25658,107 @@ "comments": [] }, { - "id": "goodprice-11652", - "name": "종합분식", - "businessName": "종합분식", + "id": "goodprice-748", + "name": "고향냉면", + "businessName": "고향냉면", "categorySlug": "korean", - "address": "광주광역시 동구 장동로 23-3 (장동)", - "district": "광주광역시 동구", - "latitude": 35.1482844984997, - "longitude": 126.924369524217, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", + "address": "서울특별시 성동구 독서당로 301-93 .", + "district": "서울특별시 성동구", + "latitude": 37.5488200114508, + "longitude": 127.022392761196, + "representativePriceAmount": 9000, + "representativePriceLabel": "냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-225-4928 / 영업시간: 10:00-17:00 휴무일 일요일, 공휴일, 명절", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2234-8043 / 영업시간: 목 11:00-21:00 15:00-16:00브레이크타임 금 11:00-21:00 15:00-16:00브레이크타임 토 11:00-21:00 일 정기휴무(매주일요일) 월 11:00-21:00 15:00-16:00브레이크타임 화 11:00-21:00 15:00-16:00브레이크타임 수 11:00-21:00 15:00-16:00브레이크타임", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0e825b169ec2a5a1b1db", - "label": "김밥", - "amount": 3000, + "id": "23401c0b5ed8f6cad103", + "label": "냉면", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2818eb473f6d625f12e9", - "label": "볶음밥", - "amount": 7000, + "id": "222eac341901471ee96a", + "label": "보리비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "25fb1003a2dcdb593a95", - "label": "찌개(김치참치순두부부대)", - "amount": 7000, + "id": "bf43695909e56ff59121", + "label": "곱배기", + "amount": 1000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "0e825b169ec2a5a1b1db-history", - "label": "김밥", - "amount": 3000, + "id": "3bda8ca849cb9adb423a", + "label": "만두국 떡만두 칼만두 접시만두", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "2818eb473f6d625f12e9-history", - "label": "볶음밥", - "amount": 7000, + "id": "eeaf9c7952b9dbb52e9e", + "label": "물냉면 비빔냉면", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "25fb1003a2dcdb593a95-history", - "label": "찌개(김치참치순두부부대)", + "id": "aa4af640f8f80658d493", + "label": "보리비빔밥+된장찌게", "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" } ], - "comments": [] - }, - { - "id": "goodprice-2546", - "name": "삼대째전통칼국수", - "businessName": "삼대째전통칼국수", - "categorySlug": "korean", - "address": "대전광역시 동구 대전로 825번길 13 (정동)", - "district": "대전광역시 동구", - "latitude": 36.3325533506759, - "longitude": 127.430855541848, - "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-257-5432 / 영업시간: 09:30 ~ 20:30", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "history": [ { - "id": "1911b6d1a1f052258302", - "label": "칼국수", - "amount": 7000, + "id": "23401c0b5ed8f6cad103-history", + "label": "냉면", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "beb82e09c717cd9f8ad2", - "label": "콩국수(여름)", + "id": "222eac341901471ee96a-history", + "label": "보리비빔밥", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "b1f4e4f0b29ce136b60b", - "label": "칼국수(곱빼기)", - "amount": 8000, + "id": "bf43695909e56ff59121-history", + "label": "곱배기", + "amount": 1000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "1911b6d1a1f052258302-history", - "label": "칼국수", - "amount": 7000, + "id": "3bda8ca849cb9adb423a-history", + "label": "만두국 떡만두 칼만두 접시만두", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "beb82e09c717cd9f8ad2-history", - "label": "콩국수(여름)", + "id": "eeaf9c7952b9dbb52e9e-history", + "label": "물냉면 비빔냉면", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b1f4e4f0b29ce136b60b-history", - "label": "칼국수(곱빼기)", - "amount": 8000, + "id": "aa4af640f8f80658d493-history", + "label": "보리비빔밥+된장찌게", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26280,65 +25766,37 @@ "comments": [] }, { - "id": "goodprice-13385", - "name": "생일집", - "businessName": "생일집", - "categorySlug": "korean", - "address": "대전광역시 동구 대전로791번길 45 (중동) (중동)", - "district": "대전광역시 동구", - "latitude": 36.32931900162008, - "longitude": 127.43084985672475, - "representativePriceAmount": 8000, - "representativePriceLabel": "순대국밥", + "id": "goodprice-913", + "name": "대흥이발관", + "businessName": "대흥이발관", + "categorySlug": "barber", + "address": "서울특별시 은평구 연서로32길 19 대흥이발관", + "district": "서울특별시 은평구", + "latitude": 37.618890160091, + "longitude": 126.924414392647, + "representativePriceAmount": 10000, + "representativePriceLabel": "이발", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-226-5254 / 영업시간: 09:00~21:00 / 매주 목요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이발 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-352-5755 / 영업시간: 목~화(9:00~19:00) 정기휴무(매주 수요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fe2e03543223f4b6d3f4", - "label": "순대국밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "fe3f449d61855b490c21", - "label": "설렁탕", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2d41d1f601d941de9487", - "label": "소머리국밥", - "amount": 9000, + "id": "6604be5bdcd9d6624bed", + "label": "이발", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fe2e03543223f4b6d3f4-history", - "label": "순대국밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "fe3f449d61855b490c21-history", - "label": "설렁탕", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2d41d1f601d941de9487-history", - "label": "소머리국밥", - "amount": 9000, + "id": "6604be5bdcd9d6624bed-history", + "label": "이발", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26346,275 +25804,177 @@ "comments": [] }, { - "id": "goodprice-2540", - "name": "성심관", - "businessName": "성심관", - "categorySlug": "chinese", - "address": "대전광역시 동구 동대전로 208 (자양동)", - "district": "대전광역시 동구", - "latitude": 36.3401647426563, - "longitude": 127.449098715918, - "representativePriceAmount": 3000, - "representativePriceLabel": "짜장면", + "id": "goodprice-5436", + "name": "또와분식", + "businessName": "또와분식", + "categorySlug": "bakery", + "address": "전북특별자치도 전주시 완산구 태평5길 41-5", + "district": "전북특별자치도 전주시", + "latitude": 35.8241917473874, + "longitude": 127.143168338244, + "representativePriceAmount": 2000, + "representativePriceLabel": "찹쌀도너츠(3개)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-637-2822 / 영업시간: 10:00~19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 찹쌀도너츠(3개) 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-273-2923 / 영업시간: 10:00-19:30 (화요잃휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "977b62686594381835f6", - "label": "짜장면", - "amount": 3000, + "id": "b844696d599c621e9582", + "label": "찹쌀도너츠(3개)", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d694d53bf0fbd89fe3cc", - "label": "짬뽕", - "amount": 4000, + "id": "b1991af3478a7e4a0c8c", + "label": "찐빵(3개)", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b941a41347bb287ba773", - "label": "탕수육(中)", - "amount": 8000, + "id": "835200d53f0e4397df2f", + "label": "고로케", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8559e8126020cea8f7f3", - "label": "우동", - "amount": 4000, + "id": "d2e8f4c3218c8c0cebfb", + "label": "꽈배기 3개", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7e900dc1a2d6eced0202", - "label": "간짜장", + "id": "e63ebca853e51549606f", + "label": "만두 10개", "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f690c3e46c20689a9dc1", - "label": "울면", - "amount": 5000, + "id": "e1460d3a5748974ba320", + "label": "슈크림", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9fb2710f75d429d2e76e", - "label": "군만두", - "amount": 4000, + "id": "2053ab0d1046729ed09c", + "label": "어묵", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c4b07d809ff792f14c39", - "label": "볶음밥", - "amount": 4000, + "id": "83549f88ab427ae63ea5", + "label": "찐빵 3개", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "15d5f0d4ee825328443d", - "label": "짜장밥", - "amount": 4000, + "id": "61d0d63b13af7cdc1b75", + "label": "찹쌀도너츠 2개", + "amount": 1000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9bdccac1be7483edc3d0", - "label": "짬뽕밥", - "amount": 4000, + "id": "fff9c10e9fc7dfbe3e8e", + "label": "치즈고로케", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7f155dfd58302c2bea7a", - "label": "육개장", - "amount": 5000, + "id": "573a8276161bd4d80fcf", + "label": "팥도너츠 2개", + "amount": 1000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "04e411fda35338dff7dd", - "label": "오므라이스", - "amount": 4500, + "id": "b844696d599c621e9582-history", + "label": "찹쌀도너츠(3개)", + "amount": 2000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "0f9f2d6b0a9ac441eb40", - "label": "김치볶음밥", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f38ef6a5e8086b401504", - "label": "잡채밥", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "84b4197e31d352031433", - "label": "콩국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "35fb45c01a30e4416629", - "label": "새우볶음밥", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d8393c6cfdc1f0696558", - "label": "삼선짬뽕", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5a1e132c0754975be4cc", - "label": "양념탕수육", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "977b62686594381835f6-history", - "label": "짜장면", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d694d53bf0fbd89fe3cc-history", - "label": "짬뽕", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b941a41347bb287ba773-history", - "label": "탕수육(中)", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8559e8126020cea8f7f3-history", - "label": "우동", - "amount": 4000, + "id": "b1991af3478a7e4a0c8c-history", + "label": "찐빵(3개)", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7e900dc1a2d6eced0202-history", - "label": "간짜장", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f690c3e46c20689a9dc1-history", - "label": "울면", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9fb2710f75d429d2e76e-history", - "label": "군만두", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c4b07d809ff792f14c39-history", - "label": "볶음밥", - "amount": 4000, + "id": "835200d53f0e4397df2f-history", + "label": "고로케", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "15d5f0d4ee825328443d-history", - "label": "짜장밥", - "amount": 4000, + "id": "d2e8f4c3218c8c0cebfb-history", + "label": "꽈배기 3개", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9bdccac1be7483edc3d0-history", - "label": "짬뽕밥", + "id": "e63ebca853e51549606f-history", + "label": "만두 10개", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7f155dfd58302c2bea7a-history", - "label": "육개장", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "04e411fda35338dff7dd-history", - "label": "오므라이스", - "amount": 4500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0f9f2d6b0a9ac441eb40-history", - "label": "김치볶음밥", - "amount": 4000, + "id": "e1460d3a5748974ba320-history", + "label": "슈크림", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f38ef6a5e8086b401504-history", - "label": "잡채밥", - "amount": 5000, + "id": "2053ab0d1046729ed09c-history", + "label": "어묵", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "84b4197e31d352031433-history", - "label": "콩국수", - "amount": 6000, + "id": "83549f88ab427ae63ea5-history", + "label": "찐빵 3개", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "35fb45c01a30e4416629-history", - "label": "새우볶음밥", - "amount": 7000, + "id": "61d0d63b13af7cdc1b75-history", + "label": "찹쌀도너츠 2개", + "amount": 1000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d8393c6cfdc1f0696558-history", - "label": "삼선짬뽕", - "amount": 8000, + "id": "fff9c10e9fc7dfbe3e8e-history", + "label": "치즈고로케", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5a1e132c0754975be4cc-history", - "label": "양념탕수육", - "amount": 10000, + "id": "573a8276161bd4d80fcf-history", + "label": "팥도너츠 2개", + "amount": 1000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26622,51 +25982,51 @@ "comments": [] }, { - "id": "goodprice-11390", - "name": "태화장터칼국수", - "businessName": "태화장터칼국수", - "categorySlug": "korean", - "address": "울산광역시 중구 화진길 11-4 (태화동)", - "district": "울산광역시 중구", - "latitude": 35.5552335681624, - "longitude": 129.308547033364, - "representativePriceAmount": 8000, - "representativePriceLabel": "들깨칼국수", + "id": "goodprice-4343", + "name": "송혜진미용실", + "businessName": "송혜진미용실", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 신흥길5번길 8-6 1층(우두동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.9005696948236, + "longitude": 127.727393589753, + "representativePriceAmount": 9000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 들깨칼국수 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-244-6569", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "330a321735bdbb9bd496", - "label": "들깨칼국수", - "amount": 8000, + "id": "07cae761cdd68f6313f3", + "label": "커트", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "96397dbe4ff058829cac", - "label": "수제비", - "amount": 8000, + "id": "a9694e8dbfbfce2cee86", + "label": "드라이", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "330a321735bdbb9bd496-history", - "label": "들깨칼국수", - "amount": 8000, + "id": "07cae761cdd68f6313f3-history", + "label": "커트", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "96397dbe4ff058829cac-history", - "label": "수제비", - "amount": 8000, + "id": "a9694e8dbfbfce2cee86-history", + "label": "드라이", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26674,51 +26034,37 @@ "comments": [] }, { - "id": "goodprice-13648", - "name": "텃밭의반찬&분식", - "businessName": "텃밭의반찬&분식", - "categorySlug": "korean", - "address": "울산광역시 중구 계변고개 11 (복산동) .", - "district": "울산광역시 중구", - "latitude": 35.560346871362604, - "longitude": 129.328562284427, - "representativePriceAmount": 5000, - "representativePriceLabel": "된장찌개", + "id": "goodprice-18225", + "name": "동네커피", + "businessName": "동네커피", + "categorySlug": "other-food", + "address": "서울특별시 성동구 용답중앙길 57 (용답동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.56424361566244, + "longitude": 127.05243946078681, + "representativePriceAmount": 2000, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 5,000원입니다.", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "339e09172f62a1451b79", - "label": "된장찌개", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8a8bb0a40a7946ab37e5", - "label": "비빔밥", - "amount": 5000, + "id": "69b3e7e3bbed6765c52e", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "339e09172f62a1451b79-history", - "label": "된장찌개", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8a8bb0a40a7946ab37e5-history", - "label": "비빔밥", - "amount": 5000, + "id": "69b3e7e3bbed6765c52e-history", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26726,51 +26072,37 @@ "comments": [] }, { - "id": "goodprice-18450", - "name": "파송송분식", - "businessName": "파송송분식", - "categorySlug": "korean", - "address": "울산광역시 중구 종가4길 5 (유곡동) 101호", - "district": "울산광역시 중구", - "latitude": 35.56051072842763, - "longitude": 129.29590608898556, - "representativePriceAmount": 3500, - "representativePriceLabel": "떡볶이", + "id": "goodprice-914", + "name": "영미용실", + "businessName": "영미용실", + "categorySlug": "beauty", + "address": "서울특별시 은평구 진흥로 13길 8 1층(대조동)", + "district": "서울특별시 은평구", + "latitude": 37.6093313817188, + "longitude": 126.925672929288, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1342-4911 / 영업시간: 월~금 08:30~20:00 토요일 08:30~18:00 일요일 08:30~15:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-352-6675 / 영업시간: 월~토(9:00~20:00) 정기휴무(매주 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6cc4ca0bc9e0597d093f", - "label": "떡볶이", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0c535fc9e7aac3aed06e", - "label": "순대", - "amount": 3500, + "id": "677edd368abb233638b3", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6cc4ca0bc9e0597d093f-history", - "label": "떡볶이", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0c535fc9e7aac3aed06e-history", - "label": "순대", - "amount": 3500, + "id": "677edd368abb233638b3-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26778,51 +26110,51 @@ "comments": [] }, { - "id": "goodprice-10199", - "name": "자연셀프 세차장", - "businessName": "자연셀프 세차장", - "categorySlug": "other-service", - "address": "세종특별자치시 금남면 용포로 32", - "district": "세종특별자치시 금남면", - "latitude": 36.4613848948516, - "longitude": 127.280691708831, - "representativePriceAmount": 1000, - "representativePriceLabel": "고압세척(2분30초)", + "id": "goodprice-10497", + "name": "남도먹거리방", + "businessName": "남도먹거리방", + "categorySlug": "korean", + "address": "전라남도 목포시 삼일로13번길 2-1 (남교동)", + "district": "전라남도 목포시", + "latitude": 34.7936753216335, + "longitude": 126.383348462671, + "representativePriceAmount": 8000, + "representativePriceLabel": "순대", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 고압세척(2분30초) 1,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-9895", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "39e8238573ef6b7fe94f", - "label": "고압세척(2분30초)", - "amount": 1000, + "id": "373664cd7e365f55d122", + "label": "순대", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "220cf8bc20b062312379", - "label": "에어청소(3분)", - "amount": 500, + "id": "21d3ffb6ab86ea4f79b3", + "label": "순대국밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "39e8238573ef6b7fe94f-history", - "label": "고압세척(2분30초)", - "amount": 1000, + "id": "373664cd7e365f55d122-history", + "label": "순대", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "220cf8bc20b062312379-history", - "label": "에어청소(3분)", - "amount": 500, + "id": "21d3ffb6ab86ea4f79b3-history", + "label": "순대국밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -26830,491 +26162,271 @@ "comments": [] }, { - "id": "goodprice-19178", - "name": "전주미담콩나물국바바", - "businessName": "전주미담콩나물국바바", - "categorySlug": "korean", - "address": "세종특별자치시 아름서1길 27 (아름동) 101호", - "district": "세종특별자치시 아름서1길", - "latitude": 36.51128159316062, - "longitude": 127.24363527534015, + "id": "goodprice-11113", + "name": "숙미용실", + "businessName": "숙미용실", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 공지로 432-1 (근화동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8737216981244, + "longitude": 127.719469536522, "representativePriceAmount": 5000, - "representativePriceLabel": "콩나물국밥", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1440-1549", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-9217 / 영업시간: 10:00 - 20:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "57f35dba9f77b83d232e", - "label": "콩나물국밥", + "id": "2a82778f35ed691610ae", + "label": "커트", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "ba61691b390963fbcac7", - "label": "만두", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "57f35dba9f77b83d232e-history", - "label": "콩나물국밥", + "id": "2a82778f35ed691610ae-history", + "label": "커트", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "ba61691b390963fbcac7-history", - "label": "만두", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-15901", - "name": "정브레드", - "businessName": "정브레드", - "categorySlug": "other-food", - "address": "세종특별자치시 새롬중앙1로 13 (새롬동, 새뜸마을6단지) 상가", - "district": "세종특별자치시 새롬중앙1로", - "latitude": 36.48442826252241, - "longitude": 127.25083904576256, - "representativePriceAmount": 1000, - "representativePriceLabel": "찹쌀 도너츠", + "id": "goodprice-747", + "name": "동해루", + "businessName": "동해루", + "categorySlug": "chinese", + "address": "서울특별시 성동구 고산자로8길 26 .", + "district": "서울특별시 성동구", + "latitude": 37.5581421344486, + "longitude": 127.036653756474, + "representativePriceAmount": 6000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 찹쌀 도너츠 1,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-3311", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2292-5342 / 영업시간: 금 11:30-20:30 토 11:30-20:30 일 정기휴무(매주일요일) 월 정기휴무(매주월요일) 화 11:30-20:30 수 11:30-20:30 목 11:30-20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d77e5866677bbbc598b0", - "label": "찹쌀 도너츠", - "amount": 1000, + "id": "735d88fa9caf78990acc", + "label": "자장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6e1fb8e6a1113f981e13", - "label": "마들렌(레몬)", - "amount": 1200, + "id": "a95bc2960a0f53239989", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "d77e5866677bbbc598b0-history", - "label": "찹쌀 도너츠", - "amount": 1000, + "id": "0168e5959fb51ea136a5", + "label": "간짜장", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "6e1fb8e6a1113f981e13-history", - "label": "마들렌(레몬)", - "amount": 1200, + "id": "80860f7d534a50eae8a7", + "label": "간품면", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15900", - "name": "집밥한식뷔페", - "businessName": "집밥한식뷔페", - "categorySlug": "korean", - "address": "세종특별자치시 부강면 부강외천로 139 집밥한식뷔페", - "district": "세종특별자치시 부강면", - "latitude": 36.52811606536304, - "longitude": 127.3824825445357, - "representativePriceAmount": 6000, - "representativePriceLabel": "한식뷔페", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1411-3828 / 영업시간: 월~토, 10:30~15:30", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "e7d1602f1f9229f5c74e", - "label": "한식뷔페", - "amount": 6000, + "id": "e2c58cc71050ca9ebb3b", + "label": "기스면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "e7d1602f1f9229f5c74e-history", - "label": "한식뷔페", - "amount": 6000, + "id": "347b4e2d10166313f232", + "label": "볶음밥", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-3400", - "name": "동남세탁소", - "businessName": "동남세탁소", - "categorySlug": "laundry", - "address": "경기도 수원시 장안구 만석로101번길 46 (정자동)", - "district": "경기도 수원시", - "latitude": 37.3007439187584, - "longitude": 126.991377835815, - "representativePriceAmount": 7000, - "representativePriceLabel": "드라이클리닝", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 드라이클리닝 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-253-1414 / 영업시간: 09:00~22:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "b9dd6eb50d4e0982f2c6", - "label": "드라이클리닝", - "amount": 7000, + "id": "1eb996e325e40b142077", + "label": "삼선간짜장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f716032a089d31acfc9a", - "label": "수선", - "amount": 4000, + "id": "82c4f17744d31dc8ae5f", + "label": "삼선우동", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "b9dd6eb50d4e0982f2c6-history", - "label": "드라이클리닝", - "amount": 7000, + "id": "8ebc9652b186c9495f34", + "label": "삼선울면", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "f716032a089d31acfc9a-history", - "label": "수선", - "amount": 4000, + "id": "c5704286c147ca0cc049", + "label": "삼선짬뽕", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-3393", - "name": "동아사우나", - "businessName": "동아사우나", - "categorySlug": "bath", - "address": "경기도 수원시 영통구 매여울로40번길 45 (매탄동)", - "district": "경기도 수원시", - "latitude": 37.2727443891937, - "longitude": 127.047494082233, - "representativePriceAmount": 10000, - "representativePriceLabel": "일반 입욕비", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 일반 입욕비 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-214-3537 / 영업시간: 매일 05:30~19:00 * 계절별 조율", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "500c141507437ecee324", - "label": "일반 입욕비", - "amount": 10000, + "id": "87a7b71a40945a164f6c", + "label": "우동", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "500c141507437ecee324-history", - "label": "일반 입욕비", - "amount": 10000, + "id": "1e83e7627e6daac4629a", + "label": "울면", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11391", - "name": "똘똘이네M카페", - "businessName": "똘똘이네M카페", - "categorySlug": "korean", - "address": "경기도 수원시 권선구 고색로 54번길66 (고색동)", - "district": "경기도 수원시", - "latitude": 37.2474159314554, - "longitude": 126.983768254338, - "representativePriceAmount": 3000, - "representativePriceLabel": "생삼겹(100g)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생삼겹(100g) 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-278-5081", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "fb2e0777ca23c579a3f2", - "label": "생삼겹(100g)", - "amount": 3000, + "id": "6e99c4f8bd271bf77e94", + "label": "쟁반짜장", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d4928b2e2aa9cd5bcb16", - "label": "비빔냉면", - "amount": 8000, + "id": "345ebcd57c74e526dffa", + "label": "쟁반짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b64d55807afac44b1e7c", - "label": "물냉면", - "amount": 8000, + "id": "2db999303e472151fcb1", + "label": "짜장", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fb2e0777ca23c579a3f2-history", - "label": "생삼겹(100g)", - "amount": 3000, + "id": "735d88fa9caf78990acc-history", + "label": "자장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d4928b2e2aa9cd5bcb16-history", - "label": "비빔냉면", - "amount": 8000, + "id": "a95bc2960a0f53239989-history", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b64d55807afac44b1e7c-history", - "label": "물냉면", - "amount": 8000, + "id": "0168e5959fb51ea136a5-history", + "label": "간짜장", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13795", - "name": "박사로냉면", - "businessName": "박사로냉면", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 서면 박사로 839 박사로냉면", - "district": "강원특별자치도 춘천시", - "latitude": 37.8919570462785, - "longitude": 127.68961561665465, - "representativePriceAmount": 7000, - "representativePriceLabel": "냉면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1399-2411 / 영업시간: 10:00 - 18:50 라스트오더 18:45 매주 월요일 정기휴무 동절기에는 19시까지 운영", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "1cd68a57dcf7082ef4dc", - "label": "냉면", - "amount": 7000, + "id": "80860f7d534a50eae8a7-history", + "label": "간품면", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "b813102efdce95fcb76f", - "label": "갈비만두", - "amount": 4000, + "id": "e2c58cc71050ca9ebb3b-history", + "label": "기스면", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "1cd68a57dcf7082ef4dc-history", - "label": "냉면", + "id": "347b4e2d10166313f232-history", + "label": "볶음밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b813102efdce95fcb76f-history", - "label": "갈비만두", - "amount": 4000, + "id": "1eb996e325e40b142077-history", + "label": "삼선간짜장", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11109", - "name": "박설매미용실", - "businessName": "박설매미용실", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 서부대성로 126-1 1층(운교동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8783657017514, - "longitude": 127.73400940214, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "96d9e317af7948f7b465", - "label": "커트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "96d9e317af7948f7b465-history", - "label": "커트", - "amount": 10000, + "id": "82c4f17744d31dc8ae5f-history", + "label": "삼선우동", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4342", - "name": "박혜숙헤어", - "businessName": "박혜숙헤어", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 춘천로309번길 7 (후평동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8823136801827, - "longitude": 127.746727606313, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-257-1360", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "edb4ef5364fd6bde14c4", - "label": "커트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "edb4ef5364fd6bde14c4-history", - "label": "커트", - "amount": 10000, + "id": "8ebc9652b186c9495f34-history", + "label": "삼선울면", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4383", - "name": "밥보네집", - "businessName": "밥보네집", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 서부대성로 239번길 4 (효자동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8730237470997, - "longitude": 127.744950136894, - "representativePriceAmount": 6000, - "representativePriceLabel": "제육볶음정식", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육볶음정식 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-2123 / 영업시간: 10:00 - 21:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "2c55b3f6e2c31807a34f", - "label": "제육볶음정식", - "amount": 6000, + "id": "c5704286c147ca0cc049-history", + "label": "삼선짬뽕", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "cb94c264dd00a9085c9e", - "label": "닭볶음정식", + "id": "87a7b71a40945a164f6c-history", + "label": "우동", "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "14d230bd3eeaf1bab585", - "label": "오징어볶음정식", + "id": "1e83e7627e6daac4629a-history", + "label": "울면", "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "2c55b3f6e2c31807a34f-history", - "label": "제육볶음정식", - "amount": 6000, + "id": "6e99c4f8bd271bf77e94-history", + "label": "쟁반짜장", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cb94c264dd00a9085c9e-history", - "label": "닭볶음정식", - "amount": 6000, + "id": "345ebcd57c74e526dffa-history", + "label": "쟁반짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "14d230bd3eeaf1bab585-history", - "label": "오징어볶음정식", - "amount": 6000, + "id": "2db999303e472151fcb1-history", + "label": "짜장", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27322,37 +26434,37 @@ "comments": [] }, { - "id": "goodprice-15845", - "name": "다정순대국", - "businessName": "다정순대국", - "categorySlug": "korean", - "address": "충청북도 청주시 청원구 직지대로 844-2 (우암동)", - "district": "충청북도 청주시", - "latitude": 36.64864564378414, - "longitude": 127.48481810685502, - "representativePriceAmount": 8000, - "representativePriceLabel": "순대국밥", + "id": "goodprice-17614", + "name": "컷트클럽", + "businessName": "컷트클럽", + "categorySlug": "beauty", + "address": "서울특별시 은평구 연서로9길 3 (역촌동) 1층", + "district": "서울특별시 은평구", + "latitude": 37.607363441738244, + "longitude": 126.91461372177586, + "representativePriceAmount": 9000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-274-1954", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 화~일 10:00~20:00 매주 월요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c148af6519e95c97cfb2", - "label": "순대국밥", - "amount": 8000, + "id": "46c51a8fba0e80a81e01", + "label": "커트", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c148af6519e95c97cfb2-history", - "label": "순대국밥", - "amount": 8000, + "id": "46c51a8fba0e80a81e01-history", + "label": "커트", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27360,51 +26472,51 @@ "comments": [] }, { - "id": "goodprice-16073", - "name": "달시쓰", - "businessName": "달시쓰", - "categorySlug": "other-food", - "address": "충청북도 청주시 서원구 창직로 104 (사직동) 1층", - "district": "충청북도 청주시", - "latitude": 36.63017696582773, - "longitude": 127.47323022163665, - "representativePriceAmount": 2000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-16973", + "name": "낭만맛집", + "businessName": "낭만맛집", + "categorySlug": "korean", + "address": "전남 목포시 만호로 11-1 (금동2가)", + "district": "전남 목포시", + "latitude": 34.784382080202, + "longitude": 126.381886313664, + "representativePriceAmount": 8000, + "representativePriceLabel": "톳비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 톳비빔밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-244-6668", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "210e6550275650c1b076", - "label": "아메리카노", - "amount": 2000, + "id": "1d3e5aa406a5acb8f99b", + "label": "톳비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "972da0bcf512c5427e94", - "label": "카페라떼", - "amount": 3000, + "id": "55e31c2f3b130d4f2586", + "label": "해초국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "210e6550275650c1b076-history", - "label": "아메리카노", - "amount": 2000, + "id": "1d3e5aa406a5acb8f99b-history", + "label": "톳비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "972da0bcf512c5427e94-history", - "label": "카페라떼", - "amount": 3000, + "id": "55e31c2f3b130d4f2586-history", + "label": "해초국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27412,65 +26524,75 @@ "comments": [] }, { - "id": "goodprice-15579", - "name": "듀팡과자점", - "businessName": "듀팡과자점", - "categorySlug": "bakery", - "address": "충청남도 천안시 서북구 늘푸른5길 22 (두정동) 102호", + "id": "goodprice-4915", + "name": "백미용실", + "businessName": "백미용실", + "categorySlug": "beauty", + "address": "충청남도 천안시 동남구 우영1길 10 106호(봉명동)", "district": "충청남도 천안시", - "latitude": 36.827325601311905, - "longitude": 127.12967689750721, - "representativePriceAmount": 1600, - "representativePriceLabel": "슈크림빵", + "latitude": 36.805213750612, + "longitude": 127.140789087028, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 슈크림빵 1,600원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-556-0456 / 영업시간: 08:00~22:00 정기휴무 매주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-572-5953 / 영업시간: 10:00~18:30 정기휴무(매주 수, 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3143e2b2896dc159931b", - "label": "슈크림빵", - "amount": 1600, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8bd5f88d4e398fb506a6", - "label": "단팥빵", - "amount": 1700, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8da3666c430bf65f83d8", - "label": "추억의 야채빵", - "amount": 2900, + "id": "2532a6004e61f0c118d0", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3143e2b2896dc159931b-history", - "label": "슈크림빵", - "amount": 1600, + "id": "2532a6004e61f0c118d0-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-16962", + "name": "또와", + "businessName": "또와", + "categorySlug": "korean", + "address": "서울특별시 성동구 성수일로12길 20 (성수동2가) 1층 101호", + "district": "서울특별시 성동구", + "latitude": 37.548174430780506, + "longitude": 127.05325046638245, + "representativePriceAmount": 7000, + "representativePriceLabel": "점심뷔페", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 점심뷔페 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-468-4111", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "8bd5f88d4e398fb506a6-history", - "label": "단팥빵", - "amount": 1700, + "id": "ddd6cb60e0c18e3e9507", + "label": "점심뷔페", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "8da3666c430bf65f83d8-history", - "label": "추억의 야채빵", - "amount": 2900, + "id": "ddd6cb60e0c18e3e9507-history", + "label": "점심뷔페", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27478,37 +26600,37 @@ "comments": [] }, { - "id": "goodprice-14667", - "name": "디저트카페 아마이", - "businessName": "디저트카페 아마이", - "categorySlug": "other-food", - "address": "충청남도 천안시 동남구 신촌4로 34 (신방동) .", - "district": "충청남도 천안시", - "latitude": 36.789176140906456, - "longitude": 127.1251417877315, - "representativePriceAmount": 3500, - "representativePriceLabel": "아메리카노", + "id": "goodprice-912", + "name": "행복한세탁소", + "businessName": "행복한세탁소", + "categorySlug": "laundry", + "address": "서울특별시 은평구 진흥로1길 37 1층", + "district": "서울특별시 은평구", + "latitude": 37.6036960556282, + "longitude": 126.918317294932, + "representativePriceAmount": 3000, + "representativePriceLabel": "수선비", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1324-8466 / 영업시간: *주말 20% 할인 이벤트 진행 중 *소방, 경찰 공무원 아메리카노 무료 제공 월~토 10:00~02:00 일 12:00~22:00 휴무일 없음", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 수선비 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-353-8671 / 영업시간: 매일 09:00~21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fb7e9ce3ff2cc5682c8e", - "label": "아메리카노", - "amount": 3500, + "id": "4e97934ca6b4e9d269f6", + "label": "수선비", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fb7e9ce3ff2cc5682c8e-history", - "label": "아메리카노", - "amount": 3500, + "id": "4e97934ca6b4e9d269f6-history", + "label": "수선비", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27516,51 +26638,51 @@ "comments": [] }, { - "id": "goodprice-15305", - "name": "로봇카페 쉼21", - "businessName": "로봇카페 쉼21", - "categorySlug": "other-food", - "address": "충청남도 천안시 서북구 불당21로 71 (불당동) 1층 108호", - "district": "충청남도 천안시", - "latitude": 36.81296311764873, - "longitude": 127.1081762349608, - "representativePriceAmount": 1500, - "representativePriceLabel": "아메리카노", + "id": "goodprice-15149", + "name": "대영한우식육식당", + "businessName": "대영한우식육식당", + "categorySlug": "korean", + "address": "전라남도 목포시 영산로257번길 4-1 (용당동) 대영한우식육식당", + "district": "전라남도 목포시", + "latitude": 34.80385281569496, + "longitude": 126.39420318915167, + "representativePriceAmount": 10000, + "representativePriceLabel": "갈비탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 1,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1365-2171 / 영업시간: 매일 09:00~23:30 휴무일 없음", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 갈비탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-273-7789", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cbfcb38b1a09a84a970f", - "label": "아메리카노", - "amount": 1500, + "id": "4274231ce70048a90409", + "label": "갈비탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "00abe8aa6e7dc0a39eb5", - "label": "카페라떼", - "amount": 3600, + "id": "581c27ee46cf57f75203", + "label": "곰탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "cbfcb38b1a09a84a970f-history", - "label": "아메리카노", - "amount": 1500, + "id": "4274231ce70048a90409-history", + "label": "갈비탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "00abe8aa6e7dc0a39eb5-history", - "label": "카페라떼", - "amount": 3600, + "id": "581c27ee46cf57f75203-history", + "label": "곰탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27568,65 +26690,65 @@ "comments": [] }, { - "id": "goodprice-5445", - "name": "자유식당", - "businessName": "자유식당", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 풍남문3길 25 (전동)", + "id": "goodprice-5402", + "name": "하얀세탁나라", + "businessName": "하얀세탁나라", + "categorySlug": "laundry", + "address": "전북특별자치도 전주시 덕진구 시천로 29-30 (송천동1가, 한양아파트 상가 1층)", "district": "전북특별자치도 전주시", - "latitude": 35.8148512494836, - "longitude": 127.146919020928, + "latitude": 35.8605364471238, + "longitude": 127.113373136028, "representativePriceAmount": 6000, - "representativePriceLabel": "청국장", + "representativePriceLabel": "양복", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-286-1986 / 영업시간: 오픈 시간은 일정하지 않으며 21:30분에 닫음", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-902-4555 / 영업시간: 금 08:00-20:00 토 08:00-20:00 일 정기휴무(매주일요일) 월 08:00-20:00 화 08:00-20:00 수 08:00-20:00 목 08:00-20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ea016189c6520a3b928b", - "label": "청국장", + "id": "3d29b3be1555e5293a6c", + "label": "양복", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "497b20890aa938d639aa", - "label": "된장찌개", - "amount": 6000, + "id": "ea29b9f252655b5050c9", + "label": "바지", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "af4177e03dcbca143e57", - "label": "김치찌개", - "amount": 7000, + "id": "43735d2ed97a30d95ac7", + "label": "티셔츠", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ea016189c6520a3b928b-history", - "label": "청국장", + "id": "3d29b3be1555e5293a6c-history", + "label": "양복", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "497b20890aa938d639aa-history", - "label": "된장찌개", - "amount": 6000, + "id": "ea29b9f252655b5050c9-history", + "label": "바지", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "af4177e03dcbca143e57-history", - "label": "김치찌개", - "amount": 7000, + "id": "43735d2ed97a30d95ac7-history", + "label": "티셔츠", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27634,37 +26756,37 @@ "comments": [] }, { - "id": "goodprice-5432", - "name": "전원갈비", - "businessName": "전원갈비", + "id": "goodprice-16965", + "name": "또와분식", + "businessName": "또와분식", "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 서신천변로 57", - "district": "전북특별자치도 전주시", - "latitude": 35.8306785212809, - "longitude": 127.114061757425, - "representativePriceAmount": 8000, - "representativePriceLabel": "우렁쌈밥", + "address": "서울특별시 성동구 마장로35나길 40 (마장동) 101호", + "district": "서울특별시 성동구", + "latitude": 37.56721803327301, + "longitude": 127.0432918670249, + "representativePriceAmount": 5000, + "representativePriceLabel": "떡볶이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우렁쌈밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-242-8560 / 영업시간: 월~토 11:00-22:00 (휴무 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6052-8083", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "45a3aa1d1b5bdd8c5cc4", - "label": "우렁쌈밥", - "amount": 8000, + "id": "90df69994922fdaaba8b", + "label": "떡볶이", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "45a3aa1d1b5bdd8c5cc4-history", - "label": "우렁쌈밥", - "amount": 8000, + "id": "90df69994922fdaaba8b-history", + "label": "떡볶이", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27672,27 +26794,27 @@ "comments": [] }, { - "id": "goodprice-18285", - "name": "울도숯불갈비", - "businessName": "울도숯불갈비", - "categorySlug": "korean", - "address": "전라남도 목포시 대양로 107-1 (연산동) 1층", - "district": "전라남도 목포시", - "latitude": 34.821537871081894, - "longitude": 126.39121589517268, + "id": "goodprice-917", + "name": "행복한이발관", + "businessName": "행복한이발관", + "categorySlug": "barber", + "address": "서울특별시 은평구 통일로69길 33 1층", + "district": "서울특별시 은평구", + "latitude": 37.6100148987322, + "longitude": 126.925572244057, "representativePriceAmount": 9000, - "representativePriceLabel": "돌판비빔밥", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌판비빔밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-276-7800", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목~화(9:30~18:00) 정기휴무(매주 수요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bacf125b3a3778b72f2e", - "label": "돌판비빔밥", + "id": "307c8a312d74dc01f3db", + "label": "커트", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -27700,8 +26822,8 @@ ], "history": [ { - "id": "bacf125b3a3778b72f2e-history", - "label": "돌판비빔밥", + "id": "307c8a312d74dc01f3db-history", + "label": "커트", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -27710,145 +26832,51 @@ "comments": [] }, { - "id": "goodprice-5624", - "name": "유달산추어탕", - "businessName": "유달산추어탕", + "id": "goodprice-16322", + "name": "구서방네손칼국수", + "businessName": "구서방네손칼국수", "categorySlug": "korean", - "address": "전라남도 목포시 노적봉길 22-1 (죽동)", - "district": "전라남도 목포시", - "latitude": 34.7900302636707, - "longitude": 126.383065291475, - "representativePriceAmount": 9000, - "representativePriceLabel": "추어탕", + "address": "경상남도 창원시 마산합포구 해안대로 1 (월남동5가) 1층 구서방네손칼국수", + "district": "경상남도 창원시", + "latitude": 35.18079038371285, + "longitude": 128.55905853200002, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-270-7030 / 영업시간: 09:00-20:00 정기휴무(매달 2번째 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-222-9549", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fcf24ba0d32a3e39da5a", - "label": "추어탕", - "amount": 9000, + "id": "c79af2c4561fcd80e8e1", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "01227cf8be9994814481", - "label": "순두부찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a651b28f0de7753f8903", - "label": "우렁이추어탕", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "97a22d9c5ab87071c91c", - "label": "해물파전", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "fcf24ba0d32a3e39da5a-history", - "label": "추어탕", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "01227cf8be9994814481-history", - "label": "순두부찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a651b28f0de7753f8903-history", - "label": "우렁이추어탕", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "97a22d9c5ab87071c91c-history", - "label": "해물파전", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11413", - "name": "유달손칼국수", - "businessName": "유달손칼국수", - "categorySlug": "korean", - "address": "전라남도 목포시 상동로 65 (상동) 유달손칼국수", - "district": "전라남도 목포시", - "latitude": 34.81503671921055, - "longitude": 126.41272602035068, - "representativePriceAmount": 7500, - "representativePriceLabel": "멸치칼국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치칼국수 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-278-1093", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "5e4c4ecbe6da655384c7", - "label": "멸치칼국수", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "abff08e830d679e828b0", - "label": "비빔국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "38b11ac5d20005eaf1bf", - "label": "팥칼국수", - "amount": 8000, + "id": "472195a4c7a5261977be", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5e4c4ecbe6da655384c7-history", - "label": "멸치칼국수", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "abff08e830d679e828b0-history", - "label": "비빔국수", - "amount": 7000, + "id": "c79af2c4561fcd80e8e1-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "38b11ac5d20005eaf1bf-history", - "label": "팥칼국수", - "amount": 8000, + "id": "472195a4c7a5261977be-history", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27856,51 +26884,37 @@ "comments": [] }, { - "id": "goodprice-10498", - "name": "일로순대", - "businessName": "일로순대", - "categorySlug": "korean", - "address": "전라남도 목포시 삼일로13번길 4 (남교동)", - "district": "전라남도 목포시", - "latitude": 34.7936987314894, - "longitude": 126.383236507782, - "representativePriceAmount": 8000, - "representativePriceLabel": "순대", + "id": "goodprice-17489", + "name": "e쁘제헤어프리", + "businessName": "e쁘제헤어프리", + "categorySlug": "beauty", + "address": "전라남도 여수시 허문정1길 52 (문수동) 1층", + "district": "전라남도 여수시", + "latitude": 34.74984276015307, + "longitude": 127.69462555986541, + "representativePriceAmount": 10000, + "representativePriceLabel": "성인여자커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-243-9424", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 성인여자커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-651-0612", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "86f6c662d39d33efee86", - "label": "순대", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e26475506926fc701851", - "label": "순대국밥", - "amount": 8000, + "id": "7eabe0e141ba7b8fb314", + "label": "성인여자커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "86f6c662d39d33efee86-history", - "label": "순대", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e26475506926fc701851-history", - "label": "순대국밥", - "amount": 8000, + "id": "7eabe0e141ba7b8fb314-history", + "label": "성인여자커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -27908,34 +26922,34 @@ "comments": [] }, { - "id": "goodprice-18335", - "name": "기와집식당", - "businessName": "기와집식당", + "id": "goodprice-13420", + "name": "란칼국수", + "businessName": "란칼국수", "categorySlug": "korean", - "address": "경상북도 포항시 남구 연일읍 동문로 45-2 기와집식당", - "district": "경상북도 포항시", - "latitude": 35.994115629687634, - "longitude": 129.35170500121095, - "representativePriceAmount": 8000, - "representativePriceLabel": "소고기국밥", + "address": "서울특별시 성동구 성수일로8길 42 (성수동2가) 1층 104호", + "district": "서울특별시 성동구", + "latitude": 37.545352861266906, + "longitude": 127.05504501517011, + "representativePriceAmount": 9000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소고기국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-283-9888", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-466-6931 / 영업시간: 09:00 ~ 21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5c9278fca628e9c9b6cd", - "label": "소고기국밥", - "amount": 8000, + "id": "b19b4208de7904d99783", + "label": "칼국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "75c99f5c98c6a6e7a2de", - "label": "들깨시래기국밥", + "id": "b729900ec148b5ae43d4", + "label": "열무비빔밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -27943,15 +26957,15 @@ ], "history": [ { - "id": "5c9278fca628e9c9b6cd-history", - "label": "소고기국밥", - "amount": 8000, + "id": "b19b4208de7904d99783-history", + "label": "칼국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "75c99f5c98c6a6e7a2de-history", - "label": "들깨시래기국밥", + "id": "b729900ec148b5ae43d4-history", + "label": "열무비빔밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -27960,65 +26974,65 @@ "comments": [] }, { - "id": "goodprice-14714", - "name": "길커피", - "businessName": "길커피", - "categorySlug": "other-food", - "address": "경상북도 포항시 남구 송도해안길73번길 2 (송도동) 1층", - "district": "경상북도 포항시", - "latitude": 36.03715240915286, - "longitude": 129.37803218689874, - "representativePriceAmount": 2000, - "representativePriceLabel": "원두커피", + "id": "goodprice-679", + "name": "가족이발", + "businessName": "가족이발", + "categorySlug": "barber", + "address": "서울특별시 서대문구 거북골로 154 삼호상가 104호", + "district": "서울특별시 서대문구", + "latitude": 37.5765626078203, + "longitude": 126.913783524957, + "representativePriceAmount": 10000, + "representativePriceLabel": "이발커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 원두커피 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이발커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-374-4323 / 영업시간: 08:00 ~ 20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "715ad751e95ea0678a95", - "label": "원두커피", - "amount": 2000, + "id": "5ae9d731f009733f730c", + "label": "이발커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "47f422e25dd960f7b781", - "label": "생강차", - "amount": 2000, + "id": "6787ad2bbe11c83ebc76", + "label": "초중고생커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "148e7fdcbb54a07f71d8", - "label": "대추차", - "amount": 2000, + "id": "894b90c3f1e30ea969c3", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "715ad751e95ea0678a95-history", - "label": "원두커피", - "amount": 2000, + "id": "5ae9d731f009733f730c-history", + "label": "이발커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "47f422e25dd960f7b781-history", - "label": "생강차", - "amount": 2000, + "id": "6787ad2bbe11c83ebc76-history", + "label": "초중고생커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "148e7fdcbb54a07f71d8-history", - "label": "대추차", - "amount": 2000, + "id": "894b90c3f1e30ea969c3-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28026,27 +27040,34 @@ "comments": [] }, { - "id": "goodprice-18614", - "name": "동마산시장 815족발", - "businessName": "동마산시장 815족발", + "id": "goodprice-17102", + "name": "국밥명가 온마루", + "businessName": "국밥명가 온마루", "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 합성남9길 64 (합성동) 1층", + "address": "경상남도 창원시 의창구 북면 천주로 472 103호", "district": "경상남도 창원시", - "latitude": 35.23951128222638, - "longitude": 128.58769435088436, - "representativePriceAmount": 10000, - "representativePriceLabel": "족발한팩", + "latitude": 35.29896206632041, + "longitude": 128.6039200218082, + "representativePriceAmount": 7000, + "representativePriceLabel": "돼지국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 족발한팩 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-255-0815 / 영업시간: 매일 12:00 - 21:40", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지국밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1346-4134", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3c35275523522fb44011", - "label": "족발한팩", + "id": "d8c5cb2a22a6fa6624f6", + "label": "돼지국밥", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ac038d64cd7093b1dd13", + "label": "닭한마리국밥", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -28054,8 +27075,15 @@ ], "history": [ { - "id": "3c35275523522fb44011-history", - "label": "족발한팩", + "id": "d8c5cb2a22a6fa6624f6-history", + "label": "돼지국밥", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ac038d64cd7093b1dd13-history", + "label": "닭한마리국밥", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -28064,37 +27092,37 @@ "comments": [] }, { - "id": "goodprice-16320", - "name": "동북식당", - "businessName": "동북식당", - "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 회원동15길 32 (회원동, 대양빌라) 동북식당", - "district": "경상남도 창원시", - "latitude": 35.2204142401416, - "longitude": 128.57174853653618, - "representativePriceAmount": 7000, - "representativePriceLabel": "한정식", + "id": "goodprice-6433", + "name": "뉴현대미용실", + "businessName": "뉴현대미용실", + "categorySlug": "beauty", + "address": "경상북도 포항시 북구 새마을로 2 뉴현대미용실", + "district": "경상북도 포항시", + "latitude": 36.0384567529592, + "longitude": 129.358106840482, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-224-4004", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-241-5678 / 영업시간: 8시~18시 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b4562ec984db220e6d16", - "label": "한정식", - "amount": 7000, + "id": "23fcc7a48f6035cc2c94", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b4562ec984db220e6d16-history", - "label": "한정식", - "amount": 7000, + "id": "23fcc7a48f6035cc2c94-history", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28102,41 +27130,34 @@ "comments": [] }, { - "id": "goodprice-11421", - "name": "동촌손칼국수", - "businessName": "동촌손칼국수", + "id": "goodprice-14363", + "name": "맹꽁이", + "businessName": "맹꽁이", "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 합성남3길 39 (합성동)", - "district": "경상남도 창원시", - "latitude": 35.2388486973012, - "longitude": 128.585592677036, - "representativePriceAmount": 5500, - "representativePriceLabel": "손칼국수", + "address": "서울특별시 성동구 용답중앙25길 1 (용답동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.56300839788014, + "longitude": 127.0540980823421, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-255-3378", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2214-9996 / 영업시간: 11:00-21:00/매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e06ee87d76c7c08d12be", - "label": "손칼국수", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1a0bd269e52024979d0f", - "label": "손수제비", - "amount": 5500, + "id": "9b795f5d4031aca34084", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c99dd348bee0e38f6fa2", - "label": "김치찌개", + "id": "cdeb48420786000adabc", + "label": "냉면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -28144,22 +27165,15 @@ ], "history": [ { - "id": "e06ee87d76c7c08d12be-history", - "label": "손칼국수", - "amount": 5500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1a0bd269e52024979d0f-history", - "label": "손수제비", - "amount": 5500, + "id": "9b795f5d4031aca34084-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c99dd348bee0e38f6fa2-history", - "label": "김치찌개", + "id": "cdeb48420786000adabc-history", + "label": "냉면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -28168,65 +27182,65 @@ "comments": [] }, { - "id": "goodprice-7044", - "name": "남문이용원", - "businessName": "남문이용원", - "categorySlug": "barber", - "address": "제주특별자치도 제주시 남성로 125 (삼도일동)", - "district": "제주특별자치도 제주시", - "latitude": 33.5090975162483, - "longitude": 126.518756056763, + "id": "goodprice-680", + "name": "더헤어", + "businessName": "더헤어", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 증가로32안길 1 1층", + "district": "서울특별시 서대문구", + "latitude": 37.5841400980583, + "longitude": 126.912011888775, "representativePriceAmount": 10000, - "representativePriceLabel": "일반컷트", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 일반컷트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-757-5935 / 영업시간: 휴게시간 13:00에영업시작 13시0분에영업시작 화 08:00-18:00 12:00-13:00휴게시간 수 08:00-18:00 12:00-13:00휴게시간 목 08:00-18:00 12:00-13:00휴게시간 금 08:00-18:00 12:00-13:00휴게시간 토 08:00-18:00 12:00-13:00휴게시간 일 정기휴무(매주일요일) 월 08:00-18:00 12:00-13:00휴게시간", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "34c2ead86073e84db27e", - "label": "일반컷트", + "id": "b9754708e7dfa3e394a3", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "434879a5992bfb82139a", - "label": "학생컷트", + "id": "4ea9762ae98a292f6493", + "label": "기타 샴푸", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d1119eb47eff58f906c9", - "label": "컷 학생 컷트", - "amount": 7000, + "id": "d933c22ce65d1e6beb0d", + "label": "컷 컷트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "34c2ead86073e84db27e-history", - "label": "일반컷트", + "id": "b9754708e7dfa3e394a3-history", + "label": "커트", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "434879a5992bfb82139a-history", - "label": "학생컷트", + "id": "4ea9762ae98a292f6493-history", + "label": "기타 샴푸", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d1119eb47eff58f906c9-history", - "label": "컷 학생 컷트", - "amount": 7000, + "id": "d933c22ce65d1e6beb0d-history", + "label": "컷 컷트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28234,51 +27248,51 @@ "comments": [] }, { - "id": "goodprice-7222", - "name": "남촌식당", - "businessName": "남촌식당", + "id": "goodprice-17142", + "name": "국수랑돈가스랑", + "businessName": "국수랑돈가스랑", "categorySlug": "korean", - "address": "제주특별자치도 제주시 서광로 174", - "district": "제주특별자치도 제주시", - "latitude": 33.4997144726038, - "longitude": 126.514871117614, - "representativePriceAmount": 6000, - "representativePriceLabel": "멸치국수", + "address": "경상남도 창원시 진해구 진해대로597번길 8 (경화동) 1층", + "district": "경상남도 창원시", + "latitude": 35.15809278309137, + "longitude": 128.6810665767454, + "representativePriceAmount": 8000, + "representativePriceLabel": "왕돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-753-1502", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 왕돈가스 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1440-7000", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4d1830147abb74d3ddd9", - "label": "멸치국수", - "amount": 6000, + "id": "dacc06289b07263ba786", + "label": "왕돈가스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3bc7bcdcb0f05b10e245", - "label": "고기국수", - "amount": 7000, + "id": "a3bab3fcadec04ba2289", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4d1830147abb74d3ddd9-history", - "label": "멸치국수", - "amount": 6000, + "id": "dacc06289b07263ba786-history", + "label": "왕돈가스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3bc7bcdcb0f05b10e245-history", - "label": "고기국수", - "amount": 7000, + "id": "a3bab3fcadec04ba2289-history", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28286,65 +27300,51 @@ "comments": [] }, { - "id": "goodprice-10624", - "name": "남현순대", - "businessName": "남현순대", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 천수로 56 108동 102호", - "district": "제주특별자치도 제주시", - "latitude": 33.5039520338025, - "longitude": 126.542601590797, - "representativePriceAmount": 7000, - "representativePriceLabel": "멸치국수", + "id": "goodprice-1388", + "name": "대영탕", + "businessName": "대영탕", + "categorySlug": "bath", + "address": "부산광역시 서구 구덕로 132번길 9 (토성동5가)", + "district": "부산광역시 서구", + "latitude": 35.0972775635676, + "longitude": 129.022430372656, + "representativePriceAmount": 8000, + "representativePriceLabel": "대인", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-751-3374", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 대인 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-254-9515 / 영업시간: 5:00-18:00 화요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "745a6a036b47c468f9a9", - "label": "멸치국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "371fa92453effb52f340", - "label": "몸국", - "amount": 9000, + "id": "c09921136ff1eda92c56", + "label": "대인", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8dfbd885cafb69f43965", - "label": "냉국수", - "amount": 7000, + "id": "079d42a85ae084a4f85b", + "label": "소인", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "745a6a036b47c468f9a9-history", - "label": "멸치국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "371fa92453effb52f340-history", - "label": "몸국", - "amount": 9000, + "id": "c09921136ff1eda92c56-history", + "label": "대인", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8dfbd885cafb69f43965-history", - "label": "냉국수", - "amount": 7000, + "id": "079d42a85ae084a4f85b-history", + "label": "소인", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28352,37 +27352,37 @@ "comments": [] }, { - "id": "goodprice-19061", - "name": "이모네감자탕", - "businessName": "이모네감자탕", + "id": "goodprice-13421", + "name": "명가", + "businessName": "명가", "categorySlug": "korean", - "address": "서울특별시 종로구 새문안로9길 29-3 (당주동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.571272473253565, - "longitude": 126.97522954478573, - "representativePriceAmount": 9000, - "representativePriceLabel": "뼈해장국", + "address": "서울특별시 성동구 무학봉16길 1 (하왕십리동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.5613651060617, + "longitude": 127.03138203262702, + "representativePriceAmount": 10000, + "representativePriceLabel": "소불고기", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-733-7314", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소불고기 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00 ~ 22:00/일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "40a48551f039f2610793", - "label": "뼈해장국", - "amount": 9000, + "id": "e35d878fb5d0cb1b6131", + "label": "소불고기", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "40a48551f039f2610793-history", - "label": "뼈해장국", - "amount": 9000, + "id": "e35d878fb5d0cb1b6131-history", + "label": "소불고기", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28390,26 +27390,33 @@ "comments": [] }, { - "id": "goodprice-950", - "name": "이소빈 머리나라", - "businessName": "이소빈 머리나라", + "id": "goodprice-681", + "name": "머리사랑", + "businessName": "머리사랑", "categorySlug": "beauty", - "address": "서울특별시 종로구 명륜길 9 (명륜3가)", - "district": "서울특별시 종로구", - "latitude": 37.5879678107949, - "longitude": 126.996150319087, + "address": "서울특별시 서대문구 거북골로200", + "district": "서울특별시 서대문구", + "latitude": 37.5785088438124, + "longitude": 126.908981139193, "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "representativePriceLabel": "커트(남,여)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-766-0545 / 영업시간: 17:00에17시0분에 금 09:00-17:00 토 09:00-17:00 일 정기휴무(매주일요일) 월 09:00-17:00 화 09:00-17:00 수 09:00-17:00 목 09:00-17:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(남,여) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-305-6912", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fe56a992178eae02d730", + "id": "2828cf162c5fefcfe813", + "label": "커트(남,여)", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "18d25848b9de9ba5ba91", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -28418,7 +27425,14 @@ ], "history": [ { - "id": "fe56a992178eae02d730-history", + "id": "2828cf162c5fefcfe813-history", + "label": "커트(남,여)", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "18d25848b9de9ba5ba91-history", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -28428,65 +27442,37 @@ "comments": [] }, { - "id": "goodprice-955", - "name": "인사동칼국수", - "businessName": "인사동칼국수", + "id": "goodprice-15812", + "name": "고산동산", + "businessName": "고산동산", "categorySlug": "korean", - "address": "서울특별시 종로구 인사동5길 25 1층", - "district": "서울특별시 종로구", - "latitude": 37.5720973140597, - "longitude": 126.985392406484, - "representativePriceAmount": 7500, - "representativePriceLabel": "칼국수", + "address": "제주특별자치도 제주시 고산동산5길 18 (이도이동) 1층", + "district": "제주특별자치도 제주시", + "latitude": 33.49614111635461, + "longitude": 126.53452311902686, + "representativePriceAmount": 8000, + "representativePriceLabel": "정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-737-1151 / 영업시간: 월~금 07:00-19:00 토, 10:00~15:00 일요일,공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-3693-1604", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "db61cd965159e52c382c", - "label": "칼국수", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f79f357ac590e0446996", - "label": "된장찌개", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f686f6d5824171628bb7", - "label": "순두부", - "amount": 7500, + "id": "0f878fc924e81b4a562f", + "label": "정식", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "db61cd965159e52c382c-history", - "label": "칼국수", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f79f357ac590e0446996-history", - "label": "된장찌개", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f686f6d5824171628bb7-history", - "label": "순두부", - "amount": 7500, + "id": "0f878fc924e81b4a562f-history", + "label": "정식", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28494,65 +27480,51 @@ "comments": [] }, { - "id": "goodprice-17053", - "name": "쭈니네부엌", - "businessName": "쭈니네부엌", - "categorySlug": "korean", - "address": "부산광역시 중구 중구로 86 (대청동4가) 1층", - "district": "부산광역시 중구", - "latitude": 35.10453814088189, - "longitude": 129.03021358937883, - "representativePriceAmount": 6000, - "representativePriceLabel": "추억의쫄우동", + "id": "goodprice-2535", + "name": "은성미용실", + "businessName": "은성미용실", + "categorySlug": "beauty", + "address": "대전광역시 동구 새터2길 26 (신흥동)", + "district": "대전광역시 동구", + "latitude": 36.3227027931205, + "longitude": 127.443901827716, + "representativePriceAmount": 8000, + "representativePriceLabel": "미용료(커트)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추억의쫄우동 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-467-9359", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-283-9633 / 영업시간: 09:00 ~ 19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a477ed2e3270932317be", - "label": "추억의쫄우동", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0475b2bc1cb47a5ae1c5", - "label": "카레덮밥", - "amount": 6500, + "id": "37be0d2ab415ed738d3e", + "label": "미용료(커트)", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "52f9ceb14db7343e765d", - "label": "제육덮밥", - "amount": 7500, + "id": "a905416aa2b751b41ef1", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a477ed2e3270932317be-history", - "label": "추억의쫄우동", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0475b2bc1cb47a5ae1c5-history", - "label": "카레덮밥", - "amount": 6500, + "id": "37be0d2ab415ed738d3e-history", + "label": "미용료(커트)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "52f9ceb14db7343e765d-history", - "label": "제육덮밥", - "amount": 7500, + "id": "a905416aa2b751b41ef1-history", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28560,65 +27532,51 @@ "comments": [] }, { - "id": "goodprice-1639", - "name": "청춘탕수육", - "businessName": "청춘탕수육", - "categorySlug": "chinese", - "address": "부산광역시 중구 대청로135번길18 (중앙동4가)", - "district": "부산광역시 중구", - "latitude": 35.1043355825209, - "longitude": 129.034908852842, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "id": "goodprice-15247", + "name": "별난만두", + "businessName": "별난만두", + "categorySlug": "korean", + "address": "서울특별시 성동구 용답중앙길 52 (용답동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.564545599886905, + "longitude": 127.0516502479485, + "representativePriceAmount": 7000, + "representativePriceLabel": "손칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-468-3786 / 영업시간: 영업시간 :10:30~21:00 일요일 휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2246-2751", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "aba099ccb520e0decfa3", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "628cb5d65691a553d363", - "label": "짬뽕", - "amount": 6000, + "id": "ede189f0e77d6257ddbb", + "label": "손칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "be9f3f398176a40890cc", - "label": "볶음밥", - "amount": 6000, + "id": "356006719e419feb8bd0", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "aba099ccb520e0decfa3-history", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "628cb5d65691a553d363-history", - "label": "짬뽕", - "amount": 6000, + "id": "ede189f0e77d6257ddbb-history", + "label": "손칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "be9f3f398176a40890cc-history", - "label": "볶음밥", - "amount": 6000, + "id": "356006719e419feb8bd0-history", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28626,51 +27584,65 @@ "comments": [] }, { - "id": "goodprice-1633", - "name": "카페두콩", - "businessName": "카페두콩", - "categorySlug": "other-food", - "address": "부산광역시 중구 흑교로46번길8 (보수동1가)", - "district": "부산광역시 중구", - "latitude": 35.1034858345236, - "longitude": 129.025890398337, - "representativePriceAmount": 2500, - "representativePriceLabel": "아메리카노", + "id": "goodprice-682", + "name": "미성이용원", + "businessName": "미성이용원", + "categorySlug": "barber", + "address": "서울특별시 서대문구 명지대3길 48 지하층 102호", + "district": "서울특별시 서대문구", + "latitude": 37.581903175669, + "longitude": 126.921154123028, + "representativePriceAmount": 7000, + "representativePriceLabel": "성인커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00-13:30 일요일 휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 성인커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-314-3396 / 영업시간: 수요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bc2096f155ba6bb3f86a", - "label": "아메리카노", - "amount": 2500, + "id": "1080c3b5563d03453908", + "label": "성인커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "474931ab6a9b68a04a4c", - "label": "카페라떼", - "amount": 3500, + "id": "eaacf70f41a5e6dda11d", + "label": "이발면도세발", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2dec0ca9c2eca1a41f8d", + "label": "세발", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bc2096f155ba6bb3f86a-history", - "label": "아메리카노", - "amount": 2500, + "id": "1080c3b5563d03453908-history", + "label": "성인커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "474931ab6a9b68a04a4c-history", - "label": "카페라떼", - "amount": 3500, + "id": "eaacf70f41a5e6dda11d-history", + "label": "이발면도세발", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2dec0ca9c2eca1a41f8d-history", + "label": "세발", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28678,79 +27650,79 @@ "comments": [] }, { - "id": "goodprice-18938", - "name": "커피컵피", - "businessName": "커피컵피", - "categorySlug": "other-food", - "address": "부산광역시 중구 대청로135번길 13-1 (중앙동4가) 1,2층", - "district": "부산광역시 중구", - "latitude": 35.10404106218001, - "longitude": 129.03464555501037, - "representativePriceAmount": 2000, - "representativePriceLabel": "커피", + "id": "goodprice-18065", + "name": "고슬", + "businessName": "고슬", + "categorySlug": "korean", + "address": "제주특별자치도 제주시 문송길 22 (연동) 고슬", + "district": "제주특별자치도 제주시", + "latitude": 33.487975312677904, + "longitude": 126.49712441188434, + "representativePriceAmount": 4000, + "representativePriceLabel": "떡볶이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-2085-0982 / 영업시간: 영업시간 : 08:00 ~ 21:00 / 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-8900-8495", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b1f6ae3317959e4df717", - "label": "커피", - "amount": 2000, + "id": "f36b386df545f2c4a4fe", + "label": "떡볶이", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "678e2952799ecfc6a4a9", - "label": "커피(스페셜)", - "amount": 2300, + "id": "b26392775e5182585b52", + "label": "잔치국수", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2357bd35e1f19931bf9c", - "label": "카페라떼", - "amount": 3300, + "id": "479ab7798a69a21709f8", + "label": "냉모밀", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7cbd2804bba6ebc41054", - "label": "시나몬카푸치노", - "amount": 3300, + "id": "fc49d9247085d877a38b", + "label": "옛날수제돈까스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b1f6ae3317959e4df717-history", - "label": "커피", - "amount": 2000, + "id": "f36b386df545f2c4a4fe-history", + "label": "떡볶이", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "678e2952799ecfc6a4a9-history", - "label": "커피(스페셜)", - "amount": 2300, + "id": "b26392775e5182585b52-history", + "label": "잔치국수", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2357bd35e1f19931bf9c-history", - "label": "카페라떼", - "amount": 3300, + "id": "479ab7798a69a21709f8-history", + "label": "냉모밀", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7cbd2804bba6ebc41054-history", - "label": "시나몬카푸치노", - "amount": 3300, + "id": "fc49d9247085d877a38b-history", + "label": "옛날수제돈까스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28758,65 +27730,65 @@ "comments": [] }, { - "id": "goodprice-10077", - "name": "특별한돼지국밥", - "businessName": "특별한돼지국밥", - "categorySlug": "korean", - "address": "대구광역시 중구 국채보상로140길 35 (동인동4가) .", - "district": "대구광역시 중구", - "latitude": 35.867239763231744, - "longitude": 128.60637360935215, + "id": "goodprice-3403", + "name": "문화미용실", + "businessName": "문화미용실", + "categorySlug": "beauty", + "address": "경기도 수원시 장안구 정조로 934번길 29-18 (영화동)", + "district": "경기도 수원시", + "latitude": 37.2923701800345, + "longitude": 127.013797271773, "representativePriceAmount": 8000, - "representativePriceLabel": "돼지국밥", + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-5243", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-256-1463 / 영업시간: 08:30~18:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d2a4b69dd0703672f960", - "label": "돼지국밥", + "id": "bea0ee0cc07144323db6", + "label": "커트", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "00a459006146926eaf37", - "label": "내장국밥", - "amount": 8000, + "id": "2583e71337de3ab3e874", + "label": "경로커트", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b713b99dd8c318257e1b", - "label": "순대국밥", - "amount": 8000, + "id": "c77aa4236003c0ea4d7c", + "label": "컷 커트", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d2a4b69dd0703672f960-history", - "label": "돼지국밥", + "id": "bea0ee0cc07144323db6-history", + "label": "커트", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "00a459006146926eaf37-history", - "label": "내장국밥", - "amount": 8000, + "id": "2583e71337de3ab3e874-history", + "label": "경로커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b713b99dd8c318257e1b-history", - "label": "순대국밥", - "amount": 8000, + "id": "c77aa4236003c0ea4d7c-history", + "label": "컷 커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28824,51 +27796,51 @@ "comments": [] }, { - "id": "goodprice-14629", - "name": "포항회식당", - "businessName": "포항회식당", + "id": "goodprice-18224", + "name": "소문난순대국왕족발", + "businessName": "소문난순대국왕족발", "categorySlug": "korean", - "address": "대구광역시 중구 대봉로 240 (대봉동, 대봉서한포레스트) 상가 106호. 포항회식당", - "district": "대구광역시 중구", - "latitude": 35.860129676053866, - "longitude": 128.6023289015774, - "representativePriceAmount": 7000, - "representativePriceLabel": "정식", + "address": "서울특별시 성동구 용답25라길 23 (용답동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.563518499146895, + "longitude": 127.05300594244785, + "representativePriceAmount": 8000, + "representativePriceLabel": "순대국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-422-4415 / 영업시간: 평일, 토요일 11:00 - 19:00 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1417-0207", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "55e751eb61693caac548", - "label": "정식", - "amount": 7000, + "id": "fbf6eb89d486488d2099", + "label": "순대국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f057ee5e80db1e20a7e2", - "label": "제육정식", - "amount": 10000, + "id": "e52a463b0e2fbc1cf032", + "label": "미니족", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "55e751eb61693caac548-history", - "label": "정식", - "amount": 7000, + "id": "fbf6eb89d486488d2099-history", + "label": "순대국", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f057ee5e80db1e20a7e2-history", - "label": "제육정식", - "amount": 10000, + "id": "e52a463b0e2fbc1cf032-history", + "label": "미니족", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28876,65 +27848,51 @@ "comments": [] }, { - "id": "goodprice-17974", - "name": "한강반점", - "businessName": "한강반점", - "categorySlug": "chinese", - "address": "대구광역시 중구 달구벌대로387길 42 (대신동) 1층", - "district": "대구광역시 중구", - "latitude": 35.86500733659813, - "longitude": 128.57524030565048, - "representativePriceAmount": 3000, - "representativePriceLabel": "짜장면", + "id": "goodprice-14413", + "name": "민들레미용실", + "businessName": "민들레미용실", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 간호대로3길 2 (홍제동) 1층", + "district": "서울특별시 서대문구", + "latitude": 37.59667646241485, + "longitude": 126.94809506312029, + "representativePriceAmount": 8000, + "representativePriceLabel": "남성커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-253-7518 / 영업시간: 월~일 10:30~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 영업시간 : 10:00~19:00 휴무일 : 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "711d0094290f423fd152", - "label": "짜장면", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5e780ecade65b2e66019", - "label": "간짜장", - "amount": 7000, + "id": "85073484158f77393144", + "label": "남성커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d938fb7a4641d64161b9", - "label": "짬뽕", - "amount": 7000, + "id": "3439f7c6592279b1ca9f", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "711d0094290f423fd152-history", - "label": "짜장면", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5e780ecade65b2e66019-history", - "label": "간짜장", - "amount": 7000, + "id": "85073484158f77393144-history", + "label": "남성커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d938fb7a4641d64161b9-history", - "label": "짬뽕", - "amount": 7000, + "id": "3439f7c6592279b1ca9f-history", + "label": "여성커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -28942,347 +27900,319 @@ "comments": [] }, { - "id": "goodprice-2026", - "name": "한양뚝배기감자탕", - "businessName": "한양뚝배기감자탕", - "categorySlug": "korean", - "address": "대구광역시 중구 국채보상로140길 28 (동인동2가) .", - "district": "대구광역시 중구", - "latitude": 35.86756096197846, - "longitude": 128.60615118148775, + "id": "goodprice-14253", + "name": "고찌가게", + "businessName": "고찌가게", + "categorySlug": "western", + "address": "제주특별자치도 제주시 가령로4길 27 (이도이동) 1층 101호", + "district": "제주특별자치도 제주시", + "latitude": 33.49814114694817, + "longitude": 126.53535069630652, "representativePriceAmount": 7000, - "representativePriceLabel": "뚝배기", + "representativePriceLabel": "함박스테이크", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뚝배기 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-424-7161 / 영업시간: 08:00am~22:00pm", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 함박스테이크 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4424-4619", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f3920536e903fc1f2d1d", - "label": "뚝배기", + "id": "6ba609703f973a04bf71", + "label": "함박스테이크", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4926930af46b09ba60c1", - "label": "갈비탕", - "amount": 7000, + "id": "a2f7c53682f2c7dc44cf", + "label": "오므라이스", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f740b1d230e58d2f4d1f", - "label": "김치찌개", + "id": "808e2a980828652b81dc", + "label": "카레라이스", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "ebbe16586b94ca25731a", - "label": "감자수제비", - "amount": 5000, + "id": "6ba609703f973a04bf71-history", + "label": "함박스테이크", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "bc1d5649063cfa0a4230", - "label": "냉콩국수", + "id": "a2f7c53682f2c7dc44cf-history", + "label": "오므라이스", "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "fff0bd6c195422df88b1", - "label": "된장찌개", + "id": "808e2a980828652b81dc-history", + "label": "카레라이스", "amount": 6000, "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-16643", + "name": "실비아미용실", + "businessName": "실비아미용실", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 춘천로296번길 18 (후평동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.879961550470746, + "longitude": 127.74662200640537, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-5746 / 영업시간: 매일 09:00~20:00 일요일 비정기적 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "45b88ff303770e9f315a", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "45b88ff303770e9f315a-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-751", + "name": "송하정", + "businessName": "송하정", + "categorySlug": "korean", + "address": "서울특별시 성동구 무학봉길 77 (하왕십리동) .", + "district": "서울특별시 성동구", + "latitude": 37.56129368171884, + "longitude": 127.03112585073366, + "representativePriceAmount": 9000, + "representativePriceLabel": "백반", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2291-3346 / 영업시간: 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "54e6de9ed5a94b942305", + "label": "백반", + "amount": 9000, + "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1a2e35e45673f2b95439", - "label": "비빔국수", - "amount": 6000, + "id": "c96e7ff7b0457c0f4823", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b06857941b1acf9dc44c", - "label": "비빔밥", - "amount": 6000, + "id": "b6719f043ad280ecb3cc", + "label": "동태찌개", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8749f3164fd538cf4d16", - "label": "삼겹살", - "amount": 8000, + "id": "37542f6001b498db2050", + "label": "오징어볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b28e6a28094add7850c6", - "label": "소곰탕", - "amount": 7000, + "id": "561067efb3047d348afa", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "61cc82eaa6c5477a69da", - "label": "칼국수", - "amount": 5000, + "id": "56e7589c492cc723412a", + "label": "주인밥상", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f3920536e903fc1f2d1d-history", - "label": "뚝배기", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4926930af46b09ba60c1-history", - "label": "갈비탕", - "amount": 7000, + "id": "54e6de9ed5a94b942305-history", + "label": "백반", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f740b1d230e58d2f4d1f-history", + "id": "c96e7ff7b0457c0f4823-history", "label": "김치찌개", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ebbe16586b94ca25731a-history", - "label": "감자수제비", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bc1d5649063cfa0a4230-history", - "label": "냉콩국수", - "amount": 6000, + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fff0bd6c195422df88b1-history", - "label": "된장찌개", - "amount": 6000, + "id": "b6719f043ad280ecb3cc-history", + "label": "동태찌개", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1a2e35e45673f2b95439-history", - "label": "비빔국수", - "amount": 6000, + "id": "37542f6001b498db2050-history", + "label": "오징어볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b06857941b1acf9dc44c-history", - "label": "비빔밥", - "amount": 6000, + "id": "561067efb3047d348afa-history", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8749f3164fd538cf4d16-history", - "label": "삼겹살", + "id": "56e7589c492cc723412a-history", + "label": "주인밥상", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "b28e6a28094add7850c6-history", - "label": "소곰탕", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "61cc82eaa6c5477a69da-history", - "label": "칼국수", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-14011", - "name": "진국", - "businessName": "진국", - "categorySlug": "korean", - "address": "인천광역시 중구 제물량로 245-2 (항동1가) 1층", - "district": "인천광역시 중구", - "latitude": 37.473760992186925, - "longitude": 126.61789147782304, - "representativePriceAmount": 6000, - "representativePriceLabel": "콩나물국밥", + "id": "goodprice-676", + "name": "바늘꽃옷수선", + "businessName": "바늘꽃옷수선", + "categorySlug": "other-service", + "address": "서울특별시 서대문구 홍은중앙로 8길 22", + "district": "서울특별시 서대문구", + "latitude": 37.5987804443942, + "longitude": 126.948733439817, + "representativePriceAmount": 3000, + "representativePriceLabel": "의복수선료(바지밑단)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-772-0321", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 의복수선료(바지밑단) 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bcffaa5439bea2013475", - "label": "콩나물국밥", - "amount": 6000, + "id": "c8b0b86a273963b73705", + "label": "의복수선료(바지밑단)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "abb3cf337674e17de910", - "label": "사골곰탕", - "amount": 9000, + "id": "e5f3d3f9e7493d3bf1c5", + "label": "의복수선료(바지기장)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "bcffaa5439bea2013475-history", - "label": "콩나물국밥", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "abb3cf337674e17de910-history", - "label": "사골곰탕", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16952", - "name": "진순두부", - "businessName": "진순두부", - "categorySlug": "korean", - "address": "인천광역시 중구 우현로35번길 24-3 (신포동) 1층", - "district": "인천광역시 중구", - "latitude": 37.47101351299041, - "longitude": 126.62511183339346, - "representativePriceAmount": 10000, - "representativePriceLabel": "바지락순두부+솥밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 바지락순두부+솥밥 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-764-9898", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "35f28c5dbfae0f63efec", - "label": "바지락순두부+솥밥", - "amount": 10000, + "id": "73df970fbec769cb3fd3", + "label": "의복수선료(상의소매)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a5dfcdc7e5e213f8104d", - "label": "들깨버섯순두부+솥밥", - "amount": 10000, + "id": "14c8573f6cdf5a79aee2", + "label": "바지기장", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7b6013a8b48f30889b5d", - "label": "청국장순두부+솥밥", - "amount": 10000, + "id": "b8e845faf9bcd8519585", + "label": "바지밑단", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "040cc557e0544e5f7257", - "label": "굴순두부+솥밥", - "amount": 10000, + "id": "942149629a36a78f1d3b", + "label": "상의소매", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "35f28c5dbfae0f63efec-history", - "label": "바지락순두부+솥밥", - "amount": 10000, + "id": "c8b0b86a273963b73705-history", + "label": "의복수선료(바지밑단)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a5dfcdc7e5e213f8104d-history", - "label": "들깨버섯순두부+솥밥", - "amount": 10000, + "id": "e5f3d3f9e7493d3bf1c5-history", + "label": "의복수선료(바지기장)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7b6013a8b48f30889b5d-history", - "label": "청국장순두부+솥밥", - "amount": 10000, + "id": "73df970fbec769cb3fd3-history", + "label": "의복수선료(상의소매)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "040cc557e0544e5f7257-history", - "label": "굴순두부+솥밥", - "amount": 10000, + "id": "14c8573f6cdf5a79aee2-history", + "label": "바지기장", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14225", - "name": "진흥각", - "businessName": "진흥각", - "categorySlug": "chinese", - "address": "인천광역시 중구 신포로23번길 20 (중앙동4가) 1층", - "district": "인천광역시 중구", - "latitude": 37.471703087227134, - "longitude": 126.62392009417408, - "representativePriceAmount": 6500, - "representativePriceLabel": "유니짜장", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 유니짜장 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-772-3058", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "43632da95f2069592ad4", - "label": "유니짜장", - "amount": 6500, + "id": "b8e845faf9bcd8519585-history", + "label": "바지밑단", + "amount": 3000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "43632da95f2069592ad4-history", - "label": "유니짜장", - "amount": 6500, + "id": "942149629a36a78f1d3b-history", + "label": "상의소매", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -29290,701 +28220,3877 @@ "comments": [] }, { - "id": "goodprice-2249", - "name": "주영미용실", - "businessName": "주영미용실", - "categorySlug": "beauty", - "address": "광주광역시 동구 무등로375번길 27-1 1층(계림동)", - "district": "광주광역시 동구", - "latitude": 35.1630933471234, - "longitude": 126.924296217507, - "representativePriceAmount": 10000, - "representativePriceLabel": "성인남녀컷트", + "id": "goodprice-7116", + "name": "공주네국수", + "businessName": "공주네국수", + "categorySlug": "korean", + "address": "제주특별자치도 제주시 삼봉로 353 1층(봉개동)", + "district": "제주특별자치도 제주시", + "latitude": 33.4913445688525, + "longitude": 126.59371518559, + "representativePriceAmount": 5000, + "representativePriceLabel": "물만두", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 성인남녀컷트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-529-3184 / 영업시간: 09:30-18:00 휴무 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물만두 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-722-4533 / 영업시간: 금 09:00-20:00 15:00-16:30브레이크타임 토 09:00-20:00 15:00-16:30브레이크타임 일 09:00-20:00 15:00-16:30브레이크타임 월 정기휴무(매주월요일) 화 09:00-20:00 15:00-16:30브레이크타임 수 09:00-20:00 15:00-16:30브레이크타임 목 09:00-20:00 15:00-16:30브레이크타임", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c4ea8ff6386742d45a3c", - "label": "성인남녀컷트", - "amount": 10000, + "id": "74bac47162c47cfcf040", + "label": "물만두", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "04acd47e7859ddb088bc", - "label": "남녀커트", - "amount": 10000, + "id": "b153d3349fd951528712", + "label": "고기국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "c4ea8ff6386742d45a3c-history", - "label": "성인남녀컷트", + "id": "16b7d0de929243d46e93", + "label": "돔배고기 소", "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "04acd47e7859ddb088bc-history", - "label": "남녀커트", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11310", - "name": "진 숯불갈비", - "businessName": "진 숯불갈비", - "categorySlug": "chinese", - "address": "광주광역시 동구 무등로 529 (산수동)", - "district": "광주광역시 동구", - "latitude": 35.1564823477708, - "longitude": 126.937445538702, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1482-7550 / 영업시간: 영업시간 11:30~22:00 휴게시간 13:30~17:00 휴무일 일요일, 명절", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "c45663a1187bda86b4b0", - "label": "짜장면", - "amount": 5000, + "id": "aec5b6286581a5ec740d", + "label": "멸고국수", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "db35e7b7781fd940f644", - "label": "짬뽕", - "amount": 7000, + "id": "cf4a24ccb7f5688e0447", + "label": "멸치국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "c45663a1187bda86b4b0-history", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "db35e7b7781fd940f644-history", - "label": "짬뽕", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2277", - "name": "참스민", - "businessName": "참스민", - "categorySlug": "korean", - "address": "광주광역시 동구 남문로 752-3 1층(학동)", - "district": "광주광역시 동구", - "latitude": 35.1370928662675, - "longitude": 126.925449709403, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-232-3883 / 영업시간: 08:30-20:30 휴무일 설, 추석 당일 휴게시간 15:30~16:30", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "3b3332662ada72efe4cc", - "label": "김밥", - "amount": 3000, + "id": "a4e200b4d17d38ca2815", + "label": "몸국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a3ba18d38b66d118fb5b", - "label": "라면", - "amount": 3000, + "id": "ec0543b166e3a870bf49", + "label": "비빔국수", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "56f13d9f3a1724ad18c3", - "label": "찌개(순두부된장)", - "amount": 6500, + "id": "9511c857e2e1071c8b94", + "label": "순대국밥 말아서", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "70996290a4fefb65eb71", - "label": "고구마돈까스", + "id": "90a6d6deec7edc606479", + "label": "순대국밥 밥따로", "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "787b2a1244dd3724b678", - "label": "김밥(1줄)", - "amount": 2500, + "id": "1125055be5aa0c78b9d2", + "label": "열무국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "757df860f976d998dc0a", - "label": "김치김밥(1줄)", - "amount": 3500, + "id": "41637bdd0df10ea92217", + "label": "전복뚝배기", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "765c24e93e58e9c847cf", - "label": "김치볶음밥", - "amount": 5500, + "id": "8368129e0af096780778", + "label": "콩국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "04db5a657af534692948", - "label": "김치우동", + "id": "74bac47162c47cfcf040-history", + "label": "물만두", "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "dcc9b5a06615a20a4ebd", - "label": "김치찌개", - "amount": 6000, + "id": "b153d3349fd951528712-history", + "label": "고기국수", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "c600fc1c278953320abe", - "label": "김치참치볶음밥", - "amount": 6000, + "id": "16b7d0de929243d46e93-history", + "label": "돔배고기 소", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "d420a1c487ea53ed3364", - "label": "누드김밥(1줄)", - "amount": 3500, + "id": "aec5b6286581a5ec740d-history", + "label": "멸고국수", + "amount": 7500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "1a4359de0f960ae4af29", - "label": "돈까스", - "amount": 7000, + "id": "cf4a24ccb7f5688e0447-history", + "label": "멸치국수", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "4ed87534cdd732e05464", - "label": "된장찌개", - "amount": 5500, + "id": "a4e200b4d17d38ca2815-history", + "label": "몸국", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "cbb14a413c237f80e4bd", - "label": "떡국", - "amount": 6000, + "id": "ec0543b166e3a870bf49-history", + "label": "비빔국수", + "amount": 7500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "7c607b4e88293f3c04a1", - "label": "떡만두국", - "amount": 6500, + "id": "9511c857e2e1071c8b94-history", + "label": "순대국밥 말아서", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "b5c9e802e978a546f096", - "label": "떡볶이(쌀)", - "amount": 4000, + "id": "90a6d6deec7edc606479-history", + "label": "순대국밥 밥따로", + "amount": 7500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "d172a5ed9873c8e042fa", - "label": "라볶이", - "amount": 4500, + "id": "1125055be5aa0c78b9d2-history", + "label": "열무국수", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "d50498d3eb804549ea55", - "label": "만두국", - "amount": 6000, + "id": "41637bdd0df10ea92217-history", + "label": "전복뚝배기", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "ad8d2b30325ad42bc210", - "label": "바지락우동", - "amount": 5500, + "id": "8368129e0af096780778-history", + "label": "콩국수", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-10306", + "name": "쌍다리이용소", + "businessName": "쌍다리이용소", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 춘천순환로 42 상가동 101호 (석사동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8546857141914, + "longitude": 127.748703975697, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-5087 / 영업시간: 06:30 - 16:00 매주 일요일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "f4df5bb1906ea4e483c2", - "label": "볶음밥", + "id": "9aa42ad17ee018b1bd89", + "label": "커트", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d803506ddfde04f5aed0", - "label": "불고기덮밥", - "amount": 7000, + "id": "b73481d284ed2e99cc7f", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "99c38c564ac6fb657e2a", - "label": "비빔모밀", + "id": "9aa42ad17ee018b1bd89-history", + "label": "커트", "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e57e78d47bb44d53f27f", - "label": "비빔밥", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "1dc85112625b4c4ee985", - "label": "새우볶음밥", - "amount": 6000, + "id": "b73481d284ed2e99cc7f-history", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-16961", + "name": "수제비먹는닭갈비", + "businessName": "수제비먹는닭갈비", + "categorySlug": "korean", + "address": "서울특별시 성동구 왕십리로21길 14 (행당동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.561297857943586, + "longitude": 127.03286445721793, + "representativePriceAmount": 7500, + "representativePriceLabel": "수제비", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 수제비 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2297-8522", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "b2a7f591405d9f4677eb", - "label": "순두부찌개", - "amount": 5500, + "id": "d84df8d2cc273da481f9", + "label": "수제비", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "9cc71df65119f92f9b5e", - "label": "오뎅(한그릇)", - "amount": 4000, + "id": "d84df8d2cc273da481f9-history", + "label": "수제비", + "amount": 7500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-683", + "name": "삼성이발관", + "businessName": "삼성이발관", + "categorySlug": "barber", + "address": "서울특별시 서대문구 응암로 28 상가101호", + "district": "서울특별시 서대문구", + "latitude": 37.5762716171408, + "longitude": 126.909844105861, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-373-3672", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "524eebe19e8826033910", - "label": "우동", - "amount": 4000, + "id": "97824db1943cbb6187cb", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f08a6df82f87e0831e47", - "label": "유부우동", + "id": "810c85dd46d4fe266e49", + "label": "면도", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "30661efa681329b425ea", - "label": "제육덮밥", + "id": "cdea64266af448cf866d", + "label": "중고생 커트", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e628215001e3ab628050", - "label": "쫄면", + "id": "98429d9616ad47d51513", + "label": "컷 커트", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "4b6ed08c47f105140052", - "label": "참치김밥(1줄)", - "amount": 3500, + "id": "97824db1943cbb6187cb-history", + "label": "커트", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "41dae43ee979554f829f", - "label": "참치덮밥", - "amount": 6500, + "id": "810c85dd46d4fe266e49-history", + "label": "면도", + "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "b3882edffdad430f95e4", - "label": "참치볶음밥", + "id": "cdea64266af448cf866d-history", + "label": "중고생 커트", "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "27b1b920490fc16d4456", - "label": "참치비빔밥", - "amount": 6000, + "id": "98429d9616ad47d51513-history", + "label": "컷 커트", + "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-1650", + "name": "대교식당", + "businessName": "대교식당", + "categorySlug": "korean", + "address": "부산광역시 중구 충장대로 4번길 8 (중앙동4가)", + "district": "부산광역시 중구", + "latitude": 35.1044916301827, + "longitude": 129.036809946537, + "representativePriceAmount": 6000, + "representativePriceLabel": "된장찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-469-0146 / 영업시간: 5:30 - 19:00 토,일 휴무 일요일 격주 휴일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "57b0f293d7bc585f3855", - "label": "참치찌개", + "id": "037e090f49b285ed6a44", + "label": "된장찌개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c99cea27a488fb99f62c", - "label": "치즈김밥(1줄)", - "amount": 3500, + "id": "74b48f2a99c0db3236c8", + "label": "나물비빔밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "70a453876500ac76d897", - "label": "치즈돈까스", - "amount": 7500, + "id": "4d74bcf0933dfbdc433b", + "label": "만두백반", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "4192c6b972661e9056b4", - "label": "치즈된장찌개", + "id": "037e090f49b285ed6a44-history", + "label": "된장찌개", "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "05bfc5e205370e5f87fe", - "label": "치즈떡볶이", - "amount": 5000, + "id": "74b48f2a99c0db3236c8-history", + "label": "나물비빔밥", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "bae3f2f4b7091c1bd49d", - "label": "치즈라볶이", + "id": "4d74bcf0933dfbdc433b-history", + "label": "만두백반", "amount": 5500, "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-4965", + "name": "비비헤어샵", + "businessName": "비비헤어샵", + "categorySlug": "beauty", + "address": "충청남도 천안시 서북구 미라2길 26-1 (쌍용동)", + "district": "충청남도 천안시", + "latitude": 36.8018297147943, + "longitude": 127.129696210405, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-571-1666 / 영업시간: 09:00~19:00 정기휴무(매주 화요일)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "6bed5ad955e9f4b19c53", + "label": "커트", + "amount": 5000, + "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "34fd5d29782104030082", - "label": "칼국수(1인분)", - "amount": 7000, + "id": "e4ebcd60513ed1dc2f88", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3b3332662ada72efe4cc-history", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a3ba18d38b66d118fb5b-history", - "label": "라면", - "amount": 3000, + "id": "6bed5ad955e9f4b19c53-history", + "label": "커트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "56f13d9f3a1724ad18c3-history", - "label": "찌개(순두부된장)", - "amount": 6500, + "id": "e4ebcd60513ed1dc2f88-history", + "label": "염색", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-13424", + "name": "수제비먹는닭갈비 본점", + "businessName": "수제비먹는닭갈비 본점", + "categorySlug": "korean", + "address": "서울특별시 성동구 왕십리로21다길 39 (행당동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.5596440879484, + "longitude": 127.03321604601851, + "representativePriceAmount": 7500, + "representativePriceLabel": "칼국수", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2299-8557 / 영업시간: 11:00 ~ 24:00(라스트 오더 23:00)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "70996290a4fefb65eb71-history", - "label": "고구마돈까스", + "id": "2463822b23866c1a5b83", + "label": "칼국수", "amount": 7500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "787b2a1244dd3724b678-history", - "label": "김밥(1줄)", - "amount": 2500, + "id": "2463822b23866c1a5b83-history", + "label": "칼국수", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-684", + "name": "선머리방", + "businessName": "선머리방", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 모래내로 350", + "district": "서울특별시 서대문구", + "latitude": 37.5809989065081, + "longitude": 126.935330124979, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-379-2696", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "757df860f976d998dc0a-history", - "label": "김치김밥(1줄)", - "amount": 3500, + "id": "d89a658cf147fc4f5f3b", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "765c24e93e58e9c847cf-history", - "label": "김치볶음밥", - "amount": 5500, + "id": "4ab45a36b3f7d4d67873", + "label": "컷 커트", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "04db5a657af534692948-history", - "label": "김치우동", - "amount": 5000, + "id": "d89a658cf147fc4f5f3b-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "dcc9b5a06615a20a4ebd-history", - "label": "김치찌개", + "id": "4ab45a36b3f7d4d67873-history", + "label": "컷 커트", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-1641", + "name": "대성밀냉면전문", + "businessName": "대성밀냉면전문", + "categorySlug": "korean", + "address": "부산광역시 중구 보수대로 44번길 6 (부평동)", + "district": "부산광역시 중구", + "latitude": 35.1008554024383, + "longitude": 129.02385096253, + "representativePriceAmount": 8000, + "representativePriceLabel": "밀면(소)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 밀면(소) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-244-9658 / 영업시간: 10:00~17:00 (여름: 10:00 - 19:30)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "c600fc1c278953320abe-history", - "label": "김치참치볶음밥", - "amount": 6000, + "id": "319803107beee9b91030", + "label": "밀면(소)", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "d420a1c487ea53ed3364-history", - "label": "누드김밥(1줄)", - "amount": 3500, + "id": "c2d4dbc5158d326bced8", + "label": "비빔밀면(소)", + "amount": 8500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "1a4359de0f960ae4af29-history", - "label": "돈까스", - "amount": 7000, + "id": "319803107beee9b91030-history", + "label": "밀면(소)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4ed87534cdd732e05464-history", - "label": "된장찌개", - "amount": 5500, + "id": "c2d4dbc5158d326bced8-history", + "label": "비빔밀면(소)", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-5711", + "name": "개성미용실", + "businessName": "개성미용실", + "categorySlug": "beauty", + "address": "전라남도 여수시 율촌면 당머리길3-1", + "district": "전라남도 여수시", + "latitude": 34.882586423451, + "longitude": 127.579141600752, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-684-7114", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "74b6a197d8d642642465", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4acc797fd060f61b1720", + "label": "드라이", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "74b6a197d8d642642465-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4acc797fd060f61b1720-history", + "label": "드라이", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-14387", + "name": "엘닷", + "businessName": "엘닷", + "categorySlug": "japanese", + "address": "서울특별시 성동구 성수일로12길 20 (성수동2가) 1층 103호", + "district": "서울특별시 성동구", + "latitude": 37.548174430780506, + "longitude": 127.05325046638245, + "representativePriceAmount": 6900, + "representativePriceLabel": "모듬초밥(8pcs)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 모듬초밥(8pcs) 6,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-469-4003 / 영업시간: 11:00-15:00/토,일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "ac4ee6e962b33664e825", + "label": "모듬초밥(8pcs)", + "amount": 6900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "33dcb2e4e1de4ab1ac62", + "label": "모듬초밥(10pcs)", + "amount": 8900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fb7140fcc46af43c2362", + "label": "포케", + "amount": 8900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "ac4ee6e962b33664e825-history", + "label": "모듬초밥(8pcs)", + "amount": 6900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "33dcb2e4e1de4ab1ac62-history", + "label": "모듬초밥(10pcs)", + "amount": 8900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fb7140fcc46af43c2362-history", + "label": "포케", + "amount": 8900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-685", + "name": "아름다운헤어", + "businessName": "아름다운헤어", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 응암로 28 (북가좌동, DMC한양) 한양아파트상가 103호", + "district": "서울특별시 서대문구", + "latitude": 37.57622777866786, + "longitude": 126.908300495886, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트(남여)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(남여) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-376-7124", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "5ed4d3171d8824fcc504", + "label": "커트(남여)", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6040439d52a47b107af0", + "label": "어린이커트", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "5ed4d3171d8824fcc504-history", + "label": "커트(남여)", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6040439d52a47b107af0-history", + "label": "어린이커트", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13811", + "name": "돌고래", + "businessName": "돌고래", + "categorySlug": "korean", + "address": "부산광역시 중구 중구로40번길 15 (신창동2가) 2층", + "district": "부산광역시 중구", + "latitude": 35.1015493615088, + "longitude": 129.02959068112168, + "representativePriceAmount": 8000, + "representativePriceLabel": "순두부백반", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-1825 / 영업시간: 7:00~21:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "9e92e3ee7f73ae4772f4", + "label": "순두부백반", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "33d108c703cb0d4a00f8", + "label": "된장찌개백반", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "9e92e3ee7f73ae4772f4-history", + "label": "순두부백반", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "33d108c703cb0d4a00f8-history", + "label": "된장찌개백반", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-6423", + "name": "닥터크리닝", + "businessName": "닥터크리닝", + "categorySlug": "laundry", + "address": "경상북도 포항시 북구 삼호로253번길 14-1", + "district": "경상북도 포항시", + "latitude": 36.0612792841722, + "longitude": 129.378003776355, + "representativePriceAmount": 4000, + "representativePriceLabel": "세탁료 (상의)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 세탁료 (상의) 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-249-4519 / 영업시간: 금요일08:00-21:00점심시간:12:00~14:00 평일08:00-21:00점심시간:12:00~14:00 토요일08:00-21:00점심시간:12:00~14:00 월요일08:00-21:00점심시간:12:00~14:00 화요일08:00-21:00점심시간:12:00~14:00 수요일08:00-21:00점심시간:12:00~14:00 목요일08:00-21:00점심시간:12:00~14:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "1740a924887f2f0d4e3d", + "label": "세탁료 (상의)", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fbe0cf783713abbcefba", + "label": "세탁료 (하의)", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8b3c5a3df8c1c136604f", + "label": "세탁료 (와이셔츠)", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "401226d6dc07b2269f3e", + "label": "상의", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ef27105aa9f326ba96ab", + "label": "하의", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "1740a924887f2f0d4e3d-history", + "label": "세탁료 (상의)", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fbe0cf783713abbcefba-history", + "label": "세탁료 (하의)", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8b3c5a3df8c1c136604f-history", + "label": "세탁료 (와이셔츠)", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "401226d6dc07b2269f3e-history", + "label": "상의", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ef27105aa9f326ba96ab-history", + "label": "하의", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13428", + "name": "전과함께", + "businessName": "전과함께", + "categorySlug": "korean", + "address": "서울특별시 성동구 무학봉15길 28-1 (하왕십리동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.56360663461696, + "longitude": 127.03036480848614, + "representativePriceAmount": 8000, + "representativePriceLabel": "백반", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 15:00 ~ 22:30", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "9f6a86b349fa191de333", + "label": "백반", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "9f6a86b349fa191de333-history", + "label": "백반", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-687", + "name": "윤헤어모드", + "businessName": "윤헤어모드", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 가재울로10길 25", + "district": "서울특별시 서대문구", + "latitude": 37.5764992467746, + "longitude": 126.922319268751, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-307-2896", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "4d539ee592a59e137b19", + "label": "커트", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "4d539ee592a59e137b19-history", + "label": "커트", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-1651", + "name": "동경식당", + "businessName": "동경식당", + "categorySlug": "korean", + "address": "부산광역시 중구 대청로99번길 16 (대청동2가)", + "district": "부산광역시 중구", + "latitude": 35.104213999781, + "longitude": 129.030751512242, + "representativePriceAmount": 10000, + "representativePriceLabel": "추어탕", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-469-7162 / 영업시간: 영업시간 : 09:00 - 20:00 토, 일, 공휴일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "ed91316640219f41a2db", + "label": "추어탕", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9a4aa8bb5933e1352c16", + "label": "순두부", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "ed91316640219f41a2db-history", + "label": "추어탕", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9a4aa8bb5933e1352c16-history", + "label": "순두부", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-6424", + "name": "대명세탁소", + "businessName": "대명세탁소", + "categorySlug": "laundry", + "address": "경상북도 포항시 북구 중흥로213번길 18-1", + "district": "경상북도 포항시", + "latitude": 36.0236667659089, + "longitude": 129.356179134247, + "representativePriceAmount": 2500, + "representativePriceLabel": "와이셔츠", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 와이셔츠 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-275-9579 / 영업시간: 08시~20시30분 매주 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "3a69b57acdb01a64e464", + "label": "와이셔츠", + "amount": 2500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f92394eaa0f366071c6f", + "label": "양복", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "41da7d4d46fa19f3a149", + "label": "상의", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "3a69b57acdb01a64e464-history", + "label": "와이셔츠", + "amount": 2500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f92394eaa0f366071c6f-history", + "label": "양복", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "41da7d4d46fa19f3a149-history", + "label": "상의", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-10619", + "name": "전주식당", + "businessName": "전주식당", + "categorySlug": "korean", + "address": "서울특별시 성동구 무학봉15가길 1 (하왕십리동) .", + "district": "서울특별시 성동구", + "latitude": 37.56149793492549, + "longitude": 127.03086754559628, + "representativePriceAmount": 8000, + "representativePriceLabel": "백반", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2295-0517", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "88415b2290a4856be0ce", + "label": "백반", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a81239124866abb3cb9a", + "label": "생선구이", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "88415b2290a4856be0ce-history", + "label": "백반", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a81239124866abb3cb9a-history", + "label": "생선구이", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-688", + "name": "은주헤어뉴스", + "businessName": "은주헤어뉴스", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 거북골로20길53-3", + "district": "서울특별시 서대문구", + "latitude": 37.5803043702542, + "longitude": 126.910666702104, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트(여)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(여) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-302-6281 / 영업시간: 09:00 ~ 20:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "f7bcb20498db45595c0e", + "label": "커트(여)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ebbdaffeca171039aa17", + "label": "커트(남)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "f7bcb20498db45595c0e-history", + "label": "커트(여)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ebbdaffeca171039aa17-history", + "label": "커트(남)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-10076", + "name": "명가", + "businessName": "명가", + "categorySlug": "korean", + "address": "대구광역시 중구 달구벌대로 지하 2100 (106)", + "district": "대구광역시 중구", + "latitude": 35.8644213158621, + "longitude": 128.593340834492, + "representativePriceAmount": 6000, + "representativePriceLabel": "된장비빔밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장비빔밥 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-252-9743", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "ab8ce8c3f64bd6fae335", + "label": "된장비빔밥", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c570dff3c757cbb1ca0c", + "label": "왕돈가스", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "45a2bda57af2477c1cfc", + "label": "비빔밥", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c5f991ae60a5098d9d46", + "label": "야채돌솥비빔밥", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "ab8ce8c3f64bd6fae335-history", + "label": "된장비빔밥", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c570dff3c757cbb1ca0c-history", + "label": "왕돈가스", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "45a2bda57af2477c1cfc-history", + "label": "비빔밥", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c5f991ae60a5098d9d46-history", + "label": "야채돌솥비빔밥", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15406", + "name": "박하헤어", + "businessName": "박하헤어", + "categorySlug": "beauty", + "address": "경상남도 창원시 진해구 충장로 397-1 (이동) 1층", + "district": "경상남도 창원시", + "latitude": 35.15259896527641, + "longitude": 128.69534269679198, + "representativePriceAmount": 10000, + "representativePriceLabel": "컷트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-542-5894", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "ada14fd6b85dcd49d21a", + "label": "컷트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "ada14fd6b85dcd49d21a-history", + "label": "컷트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13430", + "name": "착한짜장", + "businessName": "착한짜장", + "categorySlug": "chinese", + "address": "서울특별시 성동구 아차산로7길 17-1 (성수동2가) 1층", + "district": "서울특별시 성동구", + "latitude": 37.54672907636821, + "longitude": 127.05466412141058, + "representativePriceAmount": 5500, + "representativePriceLabel": "자장면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00 ~ 20:30", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "85aa9d21b3c1211cdaef", + "label": "자장면", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e05407ab4780dbf4e88d", + "label": "짬뽕", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "85aa9d21b3c1211cdaef-history", + "label": "자장면", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e05407ab4780dbf4e88d-history", + "label": "짬뽕", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-689", + "name": "은하수헤어갤러리", + "businessName": "은하수헤어갤러리", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 응암로53", + "district": "서울특별시 서대문구", + "latitude": 37.5782043803412, + "longitude": 126.909779737699, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-306-4580 / 영업시간: 10:00 ~ 21:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "45a4321cbb26199eb429", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "45a4321cbb26199eb429-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15468", + "name": "명성김밥", + "businessName": "명성김밥", + "categorySlug": "korean", + "address": "대구광역시 중구 국채보상로131길 55 (동인동1가, 시티타운) 시티상가 10호", + "district": "대구광역시 중구", + "latitude": 35.872799919942665, + "longitude": 128.60198095419133, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-0276 / 영업시간: 07:00 ~ 18:00 *재료 소진에 따라 변동 있음 정기휴무 : 매월 4주차 목요일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "cacd811d1c0ba04b84b8", + "label": "김밥", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9937c6d668691e3099a6", + "label": "컵라면(소)", + "amount": 1200, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "cacd811d1c0ba04b84b8-history", + "label": "김밥", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9937c6d668691e3099a6-history", + "label": "컵라면(소)", + "amount": 1200, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-18050", + "name": "돌하루방방", + "businessName": "돌하루방방", + "categorySlug": "other-service", + "address": "제주특별자치도 제주시 화삼북로 43 (화북일동) 돌하루방방", + "district": "제주특별자치도 제주시", + "latitude": 33.517489993448145, + "longitude": 126.57772441179883, + "representativePriceAmount": 3000, + "representativePriceLabel": "트램펄린(30분)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 트램펄린(30분) 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-9487-4132", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "23e1254142f11cec7393", + "label": "트램펄린(30분)", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "123ced0cd75c929079c6", + "label": "트램펄린(1시간)", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "23e1254142f11cec7393-history", + "label": "트램펄린(30분)", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "123ced0cd75c929079c6-history", + "label": "트램펄린(1시간)", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-18906", + "name": "커피로 그리는 꿈 협동조합", + "businessName": "커피로 그리는 꿈 협동조합", + "categorySlug": "other-food", + "address": "서울특별시 성동구 상원6나길 22-11 (성수동1가) 1층", + "district": "서울특별시 성동구", + "latitude": 37.547690790937395, + "longitude": 127.04999118729668, + "representativePriceAmount": 3000, + "representativePriceLabel": "아메리카노", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "b7cecae94b48e9c5ed32", + "label": "아메리카노", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "b7cecae94b48e9c5ed32-history", + "label": "아메리카노", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-691", + "name": "이리이발관", + "businessName": "이리이발관", + "categorySlug": "barber", + "address": "서울특별시 서대문구 거북골로 208", + "district": "서울특별시 서대문구", + "latitude": 37.5789419883622, + "longitude": 126.908330113748, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-374-3875 / 영업시간: 금 06:00-19:00 토 06:00-19:00 일 06:00-19:00 월 06:00-19:00 화 06:00-19:00 수 정기휴무(매주수요일) 목 06:00-19:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "9feaf956fab22fc119e6", + "label": "커트", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "3b9708ceaefe9cb924f4", + "label": "면도", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "9feaf956fab22fc119e6-history", + "label": "커트", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "3b9708ceaefe9cb924f4-history", + "label": "면도", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15355", + "name": "모정", + "businessName": "모정", + "categorySlug": "korean", + "address": "대구광역시 중구 달구벌대로 2037-16 (동산동) 모정(식당)", + "district": "대구광역시 중구", + "latitude": 35.86701996348072, + "longitude": 128.58658111123873, + "representativePriceAmount": 8000, + "representativePriceLabel": "된장찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월~토 09:30 ~ 15:00 일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "94f75fd423c179197743", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "224dc1ce0026b73a4a82", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "29f2df216ad5f851d555", + "label": "비지찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "94f75fd423c179197743-history", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "224dc1ce0026b73a4a82-history", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "29f2df216ad5f851d555-history", + "label": "비지찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-1390", + "name": "류박사종합세탁", + "businessName": "류박사종합세탁", + "categorySlug": "laundry", + "address": "부산광역시 서구 대영로 40 (서대신동1가)", + "district": "부산광역시 서구", + "latitude": 35.1092342130678, + "longitude": 129.015966141997, + "representativePriceAmount": 7000, + "representativePriceLabel": "양복", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-253-0972 / 영업시간: 금 08:30-20:30 토 08:30-20:30 일 정기휴무(매주일요일) 월 08:30-20:30 화 08:30-20:30 수 08:30-20:30 목 08:30-20:30", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "4e1a0ca3c5dc7d085542", + "label": "양복", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "443236d320ae6f0511c7", + "label": "바지수선", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f61c96c54b287dd6e561", + "label": "바지 수선", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "7e8c286b4baf7e1bda76", + "label": "양복 세탁", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "4e1a0ca3c5dc7d085542-history", + "label": "양복", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "443236d320ae6f0511c7-history", + "label": "바지수선", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f61c96c54b287dd6e561-history", + "label": "바지 수선", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7e8c286b4baf7e1bda76-history", + "label": "양복 세탁", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-14364", + "name": "코너스톤", + "businessName": "코너스톤", + "categorySlug": "other-food", + "address": "서울특별시 성동구 용답길 169-1 (용답동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.56378766446642, + "longitude": 127.05596389673978, + "representativePriceAmount": 3000, + "representativePriceLabel": "아메리카노", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2249-9445 / 영업시간: 11:30-14:00/매주 토,일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "3d5eaf713eec88db46d5", + "label": "아메리카노", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "3d5eaf713eec88db46d5-history", + "label": "아메리카노", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-17908", + "name": "컷앤컬러", + "businessName": "컷앤컬러", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 통일로 404 (홍제동) 1층", + "district": "서울특별시 서대문구", + "latitude": 37.58578773683185, + "longitude": 126.94773292635615, + "representativePriceAmount": 10000, + "representativePriceLabel": "경로우대 남자컷트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 경로우대 남자컷트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1412-0733", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "05073a9615a32a40c18e", + "label": "경로우대 남자컷트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "05073a9615a32a40c18e-history", + "label": "경로우대 남자컷트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-2231", + "name": "백원이네", + "businessName": "백원이네", + "categorySlug": "korean", + "address": "인천광역시 중구 예단포1로 2-10 (운북동)", + "district": "인천광역시 중구", + "latitude": 37.5314534478937, + "longitude": 126.502439167743, + "representativePriceAmount": 5000, + "representativePriceLabel": "해물라면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해물라면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-751-5059 / 영업시간: 10:00~21:00 브레이크타임 : 15:30~16:00 정기휴무(화요일)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "6697dfcad4f16afd23de", + "label": "해물라면", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "6697dfcad4f16afd23de-history", + "label": "해물라면", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-11081", + "name": "꺳잎머리", + "businessName": "꺳잎머리", + "categorySlug": "beauty", + "address": "광주광역시 서구 경열로76번길 6 (농성동)", + "district": "광주광역시 서구", + "latitude": 35.151028051239, + "longitude": 126.894249830137, + "representativePriceAmount": 10000, + "representativePriceLabel": "성인커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 성인커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-361-1781", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "0cd9c885c098ce90ea92", + "label": "성인커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b00d45e5d878592a1927", + "label": "학생커트", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "0cd9c885c098ce90ea92-history", + "label": "성인커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b00d45e5d878592a1927-history", + "label": "학생커트", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15248", + "name": "한우공감", + "businessName": "한우공감", + "categorySlug": "korean", + "address": "서울특별시 성동구 용답중앙길 57-1 (용답동) 1층", + "district": "서울특별시 성동구", + "latitude": 37.56432681506716, + "longitude": 127.05232354630908, + "representativePriceAmount": 8000, + "representativePriceLabel": "김치찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1329-2861", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "f90c79e5a760be155a6f", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "f90c79e5a760be155a6f-history", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-14414", + "name": "헤어큐미용실", + "businessName": "헤어큐미용실", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 포방터길 43 (홍은동) 1층", + "district": "서울특별시 서대문구", + "latitude": 37.59866949252993, + "longitude": 126.94889575654706, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 휴무일 : 첫째, 셋째 수요일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "3ee09c7159882e17e01d", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "3ee09c7159882e17e01d-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-18031", + "name": "복락만두", + "businessName": "복락만두", + "categorySlug": "chinese", + "address": "인천광역시 중구 신포로27번길 49 (중앙동3가) 1층", + "district": "인천광역시 중구", + "latitude": 37.47256655347608, + "longitude": 126.6227457445627, + "representativePriceAmount": 6000, + "representativePriceLabel": "찐만두", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 찐만두 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-772-8868", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "93093dd912dbdb36d3c8", + "label": "찐만두", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "93093dd912dbdb36d3c8-history", + "label": "찐만두", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-11033", + "name": "미영목욕탕", + "businessName": "미영목욕탕", + "categorySlug": "bath", + "address": "경기도 수원시 권선구 정조로 432 (세류동)", + "district": "경기도 수원시", + "latitude": 37.2474693136438, + "longitude": 127.014533989176, + "representativePriceAmount": 9000, + "representativePriceLabel": "목욕료", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕료 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-236-5038", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "71b96a82f2df0710c13d", + "label": "목욕료", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "71b96a82f2df0710c13d-history", + "label": "목욕료", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-253", + "name": "겨울나그네", + "businessName": "겨울나그네", + "categorySlug": "western", + "address": "서울특별시 광진구 능동로 147-1 (화양동)", + "district": "서울특별시 광진구", + "latitude": 37.5440353858273, + "longitude": 127.072221992568, + "representativePriceAmount": 5500, + "representativePriceLabel": "돈까스", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈까스 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-498-3650 / 영업시간: 매일 11:00 ~ 04:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "67726cfe1c27e1ac939b", + "label": "돈까스", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "67726cfe1c27e1ac939b-history", + "label": "돈까스", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-696", + "name": "히즈모", + "businessName": "히즈모", + "categorySlug": "beauty", + "address": "서울특별시 서대문구 세무서길 71 1층", + "district": "서울특별시 서대문구", + "latitude": 37.5910921447059, + "longitude": 126.946590905356, + "representativePriceAmount": 8000, + "representativePriceLabel": "스마트커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 스마트커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-321-4275 / 영업시간: 매일 10:00-20:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "970a36259f7429e16fc5", + "label": "스마트커트", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "3cf9bbe332303a302d89", + "label": "디자인커트", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "19c3f72f68cf7a220401", + "label": "컷 디자인컷", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "01f8508b17d8c2c56a0a", + "label": "컷 스마트컷", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "970a36259f7429e16fc5-history", + "label": "스마트커트", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "3cf9bbe332303a302d89-history", + "label": "디자인커트", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "19c3f72f68cf7a220401-history", + "label": "컷 디자인컷", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "01f8508b17d8c2c56a0a-history", + "label": "컷 스마트컷", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-14637", + "name": "마시타", + "businessName": "마시타", + "categorySlug": "japanese", + "address": "광주광역시 동구 서석로85번길 8 (대의동) 1층", + "district": "광주광역시 동구", + "latitude": 35.14995826194754, + "longitude": 126.92008294904745, + "representativePriceAmount": 7500, + "representativePriceLabel": "마시타라멘", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 마시타라멘 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-4027-2166 / 영업시간: 월-토 11:30~19:30 휴무일 : 일요일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "2434328ea9c8d1592370", + "label": "마시타라멘", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "cca63712ab180208b9fa", + "label": "규동", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "2434328ea9c8d1592370-history", + "label": "마시타라멘", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "cca63712ab180208b9fa-history", + "label": "규동", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-4966", + "name": "사라헤어라인", + "businessName": "사라헤어라인", + "categorySlug": "beauty", + "address": "충청남도 천안시 서북구 양지21길 25 (성정동)", + "district": "충청남도 천안시", + "latitude": 36.8127160425691, + "longitude": 127.138482517182, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-575-5093 / 영업시간: 09:00~20:00 정기휴무(매주 월요일)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "c2177f9494fc58d96600", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "c2177f9494fc58d96600-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-243", + "name": "고은별", + "businessName": "고은별", + "categorySlug": "other-food", + "address": "서울특별시 광진구 자양로 177", + "district": "서울특별시 광진구", + "latitude": 37.5434577433462, + "longitude": 127.084336510516, + "representativePriceAmount": 3000, + "representativePriceLabel": "커피", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-453-4933 / 영업시간: 월~금 07:00 ~ 20:00 토,일 07:00 ~ 18:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "1a89ea3486179861dcf9", + "label": "커피", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "1a89ea3486179861dcf9-history", + "label": "커피", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-19368", + "name": "란미용실", + "businessName": "란미용실", + "categorySlug": "beauty", + "address": "서울특별시 마포구 효창목4길 26 (공덕동)", + "district": "서울특별시 마포구", + "latitude": 37.54719258290101, + "longitude": 126.96058098823266, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트(남)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(남) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-703-6981", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "e624f4103399cb71fd8a", + "label": "커트(남)", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "dc598d7d6717432d01a7", + "label": "커트(여)", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "e624f4103399cb71fd8a-history", + "label": "커트(남)", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "dc598d7d6717432d01a7-history", + "label": "커트(여)", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-11651", + "name": "마쏘라까망베르", + "businessName": "마쏘라까망베르", + "categorySlug": "korean", + "address": "광주광역시 동구 필문대로205번길 19 (지산동)", + "district": "광주광역시 동구", + "latitude": 35.1520673077606, + "longitude": 126.933228831241, + "representativePriceAmount": 9000, + "representativePriceLabel": "돈가스(L)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스(L) 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-224-5004 / 영업시간: 11:00~20:30 휴무 일요일, 공휴일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "dde8295439ec2de5ed79", + "label": "돈가스(L)", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "52d772aff97fb7dafaea", + "label": "돈가스(S)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "aa62f808299de4f169f3", + "label": "덮밥(해물 김치제육)", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "dde8295439ec2de5ed79-history", + "label": "돈가스(L)", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "52d772aff97fb7dafaea-history", + "label": "돈가스(S)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "aa62f808299de4f169f3-history", + "label": "덮밥(해물 김치제육)", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-4967", + "name": "사천냥클럽", + "businessName": "사천냥클럽", + "categorySlug": "beauty", + "address": "충청남도 천안시 서북구 두정로 271 (두정동)", + "district": "충청남도 천안시", + "latitude": 36.8332567599608, + "longitude": 127.147007440446, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-564-5283 / 영업시간: 09:00~20:00 연중무휴", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "f8ee75edf86084bdaf31", + "label": "커트", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "f8ee75edf86084bdaf31-history", + "label": "커트", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-14700", + "name": "곰곰탕", + "businessName": "곰곰탕", + "categorySlug": "korean", + "address": "서울특별시 광진구 용마산로 128 (중곡동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.564977213608785, + "longitude": 127.0869171023704, + "representativePriceAmount": 8500, + "representativePriceLabel": "돼지곰탕", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지곰탕 8,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1487-1216 / 영업시간: 월~토 11:00~21:00 브레이크타임 14:00~16:00 일요일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "166a0ce807e6af5a89ba", + "label": "돼지곰탕", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "75fa96aefe86db98a310", + "label": "홍곰탕", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "166a0ce807e6af5a89ba-history", + "label": "돼지곰탕", + "amount": 8500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "75fa96aefe86db98a310-history", + "label": "홍곰탕", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-10546", + "name": "로뎀헤어", + "businessName": "로뎀헤어", + "categorySlug": "barber", + "address": "서울특별시 마포구 마포구 숭문길 217 (대흥동)", + "district": "서울특별시 마포구", + "latitude": 37.5560808598589, + "longitude": 126.946436974443, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-713-7228", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "53e27cf5bfef865f286f", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "53e27cf5bfef865f286f-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-2526", + "name": "돈하우스", + "businessName": "돈하우스", + "categorySlug": "western", + "address": "대전광역시 동구 동대전로 131번길 8-16 1층(자양동)", + "district": "대전광역시 동구", + "latitude": 36.3347457791416, + "longitude": 127.44561323845, + "representativePriceAmount": 6900, + "representativePriceLabel": "치킨까스", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 치킨까스 6,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-624-5050 / 영업시간: 09:40 ~ 19:00 매주 토, 일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "a168a752b180f707f868", + "label": "치킨까스", + "amount": 6900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ad3793808f51239374a8", + "label": "등심까스", + "amount": 6900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e46df206a25f29a61dde", + "label": "매운돈까스", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "27ba89782378e5c7fff9", + "label": "매운치즈돈까스", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f8bddecc24c951d96e80", + "label": "치즈돈까스", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "917306669c3a333e2383", + "label": "모듬돈까스", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "224a09061c08487c9396", + "label": "콤비까스", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0d69c85c4434933e6f95", + "label": "까스정식", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d8195a92873703db8e5f", + "label": "카레돈까스", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "06c2b84d4f0c8800bd86", + "label": "매운치즈카레돈까스", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "974b4859622e8a20f954", + "label": "해물볶음 돈까스", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e670fc4ea20add0f8e0c", + "label": "칠리해물볶음 돈까스", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ecae1d03e180302f8e7e", + "label": "해물스파게티 돈까스", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "20d547de72c7e5c7975d", + "label": "칠리해물스파게티 돈까스", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "77605b0a8e5f8be50114", + "label": "돌솥김치알밥", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "12af40b0db698d36eb6a", + "label": "돌솥낙지알밥", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0b84441da5e524375ce2", + "label": "회덮밥", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "011d5939e4987e5118a8", + "label": "해물볶음우동", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d2528f7c5a5d6bcd9cb2", + "label": "꼬마우동(사이드)", + "amount": 1500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a4d61966ca5dd60c2b40", + "label": "비빔우동(사이드)", + "amount": 1500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "a168a752b180f707f868-history", + "label": "치킨까스", + "amount": 6900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ad3793808f51239374a8-history", + "label": "등심까스", + "amount": 6900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e46df206a25f29a61dde-history", + "label": "매운돈까스", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "27ba89782378e5c7fff9-history", + "label": "매운치즈돈까스", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f8bddecc24c951d96e80-history", + "label": "치즈돈까스", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "917306669c3a333e2383-history", + "label": "모듬돈까스", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "224a09061c08487c9396-history", + "label": "콤비까스", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0d69c85c4434933e6f95-history", + "label": "까스정식", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d8195a92873703db8e5f-history", + "label": "카레돈까스", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "06c2b84d4f0c8800bd86-history", + "label": "매운치즈카레돈까스", + "amount": 8500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "974b4859622e8a20f954-history", + "label": "해물볶음 돈까스", + "amount": 8500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e670fc4ea20add0f8e0c-history", + "label": "칠리해물볶음 돈까스", + "amount": 8500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ecae1d03e180302f8e7e-history", + "label": "해물스파게티 돈까스", + "amount": 8500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "20d547de72c7e5c7975d-history", + "label": "칠리해물스파게티 돈까스", + "amount": 8500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "77605b0a8e5f8be50114-history", + "label": "돌솥김치알밥", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "12af40b0db698d36eb6a-history", + "label": "돌솥낙지알밥", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0b84441da5e524375ce2-history", + "label": "회덮밥", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "011d5939e4987e5118a8-history", + "label": "해물볶음우동", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d2528f7c5a5d6bcd9cb2-history", + "label": "꼬마우동(사이드)", + "amount": 1500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a4d61966ca5dd60c2b40-history", + "label": "비빔우동(사이드)", + "amount": 1500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-14877", + "name": "더(the) 공감", + "businessName": "더(the) 공감", + "categorySlug": "beauty", + "address": "경상북도 포항시 북구 환호공원길 17-4 (환호동) 1층", + "district": "경상북도 포항시", + "latitude": 36.06810739171294, + "longitude": 129.39160852450493, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-615-9097", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "764484bc613fc79d1948", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "764484bc613fc79d1948-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-17190", + "name": "국이랑찌개랑", + "businessName": "국이랑찌개랑", + "categorySlug": "korean", + "address": "서울특별시 광진구 자양로26길 21 (구의동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.54171482750448, + "longitude": 127.0852972937134, + "representativePriceAmount": 8000, + "representativePriceLabel": "김치찌개백반", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "국이랑찌개랑", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2201-6259", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "73cc150bf8d25986a1c0", + "label": "김치찌개백반", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "73cc150bf8d25986a1c0-history", + "label": "김치찌개백반", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-634", + "name": "머리사랑", + "businessName": "머리사랑", + "categorySlug": "beauty", + "address": "서울특별시 마포구 독막로40길 8 (대흥동)", + "district": "서울특별시 마포구", + "latitude": 37.5447802460503, + "longitude": 126.944246755429, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-706-0727 / 영업시간: 화~일: 09:30~21:00 정기휴무: 월요일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "40242c5283e8ae557822", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "40242c5283e8ae557822-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-16531", + "name": "돌구이 돼지마을 해장국", + "businessName": "돌구이 돼지마을 해장국", + "categorySlug": "korean", + "address": "대전광역시 동구 대전로815번길 54-1 (정동) 1층", + "district": "대전광역시 동구", + "latitude": 36.334231713428856, + "longitude": 127.4305695784201, + "representativePriceAmount": 7000, + "representativePriceLabel": "백반", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-226-1330 / 영업시간: 11:00 ~ 22:00 영업 매주 일요일, 공휴일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "2678f914f24bde3a3721", + "label": "백반", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8e4c0ea337dcd68fcbf2", + "label": "콩나물비빔밥", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "cbb14a413c237f80e4bd-history", - "label": "떡국", + "id": "2678f914f24bde3a3721-history", + "label": "백반", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8e4c0ea337dcd68fcbf2-history", + "label": "콩나물비빔밥", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-6785", + "name": "발리불소사우나", + "businessName": "발리불소사우나", + "categorySlug": "bath", + "address": "경상남도 창원시 마산회원구 석전동16길 28 (석전동)", + "district": "경상남도 창원시", + "latitude": 35.2368615089355, + "longitude": 128.579505619476, + "representativePriceAmount": 7000, + "representativePriceLabel": "목욕(대인)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕(대인) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-292-3588 / 영업시간: 07:30~21:00 매주 토요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "341ac870e0c7d85d2f96", + "label": "목욕(대인)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" }, { - "id": "7c607b4e88293f3c04a1-history", - "label": "떡만두국", - "amount": 6500, + "id": "d07e3b2d3351c2bbf9aa", + "label": "목욕(소인)", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "341ac870e0c7d85d2f96-history", + "label": "목욕(대인)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b5c9e802e978a546f096-history", - "label": "떡볶이(쌀)", + "id": "d07e3b2d3351c2bbf9aa-history", + "label": "목욕(소인)", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-18871", + "name": "기절초풍물닭갈비", + "businessName": "기절초풍물닭갈비", + "categorySlug": "korean", + "address": "서울특별시 광진구 자양로13길 88-1 (자양동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.533000029209944, + "longitude": 127.08018125555606, + "representativePriceAmount": 4000, + "representativePriceLabel": "조리라면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 조리라면 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-444-9222 / 영업시간: 매일 11:00 - 23:00 운영 22:00 라스트오더 - 금토일 및 공휴일은 우선 예약제 운영", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "13ecd146bfb69a8671de", + "label": "조리라면", "amount": 4000, "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "13ecd146bfb69a8671de-history", + "label": "조리라면", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-635", + "name": "명품헤어샵", + "businessName": "명품헤어샵", + "categorySlug": "beauty", + "address": "서울특별시 마포구 월드컵로23길 25 (망원동, 1층)", + "district": "서울특별시 마포구", + "latitude": 37.556716988748, + "longitude": 126.90779701587, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-314-2989 / 영업시간: 월~토: 09:00~18:00 정기휴무: 일요일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "a679d997b62b013573de", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "a679d997b62b013573de-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13641", + "name": "배가한식", + "businessName": "배가한식", + "categorySlug": "korean", + "address": "울산광역시 중구 중앙길 255 (학산동) .", + "district": "울산광역시 중구", + "latitude": 35.55841683163878, + "longitude": 129.32668187695438, + "representativePriceAmount": 5000, + "representativePriceLabel": "김치찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월요일~일요일 10:00~21:00 15:00~17:00 브레이크타임 토요일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "d0081aa03eebed3a8ead", + "label": "김치찌개", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f18dcf04c5ee58a6a6d7", + "label": "된장찌개", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "d0081aa03eebed3a8ead-history", + "label": "김치찌개", + "amount": 5000, + "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d172a5ed9873c8e042fa-history", - "label": "라볶이", - "amount": 4500, + "id": "f18dcf04c5ee58a6a6d7-history", + "label": "된장찌개", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-2288", + "name": "남진컴퓨터", + "businessName": "남진컴퓨터", + "categorySlug": "laundry", + "address": "광주광역시 서구 구성로 109-3 (양동)", + "district": "광주광역시 서구", + "latitude": 35.1488007460721, + "longitude": 126.907060175109, + "representativePriceAmount": 6000, + "representativePriceLabel": "정장1벌드라이", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 정장1벌드라이 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-368-3931 / 영업시간: 월~토 06:00~21:00 ※ 정기휴무 : 매주 일요일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "e00120fc818d6830b7a0", + "label": "정장1벌드라이", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" }, { - "id": "d50498d3eb804549ea55-history", - "label": "만두국", + "id": "95d899bae1e9ed7adeb7", + "label": "바지하단수선", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "e00120fc818d6830b7a0-history", + "label": "정장1벌드라이", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ad8d2b30325ad42bc210-history", - "label": "바지락우동", - "amount": 5500, + "id": "95d899bae1e9ed7adeb7-history", + "label": "바지하단수선", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-283", + "name": "능라도분식", + "businessName": "능라도분식", + "categorySlug": "korean", + "address": "서울특별시 광진구 천호대로110길 50 (능동)", + "district": "서울특별시 광진구", + "latitude": 37.5551457109101, + "longitude": 127.079074919213, + "representativePriceAmount": 2500, + "representativePriceLabel": "김밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-455-0322 / 영업시간: 월~금 10:00 ~ 19:30 토 10:00 ~ 18:30 일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "dff3b3017ec175bc6a39", + "label": "김밥", + "amount": 2500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" }, { - "id": "f4df5bb1906ea4e483c2-history", - "label": "볶음밥", + "id": "eb9b2af826fe48b4a5aa", + "label": "돈가스", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "3fcfa1e5caab4ac1bbaf", + "label": "된장찌개", "amount": 5000, "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "90d1196ea6c36d9c7bba", + "label": "냉면", + "amount": 4500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "dff3b3017ec175bc6a39-history", + "label": "김밥", + "amount": 2500, + "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d803506ddfde04f5aed0-history", - "label": "불고기덮밥", - "amount": 7000, + "id": "eb9b2af826fe48b4a5aa-history", + "label": "돈가스", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "99c38c564ac6fb657e2a-history", - "label": "비빔모밀", + "id": "3fcfa1e5caab4ac1bbaf-history", + "label": "된장찌개", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e57e78d47bb44d53f27f-history", - "label": "비빔밥", - "amount": 5500, + "id": "90d1196ea6c36d9c7bba-history", + "label": "냉면", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-636", + "name": "부산미용", + "businessName": "부산미용", + "categorySlug": "beauty", + "address": "서울특별시 마포구 숭문길 186 (염리동)", + "district": "서울특별시 마포구", + "latitude": 37.5546833332726, + "longitude": 126.946659679023, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 08:00~19:30", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "77d29041ea88c0a867d3", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "77d29041ea88c0a867d3-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-11235", + "name": "빠삐용 베이커리", + "businessName": "빠삐용 베이커리", + "categorySlug": "bakery", + "address": "울산광역시 중구 중앙길 91 (성남동)", + "district": "울산광역시 중구", + "latitude": 35.5555689712778, + "longitude": 129.318463151667, + "representativePriceAmount": 1900, + "representativePriceLabel": "팥빵", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 팥빵 1,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-248-0250", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "27f3409dfa14004080ca", + "label": "팥빵", + "amount": 1900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" }, { - "id": "1dc85112625b4c4ee985-history", - "label": "새우볶음밥", - "amount": 6000, + "id": "006356111478f98c5ec6", + "label": "소금빵", + "amount": 1800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "27f3409dfa14004080ca-history", + "label": "팥빵", + "amount": 1900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b2a7f591405d9f4677eb-history", - "label": "순두부찌개", - "amount": 5500, + "id": "006356111478f98c5ec6-history", + "label": "소금빵", + "amount": 1800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-14736", + "name": "대성떡방앗간", + "businessName": "대성떡방앗간", + "categorySlug": "other-service", + "address": "광주광역시 서구 상무대로1005번길 46 (내방동) 1층", + "district": "광주광역시 서구", + "latitude": 35.155975871786964, + "longitude": 126.87179971307111, + "representativePriceAmount": 10000, + "representativePriceLabel": "참기름 350ml", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 참기름 350ml 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-365-0059", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "1e83676c162295441cc6", + "label": "참기름 350ml", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "1e83676c162295441cc6-history", + "label": "참기름 350ml", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-244", + "name": "달디빈", + "businessName": "달디빈", + "categorySlug": "other-food", + "address": "서울특별시 광진구 능동로39길 11 1층", + "district": "서울특별시 광진구", + "latitude": 37.5585293444964, + "longitude": 127.079434892288, + "representativePriceAmount": 2500, + "representativePriceLabel": "커피", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월~금 09:00 ~ 21:00 토 10:00 ~ 20:00 일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "b4e97e28276d55738634", + "label": "커피", + "amount": 2500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "dfbbf75eb3199d1eac14", + "label": "국산차", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "b4e97e28276d55738634-history", + "label": "커피", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9cc71df65119f92f9b5e-history", - "label": "오뎅(한그릇)", - "amount": 4000, + "id": "dfbbf75eb3199d1eac14-history", + "label": "국산차", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-639", + "name": "수도미용실", + "businessName": "수도미용실", + "categorySlug": "beauty", + "address": "서울특별시 마포구 마포구 굴레방로7길 26 (아현동)", + "district": "서울특별시 마포구", + "latitude": 37.556360677503, + "longitude": 126.954058299941, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-363-1248", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "c306f996c2d3c7ed7a61", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "c306f996c2d3c7ed7a61-history", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-14775", + "name": "서울본갈비본감자탕성안점", + "businessName": "서울본갈비본감자탕성안점", + "categorySlug": "korean", + "address": "울산광역시 중구 백양로 54 (성안동) 1층", + "district": "울산광역시 중구", + "latitude": 35.573990867359086, + "longitude": 129.31211816914396, + "representativePriceAmount": 8500, + "representativePriceLabel": "돼지갈비(180g)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지갈비(180g) 8,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1314-2168 / 영업시간: 21:30에 라스트오더", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "676b776a0922bbf5bf3e", + "label": "돼지갈비(180g)", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e5a1865dea96e6d9eda8", + "label": "뼈해장국", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "676b776a0922bbf5bf3e-history", + "label": "돼지갈비(180g)", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "524eebe19e8826033910-history", - "label": "우동", - "amount": 4000, + "id": "e5a1865dea96e6d9eda8-history", + "label": "뼈해장국", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-2536", + "name": "지선미용타운", + "businessName": "지선미용타운", + "categorySlug": "beauty", + "address": "대전광역시 동구 솔랑시울길 87 (소제동)", + "district": "대전광역시 동구", + "latitude": 36.3353609397276, + "longitude": 127.434496484742, + "representativePriceAmount": 5000, + "representativePriceLabel": "미용료(커트)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 09:00 ~ 18:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "db024191dfc8ff7b1e88", + "label": "미용료(커트)", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "f08a6df82f87e0831e47-history", - "label": "유부우동", + "id": "94269a529ea945c59334", + "label": "커트(성인 일반)", "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "30661efa681329b425ea-history", - "label": "제육덮밥", - "amount": 6000, + "id": "db024191dfc8ff7b1e88-history", + "label": "미용료(커트)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e628215001e3ab628050-history", - "label": "쫄면", + "id": "94269a529ea945c59334-history", + "label": "커트(성인 일반)", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-15272", + "name": "리플커피 건국대점", + "businessName": "리플커피 건국대점", + "categorySlug": "other-food", + "address": "서울특별시 광진구 광나루로24길 20 (화양동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.54545205668764, + "longitude": 127.07631911192601, + "representativePriceAmount": 1500, + "representativePriceLabel": "아메리카노", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "리플커피 건국대점", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-455-5600 / 영업시간: 월~금 07:00 - 20:00 토 10:00 - 19:00 일 정기휴무 (매주 일요일)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "4b6ed08c47f105140052-history", - "label": "참치김밥(1줄)", - "amount": 3500, + "id": "10bd9d08fa2e61bbe85b", + "label": "아메리카노", + "amount": 1500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "41dae43ee979554f829f-history", - "label": "참치덮밥", - "amount": 6500, + "id": "10bd9d08fa2e61bbe85b-history", + "label": "아메리카노", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-641", + "name": "연백이발관", + "businessName": "연백이발관", + "categorySlug": "barber", + "address": "서울특별시 마포구 만리재옛길 5 (공덕동)", + "district": "서울특별시 마포구", + "latitude": 37.545045043436, + "longitude": 126.954299594353, + "representativePriceAmount": 7000, + "representativePriceLabel": "이발료", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 이발료 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-711-9782 / 영업시간: 07:00~19:00 정기휴무: 수요일", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "b3882edffdad430f95e4-history", - "label": "참치볶음밥", - "amount": 6000, + "id": "d5e51555b6aead07192c", + "label": "이발료", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "d5e51555b6aead07192c-history", + "label": "이발료", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-10172", + "name": "명품한우타운", + "businessName": "명품한우타운", + "categorySlug": "korean", + "address": "세종특별자치시 금남면 금남구즉로 110-3", + "district": "세종특별자치시 금남면", + "latitude": 36.4730253891059, + "longitude": 127.290692559985, + "representativePriceAmount": 6000, + "representativePriceLabel": "한우탕", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한우탕 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-866-6660", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "27b1b920490fc16d4456-history", - "label": "참치비빔밥", + "id": "ac32988437ca2b1cdf09", + "label": "한우탕", "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "57b0f293d7bc585f3855-history", - "label": "참치찌개", + "id": "c85cbab11f87947fa0ef", + "label": "한우국밥", "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "c99cea27a488fb99f62c-history", - "label": "치즈김밥(1줄)", - "amount": 3500, + "id": "ac32988437ca2b1cdf09-history", + "label": "한우탕", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "70a453876500ac76d897-history", - "label": "치즈돈까스", - "amount": 7500, + "id": "c85cbab11f87947fa0ef-history", + "label": "한우국밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-13686", + "name": "벽산세탁소", + "businessName": "벽산세탁소", + "categorySlug": "laundry", + "address": "경기도 수원시 장안구 파장로 53 (정자동, 정자 벽산블루밍) 108호", + "district": "경기도 수원시", + "latitude": 37.3054993333515, + "longitude": 126.99475365985273, + "representativePriceAmount": 6000, + "representativePriceLabel": "드라이클리닝", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 드라이클리닝 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-245-1269 / 영업시간: 09:00 ~ 21:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "4192c6b972661e9056b4-history", - "label": "치즈된장찌개", + "id": "8644d786bfa63972df7e", + "label": "드라이클리닝", "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "05bfc5e205370e5f87fe-history", - "label": "치즈떡볶이", - "amount": 5000, + "id": "6c05c42d574ff73d39b1", + "label": "수선", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "bae3f2f4b7091c1bd49d-history", - "label": "치즈라볶이", - "amount": 5500, + "id": "8644d786bfa63972df7e-history", + "label": "드라이클리닝", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "34fd5d29782104030082-history", - "label": "칼국수(1인분)", - "amount": 7000, + "id": "6c05c42d574ff73d39b1-history", + "label": "수선", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -29992,51 +32098,51 @@ "comments": [] }, { - "id": "goodprice-14318", - "name": "손복순수라상뷔페", - "businessName": "손복순수라상뷔페", + "id": "goodprice-277", + "name": "마니아우동", + "businessName": "마니아우동", "categorySlug": "korean", - "address": "대전광역시 동구 석천로 7-15 (낭월동) 낭월동", - "district": "대전광역시 동구", - "latitude": 36.27595980984733, - "longitude": 127.46565739495651, - "representativePriceAmount": 3000, - "representativePriceLabel": "뷔페(~7세)", + "address": "서울특별시 광진구 긴고랑로 25 (중곡동)", + "district": "서울특별시 광진구", + "latitude": 37.5635316803178, + "longitude": 127.079296570847, + "representativePriceAmount": 7000, + "representativePriceLabel": "냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뷔페(~7세) 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-272-3233 / 영업시간: 10:30~18:00 / 일요일 휴무, 토요일은 14시까지만 운영 갓길주차(주차장은 없음)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-465-2587 / 영업시간: 월~토 18:00 ~ 03:00 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ce070dba0cbf2b762209", - "label": "뷔페(~7세)", - "amount": 3000, + "id": "3bebb419fb7eea3cf90d", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bb64cd5b5214cb6a638f", - "label": "뷔페(초등~성인)", - "amount": 6000, + "id": "f96cfe50883fd8af72ee", + "label": "자장면", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ce070dba0cbf2b762209-history", - "label": "뷔페(~7세)", - "amount": 3000, + "id": "3bebb419fb7eea3cf90d-history", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bb64cd5b5214cb6a638f-history", - "label": "뷔페(초등~성인)", - "amount": 6000, + "id": "f96cfe50883fd8af72ee-history", + "label": "자장면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30044,51 +32150,103 @@ "comments": [] }, { - "id": "goodprice-2533", - "name": "송미용실", - "businessName": "송미용실", + "id": "goodprice-642", + "name": "유나헤어", + "businessName": "유나헤어", "categorySlug": "beauty", - "address": "대전광역시 동구 산내로 1302 (낭월동) 103호", - "district": "대전광역시 동구", - "latitude": 36.27973981942758, - "longitude": 127.46857116346227, - "representativePriceAmount": 8000, - "representativePriceLabel": "미용료(커트)", + "address": "서울특별시 마포구 마포구 방울내로 40 1층(망원동)", + "district": "서울특별시 마포구", + "latitude": 37.5587388154098, + "longitude": 126.900353730704, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-271-9443", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-323-8024 / 영업시간: 월~토: 08:30~20:00 정기휴무: 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3c54f63516c32d1aa9b1", - "label": "미용료(커트)", - "amount": 8000, + "id": "04110131b16146df2d31", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "14af74ec2d58b59c5e0d", + "id": "04110131b16146df2d31-history", "label": "커트", - "amount": 8000, + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-10198", + "name": "모란반점", + "businessName": "모란반점", + "categorySlug": "chinese", + "address": "세종특별자치시 보듬3로 104-11 202호(아름동, 행복프라자)", + "district": "세종특별자치시 보듬3로", + "latitude": 36.5123101279615, + "longitude": 127.248844235046, + "representativePriceAmount": 5500, + "representativePriceLabel": "자장면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-2477", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "645757dd9eb34fb73825", + "label": "자장면", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "57edcd330c8085c6825c", + "label": "짬뽕", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6ff4e23e02a086973b05", + "label": "볶음밥", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3c54f63516c32d1aa9b1-history", - "label": "미용료(커트)", - "amount": 8000, + "id": "645757dd9eb34fb73825-history", + "label": "자장면", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "14af74ec2d58b59c5e0d-history", - "label": "커트", - "amount": 8000, + "id": "57edcd330c8085c6825c-history", + "label": "짬뽕", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6ff4e23e02a086973b05-history", + "label": "볶음밥", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30096,37 +32254,37 @@ "comments": [] }, { - "id": "goodprice-2524", - "name": "수정목욕탕", - "businessName": "수정목욕탕", - "categorySlug": "bath", - "address": "대전광역시 동구 비래서로62번길 103 (가양동)", - "district": "대전광역시 동구", - "latitude": 36.3498831171768, - "longitude": 127.449018725201, - "representativePriceAmount": 6000, - "representativePriceLabel": "목욕료", + "id": "goodprice-16640", + "name": "예대미용실", + "businessName": "예대미용실", + "categorySlug": "beauty", + "address": "강원특별자치도 춘천시 후만로 69-1 (후평동) 1층", + "district": "강원특별자치도 춘천시", + "latitude": 37.87612733597792, + "longitude": 127.75221288287008, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕료 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-631-3660 / 영업시간: 05:00 ~ 18:00 매주 수요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-241-2937 / 영업시간: 일, 월 정기휴무(매주 월요일) 화~토 09:00~19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2ea7a3724ebf058ee693", - "label": "목욕료", - "amount": 6000, + "id": "987db2128987d31a4c00", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2ea7a3724ebf058ee693-history", - "label": "목욕료", - "amount": 6000, + "id": "987db2128987d31a4c00-history", + "label": "커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30134,51 +32292,89 @@ "comments": [] }, { - "id": "goodprice-18132", - "name": "슈퍼몽테마파크", - "businessName": "슈퍼몽테마파크", - "categorySlug": "other-service", - "address": "대전광역시 동구 석천로 8 (낭월동) 2층", - "district": "대전광역시 동구", - "latitude": 36.27670405471021, - "longitude": 127.46581697285043, - "representativePriceAmount": 5000, - "representativePriceLabel": "이용료(1시간)", + "id": "goodprice-13790", + "name": "마미가", + "businessName": "마미가", + "categorySlug": "korean", + "address": "서울특별시 광진구 아차산로51길 101 (구의동)", + "district": "서울특별시 광진구", + "latitude": 37.541482133756666, + "longitude": 127.08542366307833, + "representativePriceAmount": 8000, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 이용료(1시간) 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-271-1644 / 영업시간: 평일(수, 목, 금) 14:00 ~ 18:00 / 주말(공휴일) 11:00 ~ 18:00 매주 월요일, 화요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-456-3362", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6f48025fab16125a38f7", - "label": "이용료(1시간)", - "amount": 5000, + "id": "97a63c46b999f7aa642e", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "91800c208dc8353779c7", - "label": "이용료(2시간)", - "amount": 9000, + "id": "408cda1ef3aca02ca235", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6f48025fab16125a38f7-history", - "label": "이용료(1시간)", - "amount": 5000, + "id": "97a63c46b999f7aa642e-history", + "label": "돈가스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "91800c208dc8353779c7-history", - "label": "이용료(2시간)", - "amount": 9000, + "id": "408cda1ef3aca02ca235-history", + "label": "칼국수", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-16089", + "name": "유림헤어모드", + "businessName": "유림헤어모드", + "categorySlug": "beauty", + "address": "서울특별시 마포구 숭문길 208 (염리동) 1층", + "district": "서울특별시 마포구", + "latitude": 37.55567467356137, + "longitude": 126.94663632701702, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "미용업", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-363-8035 / 영업시간: 09:00 ~ 21:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "cee84c9bcc8afb3865db", + "label": "커트", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "cee84c9bcc8afb3865db-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30186,51 +32382,51 @@ "comments": [] }, { - "id": "goodprice-14576", - "name": "할매칼국수", - "businessName": "할매칼국수", + "id": "goodprice-10195", + "name": "무진장 황태칼국수", + "businessName": "무진장 황태칼국수", "categorySlug": "korean", - "address": "울산광역시 중구 중앙시장길 21-4 (옥교동) 1층", - "district": "울산광역시 중구", - "latitude": 35.55535577904836, - "longitude": 129.3236810137489, + "address": "세종특별자치시 금남면 용포로 74 금남면 용포로74", + "district": "세종특별자치시 금남면", + "latitude": 36.4651078017756, + "longitude": 127.281290524669, "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "representativePriceLabel": "황태얼큰이칼국수+보리밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-245-1333 / 영업시간: 10:00~18:30 매달 3번째 수요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 황태얼큰이칼국수+보리밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-866-7151", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "15c358645d752244231b", - "label": "칼국수", + "id": "1248b7a05a86c0e4a554", + "label": "황태얼큰이칼국수+보리밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8f50bc0fdad33ce8b487", - "label": "콩국수", - "amount": 6000, + "id": "cf0f0e216fc2a2e83f11", + "label": "황태순둥이칼국수+보리밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "15c358645d752244231b-history", - "label": "칼국수", + "id": "1248b7a05a86c0e4a554-history", + "label": "황태얼큰이칼국수+보리밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8f50bc0fdad33ce8b487-history", - "label": "콩국수", - "amount": 6000, + "id": "cf0f0e216fc2a2e83f11-history", + "label": "황태순둥이칼국수+보리밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30238,51 +32434,65 @@ "comments": [] }, { - "id": "goodprice-2998", - "name": "할머니손칼국시", - "businessName": "할머니손칼국시", - "categorySlug": "korean", - "address": "울산광역시 중구 화진4길 20 (태화동)", - "district": "울산광역시 중구", - "latitude": 35.5559132736789, - "longitude": 129.307740756218, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "id": "goodprice-11164", + "name": "선경세탁소", + "businessName": "선경세탁소", + "categorySlug": "laundry", + "address": "충청남도 천안시 동남구 양지4길 15 (봉명동)", + "district": "충청남도 천안시", + "latitude": 36.8084580969342, + "longitude": 127.137098587523, + "representativePriceAmount": 9000, + "representativePriceLabel": "신사복드라이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-245-8542", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 신사복드라이 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-574-7001", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ee03ae6582839e0decad", - "label": "칼국수", - "amount": 6000, + "id": "1672ec0e08b233a6d7a9", + "label": "신사복드라이", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "28dc13a2cfe9f256f059", - "label": "비빔밥", - "amount": 6000, + "id": "5139099ba98e4f009d94", + "label": "기장수선", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f636fa3666c34186b98d", + "label": "이불빨래(중)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ee03ae6582839e0decad-history", - "label": "칼국수", - "amount": 6000, + "id": "1672ec0e08b233a6d7a9-history", + "label": "신사복드라이", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "28dc13a2cfe9f256f059-history", - "label": "비빔밥", - "amount": 6000, + "id": "5139099ba98e4f009d94-history", + "label": "기장수선", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f636fa3666c34186b98d-history", + "label": "이불빨래(중)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30290,51 +32500,37 @@ "comments": [] }, { - "id": "goodprice-13647", - "name": "홍사부", - "businessName": "홍사부", - "categorySlug": "chinese", - "address": "울산광역시 중구 내황14길 50 (반구동, 나린헤리티지 2차) .", - "district": "울산광역시 중구", - "latitude": 35.55381618863106, - "longitude": 129.34837209424774, - "representativePriceAmount": 6000, - "representativePriceLabel": "자장면", + "id": "goodprice-17194", + "name": "면곡당", + "businessName": "면곡당", + "categorySlug": "other-food", + "address": "서울특별시 광진구 면목로17길 24 (중곡동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.570621617769575, + "longitude": 127.0819900514536, + "representativePriceAmount": 3400, + "representativePriceLabel": "커피(콜드브루)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-298-0777 / 영업시간: 월요일 정기휴무 화요일~일요일 10:00~20:30 / 20:00 라스트오더", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피(콜드브루) 3,400원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0502-5551-7961 / 영업시간: 월 11:00 - 20:00 19:30 라스트오더 화 11:00 - 20:00 19:30 라스트오더 수 11:00 - 20:00 19:30 라스트오더 정기휴무 (매주 목요일) 금 11:00 - 20:00 19:30 라스트오더 토 12:00 - 21:00 20:30 라스트오더 일 12:00 - 21:00 20:30 라스트오더 접기", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a5c2158a33f036ad7e61", - "label": "자장면", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "32d42c19bcd96d9aaf25", - "label": "냉면", - "amount": 8000, + "id": "087e808c14ff4e11a3ae", + "label": "커피(콜드브루)", + "amount": 3400, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a5c2158a33f036ad7e61-history", - "label": "자장면", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "32d42c19bcd96d9aaf25-history", - "label": "냉면", - "amount": 8000, + "id": "087e808c14ff4e11a3ae-history", + "label": "커피(콜드브루)", + "amount": 3400, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30342,37 +32538,37 @@ "comments": [] }, { - "id": "goodprice-14612", - "name": "24시해장국", - "businessName": "24시해장국", - "categorySlug": "korean", - "address": "울산광역시 남구 번영로156번길 23 (달동) 1층", - "district": "울산광역시 남구", - "latitude": 35.53975218505595, - "longitude": 129.33041512613374, - "representativePriceAmount": 9000, - "representativePriceLabel": "순두부찌개", + "id": "goodprice-645", + "name": "주연헤어센스", + "businessName": "주연헤어센스", + "categorySlug": "beauty", + "address": "서울특별시 마포구 희우정로 10길 30 (망원동)", + "district": "서울특별시 마포구", + "latitude": 37.5531957397292, + "longitude": 126.905666630029, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-274-3344", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-332-1777", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b1bf1f5c7b6568f13efc", - "label": "순두부찌개", - "amount": 9000, + "id": "f428c4e280459169ed3e", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b1bf1f5c7b6568f13efc-history", - "label": "순두부찌개", - "amount": 9000, + "id": "f428c4e280459169ed3e-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30380,51 +32576,65 @@ "comments": [] }, { - "id": "goodprice-10180", - "name": "침산똥돼지", - "businessName": "침산똥돼지", - "categorySlug": "korean", - "address": "세종특별자치시 조치원읍 행복6길 40", - "district": "세종특별자치시 조치원읍", - "latitude": 36.606084930284, - "longitude": 127.293726259292, - "representativePriceAmount": 9000, - "representativePriceLabel": "오삼불고기(점심특선)", + "id": "goodprice-19000", + "name": "구름빵집", + "businessName": "구름빵집", + "categorySlug": "bakery", + "address": "경기도 수원시 장안구 이목로 24 (정자동, 수원 SK SKY VIEW) 603동 1층 114호", + "district": "경기도 수원시", + "latitude": 37.308841568254806, + "longitude": 126.98470292444611, + "representativePriceAmount": 2000, + "representativePriceLabel": "단팥빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 오삼불고기(점심특선) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-867-3391", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-223-7727 / 영업시간: 08:00~19:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1f2b1243d51c5431d7c7", - "label": "오삼불고기(점심특선)", - "amount": 9000, + "id": "c0c8d66e2a0becee0207", + "label": "단팥빵", + "amount": 2000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "778ecab0dfbb69f3907d", + "label": "우유식빵", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "142e19855e58125e6d48", - "label": "김치찌개(점심특선)", - "amount": 8000, + "id": "15ee63572296c7a498b7", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1f2b1243d51c5431d7c7-history", - "label": "오삼불고기(점심특선)", - "amount": 9000, + "id": "c0c8d66e2a0becee0207-history", + "label": "단팥빵", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "142e19855e58125e6d48-history", - "label": "김치찌개(점심특선)", - "amount": 8000, + "id": "778ecab0dfbb69f3907d-history", + "label": "우유식빵", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "15ee63572296c7a498b7-history", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30432,27 +32642,27 @@ "comments": [] }, { - "id": "goodprice-10187", - "name": "큰나무식당", - "businessName": "큰나무식당", - "categorySlug": "korean", - "address": "세종특별자치시 금남면 대평시장2길 6 1층", - "district": "세종특별자치시 금남면", - "latitude": 36.4658590703269, - "longitude": 127.282333172075, + "id": "goodprice-16455", + "name": "김연선 헤어뷰", + "businessName": "김연선 헤어뷰", + "categorySlug": "beauty", + "address": "전라남도 여수시 돌산읍 강남동로 46-19 1층 104호(청솔상가)", + "district": "전라남도 여수시", + "latitude": 34.71784643561729, + "longitude": 127.75728889294511, "representativePriceAmount": 8000, - "representativePriceLabel": "보리밥", + "representativePriceLabel": "소아 커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보리밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-866-4924", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 소아 커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-643-0669", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e54b9d3d4229d440005f", - "label": "보리밥", + "id": "2c0ef91eddf58968fea9", + "label": "소아 커트", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -30460,8 +32670,8 @@ ], "history": [ { - "id": "e54b9d3d4229d440005f-history", - "label": "보리밥", + "id": "2c0ef91eddf58968fea9-history", + "label": "소아 커트", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -30470,51 +32680,37 @@ "comments": [] }, { - "id": "goodprice-10175", - "name": "한아름식당", - "businessName": "한아름식당", - "categorySlug": "korean", - "address": "세종특별자치시 연동면 태산로 60 청정상가 102호", - "district": "세종특별자치시 연동면", - "latitude": 36.5290966808229, - "longitude": 127.351449156014, - "representativePriceAmount": 8000, - "representativePriceLabel": "된장찌개", + "id": "goodprice-11278", + "name": "무한정수제돈가스", + "businessName": "무한정수제돈가스", + "categorySlug": "western", + "address": "서울특별시 광진구 군자로 102 1층 (군자동)", + "district": "서울특별시 광진구", + "latitude": 37.5521905589032, + "longitude": 127.071540099809, + "representativePriceAmount": 8500, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-868-5005", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈가스 8,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-469-3122", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "aa04f0f6e38ef8cadc94", - "label": "된장찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8678ab83898f4483e007", - "label": "갈비탕", - "amount": 9000, + "id": "eb839beb78bc6b8b2fd8", + "label": "돈가스", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "aa04f0f6e38ef8cadc94-history", - "label": "된장찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8678ab83898f4483e007-history", - "label": "갈비탕", - "amount": 9000, + "id": "eb839beb78bc6b8b2fd8-history", + "label": "돈가스", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30522,37 +32718,37 @@ "comments": [] }, { - "id": "goodprice-10197", - "name": "행복한 약초칼국수", - "businessName": "행복한 약초칼국수", - "categorySlug": "korean", - "address": "세종특별자치시 보듬3로 8-15 1층 102호(도담동, 해피라움5)", - "district": "세종특별자치시 보듬3로", - "latitude": 36.5138053791972, - "longitude": 127.258063600072, - "representativePriceAmount": 5000, - "representativePriceLabel": "칼국수", + "id": "goodprice-648", + "name": "태양미용실", + "businessName": "태양미용실", + "categorySlug": "beauty", + "address": "서울특별시 마포구 월드컵북로 207", + "district": "서울특별시 마포구", + "latitude": 37.5687954893124, + "longitude": 126.905649902888, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-862-1128", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-375-3912 / 영업시간: 09:30~20:00 정기휴무: 수요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9770ec500c57924bc47d", - "label": "칼국수", - "amount": 5000, + "id": "fae134141597f553d9fc", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9770ec500c57924bc47d-history", - "label": "칼국수", - "amount": 5000, + "id": "fae134141597f553d9fc-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30560,65 +32756,93 @@ "comments": [] }, { - "id": "goodprice-3387", - "name": "뚱가네", - "businessName": "뚱가네", + "id": "goodprice-16201", + "name": "국수명가", + "businessName": "국수명가", "categorySlug": "korean", - "address": "경기도 수원시 영통구 영통로 217번길5 (영통동)", + "address": "경기도 수원시 권선구 평동로79번길 45 (평동) 1층 154호", "district": "경기도 수원시", - "latitude": 37.2466692531637, - "longitude": 127.056605302185, + "latitude": 37.259876627948074, + "longitude": 126.99277737503824, "representativePriceAmount": 7000, - "representativePriceLabel": "차돌된장찌개", + "representativePriceLabel": "비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 차돌된장찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-234-5208 / 영업시간: 매일 11:00~23:00 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-242-8473 / 영업시간: 11:00~16:00 매주 일요일 및 공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9c46e5453519cb36428d", - "label": "차돌된장찌개", + "id": "e13597ce03a8ba47fa74", + "label": "비빔밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "eae87ea1722df82cde8e", - "label": "돼지김치찌개", - "amount": 7000, + "id": "f32f61ea850c645f8f21", + "label": "제돈까스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a48da9d1aa3684da4a43", - "label": "라면", - "amount": 3000, + "id": "6bc6a3bc254b524fe90c", + "label": "잔치국수", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "57d33a75e7f4d1e30228", + "label": "비빔국수", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2be10149fd266404e42c", + "label": "돈까스+잔치국수", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9c46e5453519cb36428d-history", - "label": "차돌된장찌개", + "id": "e13597ce03a8ba47fa74-history", + "label": "비빔밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "eae87ea1722df82cde8e-history", - "label": "돼지김치찌개", - "amount": 7000, + "id": "f32f61ea850c645f8f21-history", + "label": "제돈까스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a48da9d1aa3684da4a43-history", - "label": "라면", - "amount": 3000, + "id": "6bc6a3bc254b524fe90c-history", + "label": "잔치국수", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "57d33a75e7f4d1e30228-history", + "label": "비빔국수", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2be10149fd266404e42c-history", + "label": "돈까스+잔치국수", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30626,65 +32850,37 @@ "comments": [] }, { - "id": "goodprice-19001", - "name": "뚱보네 꽈배기", - "businessName": "뚱보네 꽈배기", - "categorySlug": "bakery", - "address": "경기도 수원시 장안구 경수대로1081번길 39 (파장동) 1층", - "district": "경기도 수원시", - "latitude": 37.30773025414107, - "longitude": 126.99299873461685, - "representativePriceAmount": 2000, - "representativePriceLabel": "꽈배기(3개)", + "id": "goodprice-5712", + "name": "남성커트클럽 블루가이", + "businessName": "남성커트클럽 블루가이", + "categorySlug": "barber", + "address": "전라남도 여수시 여문2로 97 (문수동)", + "district": "전라남도 여수시", + "latitude": 34.7547925562527, + "longitude": 127.695461279732, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 꽈배기(3개) 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1489-1202 / 영업시간: 10:00~18:00 월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-653-0317 / 영업시간: 평일:오전10~19시 휴무 :일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b243e59789df81c18fe7", - "label": "꽈배기(3개)", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ff51a2316345cd3ea86c", - "label": "고로케", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1cb0ee5850013ae47096", - "label": "팥도너츠", - "amount": 1000, + "id": "b269c4b8447e1b50ae25", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b243e59789df81c18fe7-history", - "label": "꽈배기(3개)", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ff51a2316345cd3ea86c-history", - "label": "고로케", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1cb0ee5850013ae47096-history", - "label": "팥도너츠", - "amount": 1000, + "id": "b269c4b8447e1b50ae25-history", + "label": "커트", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30692,51 +32888,51 @@ "comments": [] }, { - "id": "goodprice-18122", - "name": "러너커피로스터스", - "businessName": "러너커피로스터스", + "id": "goodprice-15555", + "name": "베이지크", + "businessName": "베이지크", "categorySlug": "other-food", - "address": "경기도 수원시 장안구 만석로209번길 12 (송죽동) 1층", - "district": "경기도 수원시", - "latitude": 37.305402508312305, - "longitude": 127.00062950713131, - "representativePriceAmount": 2500, + "address": "서울특별시 광진구 뚝섬로24길 21 (자양동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.5354826790739, + "longitude": 127.06346313731117, + "representativePriceAmount": 3000, "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-3245-3759 / 영업시간: 08:00~20:00 / 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1351-9020 / 영업시간: 월 10:30 - 20:00 화 10:00 - 18:00 수~금 10:30 - 20:00 토 10:00 - 18:00 일 정기휴무 (매주 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ab87e8c82f8f93b4d808", + "id": "3049c94445b7b488a05a", "label": "아메리카노", - "amount": 2500, + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "65fffe08ce5e175049e7", - "label": "카페라뗴", - "amount": 3500, + "id": "e97c87974b7336905e13", + "label": "아메리카노(포장)", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ab87e8c82f8f93b4d808-history", + "id": "3049c94445b7b488a05a-history", "label": "아메리카노", - "amount": 2500, + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "65fffe08ce5e175049e7-history", - "label": "카페라뗴", - "amount": 3500, + "id": "e97c87974b7336905e13-history", + "label": "아메리카노(포장)", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30744,79 +32940,100 @@ "comments": [] }, { - "id": "goodprice-4384", - "name": "밥짓는마을", - "businessName": "밥짓는마을", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 중앙로 63-1 2층(중앙로2가)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8793858304165, - "longitude": 127.726806123679, + "id": "goodprice-629", + "name": "한화세탁", + "businessName": "한화세탁", + "categorySlug": "laundry", + "address": "서울특별시 마포구 마포구 마포대로 33 (도화동)", + "district": "서울특별시 마포구", + "latitude": 37.5399847863145, + "longitude": 126.945447452979, "representativePriceAmount": 7000, - "representativePriceLabel": "한식뷔페", + "representativePriceLabel": "양복세탁료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-242-2624 / 영업시간: 11:30 - 18:30 매주 토요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복세탁료 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-706-6603", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e73d8af618c893616596", - "label": "한식뷔페", + "id": "311d887433619575ee42", + "label": "양복세탁료", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "12feb2f5734bc46c4dc6", + "label": "의류수선료", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e73d8af618c893616596-history", - "label": "한식뷔페", + "id": "311d887433619575ee42-history", + "label": "양복세탁료", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "12feb2f5734bc46c4dc6-history", + "label": "의류수선료", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-11725", - "name": "백령밥집", - "businessName": "백령밥집", + "id": "goodprice-3384", + "name": "국수촌", + "businessName": "국수촌", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 백령로 180 (후평동) 가운데 1층", - "district": "강원특별자치도 춘천시", - "latitude": 37.87627632697244, - "longitude": 127.74631332467781, - "representativePriceAmount": 7000, - "representativePriceLabel": "가정식백반", + "address": "경기도 수원시 영통구 매여울로53번길 63-2 (매탄동)", + "district": "경기도 수원시", + "latitude": 37.2726657638748, + "longitude": 127.041141095451, + "representativePriceAmount": 3000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 가정식백반 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-241-2287", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-213-5033 / 영업시간: 월~금 10:00~18:00 토 10:00~17:00 일요일, 공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4e35d14492b2b93f5555", - "label": "가정식백반", - "amount": 7000, + "id": "82ffee7d19a683506c88", + "label": "잔치국수", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "15e19f04403770d0b27f", - "label": "된장찌개", - "amount": 7000, + "id": "8edfc58c86a1c22a77da", + "label": "비빔국수", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1007818e1bed42493cbf", - "label": "제육볶음", + "id": "c2560c357a021f8112ec", + "label": "멸치칼국수", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "34aa9d50ccad366f7fa9", + "label": "콩국수", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -30824,22 +33041,29 @@ ], "history": [ { - "id": "4e35d14492b2b93f5555-history", - "label": "가정식백반", - "amount": 7000, + "id": "82ffee7d19a683506c88-history", + "label": "잔치국수", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "15e19f04403770d0b27f-history", - "label": "된장찌개", - "amount": 7000, + "id": "8edfc58c86a1c22a77da-history", + "label": "비빔국수", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1007818e1bed42493cbf-history", - "label": "제육볶음", + "id": "c2560c357a021f8112ec-history", + "label": "멸치칼국수", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "34aa9d50ccad366f7fa9-history", + "label": "콩국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -30848,65 +33072,51 @@ "comments": [] }, { - "id": "goodprice-16648", - "name": "백양세탁소", - "businessName": "백양세탁소", - "categorySlug": "laundry", - "address": "강원특별자치도 춘천시 춘천로 263-1 (후평동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8799279349072, - "longitude": 127.74265772378813, - "representativePriceAmount": 5000, - "representativePriceLabel": "양복상의", + "id": "goodprice-6435", + "name": "더헤어", + "businessName": "더헤어", + "categorySlug": "beauty", + "address": "경상북도 포항시 북구 흥해읍 중성로32번길 14 (1층)", + "district": "경상북도 포항시", + "latitude": 36.1074175340788, + "longitude": 129.346453745514, + "representativePriceAmount": 8000, + "representativePriceLabel": "여성커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복상의 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-252-6311 / 영업시간: 매일 09:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여성커트 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-261-6785 / 영업시간: 9시~17시 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a7b23641d8a9cc56ad29", - "label": "양복상의", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2fb9d14f48673a5c9015", - "label": "양복하의", - "amount": 4000, + "id": "aceb65a5fae506de0302", + "label": "여성커트", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "349b2d08e465c0809d7a", - "label": "셔츠", - "amount": 4000, + "id": "e75d11bed4907dad7f51", + "label": "남성커트", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a7b23641d8a9cc56ad29-history", - "label": "양복상의", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2fb9d14f48673a5c9015-history", - "label": "양복하의", - "amount": 4000, + "id": "aceb65a5fae506de0302-history", + "label": "여성커트", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "349b2d08e465c0809d7a-history", - "label": "셔츠", - "amount": 4000, + "id": "e75d11bed4907dad7f51-history", + "label": "남성커트", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30914,65 +33124,37 @@ "comments": [] }, { - "id": "goodprice-16651", - "name": "백조컴퓨터세탁", - "businessName": "백조컴퓨터세탁", - "categorySlug": "laundry", - "address": "강원특별자치도 춘천시 퇴계로146번길 12-1 (퇴계동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.85855890084086, - "longitude": 127.73469966103542, - "representativePriceAmount": 5000, - "representativePriceLabel": "양복상의", + "id": "goodprice-280", + "name": "보광식당", + "businessName": "보광식당", + "categorySlug": "korean", + "address": "서울특별시 광진구 아차산로 341-1 (자양동) (자양동)", + "district": "서울특별시 광진구", + "latitude": 37.537331732095886, + "longitude": 127.08091171710089, + "representativePriceAmount": 7000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복상의 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-261-8348", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-456-3707 / 영업시간: 월~금 06:00 ~ 22:00 토 06:00 ~ 15:00 일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "145e5e2aff423a5b73ab", - "label": "양복상의", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "37291fd3ead059e4bbe5", - "label": "양복하의", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "66c61efa6c13d5079bba", - "label": "셔츠", - "amount": 4000, + "id": "a61c116c883f60eeaf94", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "145e5e2aff423a5b73ab-history", - "label": "양복상의", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "37291fd3ead059e4bbe5-history", - "label": "양복하의", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "66c61efa6c13d5079bba-history", - "label": "셔츠", - "amount": 4000, + "id": "a61c116c883f60eeaf94-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -30980,51 +33162,51 @@ "comments": [] }, { - "id": "goodprice-15770", - "name": "대길식당", - "businessName": "대길식당", - "categorySlug": "korean", - "address": "충청북도 청주시 서원구 창신로 34-1 (사창동) 1층", - "district": "충청북도 청주시", - "latitude": 36.633961660488815, - "longitude": 127.46479698824699, - "representativePriceAmount": 7000, - "representativePriceLabel": "한우내장탕(보통)", + "id": "goodprice-838", + "name": "까끌래깍자", + "businessName": "까끌래깍자", + "categorySlug": "beauty", + "address": "서울특별시 양천구 남부순환로70길 20-2 1층", + "district": "서울특별시 양천구", + "latitude": 37.5217842066902, + "longitude": 126.834576400647, + "representativePriceAmount": 5000, + "representativePriceLabel": "커트(남)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한우내장탕(보통) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 049-271-0284", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(남) 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2603-7289 / 영업시간: 월-금 9:00~18:30 정기휴무 : 토,일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dda9658c4f877f1f55f0", - "label": "한우내장탕(보통)", - "amount": 7000, + "id": "52d23c48a7f63a535fd6", + "label": "커트(남)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7308fa66f65dd5b105a0", - "label": "한우소머리곰탕(보통)", - "amount": 7000, + "id": "531e046de1b18c9281c7", + "label": "염색(남)", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dda9658c4f877f1f55f0-history", - "label": "한우내장탕(보통)", - "amount": 7000, + "id": "52d23c48a7f63a535fd6-history", + "label": "커트(남)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7308fa66f65dd5b105a0-history", - "label": "한우소머리곰탕(보통)", - "amount": 7000, + "id": "531e046de1b18c9281c7-history", + "label": "염색(남)", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31032,64 +33214,102 @@ "comments": [] }, { - "id": "goodprice-4737", - "name": "대동관", - "businessName": "대동관", - "categorySlug": "chinese", - "address": "충청북도 청주시 청원구 내수읍 내수로 731-2", - "district": "충청북도 청주시", - "latitude": 36.7268063827084, - "longitude": 127.536156682424, - "representativePriceAmount": 4000, - "representativePriceLabel": "자장면", + "id": "goodprice-10303", + "name": "금옥", + "businessName": "금옥", + "categorySlug": "korean", + "address": "강원특별자치도 춘천시 동면 금옥길 289-27 1층", + "district": "강원특별자치도 춘천시", + "latitude": 37.9229090212663, + "longitude": 127.80680948061, + "representativePriceAmount": 8000, + "representativePriceLabel": "막국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-214-0020 / 영업시간: 매일 10:30~20:30 매월 첫째,셋째주 월요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 막국수 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-241-1791 / 영업시간: 11:00 - 20:00 라스트오더 19:30 매주 월요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9382d5bd361e8e01e946", - "label": "자장면", - "amount": 4000, + "id": "2bda609ef3877510c64f", + "label": "막국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fc2449e55df0014f321a", - "label": "짬뽕", - "amount": 7000, + "id": "0fc52f34a464010016d5", + "label": "돼지 곰탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d4ea0ceb3e46a90bd02f", - "label": "우동", - "amount": 7000, + "id": "c078cd6529cdfc09759e", + "label": "동치미 막국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9382d5bd361e8e01e946-history", - "label": "자장면", - "amount": 4000, + "id": "2bda609ef3877510c64f-history", + "label": "막국수", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fc2449e55df0014f321a-history", - "label": "짬뽕", - "amount": 7000, + "id": "0fc52f34a464010016d5-history", + "label": "돼지 곰탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d4ea0ceb3e46a90bd02f-history", - "label": "우동", + "id": "c078cd6529cdfc09759e-history", + "label": "동치미 막국수", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-6436", + "name": "동동이네시니어펌전문점", + "businessName": "동동이네시니어펌전문점", + "categorySlug": "beauty", + "address": "경상북도 포항시 북구 월막길 2", + "district": "경상북도 포항시", + "latitude": 36.049135177781, + "longitude": 129.367187661289, + "representativePriceAmount": 7000, + "representativePriceLabel": "커트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-247-6989 / 영업시간: 09시~19시 매주 수요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "c7606df5723d22c048e1", + "label": "커트", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "c7606df5723d22c048e1-history", + "label": "커트", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -31098,65 +33318,65 @@ "comments": [] }, { - "id": "goodprice-15578", - "name": "로스팅포인트 오렌지", - "businessName": "로스팅포인트 오렌지", - "categorySlug": "other-food", - "address": "충청남도 천안시 서북구 불당25로 154 (불당동) 118호", - "district": "충청남도 천안시", - "latitude": 36.814917231485325, - "longitude": 127.10795228730834, - "representativePriceAmount": 3000, - "representativePriceLabel": "핸드드립", + "id": "goodprice-13789", + "name": "새맛식당", + "businessName": "새맛식당", + "categorySlug": "korean", + "address": "서울특별시 광진구 자양로18길 12-3 (구의동)", + "district": "서울특별시 광진구", + "latitude": 37.537382323242724, + "longitude": 127.08433535141758, + "representativePriceAmount": 10000, + "representativePriceLabel": "삼겹살", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 핸드드립 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: \"07:30~19:00 정기휴무 매주 일요일\"", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-444-1749", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3b272c1d1e72028ec231", - "label": "핸드드립", - "amount": 3000, + "id": "ab66be7f3bcff6c6b7b0", + "label": "삼겹살", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "38a4ea5c1c248574ea24", - "label": "아메리카노", - "amount": 3000, + "id": "976bbff3c32035dda557", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ecdf90a5585e5ce259c1", - "label": "카페라떼", - "amount": 3500, + "id": "9b9c2af1d789c338ec38", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3b272c1d1e72028ec231-history", - "label": "핸드드립", - "amount": 3000, + "id": "ab66be7f3bcff6c6b7b0-history", + "label": "삼겹살", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "38a4ea5c1c248574ea24-history", - "label": "아메리카노", - "amount": 3000, + "id": "976bbff3c32035dda557-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ecdf90a5585e5ce259c1-history", - "label": "카페라떼", - "amount": 3500, + "id": "9b9c2af1d789c338ec38-history", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31164,37 +33384,37 @@ "comments": [] }, { - "id": "goodprice-4961", - "name": "루미너스헤어", - "businessName": "루미너스헤어", + "id": "goodprice-14579", + "name": "남자들의세상", + "businessName": "남자들의세상", "categorySlug": "beauty", - "address": "충청남도 천안시 서북구 서부12길12 (성정동)", - "district": "충청남도 천안시", - "latitude": 36.8207843702587, - "longitude": 127.137340027875, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "address": "서울특별시 양천구 화곡로 41 (신월동) 1층", + "district": "서울특별시 양천구", + "latitude": 37.539556840001545, + "longitude": 126.82650412486814, + "representativePriceAmount": 8000, + "representativePriceLabel": "커트(남)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-575-0727 / 영업시간: 10:00~18:00 정기휴무(2, 4째주 화요일)", + "description": "가격이 저렴하고 위생적이며 사장님이 친절하심", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 영업시간 : 화 ~ 일 10:00 ~ 20:00 휴무일 : 월요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "05c6a69e24e5a6d0b58a", - "label": "커트", - "amount": 10000, + "id": "1eb593927206a016d067", + "label": "커트(남)", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "05c6a69e24e5a6d0b58a-history", - "label": "커트", - "amount": 10000, + "id": "1eb593927206a016d067-history", + "label": "커트(남)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31202,65 +33422,65 @@ "comments": [] }, { - "id": "goodprice-11751", - "name": "맛짱김밥", - "businessName": "맛짱김밥", + "id": "goodprice-4378", + "name": "낭만국수집", + "businessName": "낭만국수집", "categorySlug": "korean", - "address": "충청남도 천안시 동남구 원거리11길 42 (원성동)", - "district": "충청남도 천안시", - "latitude": 36.8010379639367, - "longitude": 127.157625650438, - "representativePriceAmount": 6000, - "representativePriceLabel": "김치찌개", + "address": "강원특별자치도 춘천시 서부대성로57번길2 (옥천동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8829699924835, + "longitude": 127.72960354019, + "representativePriceAmount": 8000, + "representativePriceLabel": "돌솥비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-568-7775 / 영업시간: 10:00~19:00 정기휴무(매주 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비빔밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-251-5688 / 영업시간: 10:00 - 15:00 주말 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "424837af5b2d64e0321a", - "label": "김치찌개", - "amount": 6000, + "id": "068def9ab6d56e24b327", + "label": "돌솥비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3ad09052c5d105b3a932", - "label": "된장찌개", - "amount": 6000, + "id": "4d40ca6d18dbb06776b3", + "label": "낙지덮밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f185c187488db012a2af", - "label": "비빔밥", - "amount": 6000, + "id": "326599d4911ee0f08e2b", + "label": "들깨국수", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "424837af5b2d64e0321a-history", - "label": "김치찌개", - "amount": 6000, + "id": "068def9ab6d56e24b327-history", + "label": "돌솥비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3ad09052c5d105b3a932-history", - "label": "된장찌개", - "amount": 6000, + "id": "4d40ca6d18dbb06776b3-history", + "label": "낙지덮밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f185c187488db012a2af-history", - "label": "비빔밥", - "amount": 6000, + "id": "326599d4911ee0f08e2b-history", + "label": "들깨국수", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31268,26 +33488,26 @@ "comments": [] }, { - "id": "goodprice-4962", - "name": "머리못하는집", - "businessName": "머리못하는집", + "id": "goodprice-7216", + "name": "또와헤어샾", + "businessName": "또와헤어샾", "categorySlug": "beauty", - "address": "충청남도 천안시 서북구 불당17길 14 (불당동)", - "district": "충청남도 천안시", - "latitude": 36.8091043219242, - "longitude": 127.11029060282, + "address": "제주특별자치도 제주시 지석6길 9 또와헤어샾", + "district": "제주특별자치도 제주시", + "latitude": 33.5203409285847, + "longitude": 126.581100037461, "representativePriceAmount": 10000, "representativePriceLabel": "커트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-551-9111 / 영업시간: 10:30~20:00 정기휴무(매주 목요일)", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-756-6528", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "000796b9461ea31a16ce", + "id": "d75dd3f0a7a1cea18963", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -31296,7 +33516,7 @@ ], "history": [ { - "id": "000796b9461ea31a16ce-history", + "id": "d75dd3f0a7a1cea18963-history", "label": "커트", "amount": 10000, "verificationStatus": "verified", @@ -31306,65 +33526,65 @@ "comments": [] }, { - "id": "goodprice-5401", - "name": "제일크리너스샵", - "businessName": "제일크리너스샵", - "categorySlug": "laundry", - "address": "전북특별자치도 전주시 덕진구 쪽구름로 37", - "district": "전북특별자치도 전주시", - "latitude": 35.8686263475242, - "longitude": 127.077142048735, - "representativePriceAmount": 9000, - "representativePriceLabel": "양복(1벌)", + "id": "goodprice-274", + "name": "석기시대짜장마을", + "businessName": "석기시대짜장마을", + "categorySlug": "chinese", + "address": "서울특별시 광진구 군자로 111", + "district": "서울특별시 광진구", + "latitude": 37.5529612679396, + "longitude": 127.072139956245, + "representativePriceAmount": 4000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복(1벌) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-211-2177 / 영업시간: 월~토 09:00-19:00 (일요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-467-7123 / 영업시간: 월~토 10:00 ~ 20:30 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "520f4becdbc8bdfbcfab", - "label": "양복(1벌)", - "amount": 9000, + "id": "fdafb945495d053ec899", + "label": "자장면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ad600e3d70b05487b2e2", - "label": "바지", - "amount": 4000, + "id": "a3742ee28e48a782fddf", + "label": "짬뽕", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "20b6a3bb3f5d6a1aa793", - "label": "티셔츠", - "amount": 4000, + "id": "94f8a8997cfbd6a0c348", + "label": "탕수육", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "520f4becdbc8bdfbcfab-history", - "label": "양복(1벌)", - "amount": 9000, + "id": "fdafb945495d053ec899-history", + "label": "자장면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ad600e3d70b05487b2e2-history", - "label": "바지", - "amount": 4000, + "id": "a3742ee28e48a782fddf-history", + "label": "짬뽕", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "20b6a3bb3f5d6a1aa793-history", - "label": "티셔츠", - "amount": 4000, + "id": "94f8a8997cfbd6a0c348-history", + "label": "탕수육", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31372,51 +33592,65 @@ "comments": [] }, { - "id": "goodprice-18212", - "name": "조선옥미용실", - "businessName": "조선옥미용실", + "id": "goodprice-840", + "name": "머리잘하는집", + "businessName": "머리잘하는집", "categorySlug": "beauty", - "address": "전북특별자치도 전주시 완산구 완산길 105 (서완산동1가) 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.81196716378034, - "longitude": 127.13938563394339, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트(학생)", + "address": "서울특별시 양천구 남부순환로57길 24-1 1층", + "district": "서울특별시 양천구", + "latitude": 37.5347487451649, + "longitude": 126.831354223636, + "representativePriceAmount": 10000, + "representativePriceLabel": "커트(남)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(학생) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-288-1229 / 영업시간: 09:00~18:00 / 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(남) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2692-3758 / 영업시간: 10:30~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b13190ba426a02608a5a", - "label": "커트(학생)", - "amount": 8000, + "id": "679b3d8bd5c5423e31f3", + "label": "커트(남)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f05107ce65a47b2a2999", - "label": "커트", - "amount": 10000, + "id": "7001ca4675f46438a550", + "label": "커트(경로)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fe6fb6eaef7146dfc96c", + "label": "커트(여)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b13190ba426a02608a5a-history", - "label": "커트(학생)", - "amount": 8000, + "id": "679b3d8bd5c5423e31f3-history", + "label": "커트(남)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f05107ce65a47b2a2999-history", - "label": "커트", - "amount": 10000, + "id": "7001ca4675f46438a550-history", + "label": "커트(경로)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fe6fb6eaef7146dfc96c-history", + "label": "커트(여)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31424,41 +33658,41 @@ "comments": [] }, { - "id": "goodprice-11327", - "name": "중본이쟁반짜장", - "businessName": "중본이쟁반짜장", - "categorySlug": "chinese", - "address": "전북특별자치도 전주시 완산구 공북로71", - "district": "전북특별자치도 전주시", - "latitude": 35.826119320872, - "longitude": 127.139523334928, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "id": "goodprice-15779", + "name": "괴산식당", + "businessName": "괴산식당", + "categorySlug": "korean", + "address": "충청북도 청주시 서원구 매봉로76번길 30 (수곡동) 1층", + "district": "충청북도 청주시", + "latitude": 36.61685424168219, + "longitude": 127.48003972548739, + "representativePriceAmount": 7000, + "representativePriceLabel": "청국장", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-271-2223", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-285-6045", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "48131c01c3d545957931", - "label": "짜장면", - "amount": 5000, + "id": "aa792fb908852a342ab3", + "label": "청국장", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d6ccc9d1b8fd281c70e6", - "label": "짬뽕", + "id": "018d18d2b7beccc3c706", + "label": "순두부찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2fd47e14ec6d4388bf97", - "label": "간짜장", + "id": "0991847f164845e4aefa", + "label": "김치찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -31466,22 +33700,22 @@ ], "history": [ { - "id": "48131c01c3d545957931-history", - "label": "짜장면", - "amount": 5000, + "id": "aa792fb908852a342ab3-history", + "label": "청국장", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d6ccc9d1b8fd281c70e6-history", - "label": "짬뽕", + "id": "018d18d2b7beccc3c706-history", + "label": "순두부찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2fd47e14ec6d4388bf97-history", - "label": "간짜장", + "id": "0991847f164845e4aefa-history", + "label": "김치찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -31490,51 +33724,51 @@ "comments": [] }, { - "id": "goodprice-18286", - "name": "작은곰집", - "businessName": "작은곰집", - "categorySlug": "korean", - "address": "전라남도 목포시 삼일로13번길 3 (남교동) 작은곰집", - "district": "전라남도 목포시", - "latitude": 34.79357861479481, - "longitude": 126.38329621043106, - "representativePriceAmount": 8000, - "representativePriceLabel": "순대", + "id": "goodprice-18037", + "name": "뛰니뛰니", + "businessName": "뛰니뛰니", + "categorySlug": "other-service", + "address": "제주특별자치도 제주시 연신로 76 (이도이동) 뛰니뛰니", + "district": "제주특별자치도 제주시", + "latitude": 33.4946894705016, + "longitude": 126.54802422292092, + "representativePriceAmount": 6000, + "representativePriceLabel": "어린이입장료", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-244-2180", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 어린이입장료 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-727-0369", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "820a8e0363636a38ee3a", - "label": "순대", - "amount": 8000, + "id": "e6d923f7e0a9397d788f", + "label": "어린이입장료", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5dec522e2e59735d417a", - "label": "순대국밥", - "amount": 8000, + "id": "c5106c85625491c8b7fe", + "label": "보호자입장료", + "amount": 0, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "820a8e0363636a38ee3a-history", - "label": "순대", - "amount": 8000, + "id": "e6d923f7e0a9397d788f-history", + "label": "어린이입장료", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5dec522e2e59735d417a-history", - "label": "순대국밥", - "amount": 8000, + "id": "c5106c85625491c8b7fe-history", + "label": "보호자입장료", + "amount": 0, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31542,51 +33776,51 @@ "comments": [] }, { - "id": "goodprice-18287", - "name": "조선국수", - "businessName": "조선국수", - "categorySlug": "korean", - "address": "전라남도 목포시 교육로66번길 23-1 (상동) 1층", - "district": "전라남도 목포시", - "latitude": 34.80412602893619, - "longitude": 126.42234641443257, + "id": "goodprice-275", + "name": "세종원", + "businessName": "세종원", + "categorySlug": "chinese", + "address": "서울특별시 광진구 광나루로 373 (군자동)", + "district": "서울특별시 광진구", + "latitude": 37.5482417291505, + "longitude": 127.07158079852, "representativePriceAmount": 6000, - "representativePriceLabel": "비빔국수", + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1303-3481", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-499-1800 / 영업시간: 매일 10:00 ~ 21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c07f6ad5d3b7716b5a81", - "label": "비빔국수", + "id": "6a5059a3ac61d3077843", + "label": "자장면", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1d3574d871445362f97b", - "label": "멸치국수", - "amount": 5500, + "id": "df7221e107d50dc22729", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c07f6ad5d3b7716b5a81-history", - "label": "비빔국수", + "id": "6a5059a3ac61d3077843-history", + "label": "자장면", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1d3574d871445362f97b-history", - "label": "멸치국수", - "amount": 5500, + "id": "df7221e107d50dc22729-history", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31594,62 +33828,93 @@ "comments": [] }, { - "id": "goodprice-5625", - "name": "종가집", - "businessName": "종가집", + "id": "goodprice-13537", + "name": "국가대표", + "businessName": "국가대표", "categorySlug": "korean", - "address": "전라남도 목포시 노적봉길 22 (죽동)", - "district": "전라남도 목포시", - "latitude": 34.7900216219656, - "longitude": 126.383192100449, - "representativePriceAmount": 8000, - "representativePriceLabel": "청국장", + "address": "충청북도 청주시 청원구 수암로88번길 5-1 (우암동)", + "district": "충청북도 청주시", + "latitude": 36.65014622761729, + "longitude": 127.49373602311476, + "representativePriceAmount": 6000, + "representativePriceLabel": "순두부찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-7766 / 영업시간: 10:00-20:00 15:00-16:30 브레이크타임 19:30라스트오더 정기휴무(매달 2 ,4번째일요일) 첫째, 셋째, 다섯째 일요일은 15:00까지 영업", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "39f2f63c979e9ca26461", - "label": "청국장", - "amount": 8000, + "id": "de73e5a12c370c04b575", + "label": "순두부찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "342152886893a912fd37", - "label": "비빔밥", - "amount": 7000, + "id": "86eba20ba26cc122cc27", + "label": "된장찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a6203297caa1ef52a7bc", + "id": "c2cc6d086df03748df08", "label": "김치찌개", - "amount": 8000, + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "8c46f4fc8089cc336d23", - "label": "종가집비빔밥", - "amount": 7000, + "id": "de73e5a12c370c04b575-history", + "label": "순두부찌개", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "71c968011e521d281bc5", - "label": "차돌청국장", - "amount": 10000, + "id": "86eba20ba26cc122cc27-history", + "label": "된장찌개", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "b97e60ee26a33b6d430d", - "label": "홍어청국장", + "id": "c2cc6d086df03748df08-history", + "label": "김치찌개", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-296", + "name": "스시붐", + "businessName": "스시붐", + "categorySlug": "japanese", + "address": "서울특별시 광진구 광나루로17길 14-5 (군자동)", + "district": "서울특별시 광진구", + "latitude": 37.548390033317, + "longitude": 127.072760434793, + "representativePriceAmount": 10000, + "representativePriceLabel": "초밥(10p)", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 초밥(10p) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-466-6077 / 영업시간: 월~금 11:00 ~ 21:00 토 12:00 ~ 20:00 일 정기휴무 휴식타임 15:00 ~ 16:30", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "4d52391e409cbed776bd", + "label": "초밥(10p)", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -31657,44 +33922,75 @@ ], "history": [ { - "id": "39f2f63c979e9ca26461-history", - "label": "청국장", - "amount": 8000, + "id": "4d52391e409cbed776bd-history", + "label": "초밥(10p)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-15534", + "name": "국수좋은날", + "businessName": "국수좋은날", + "categorySlug": "korean", + "address": "충청북도 청주시 서원구 1순환로1063번길 34 (분평동) 1층", + "district": "충청북도 청주시", + "latitude": 36.60797810746097, + "longitude": 127.48522816108827, + "representativePriceAmount": 5000, + "representativePriceLabel": "잔치국수", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-291-5962", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "342152886893a912fd37-history", - "label": "비빔밥", - "amount": 7000, + "id": "b99876411920970c6eff", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "a6203297caa1ef52a7bc-history", - "label": "김치찌개", - "amount": 8000, + "id": "ec53c560b46142bbd78c", + "label": "비빔국수", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "8c46f4fc8089cc336d23-history", - "label": "종가집비빔밥", - "amount": 7000, + "id": "124c230d8d9cd06e92e5", + "label": "간장비빔국수", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "b99876411920970c6eff-history", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "71c968011e521d281bc5-history", - "label": "차돌청국장", - "amount": 10000, + "id": "ec53c560b46142bbd78c-history", + "label": "비빔국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b97e60ee26a33b6d430d-history", - "label": "홍어청국장", - "amount": 10000, + "id": "124c230d8d9cd06e92e5-history", + "label": "간장비빔국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31702,51 +33998,89 @@ "comments": [] }, { - "id": "goodprice-18283", - "name": "진국밥", - "businessName": "진국밥", + "id": "goodprice-15834", + "name": "옛골", + "businessName": "옛골", "categorySlug": "korean", - "address": "전라남도 목포시 영산로250번길 35 (용당동) 주2동 1층", - "district": "전라남도 목포시", - "latitude": 34.80020715783033, - "longitude": 126.3957145704502, - "representativePriceAmount": 8000, - "representativePriceLabel": "돼지머리국밥", + "address": "서울특별시 광진구 자양로26길 10 (구의동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.54175346209209, + "longitude": 127.08460314144905, + "representativePriceAmount": 6000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지머리국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-278-0009", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 05:30 ~ 15:30 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "69520d57371424917108", - "label": "돼지머리국밥", - "amount": 8000, + "id": "3814d0f12d154b414f75", + "label": "백반", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "3814d0f12d154b414f75-history", + "label": "백반", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13709", + "name": "굼드림", + "businessName": "굼드림", + "categorySlug": "other-food", + "address": "충청북도 청주시 상당구 상당로69번길 15 (북문로1가) 대신증권 1층", + "district": "충청북도 청주시", + "latitude": 36.63425701957848, + "longitude": 127.48966620404532, + "representativePriceAmount": 2000, + "representativePriceLabel": "아메리카노", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "c7b9f41e9f2f693084fe", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4266560735d1c5c50422", - "label": "소머리국밥", - "amount": 10000, + "id": "bb8c33ba749ca59b57a9", + "label": "에이드", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "69520d57371424917108-history", - "label": "돼지머리국밥", - "amount": 8000, + "id": "c7b9f41e9f2f693084fe-history", + "label": "아메리카노", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4266560735d1c5c50422-history", - "label": "소머리국밥", - "amount": 10000, + "id": "bb8c33ba749ca59b57a9-history", + "label": "에이드", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31754,65 +34088,103 @@ "comments": [] }, { - "id": "goodprice-6324", - "name": "김육환 미용실", - "businessName": "김육환 미용실", - "categorySlug": "beauty", - "address": "경상북도 포항시 남구 대이로 14 김육환 미용실", - "district": "경상북도 포항시", - "latitude": 36.0170774969108, - "longitude": 129.343624477205, - "representativePriceAmount": 10000, - "representativePriceLabel": "여자커트", + "id": "goodprice-18924", + "name": "옛날집", + "businessName": "옛날집", + "categorySlug": "korean", + "address": "서울특별시 광진구 면목로17길 40 (중곡동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.57084535428605, + "longitude": 127.08107480965234, + "representativePriceAmount": 7500, + "representativePriceLabel": "보리비빔밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "옛날 백반 보리밥", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8714-5606 / 영업시간: 월~토 11:00~19:00 매주 일요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "b0493c23f0f93ff82fb3", + "label": "보리비빔밥", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "b0493c23f0f93ff82fb3-history", + "label": "보리비빔밥", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13065", + "name": "김밥군쫄면양", + "businessName": "김밥군쫄면양", + "categorySlug": "korean", + "address": "충청남도 천안시 동남구 충절로 311 (구성동) 109호", + "district": "충청남도 천안시", + "latitude": 36.791883821934995, + "longitude": 127.16249631665832, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여자커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-281-7918 / 영업시간: 금 09:30-20:00 토 09:30-18:00 일 09:30-18:00 월 정기휴무(매주월요일) 화 09:30-20:00 수 09:30-20:00 목 09:30-20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 05:30~20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d1a76f35b76a79296a1e", - "label": "여자커트", - "amount": 10000, + "id": "8e31a4277cfd977e3d61", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "566bbc3ccb3aeeeed7dc", - "label": "남자커트", - "amount": 10000, + "id": "73f4b40e68f46c316875", + "label": "양푼이비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6c37e8e82bfbdf79e03a", - "label": "학생커트", - "amount": 8000, + "id": "addadf12708308ff174f", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d1a76f35b76a79296a1e-history", - "label": "여자커트", - "amount": 10000, + "id": "8e31a4277cfd977e3d61-history", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "566bbc3ccb3aeeeed7dc-history", - "label": "남자커트", - "amount": 10000, + "id": "73f4b40e68f46c316875-history", + "label": "양푼이비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6c37e8e82bfbdf79e03a-history", - "label": "학생커트", - "amount": 8000, + "id": "addadf12708308ff174f-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31820,37 +34192,51 @@ "comments": [] }, { - "id": "goodprice-16134", - "name": "까꼬뽀꼬", - "businessName": "까꼬뽀꼬", - "categorySlug": "beauty", - "address": "경상북도 포항시 북구 흥해읍 동해대로1574번길 18 까꼬뽀꼬", - "district": "경상북도 포항시", - "latitude": 36.11248157816856, - "longitude": 129.34344079201517, - "representativePriceAmount": 10000, - "representativePriceLabel": "학생컷", + "id": "goodprice-297", + "name": "위락", + "businessName": "위락", + "categorySlug": "korean", + "address": "서울특별시 광진구 능동로16길 50 1층 (화양동)", + "district": "서울특별시 광진구", + "latitude": 37.5450828437467, + "longitude": 127.075883427175, + "representativePriceAmount": 6000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 학생컷 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 10:00 ~ 20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ff224ada076d280d0e5f", - "label": "학생컷", - "amount": 10000, + "id": "b842398f044d9d5cdaea", + "label": "된장찌개", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a3b819d902a6574712ae", + "label": "비빔밥", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ff224ada076d280d0e5f-history", - "label": "학생컷", - "amount": 10000, + "id": "b842398f044d9d5cdaea-history", + "label": "된장찌개", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a3b819d902a6574712ae-history", + "label": "비빔밥", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31858,48 +34244,41 @@ "comments": [] }, { - "id": "goodprice-15292", - "name": "둘리왕만두", - "businessName": "둘리왕만두", + "id": "goodprice-11750", + "name": "김밥하나", + "businessName": "김밥하나", "categorySlug": "korean", - "address": "경상남도 창원시 의창구 도계로60번길 13-16 (도계동) 둘리왕만두", - "district": "경상남도 창원시", - "latitude": 35.257774977009696, - "longitude": 128.63697480240288, - "representativePriceAmount": 5000, - "representativePriceLabel": "만두", + "address": "충청남도 천안시 동남구 대흥로 340 (신부동)", + "district": "충청남도 천안시", + "latitude": 36.8177959668313, + "longitude": 127.15176650569, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 만두 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-273-8700 / 영업시간: 브레이크타임없음", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-556-6247 / 영업시간: 09:30~19:00 정기휴무(매주 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "552260b0bb78563582ea", - "label": "만두", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "376de4409be62113574d", + "id": "b3fd014582793ad8a3b3", "label": "김밥", "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b32ef4baab7df0d203fa", - "label": "떡볶이", - "amount": 4000, + "id": "3e2298e5def48b546804", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a74796f832c4ea079b67", - "label": "쫄면", + "id": "9bf2c88de259a80a021b", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -31907,29 +34286,22 @@ ], "history": [ { - "id": "552260b0bb78563582ea-history", - "label": "만두", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "376de4409be62113574d-history", + "id": "b3fd014582793ad8a3b3-history", "label": "김밥", "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b32ef4baab7df0d203fa-history", - "label": "떡볶이", - "amount": 4000, + "id": "3e2298e5def48b546804-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a74796f832c4ea079b67-history", - "label": "쫄면", + "id": "9bf2c88de259a80a021b-history", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -31938,37 +34310,37 @@ "comments": [] }, { - "id": "goodprice-18773", - "name": "따뜻한밥상", - "businessName": "따뜻한밥상", + "id": "goodprice-18925", + "name": "윤가네", + "businessName": "윤가네", "categorySlug": "korean", - "address": "경상남도 창원시 의창구 퇴촌로25번길 6-15 (사림동) 지하 1층", - "district": "경상남도 창원시", - "latitude": 35.24245999906216, - "longitude": 128.6887510304655, - "representativePriceAmount": 3000, - "representativePriceLabel": "김치찌개", + "address": "서울특별시 광진구 동일로60길 43 (군자동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.55786789329742, + "longitude": 127.0757892802891, + "representativePriceAmount": 8000, + "representativePriceLabel": "냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-2587-5925 / 영업시간: 평일 10:00 - 20:00 브레이크타임 14:30 - 17:00 토일 휴무", + "description": "윤가네 바지락칼국수", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-467-8990 / 영업시간: 기본 영업시간 월~금 11:00 ~ 20:00 토 11:00 ~ 15:00 공휴일 11:00 ~ 15:00 휴무일 매주 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "47301662c5612baeba9d", - "label": "김치찌개", - "amount": 3000, + "id": "b494cd98d28fbdec5145", + "label": "냉면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "47301662c5612baeba9d-history", - "label": "김치찌개", - "amount": 3000, + "id": "b494cd98d28fbdec5145-history", + "label": "냉면", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -31976,37 +34348,65 @@ "comments": [] }, { - "id": "goodprice-19169", - "name": "만날재삼계탕", - "businessName": "만날재삼계탕", + "id": "goodprice-5437", + "name": "만나별미", + "businessName": "만나별미", "categorySlug": "korean", - "address": "경상남도 창원시 마산합포구 월영동6길 7 (해운동) 2층", - "district": "경상남도 창원시", - "latitude": 35.17985383679972, - "longitude": 128.56194235833954, - "representativePriceAmount": 10000, - "representativePriceLabel": "삼계탕", + "address": "전북특별자치도 전주시 완산구 거마평로 122", + "district": "전북특별자치도 전주시", + "latitude": 35.8032647559385, + "longitude": 127.116997533405, + "representativePriceAmount": 7000, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼계탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-222-3908 / 영업시간: 7월 제외 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-224-9529 / 영업시간: 매일 09:00~20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ea259fd70c97c74f0422", - "label": "삼계탕", - "amount": 10000, + "id": "a59b69b704cc8dbedaf2", + "label": "돈가스", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4d59b3c13492fb8991bf", + "label": "된장찌개", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fa87ad1b6972ade86c9e", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ea259fd70c97c74f0422-history", - "label": "삼계탕", - "amount": 10000, + "id": "a59b69b704cc8dbedaf2-history", + "label": "돈가스", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4d59b3c13492fb8991bf-history", + "label": "된장찌개", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fa87ad1b6972ade86c9e-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32014,51 +34414,51 @@ "comments": [] }, { - "id": "goodprice-18741", - "name": "넉둥베기", - "businessName": "넉둥베기", + "id": "goodprice-278", + "name": "이삭홍두깨칼국수", + "businessName": "이삭홍두깨칼국수", "categorySlug": "korean", - "address": "제주특별자치도 제주시 서문로 9 (용담일동) 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.50976651062224, - "longitude": 126.51245788210441, - "representativePriceAmount": 6000, - "representativePriceLabel": "돼지머리국밥", + "address": "서울특별시 광진구 동일로72길 51 (중곡동)", + "district": "서울특별시 광진구", + "latitude": 37.5653450430501, + "longitude": 127.080468294062, + "representativePriceAmount": 4500, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지머리국밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-743-2585", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-464-8457 / 영업시간: 월~토 10:45 ~ 20:00 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4b27eae84d890212cc45", - "label": "돼지머리국밥", - "amount": 6000, + "id": "2032cbddcef1f845dab0", + "label": "칼국수", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "730723c261e932dd1ed5", - "label": "돼지내장국밥", - "amount": 6000, + "id": "3ac1daa4a9333f5c219c", + "label": "냉면", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4b27eae84d890212cc45-history", - "label": "돼지머리국밥", - "amount": 6000, + "id": "2032cbddcef1f845dab0-history", + "label": "칼국수", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "730723c261e932dd1ed5-history", - "label": "돼지내장국밥", - "amount": 6000, + "id": "3ac1daa4a9333f5c219c-history", + "label": "냉면", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32066,48 +34466,34 @@ "comments": [] }, { - "id": "goodprice-16863", - "name": "장원식당", - "businessName": "장원식당", + "id": "goodprice-5438", + "name": "만남의집", + "businessName": "만남의집", "categorySlug": "korean", - "address": "서울특별시 종로구 창신5나길 3 (창신동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.573776039713145, - "longitude": 127.01117339129199, + "address": "전북특별자치도 전주시 완산구 서학로 28-1", + "district": "전북특별자치도 전주시", + "latitude": 35.8095241776664, + "longitude": 127.152553371019, "representativePriceAmount": 8000, - "representativePriceLabel": "우거지뼈해장국", + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우거지뼈해장국 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6777-1437 / 영업시간: 10:00~21:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-287-5589", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "882032c91f93e367ee41", - "label": "우거지뼈해장국", + "id": "e425df176ff052738706", + "label": "김치찌개", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "eef2fe875cf9225acbfd", - "label": "잔치국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ce003527662c73c29a0a", - "label": "비빔국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "fefa8941b4cf9b0a986a", - "label": "회냉면", + "id": "b5064f35e55248f2c814", + "label": "된장찌개", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -32115,29 +34501,15 @@ ], "history": [ { - "id": "882032c91f93e367ee41-history", - "label": "우거지뼈해장국", + "id": "e425df176ff052738706-history", + "label": "김치찌개", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "eef2fe875cf9225acbfd-history", - "label": "잔치국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ce003527662c73c29a0a-history", - "label": "비빔국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "fefa8941b4cf9b0a986a-history", - "label": "회냉면", + "id": "b5064f35e55248f2c814-history", + "label": "된장찌개", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -32146,65 +34518,51 @@ "comments": [] }, { - "id": "goodprice-959", - "name": "전주콩나물국밥", - "businessName": "전주콩나물국밥", - "categorySlug": "korean", - "address": "서울특별시 종로구 자하문로 3 (내자동)", - "district": "서울특별시 종로구", - "latitude": 37.5764830744797, - "longitude": 126.972264842484, - "representativePriceAmount": 7000, - "representativePriceLabel": "콩나물국밥", + "id": "goodprice-11209", + "name": "자양다방", + "businessName": "자양다방", + "categorySlug": "other-food", + "address": "서울특별시 광진구 자양로15길 100 1층", + "district": "서울특별시 광진구", + "latitude": 37.5347343376592, + "longitude": 127.078204571221, + "representativePriceAmount": 2000, + "representativePriceLabel": "커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-738-8223 / 영업시간: 월~일 06:00-20:30 정기휴무(매달2,4번째일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e4912d2a2f1544e0852b", - "label": "콩나물국밥", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f9fbdd59e78be2f9830c", - "label": "순두부찌개", - "amount": 7000, + "id": "2e7c3f8aad8b7fdd1bf7", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1d371c13efba55cd6ab9", - "label": "돌솥알밥", - "amount": 8000, + "id": "17af90d7aa79d0508bca", + "label": "국산차", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e4912d2a2f1544e0852b-history", - "label": "콩나물국밥", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f9fbdd59e78be2f9830c-history", - "label": "순두부찌개", - "amount": 7000, + "id": "2e7c3f8aad8b7fdd1bf7-history", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1d371c13efba55cd6ab9-history", - "label": "돌솥알밥", - "amount": 8000, + "id": "17af90d7aa79d0508bca-history", + "label": "국산차", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32212,51 +34570,51 @@ "comments": [] }, { - "id": "goodprice-1634", - "name": "퍼짱", - "businessName": "퍼짱", - "categorySlug": "other-food", - "address": "부산광역시 중구 충장대로9번길 21 1층(중앙동4가)", - "district": "부산광역시 중구", - "latitude": 35.1072175500747, - "longitude": 129.037444857052, - "representativePriceAmount": 8500, - "representativePriceLabel": "양지곰탕", + "id": "goodprice-15140", + "name": "대흥정", + "businessName": "대흥정", + "categorySlug": "korean", + "address": "전라남도 목포시 용당로216번길 25-1 (용당동) 대흥정", + "district": "전라남도 목포시", + "latitude": 34.80647798540608, + "longitude": 126.40112936933254, + "representativePriceAmount": 8000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 양지곰탕 8,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 11:00 - 20:00 일요일 휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-273-0414", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8792a76cfacdb2ac50a6", - "label": "양지곰탕", - "amount": 8500, + "id": "0b06029b639dac26b59e", + "label": "백반", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "accb21e788f8737b851b", - "label": "양지쌀국수", - "amount": 7500, + "id": "d6ba8a8addb01723ff08", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8792a76cfacdb2ac50a6-history", - "label": "양지곰탕", - "amount": 8500, + "id": "0b06029b639dac26b59e-history", + "label": "백반", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "accb21e788f8737b851b-history", - "label": "양지쌀국수", - "amount": 7500, + "id": "d6ba8a8addb01723ff08-history", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32264,65 +34622,51 @@ "comments": [] }, { - "id": "goodprice-10021", - "name": "학마을", - "businessName": "학마을", - "categorySlug": "chinese", - "address": "부산광역시 중구 중구로 29번길 7 (부평동1가)", - "district": "부산광역시 중구", - "latitude": 35.1003450042619, - "longitude": 129.02748323782, - "representativePriceAmount": 4000, - "representativePriceLabel": "짜장면", + "id": "goodprice-289", + "name": "종로한정식", + "businessName": "종로한정식", + "categorySlug": "korean", + "address": "서울특별시 광진구 아차산로 324", + "district": "서울특별시 광진구", + "latitude": 37.5374179594352, + "longitude": 127.078758734579, + "representativePriceAmount": 7000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-257-0221", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-457-2411 / 영업시간: 월~토 11:00 ~ 20:00 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ffcac499abeb8049e1a7", - "label": "짜장면", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "503eab90627703f370a3", - "label": "짬뽕", - "amount": 6000, + "id": "f316e42784b748b04e0c", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3171ce2672c2c08d8942", - "label": "우동", - "amount": 5000, + "id": "bc7da2d4b8ff9721ebca", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ffcac499abeb8049e1a7-history", - "label": "짜장면", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "503eab90627703f370a3-history", - "label": "짬뽕", - "amount": 6000, + "id": "f316e42784b748b04e0c-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3171ce2672c2c08d8942-history", - "label": "우동", - "amount": 5000, + "id": "bc7da2d4b8ff9721ebca-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32330,51 +34674,51 @@ "comments": [] }, { - "id": "goodprice-1661", - "name": "한양왕순대", - "businessName": "한양왕순대", + "id": "goodprice-10506", + "name": "맹순이네 국밥", + "businessName": "맹순이네 국밥", "categorySlug": "korean", - "address": "부산광역시 중구 해관로20-1 (중앙동)", - "district": "부산광역시 중구", - "latitude": 35.1006289027265, - "longitude": 129.035905126423, - "representativePriceAmount": 9000, - "representativePriceLabel": "순대국밥", + "address": "전라남도 목포시 북항로 73 1층(죽교동)", + "district": "전라남도 목포시", + "latitude": 34.7998878782976, + "longitude": 126.376318072647, + "representativePriceAmount": 6000, + "representativePriceLabel": "돼지머리국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-245-9138 / 영업시간: 영업시간 : 08:30~22:00 일요일 격주 휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지머리국밥 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "189309bf6a6ac9ef20b4", - "label": "순대국밥", - "amount": 9000, + "id": "a3b8c5a76add204a24b9", + "label": "돼지머리국밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3deb0893498f9696e67a", - "label": "돼지국밥", - "amount": 9000, + "id": "1f8e963b2529babbd023", + "label": "돼지내장국밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "189309bf6a6ac9ef20b4-history", - "label": "순대국밥", - "amount": 9000, + "id": "a3b8c5a76add204a24b9-history", + "label": "돼지머리국밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3deb0893498f9696e67a-history", - "label": "돼지국밥", - "amount": 9000, + "id": "1f8e963b2529babbd023-history", + "label": "돼지내장국밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32382,51 +34726,51 @@ "comments": [] }, { - "id": "goodprice-10072", - "name": "한우장", - "businessName": "한우장", - "categorySlug": "korean", - "address": "대구광역시 중구 국채보상로 555 (종로1가) (전)", - "district": "대구광역시 중구", - "latitude": 35.8709131264325, - "longitude": 128.59143517676986, - "representativePriceAmount": 10000, - "representativePriceLabel": "설렁탕", + "id": "goodprice-276", + "name": "중국관", + "businessName": "중국관", + "categorySlug": "chinese", + "address": "서울특별시 광진구 긴고랑로 39 (중곡동)", + "district": "서울특별시 광진구", + "latitude": 37.5630759218576, + "longitude": 127.080677509112, + "representativePriceAmount": 4000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 설렁탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-257-1125", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-497-5276 / 영업시간: 매일 10:00 ~ 20:30 첫째, 셋째 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a990ab67bf51e4741373", - "label": "설렁탕", - "amount": 10000, + "id": "51e6ef38497ac3e641b8", + "label": "짜장면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ab143281cd6070383d40", - "label": "따로국밥(선지국)", - "amount": 10000, + "id": "12731d1d17da4e9dc567", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a990ab67bf51e4741373-history", - "label": "설렁탕", - "amount": 10000, + "id": "51e6ef38497ac3e641b8-history", + "label": "짜장면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ab143281cd6070383d40-history", - "label": "따로국밥(선지국)", - "amount": 10000, + "id": "12731d1d17da4e9dc567-history", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32434,34 +34778,41 @@ "comments": [] }, { - "id": "goodprice-17987", - "name": "한울식당", - "businessName": "한울식당", + "id": "goodprice-6386", + "name": "고을마당", + "businessName": "고을마당", "categorySlug": "korean", - "address": "대구광역시 중구 경상감영길 280 (동인동2가) 동인동", - "district": "대구광역시 중구", - "latitude": 35.87080928368533, - "longitude": 128.60257722168762, - "representativePriceAmount": 8000, - "representativePriceLabel": "정식", + "address": "경상북도 포항시 남구 대이로9번길 22 고을마당", + "district": "경상북도 포항시", + "latitude": 36.015803950231, + "longitude": 129.341696748169, + "representativePriceAmount": 7000, + "representativePriceLabel": "해물칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-2462 / 영업시간: 월~토 05:30~20:00 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해물칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 평일 09시~13시 매주 토요일, 일요일 휴무 공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cb5319db29d00569909b", + "id": "0663eed122250f594a03", + "label": "해물칼국수", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1222cb2d111ee305ea9c", "label": "정식", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "838da22814add8839176", - "label": "김치찌개", + "id": "80894533405ef057115d", + "label": "콩국수", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -32469,15 +34820,22 @@ ], "history": [ { - "id": "cb5319db29d00569909b-history", + "id": "0663eed122250f594a03-history", + "label": "해물칼국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1222cb2d111ee305ea9c-history", "label": "정식", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "838da22814add8839176-history", - "label": "김치찌개", + "id": "80894533405ef057115d-history", + "label": "콩국수", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -32486,37 +34844,37 @@ "comments": [] }, { - "id": "goodprice-14064", - "name": "MHK정미용실", - "businessName": "MHK정미용실", - "categorySlug": "beauty", - "address": "대구광역시 동구 반야월로 134-1 (신기동) 동부프라자 나동", - "district": "대구광역시 동구", - "latitude": 35.87268975976554, - "longitude": 128.70304821144194, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트", + "id": "goodprice-15554", + "name": "차우동짜장", + "businessName": "차우동짜장", + "categorySlug": "chinese", + "address": "서울특별시 광진구 뚝섬로 472 (자양동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.536638685830155, + "longitude": 127.06282565119446, + "representativePriceAmount": 5000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-2829-6158 / 영업시간: 만65세이상 고객 커트비 2,000원 할인", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-466-2006 / 영업시간: 월~토 17:00 - 04:00 일 정기휴무 (매주 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fcbf4c88a02705c97240", - "label": "커트", - "amount": 8000, + "id": "92e6cd58d66f0f07ca36", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fcbf4c88a02705c97240-history", - "label": "커트", - "amount": 8000, + "id": "92e6cd58d66f0f07ca36-history", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32524,51 +34882,79 @@ "comments": [] }, { - "id": "goodprice-2237", - "name": "철이네손수제비랑칼국수(신포)", - "businessName": "철이네손수제비랑칼국수(신포)", + "id": "goodprice-6387", + "name": "고향식당", + "businessName": "고향식당", "categorySlug": "korean", - "address": "인천광역시 중구 개항로 9-1 1층(중앙동4가)", - "district": "인천광역시 중구", - "latitude": 37.4714042648041, - "longitude": 126.623802333892, - "representativePriceAmount": 7000, - "representativePriceLabel": "얼큰수제비", + "address": "경상북도 포항시 남구 대송면 제내길75번길 29-5 고향식당", + "district": "경상북도 포항시", + "latitude": 35.9795204842443, + "longitude": 129.364706422308, + "representativePriceAmount": 8000, + "representativePriceLabel": "비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 얼큰수제비 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-777-1159 / 영업시간: 월~금 : 10:30~21:00 토 : 11:00~19:00 정기휴무(일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-293-1230 / 영업시간: 12시~14시, 17시~19시 (브레이크타임 14시~17시) 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ce6f575af73081ffba36", - "label": "얼큰수제비", - "amount": 7000, + "id": "c7e1e5e573a22d7633df", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3db8d95d5b0a2906a756", - "label": "수제비", - "amount": 7000, + "id": "3ee670e9e84c60e4d764", + "label": "순두부찌개", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "de69e0a3fbf9e5a072e5", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0e7d9c647979636a7c9d", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ce6f575af73081ffba36-history", - "label": "얼큰수제비", - "amount": 7000, + "id": "c7e1e5e573a22d7633df-history", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3db8d95d5b0a2906a756-history", - "label": "수제비", - "amount": 7000, + "id": "3ee670e9e84c60e4d764-history", + "label": "순두부찌개", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "de69e0a3fbf9e5a072e5-history", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0e7d9c647979636a7c9d-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32576,34 +34962,34 @@ "comments": [] }, { - "id": "goodprice-2238", - "name": "철이네손수제비랑칼국수(신흥)", - "businessName": "철이네손수제비랑칼국수(신흥)", + "id": "goodprice-290", + "name": "채움", + "businessName": "채움", "categorySlug": "korean", - "address": "인천광역시 중구 인중로144번길 71-1 (답동)", - "district": "인천광역시 중구", - "latitude": 37.4684000940284, - "longitude": 126.630126454085, + "address": "서울특별시 광진구 군자로 104-1", + "district": "서울특별시 광진구", + "latitude": 37.5523503895716, + "longitude": 127.071699141373, "representativePriceAmount": 7000, - "representativePriceLabel": "수제비", + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 수제비 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-204-8990 / 영업시간: 11:00~21:00 정기휴무(일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-462-8859 / 영업시간: 월~토 11:00 ~ 20:00 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "08f390f1a828edf4eb54", - "label": "수제비", + "id": "83da8d055487279d646e", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a0901e7a576ff0f46db6", - "label": "칼국수", + "id": "25a633dd516e0329b21a", + "label": "냉면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -32611,15 +34997,15 @@ ], "history": [ { - "id": "08f390f1a828edf4eb54-history", - "label": "수제비", + "id": "83da8d055487279d646e-history", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a0901e7a576ff0f46db6-history", - "label": "칼국수", + "id": "25a633dd516e0329b21a-history", + "label": "냉면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -32628,89 +35014,65 @@ "comments": [] }, { - "id": "goodprice-2239", - "name": "청수식당", - "businessName": "청수식당", + "id": "goodprice-6809", + "name": "낙동추어탕", + "businessName": "낙동추어탕", "categorySlug": "korean", - "address": "인천광역시 중구 제물량로206번길 3 (해안동2가)", - "district": "인천광역시 중구", - "latitude": 37.4717703194453, - "longitude": 126.621537648833, + "address": "경상남도 창원시 성산구 대정로35번길 4-1 (가음동, 정진상가)", + "district": "경상남도 창원시", + "latitude": 35.2078507245462, + "longitude": 128.698126634249, "representativePriceAmount": 9000, - "representativePriceLabel": "오삼불고기", + "representativePriceLabel": "추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 오삼불고기 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-8586 / 영업시간: 10:00~22:00 정기휴무(일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-286-5565", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "43c196e70c761d6af7fe", - "label": "오삼불고기", + "id": "acc354f0a62434ebca7c", + "label": "추어탕", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "43c196e70c761d6af7fe-history", - "label": "오삼불고기", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2241", - "name": "할매왕족발순대", - "businessName": "할매왕족발순대", - "categorySlug": "korean", - "address": "인천광역시 중구 우현로45번길 13 (신포동) (신포동)", - "district": "인천광역시 중구", - "latitude": 37.47117471982517, - "longitude": 126.62741642573887, - "representativePriceAmount": 9000, - "representativePriceLabel": "순대국밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-772-6919 / 영업시간: 10:00~22:00 정기휴무(월요일)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "4b9667d260d9321a6486", - "label": "순대국밥", + "id": "2906154d2bda172d11bb", + "label": "추어국수", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1e013739be8ba02c95e5", - "label": "냉면", - "amount": 5000, + "id": "0f277528753dbe4cbb80", + "label": "우렁이추어탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4b9667d260d9321a6486-history", - "label": "순대국밥", + "id": "acc354f0a62434ebca7c-history", + "label": "추어탕", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1e013739be8ba02c95e5-history", - "label": "냉면", - "amount": 5000, + "id": "2906154d2bda172d11bb-history", + "label": "추어국수", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0f277528753dbe4cbb80-history", + "label": "우렁이추어탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32718,93 +35080,37 @@ "comments": [] }, { - "id": "goodprice-2278", - "name": "칠미우동만두", - "businessName": "칠미우동만두", - "categorySlug": "korean", - "address": "광주광역시 동구 지산로 69 1층(지산동)", - "district": "광주광역시 동구", - "latitude": 35.1498802119369, - "longitude": 126.933003887435, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", + "id": "goodprice-16788", + "name": "청담커피 자양점", + "businessName": "청담커피 자양점", + "categorySlug": "other-food", + "address": "서울특별시 광진구 뚝섬로52길 41 (자양동) 1층 청담커피", + "district": "서울특별시 광진구", + "latitude": 37.53014726760224, + "longitude": 127.07889954566937, + "representativePriceAmount": 2500, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-228-7228 / 영업시간: 09:00-20:00 휴일 일요일", + "description": "커피전문점", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6952-0543 / 영업시간: 매일 08:00 - 23:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6b9540ec61b73da28287", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f93300567bbf1d4f41d9", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0acf0e5354357f1e5d0e", - "label": "돌솥비빔밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "7bdd16bdc6e06a722ac1", - "label": "등심돈가스", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "784a402709db14c51548", - "label": "떡라면", - "amount": 4500, + "id": "6ba5f6b02b28b03cb510", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6b9540ec61b73da28287-history", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f93300567bbf1d4f41d9-history", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0acf0e5354357f1e5d0e-history", - "label": "돌솥비빔밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "7bdd16bdc6e06a722ac1-history", - "label": "등심돈가스", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "784a402709db14c51548-history", - "label": "떡라면", - "amount": 4500, + "id": "6ba5f6b02b28b03cb510-history", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32812,135 +35118,163 @@ "comments": [] }, { - "id": "goodprice-2280", - "name": "학동김밥", - "businessName": "학동김밥", + "id": "goodprice-7117", + "name": "광양왕소금깡통구이", + "businessName": "광양왕소금깡통구이", "categorySlug": "korean", - "address": "광주광역시 동구 남문로 683 1층(학동)", - "district": "광주광역시 동구", - "latitude": 35.1315918766729, - "longitude": 126.928644258668, - "representativePriceAmount": 3000, - "representativePriceLabel": "김밥", + "address": "제주특별자치도 제주시 광양13길 13", + "district": "제주특별자치도 제주시", + "latitude": 33.4992265614392, + "longitude": 126.531680684457, + "representativePriceAmount": 6000, + "representativePriceLabel": "돌솥밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-225-3248 / 영업시간: 08:00-21:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥밥 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-755-9966", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cf21c76fd5e83a446568", - "label": "김밥", - "amount": 3000, + "id": "d651b6e2cc6ce72c9e34", + "label": "돌솥밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e511ba57b1286bfca5a9", - "label": "라면", - "amount": 4000, + "id": "47fc39df2e7a91b3314e", + "label": "비빔밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "49cac81024525c9be628", + "id": "4d9bbb17687cf75c1de3", "label": "된장찌개", - "amount": 5500, + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9fe3ed2277c710f8e8af", - "label": "고추·김치김밥", - "amount": 3500, + "id": "23b203d52b956db9d87f", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9ee2568f542715746261", - "label": "김치·치즈·만두·떡 라면", - "amount": 4000, + "id": "389137d7df54bd8ee7e2", + "label": "낙지볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3c794b63762e9a39865b", - "label": "떡볶이", - "amount": 3500, + "id": "bb0a6df3cdf4131a9bed", + "label": "돌솥비빔밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3412884f81d75b9cd03e", - "label": "오뎅", - "amount": 3000, + "id": "3a01971e08b17a622530", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "61ed44f768caa14b272a", - "label": "참치·치즈김밥", - "amount": 4000, + "id": "501b04238a701571b5cf", + "label": "열무국수", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2737e787519babbbb92d", + "label": "제,낙볶음", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e3a13ec54c88325f2072", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "cf21c76fd5e83a446568-history", - "label": "김밥", - "amount": 3000, + "id": "d651b6e2cc6ce72c9e34-history", + "label": "돌솥밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e511ba57b1286bfca5a9-history", - "label": "라면", - "amount": 4000, + "id": "47fc39df2e7a91b3314e-history", + "label": "비빔밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "49cac81024525c9be628-history", + "id": "4d9bbb17687cf75c1de3-history", "label": "된장찌개", - "amount": 5500, + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9fe3ed2277c710f8e8af-history", - "label": "고추·김치김밥", - "amount": 3500, + "id": "23b203d52b956db9d87f-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9ee2568f542715746261-history", - "label": "김치·치즈·만두·떡 라면", - "amount": 4000, + "id": "389137d7df54bd8ee7e2-history", + "label": "낙지볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3c794b63762e9a39865b-history", - "label": "떡볶이", - "amount": 3500, + "id": "bb0a6df3cdf4131a9bed-history", + "label": "돌솥비빔밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3412884f81d75b9cd03e-history", - "label": "오뎅", - "amount": 3000, + "id": "3a01971e08b17a622530-history", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "61ed44f768caa14b272a-history", - "label": "참치·치즈김밥", - "amount": 4000, + "id": "501b04238a701571b5cf-history", + "label": "열무국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2737e787519babbbb92d-history", + "label": "제,낙볶음", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e3a13ec54c88325f2072-history", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -32948,131 +35282,117 @@ "comments": [] }, { - "id": "goodprice-2547", - "name": "신도칼국수", - "businessName": "신도칼국수", + "id": "goodprice-17341", + "name": "통영돌문어산곰장어", + "businessName": "통영돌문어산곰장어", "categorySlug": "korean", - "address": "대전광역시 동구 대전로 825번길 11 (정동)", - "district": "대전광역시 동구", - "latitude": 36.3325852871967, - "longitude": 127.430995831215, + "address": "서울특별시 광진구 용마산로6길 9 (중곡동) 1층", + "district": "서울특별시 광진구", + "latitude": 37.557412021661776, + "longitude": 127.08863998274485, "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "representativePriceLabel": "열무비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:00 ~ 19:30 15:00 ~ 17:00 브레이크타임", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 열무비빔밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-452-5330", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d35f10373aa214126944", - "label": "칼국수", + "id": "839cae6082ab4831a2f0", + "label": "열무비빔밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "b302eb0205fc3feeefa3", - "label": "콩국수", + "id": "839cae6082ab4831a2f0-history", + "label": "열무비빔밥", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-15758", + "name": "국수한상", + "businessName": "국수한상", + "categorySlug": "korean", + "address": "제주특별자치도 제주시 남광로 7 (이도이동) 국수한상", + "district": "제주특별자치도 제주시", + "latitude": 33.492506273154056, + "longitude": 126.53696512732265, + "representativePriceAmount": 7000, + "representativePriceLabel": "멸치국수", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-751-5808", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "f36185cc427f2c0bf707", + "label": "멸치국수", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4e43eba688b54f3057ef", - "label": "칼국수 곱", - "amount": 8000, + "id": "d8e12b4226badadf42d6", + "label": "비빔국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5cde55f5862f0370071a", - "label": "칼국수 사리", - "amount": 2000, + "id": "3344d88eb7fbcd421a37", + "label": "우거지국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "72e2057f4b28c34247bf", - "label": "콩국수(계절)", - "amount": 7000, + "id": "f40ef7066486c324aa0d", + "label": "제육덮밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d35f10373aa214126944-history", - "label": "칼국수", + "id": "f36185cc427f2c0bf707-history", + "label": "멸치국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b302eb0205fc3feeefa3-history", - "label": "콩국수", + "id": "d8e12b4226badadf42d6-history", + "label": "비빔국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4e43eba688b54f3057ef-history", - "label": "칼국수 곱", + "id": "3344d88eb7fbcd421a37-history", + "label": "우거지국", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5cde55f5862f0370071a-history", - "label": "칼국수 사리", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "72e2057f4b28c34247bf-history", - "label": "콩국수(계절)", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16821", - "name": "신미식당", - "businessName": "신미식당", - "categorySlug": "korean", - "address": "대전광역시 동구 우암로85번길 35 (삼성동) 1층", - "district": "대전광역시 동구", - "latitude": 36.33884769737071, - "longitude": 127.42700019228904, - "representativePriceAmount": 6000, - "representativePriceLabel": "선지국밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 선지국밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-672-5728 / 영업시간: 11:30 ~ 20:00(매주 일요일, 공휴일 휴무)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "6b3ec501556a09da76bb", - "label": "선지국밥", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "6b3ec501556a09da76bb-history", - "label": "선지국밥", - "amount": 6000, + "id": "f40ef7066486c324aa0d-history", + "label": "제육덮밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33080,37 +35400,37 @@ "comments": [] }, { - "id": "goodprice-14611", - "name": "30년전통감자탕", - "businessName": "30년전통감자탕", - "categorySlug": "korean", - "address": "울산광역시 남구 봉월로8번길 15 (신정동) 1층", - "district": "울산광역시 남구", - "latitude": 35.53379995639712, - "longitude": 129.30877505918386, - "representativePriceAmount": 8000, - "representativePriceLabel": "뼈다귀해장국", + "id": "goodprice-298", + "name": "하루", + "businessName": "하루", + "categorySlug": "western", + "address": "서울특별시 광진구 능동로16길 60 1층 (화양동)", + "district": "서울특별시 광진구", + "latitude": 37.5452297113773, + "longitude": 127.076295470745, + "representativePriceAmount": 8500, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈다귀해장국 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1317-8555", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈가스 8,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월~토 10:00 ~ 20:00 일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "913c9dd0fbe24116bc4d", - "label": "뼈다귀해장국", - "amount": 8000, + "id": "2d4c6cb563cb17583cb7", + "label": "돈가스", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "913c9dd0fbe24116bc4d-history", - "label": "뼈다귀해장국", - "amount": 8000, + "id": "2d4c6cb563cb17583cb7-history", + "label": "돈가스", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33118,145 +35438,121 @@ "comments": [] }, { - "id": "goodprice-15122", - "name": "가을정류장", - "businessName": "가을정류장", - "categorySlug": "japanese", - "address": "울산광역시 남구 문수로 295 (옥동) 1층", - "district": "울산광역시 남구", - "latitude": 35.535986796355175, - "longitude": 129.28599318182114, - "representativePriceAmount": 10000, - "representativePriceLabel": "오리지날함박스테이크", + "id": "goodprice-7018", + "name": "굴무기낭", + "businessName": "굴무기낭", + "categorySlug": "other-food", + "address": "제주특별자치도 제주시 애월읍 납읍남로2길 6 1동 1층", + "district": "제주특별자치도 제주시", + "latitude": 33.433110680166, + "longitude": 126.327918925624, + "representativePriceAmount": 5000, + "representativePriceLabel": "감귤쉰다리에이드", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 오리지날함박스테이크 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-266-1005", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 감귤쉰다리에이드 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1484-1370 / 영업시간: 목 11:00-17:00 금 11:00-17:00 토 11:00-17:00 일 13:00-17:00 월 11:00-17:00 화 11:00-17:00 수 11:00-17:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a666c321c4b747dbeb10", - "label": "오리지날함박스테이크", - "amount": 10000, + "id": "4a3fd0f6cb56822b8ed6", + "label": "감귤쉰다리에이드", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8a0069da1d0d230c5c23", - "label": "치즈함박스테이크", - "amount": 10000, + "id": "b465b697026b652c62d1", + "label": "쉰다리빙수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "a666c321c4b747dbeb10-history", - "label": "오리지날함박스테이크", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "8a0069da1d0d230c5c23-history", - "label": "치즈함박스테이크", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2897", - "name": "경북식당", - "businessName": "경북식당", - "categorySlug": "korean", - "address": "울산광역시 남구 돋질로 145번길 38-25 -", - "district": "울산광역시 남구", - "latitude": 35.544040122471, - "longitude": 129.321265246852, - "representativePriceAmount": 7000, - "representativePriceLabel": "정식", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-267-7855 / 영업시간: 목 10:30-22:00 금 10:30-22:00 토 10:30-22:00 일 정보없음 월 10:30-22:00 화 10:30-22:00 수 10:30-22:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "e73cbbafb52f3d0f302f", - "label": "정식", - "amount": 7000, + "id": "872ca46652fa94011308", + "label": "쉰다리", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7e34a880037cbbb93fa4", - "label": "된장김치찌개", - "amount": 7000, + "id": "628921140fff40fd236a", + "label": "쉰다리빵", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "08b34988454c9e94d5d4", - "label": "제육정식", - "amount": 9000, + "id": "0bf5847e3dbf53051c7e", + "label": "댕유지에이드", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "cdefde9c7cb9a6f607eb", - "label": "김치찌개", - "amount": 7000, + "id": "86aae23244401f987b0a", + "label": "쉰다리쌀빵", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "28bf0fc65b632bfe2c28", - "label": "된장찌개", - "amount": 7000, + "id": "536d8efd3e651cb0ccfb", + "label": "아메리카노", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e73cbbafb52f3d0f302f-history", - "label": "정식", + "id": "4a3fd0f6cb56822b8ed6-history", + "label": "감귤쉰다리에이드", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b465b697026b652c62d1-history", + "label": "쉰다리빙수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7e34a880037cbbb93fa4-history", - "label": "된장김치찌개", - "amount": 7000, + "id": "872ca46652fa94011308-history", + "label": "쉰다리", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "08b34988454c9e94d5d4-history", - "label": "제육정식", - "amount": 9000, + "id": "628921140fff40fd236a-history", + "label": "쉰다리빵", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cdefde9c7cb9a6f607eb-history", - "label": "김치찌개", - "amount": 7000, + "id": "0bf5847e3dbf53051c7e-history", + "label": "댕유지에이드", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "28bf0fc65b632bfe2c28-history", - "label": "된장찌개", - "amount": 7000, + "id": "86aae23244401f987b0a-history", + "label": "쉰다리쌀빵", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "536d8efd3e651cb0ccfb-history", + "label": "아메리카노", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33264,51 +35560,51 @@ "comments": [] }, { - "id": "goodprice-15109", - "name": "경북칼국수", - "businessName": "경북칼국수", + "id": "goodprice-282", + "name": "흥부농장", + "businessName": "흥부농장", "categorySlug": "korean", - "address": "울산광역시 남구 월평로37번길 5 (신정동) 1층", - "district": "울산광역시 남구", - "latitude": 35.541808785746284, - "longitude": 129.30930615922028, - "representativePriceAmount": 6000, - "representativePriceLabel": "손칼국수", + "address": "서울특별시 광진구 뚝섬로59길 81-2 (자양동)", + "district": "서울특별시 광진구", + "latitude": 37.5355225542768, + "longitude": 127.082799348183, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-272-6903", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-343-3611 / 영업시간: 매일 10:00 ~ 23:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "00a4781a1b1d370b49d6", - "label": "손칼국수", - "amount": 6000, + "id": "be51a596f45327b67ab9", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "264e0f53045953e95e4e", - "label": "수제비", - "amount": 6000, + "id": "22efbc737e519a2c07cd", + "label": "냉면", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "00a4781a1b1d370b49d6-history", - "label": "손칼국수", - "amount": 6000, + "id": "be51a596f45327b67ab9-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "264e0f53045953e95e4e-history", - "label": "수제비", - "amount": 6000, + "id": "22efbc737e519a2c07cd-history", + "label": "냉면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33316,75 +35612,79 @@ "comments": [] }, { - "id": "goodprice-13003", - "name": "행복한곰탕", - "businessName": "행복한곰탕", + "id": "goodprice-17048", + "name": "동명칼국수", + "businessName": "동명칼국수", "categorySlug": "korean", - "address": "세종특별자치시 절재로 194 (어진동) 중앙타운 317호", - "district": "세종특별자치시 절재로", - "latitude": 36.50830733147383, - "longitude": 127.26244504454054, - "representativePriceAmount": 9000, - "representativePriceLabel": "곰탕", + "address": "부산광역시 중구 중구로34번길 23 (신창동1가) 2층", + "district": "부산광역시 중구", + "latitude": 35.10111918682593, + "longitude": 129.03031073104827, + "representativePriceAmount": 6500, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 곰탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-241-0061", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3b3e425e1a9cf9a863d2", - "label": "곰탕", - "amount": 9000, + "id": "06cfe5771920bde25e5c", + "label": "칼국수", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "3b3e425e1a9cf9a863d2-history", - "label": "곰탕", - "amount": 9000, + "id": "cb3a7d9e1deca75458cb", + "label": "비빔칼국수", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18695", - "name": "헤이맨남성컷", - "businessName": "헤이맨남성컷", - "categorySlug": "barber", - "address": "세종특별자치시 새롬북로 13 (새롬동, 새뜸마을4단지) 상가동 1층", - "district": "세종특별자치시 새롬북로", - "latitude": 36.48655065561284, - "longitude": 127.24647322838923, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-7004", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "df3e20780e2cd4f3edbc", - "label": "커트", - "amount": 10000, + "id": "bad98e05b000afc95f9a", + "label": "만두", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9df2faaf4c862981198a", + "label": "김밥", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "df3e20780e2cd4f3edbc-history", - "label": "커트", - "amount": 10000, + "id": "06cfe5771920bde25e5c-history", + "label": "칼국수", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "cb3a7d9e1deca75458cb-history", + "label": "비빔칼국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "bad98e05b000afc95f9a-history", + "label": "만두", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9df2faaf4c862981198a-history", + "label": "김밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33392,51 +35692,65 @@ "comments": [] }, { - "id": "goodprice-14930", - "name": "레알떡볶이", - "businessName": "레알떡볶이", - "categorySlug": "korean", - "address": "경기도 수원시 영통구 봉영로 1623 (영통동) 1층 133-2호", - "district": "경기도 수원시", - "latitude": 37.25592537670266, - "longitude": 127.07472815939546, - "representativePriceAmount": 3000, - "representativePriceLabel": "떡볶이", + "id": "goodprice-16096", + "name": "39돈가스", + "businessName": "39돈가스", + "categorySlug": "western", + "address": "서울특별시 동대문구 휘경로2길 5-2 (이문동)", + "district": "서울특별시 동대문구", + "latitude": 37.59563504374783, + "longitude": 127.06109607695427, + "representativePriceAmount": 8500, + "representativePriceLabel": "등심돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1311-8698 / 영업시간: 11:30~22:00 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 등심돈가스 8,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-4103-9632", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b1d8dc2d95dab6756874", - "label": "떡볶이", - "amount": 3000, + "id": "9b50222b2aee695f25f7", + "label": "등심돈가스", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e5911553e06ecaf9e71c", - "label": "라면", - "amount": 3500, + "id": "cb00fa0b64671a5d23d8", + "label": "김치돈가스", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "21ac18f010f208dafb91", + "label": "안심돈가스", + "amount": 9500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b1d8dc2d95dab6756874-history", - "label": "떡볶이", - "amount": 3000, + "id": "9b50222b2aee695f25f7-history", + "label": "등심돈가스", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e5911553e06ecaf9e71c-history", - "label": "라면", - "amount": 3500, + "id": "cb00fa0b64671a5d23d8-history", + "label": "김치돈가스", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "21ac18f010f208dafb91-history", + "label": "안심돈가스", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33444,37 +35758,37 @@ "comments": [] }, { - "id": "goodprice-14332", - "name": "렛츠헤어", - "businessName": "렛츠헤어", - "categorySlug": "beauty", - "address": "경기도 수원시 권선구 권광로27번길 51 (권선동) 1층", - "district": "경기도 수원시", - "latitude": 37.251111070274, - "longitude": 127.02439282380257, - "representativePriceAmount": 10000, - "representativePriceLabel": "컷트", + "id": "goodprice-19007", + "name": "된장한상", + "businessName": "된장한상", + "categorySlug": "korean", + "address": "부산광역시 중구 대청로141번길 17 (중앙동4가) 1층", + "district": "부산광역시 중구", + "latitude": 35.104348496848104, + "longitude": 129.03506122917605, + "representativePriceAmount": 8000, + "representativePriceLabel": "된장한상(비빔밥+된장)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장한상(비빔밥+된장) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-442-3006 / 영업시간: 11:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "40f630d17b57cf4f217a", - "label": "컷트", - "amount": 10000, + "id": "a32552b0f126e1fd4c5a", + "label": "된장한상(비빔밥+된장)", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "40f630d17b57cf4f217a-history", - "label": "컷트", - "amount": 10000, + "id": "a32552b0f126e1fd4c5a-history", + "label": "된장한상(비빔밥+된장)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33482,51 +35796,65 @@ "comments": [] }, { - "id": "goodprice-13883", - "name": "만두가게", - "businessName": "만두가게", + "id": "goodprice-13398", + "name": "79번지국수집", + "businessName": "79번지국수집", "categorySlug": "korean", - "address": "경기도 수원시 팔달구 수원천로 315 (남수동) 1층", - "district": "경기도 수원시", - "latitude": 37.28148605591346, - "longitude": 127.01796582445644, - "representativePriceAmount": 6000, - "representativePriceLabel": "만두", + "address": "서울특별시 동대문구 회기로13길 25 (회기동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.59267895445311, + "longitude": 127.05097144631529, + "representativePriceAmount": 7000, + "representativePriceLabel": "닭칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 만두 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-251-3900 / 영업시간: 09:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 닭칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6082-9494", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e5f8305340751b70a126", - "label": "만두", + "id": "930074ca22d414ad975f", + "label": "닭칼국수", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5b7f15993c0dd4dc5452", + "label": "김치말이국수", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "03a94c705c57ba2671ef", - "label": "만둣국", - "amount": 8000, + "id": "2b0ed38a9cc7f9f35643", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e5f8305340751b70a126-history", - "label": "만두", + "id": "930074ca22d414ad975f-history", + "label": "닭칼국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "5b7f15993c0dd4dc5452-history", + "label": "김치말이국수", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "03a94c705c57ba2671ef-history", - "label": "만둣국", - "amount": 8000, + "id": "2b0ed38a9cc7f9f35643-history", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33534,65 +35862,37 @@ "comments": [] }, { - "id": "goodprice-11724", - "name": "봉실스넥", - "businessName": "봉실스넥", + "id": "goodprice-1653", + "name": "뚱보집", + "businessName": "뚱보집", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 서부대성로239번길 8 (효자동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8732547890045, - "longitude": 127.745099874572, - "representativePriceAmount": 5000, - "representativePriceLabel": "순두부찌개", + "address": "부산광역시 중구 중앙대로 29번길 2-11 (중앙동)", + "district": "부산광역시 중구", + "latitude": 35.1006950852985, + "longitude": 129.036117527715, + "representativePriceAmount": 4000, + "representativePriceLabel": "콩나물밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-251-6890 / 영업시간: 09:00 - 22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물밥 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-7466 / 영업시간: 매일 11:30-22:50, 넷쨰 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fd21c0ab648cf8fac19d", - "label": "순두부찌개", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1378f3b954d6ddf36ca3", - "label": "된장찌개", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bea231d37b6ebf04a351", - "label": "부대찌개", - "amount": 6000, + "id": "2ce775b1d0eb92eaaa69", + "label": "콩나물밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fd21c0ab648cf8fac19d-history", - "label": "순두부찌개", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1378f3b954d6ddf36ca3-history", - "label": "된장찌개", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bea231d37b6ebf04a351-history", - "label": "부대찌개", - "amount": 6000, + "id": "2ce775b1d0eb92eaaa69-history", + "label": "콩나물밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33600,65 +35900,65 @@ "comments": [] }, { - "id": "goodprice-16632", - "name": "분식집에 하숙하는 붕어빵", - "businessName": "분식집에 하숙하는 붕어빵", + "id": "goodprice-16091", + "name": "가위바위보떡볶이", + "businessName": "가위바위보떡볶이", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 삭주로 25 (교동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.88144386414532, - "longitude": 127.73456759786936, - "representativePriceAmount": 3000, - "representativePriceLabel": "떡볶이", + "address": "서울특별시 동대문구 전농로 222 (전농동, 씨티빌라트)", + "district": "서울특별시 동대문구", + "latitude": 37.58394430500011, + "longitude": 127.05361904793929, + "representativePriceAmount": 4000, + "representativePriceLabel": "라면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1402-8552 / 영업시간: 정기휴무(매주 월요일) 화~일 11:00~23:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 라면 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-8742-0006", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "53fa31c0ce50b3a6e5d9", - "label": "떡볶이", - "amount": 3000, + "id": "31881b602c7e9f0cfbfb", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1ad5a2b1402018301ff5", - "label": "수제튀김", - "amount": 2000, + "id": "d96fef09c2c1a7fec415", + "label": "우동", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4b9f7ef0b9db682c22d7", - "label": "순대", - "amount": 4000, + "id": "906b756bcae782531730", + "label": "열무냉면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "53fa31c0ce50b3a6e5d9-history", - "label": "떡볶이", - "amount": 3000, + "id": "31881b602c7e9f0cfbfb-history", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1ad5a2b1402018301ff5-history", - "label": "수제튀김", - "amount": 2000, + "id": "d96fef09c2c1a7fec415-history", + "label": "우동", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4b9f7ef0b9db682c22d7-history", - "label": "순대", - "amount": 4000, + "id": "906b756bcae782531730-history", + "label": "열무냉면", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33666,103 +35966,79 @@ "comments": [] }, { - "id": "goodprice-15847", - "name": "대복분식", - "businessName": "대복분식", + "id": "goodprice-14627", + "name": "밥맛나는집", + "businessName": "밥맛나는집", "categorySlug": "korean", - "address": "충청북도 청주시 흥덕구 강내면 태성탑연로 454-1 주2동 1층", - "district": "충청북도 청주시", - "latitude": 36.622893602285906, - "longitude": 127.3588240445716, - "representativePriceAmount": 8000, + "address": "대구광역시 중구 경상감영길 37 (서문로1가) 밥맛나는집", + "district": "대구광역시 중구", + "latitude": 35.87145492938626, + "longitude": 128.58946800122544, + "representativePriceAmount": 7000, "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-236-3142", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-428-0121", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "299b7375994c2118d0d6", + "id": "e61d5d3ed66dd90dbcc6", "label": "된장찌개", - "amount": 8000, + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4c14e89117e7f8086f5d", - "label": "순두부찌개", + "id": "486ae8502b6898d241b7", + "label": "고등어구이 정식", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "66ce61533574d6b6b49c", - "label": "쫄면", - "amount": 6000, + "id": "f554a0c23b7a1d9637bd", + "label": "순두부 찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9397c3bfe66274b9ac0b", + "label": "가자미구이 정식", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "299b7375994c2118d0d6-history", + "id": "e61d5d3ed66dd90dbcc6-history", "label": "된장찌개", - "amount": 8000, + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4c14e89117e7f8086f5d-history", - "label": "순두부찌개", + "id": "486ae8502b6898d241b7-history", + "label": "고등어구이 정식", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "66ce61533574d6b6b49c-history", - "label": "쫄면", - "amount": 6000, + "id": "f554a0c23b7a1d9637bd-history", + "label": "순두부 찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16071", - "name": "대선집", - "businessName": "대선집", - "categorySlug": "korean", - "address": "충청북도 청주시 서원구 구룡산로51번다길 4 (성화동) 1층", - "district": "충청북도 청주시", - "latitude": 36.615134258549226, - "longitude": 127.45225164740799, - "representativePriceAmount": 10000, - "representativePriceLabel": "돌솥제육정식", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥제육정식 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-233-2212", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "5ce8c082381665cf2ff2", - "label": "돌솥제육정식", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "5ce8c082381665cf2ff2-history", - "label": "돌솥제육정식", - "amount": 10000, + "id": "9397c3bfe66274b9ac0b-history", + "label": "가자미구이 정식", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33770,127 +36046,65 @@ "comments": [] }, { - "id": "goodprice-15520", - "name": "대성식당", - "businessName": "대성식당", + "id": "goodprice-16161", + "name": "갈비장터", + "businessName": "갈비장터", "categorySlug": "korean", - "address": "충청북도 청주시 상당구 상당로186번길 17 (수동) (대성식당)", - "district": "충청북도 청주시", - "latitude": 36.64494841100788, - "longitude": 127.49068538143457, - "representativePriceAmount": 6000, - "representativePriceLabel": "가정식백반", + "address": "서울특별시 동대문구 회기로 188 (휘경동)", + "district": "서울특별시 동대문구", + "latitude": 37.58977643714721, + "longitude": 127.05682401514723, + "representativePriceAmount": 9000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 가정식백반 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-258-1345", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-969-9200", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2d160139e90246671838", - "label": "가정식백반", - "amount": 6000, + "id": "82e9f9b59d10e7ab3f6d", + "label": "된장찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "2d160139e90246671838-history", - "label": "가정식백반", - "amount": 6000, + "id": "4a0ad736ba8b63123bfc", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4760", - "name": "대운분식", - "businessName": "대운분식", - "categorySlug": "korean", - "address": "충청북도 청주시 흥덕구 옥산면 청주역로 654", - "district": "충청북도 청주시", - "latitude": 36.6654960294927, - "longitude": 127.374242450261, - "representativePriceAmount": 6000, - "representativePriceLabel": "콩나물밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-260-0667 / 영업시간: 매일 08:00-21:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "ca8c450f9d7dacbb435c", - "label": "콩나물밥", - "amount": 6000, + "id": "bbb2f7a45dc35ff61c4c", + "label": "갈비탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ca8c450f9d7dacbb435c-history", - "label": "콩나물밥", - "amount": 6000, + "id": "82e9f9b59d10e7ab3f6d-history", + "label": "된장찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16878", - "name": "명윤", - "businessName": "명윤", - "categorySlug": "chinese", - "address": "충청남도 천안시 서북구 직산읍 4산단로 241 1동", - "district": "충청남도 천안시", - "latitude": 36.85787766445741, - "longitude": 127.10949582855619, - "representativePriceAmount": 6000, - "representativePriceLabel": "자장면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1426-9775 / 영업시간: 영업시간 09:30~19:30 휴무일 매주 월요일 베 달 오후 4시 이후 가능", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "37b7f5af97e4039314bc", - "label": "자장면", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" }, { - "id": "75e28d12fd3f47a89fd9", - "label": "짬뽕", + "id": "4a0ad736ba8b63123bfc-history", + "label": "비빔밥", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "37b7f5af97e4039314bc-history", - "label": "자장면", - "amount": 6000, - "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "75e28d12fd3f47a89fd9-history", - "label": "짬뽕", - "amount": 8000, + "id": "bbb2f7a45dc35ff61c4c-history", + "label": "갈비탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33898,51 +36112,51 @@ "comments": [] }, { - "id": "goodprice-16880", - "name": "모모아지트", - "businessName": "모모아지트", - "categorySlug": "other-food", - "address": "충청남도 천안시 서북구 봉정로 140 (성정동) 3층", - "district": "충청남도 천안시", - "latitude": 36.814482384883114, - "longitude": 127.14202209848756, - "representativePriceAmount": 3000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-17982", + "name": "배사공멸치국수", + "businessName": "배사공멸치국수", + "categorySlug": "korean", + "address": "대구광역시 중구 관덕정길 10 (남산동) 남산동", + "district": "대구광역시 중구", + "latitude": 35.865329712937886, + "longitude": 128.59079734801406, + "representativePriceAmount": 6000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1337-4919 / 영업시간: 영업시간 24시간", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-422-8866", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "302bc1d67e7d791f0a9f", - "label": "아메리카노", - "amount": 3000, + "id": "2cc2ff88399f167b3e56", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "57f43afe4c48be637fe1", - "label": "카페라떼", - "amount": 4000, + "id": "0fd48557f1fb2fb21b1a", + "label": "해물칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "302bc1d67e7d791f0a9f-history", - "label": "아메리카노", - "amount": 3000, + "id": "2cc2ff88399f167b3e56-history", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "57f43afe4c48be637fe1-history", - "label": "카페라떼", - "amount": 4000, + "id": "0fd48557f1fb2fb21b1a-history", + "label": "해물칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -33950,75 +36164,131 @@ "comments": [] }, { - "id": "goodprice-4994", - "name": "문헤어갤러리", - "businessName": "문헤어갤러리", - "categorySlug": "beauty", - "address": "충청남도 천안시 서북구 미라14길 20 (쌍용동)", - "district": "충청남도 천안시", - "latitude": 36.8056741666016, - "longitude": 127.13015496868, + "id": "goodprice-16150", + "name": "경희쌈밥", + "businessName": "경희쌈밥", + "categorySlug": "korean", + "address": "서울특별시 동대문구 경희대로1가길 4 (회기동, 힐링빌)", + "district": "서울특별시 동대문구", + "latitude": 37.591880743563365, + "longitude": 127.05147328239181, "representativePriceAmount": 8000, - "representativePriceLabel": "커트", + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-577-4466 / 영업시간: 10:00~19:00 정기휴무(매주 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-959-9379", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "559bb2baa3c1272ef0e2", - "label": "커트", + "id": "ea5f2c331bb2b1986d82", + "label": "한식뷔페", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "46641b1e2a7231b8030e", + "label": "오리백반", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1864a1da03eea81908b8", + "label": "소불고기백반", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "559bb2baa3c1272ef0e2-history", - "label": "커트", + "id": "ea5f2c331bb2b1986d82-history", + "label": "한식뷔페", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "46641b1e2a7231b8030e-history", + "label": "오리백반", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1864a1da03eea81908b8-history", + "label": "소불고기백반", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-10501", - "name": "착한가격헤어", - "businessName": "착한가격헤어", - "categorySlug": "beauty", - "address": "전라남도 목포시 상리로9번길 22 1층(상동)", - "district": "전라남도 목포시", - "latitude": 34.8137466442366, - "longitude": 126.41499805728, - "representativePriceAmount": 6000, - "representativePriceLabel": "커트(기본)", + "id": "goodprice-11440", + "name": "쎈밤 종로점", + "businessName": "쎈밤 종로점", + "categorySlug": "korean", + "address": "대구광역시 중구 종로 30-1 1층", + "district": "대구광역시 중구", + "latitude": 35.8686744440218, + "longitude": 128.592029244117, + "representativePriceAmount": 8900, + "representativePriceLabel": "국내산 삼겹살(150g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(기본) 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-278-1571", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국내산 삼겹살(150g) 8,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-7685-7137", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c220e2977a20f26351e2", - "label": "커트(기본)", - "amount": 6000, + "id": "ab2cab99f999438c90a9", + "label": "국내산 삼겹살(150g)", + "amount": 8900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "71a493c52bf8e193cad5", + "label": "국내산 목살(150g)", + "amount": 8900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e34151b30a7438ee95d1", + "label": "국내산 막창(150g)", + "amount": 8900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c220e2977a20f26351e2-history", - "label": "커트(기본)", - "amount": 6000, + "id": "ab2cab99f999438c90a9-history", + "label": "국내산 삼겹살(150g)", + "amount": 8900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "71a493c52bf8e193cad5-history", + "label": "국내산 목살(150g)", + "amount": 8900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e34151b30a7438ee95d1-history", + "label": "국내산 막창(150g)", + "amount": 8900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34026,34 +36296,41 @@ "comments": [] }, { - "id": "goodprice-15147", - "name": "태동반점", - "businessName": "태동반점", - "categorySlug": "chinese", - "address": "전라남도 목포시 마인계터로40번길 10-1 (죽동) 태동반점", - "district": "전라남도 목포시", - "latitude": 34.7899992363049, - "longitude": 126.38341878576848, + "id": "goodprice-18249", + "name": "고대멸치국수", + "businessName": "고대멸치국수", + "categorySlug": "korean", + "address": "서울특별시 동대문구 제기로 2 (제기동)", + "district": "서울특별시 동대문구", + "latitude": 37.58626198972733, + "longitude": 127.03311706112662, "representativePriceAmount": 7000, - "representativePriceLabel": "짜장면", + "representativePriceLabel": "멸치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-243-3351", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-928-9394", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bc2b2fa462e04360456b", - "label": "짜장면", + "id": "459e411e03e9a1804499", + "label": "멸치국수", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "aa3f443b5d64f1b7d84a", - "label": "짬뽕", + "id": "b2824ecde8725aeca9c7", + "label": "비빔국수", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fda28f83d9e990f91afd", + "label": "김치말이온국수", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -34061,54 +36338,23 @@ ], "history": [ { - "id": "bc2b2fa462e04360456b-history", - "label": "짜장면", + "id": "459e411e03e9a1804499-history", + "label": "멸치국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "aa3f443b5d64f1b7d84a-history", - "label": "짬뽕", + "id": "b2824ecde8725aeca9c7-history", + "label": "비빔국수", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11126", - "name": "하나둘미용실", - "businessName": "하나둘미용실", - "categorySlug": "beauty", - "address": "전라남도 목포시 수강로 6 (수강동1가)", - "district": "전라남도 목포시", - "latitude": 34.7856055450319, - "longitude": 126.386018127697, - "representativePriceAmount": 10000, - "representativePriceLabel": "여성(일반)컷트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여성(일반)컷트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-243-9098", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "a974478b8a1f35a99737", - "label": "여성(일반)컷트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "a974478b8a1f35a99737-history", - "label": "여성(일반)컷트", - "amount": 10000, + "id": "fda28f83d9e990f91afd-history", + "label": "김치말이온국수", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34116,51 +36362,37 @@ "comments": [] }, { - "id": "goodprice-6309", - "name": "끄티디저트카페", - "businessName": "끄티디저트카페", + "id": "goodprice-14222", + "name": "삼미", + "businessName": "삼미", "categorySlug": "other-food", - "address": "경상북도 포항시 남구 중앙로134번길 2 끄티디저트카페", - "district": "경상북도 포항시", - "latitude": 36.0250169966387, - "longitude": 129.368453187457, - "representativePriceAmount": 2000, - "representativePriceLabel": "아메리카노", + "address": "인천광역시 중구 제물량로 210-4 (해안동2가) 1층", + "district": "인천광역시 중구", + "latitude": 37.47195223689287, + "longitude": 126.62120161220716, + "representativePriceAmount": 5000, + "representativePriceLabel": "치즈카야토스트", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-281-2496 / 영업시간: 매일 08:00-23:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 치즈카야토스트 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-812-4055", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "06960cc7b181198e6794", - "label": "아메리카노", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0fc816676c10c2c04a1e", - "label": "생과일주스", - "amount": 4000, + "id": "bef8d50609936549c2a1", + "label": "치즈카야토스트", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "06960cc7b181198e6794-history", - "label": "아메리카노", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0fc816676c10c2c04a1e-history", - "label": "생과일주스", - "amount": 4000, + "id": "bef8d50609936549c2a1-history", + "label": "치즈카야토스트", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34168,89 +36400,103 @@ "comments": [] }, { - "id": "goodprice-6326", - "name": "나미화헤어클럽", - "businessName": "나미화헤어클럽", - "categorySlug": "beauty", - "address": "경상북도 포항시 남구 송도로 10-1", - "district": "경상북도 포항시", - "latitude": 36.0337446127344, - "longitude": 129.372175309483, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-18248", + "name": "고향홍두깨손칼국수", + "businessName": "고향홍두깨손칼국수", + "categorySlug": "korean", + "address": "서울특별시 동대문구 경동시장로10길 53 (제기동)", + "district": "서울특별시 동대문구", + "latitude": 37.58138850183611, + "longitude": 127.04368550795968, + "representativePriceAmount": 5000, + "representativePriceLabel": "손칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10시~17시 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6339-8868", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c7fd3d69efa5f351bde6", - "label": "커트", - "amount": 10000, + "id": "99eb2912bcc733477bad", + "label": "손칼국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "70b1a689297c345d3cba", - "label": "기타 성인여자커트", + "id": "f9e0c3ccc43feb0f668c", + "label": "손수제비", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "0a81e07ba968e9bf1128", + "label": "팥칼국수", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c7fd3d69efa5f351bde6-history", - "label": "커트", - "amount": 10000, + "id": "99eb2912bcc733477bad-history", + "label": "손칼국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "70b1a689297c345d3cba-history", - "label": "기타 성인여자커트", + "id": "f9e0c3ccc43feb0f668c-history", + "label": "손수제비", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "0a81e07ba968e9bf1128-history", + "label": "팥칼국수", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-6495", - "name": "나주식당", - "businessName": "나주식당", + "id": "goodprice-16743", + "name": "삼시국수", + "businessName": "삼시국수", "categorySlug": "korean", - "address": "경상북도 포항시 북구 양학로32번길 9-1 나주식당", - "district": "경상북도 포항시", - "latitude": 36.0264062592383, - "longitude": 129.351296310605, - "representativePriceAmount": 7500, - "representativePriceLabel": "정식", + "address": "인천광역시 중구 운중로 97 (운남동) 1층", + "district": "인천광역시 중구", + "latitude": 37.49421029445236, + "longitude": 126.5443392421388, + "representativePriceAmount": 7000, + "representativePriceLabel": "멸치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 11시~17시30분 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1479-2358", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a7e0d5e6ee617d2e2363", - "label": "정식", - "amount": 7500, + "id": "4c36d8749245f92dbe2d", + "label": "멸치국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a7e0d5e6ee617d2e2363-history", - "label": "정식", - "amount": 7500, + "id": "4c36d8749245f92dbe2d-history", + "label": "멸치국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34258,34 +36504,41 @@ "comments": [] }, { - "id": "goodprice-17129", - "name": "만원족발", - "businessName": "만원족발", + "id": "goodprice-16145", + "name": "광주회관", + "businessName": "광주회관", "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 양덕북2길 13 (양덕동) 1층", - "district": "경상남도 창원시", - "latitude": 35.232299773538415, - "longitude": 128.58552226970943, + "address": "서울특별시 동대문구 이문로 118 (이문동)", + "district": "서울특별시 동대문구", + "latitude": 37.59713752510465, + "longitude": 127.06091521284733, "representativePriceAmount": 10000, - "representativePriceLabel": "왕족발", + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 왕족발 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-299-4822", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-957-3876", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6c19aa2e7dea258f3d6c", - "label": "왕족발", + "id": "73a3d2c05e02992e1a25", + "label": "김치찌개", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6be6162cc2e80388c256", - "label": "미니족발", + "id": "7c72808e444141923b35", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4c10b8601dcd4149feed", + "label": "청국장", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -34293,15 +36546,22 @@ ], "history": [ { - "id": "6c19aa2e7dea258f3d6c-history", - "label": "왕족발", + "id": "73a3d2c05e02992e1a25-history", + "label": "김치찌개", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6be6162cc2e80388c256-history", - "label": "미니족발", + "id": "7c72808e444141923b35-history", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4c10b8601dcd4149feed-history", + "label": "청국장", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -34310,79 +36570,37 @@ "comments": [] }, { - "id": "goodprice-17130", - "name": "맛집", - "businessName": "맛집", + "id": "goodprice-14009", + "name": "소미국수", + "businessName": "소미국수", "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 구암북12길 17 (구암동) 맛집", - "district": "경상남도 창원시", - "latitude": 35.25555706724836, - "longitude": 128.59779095142022, - "representativePriceAmount": 3000, - "representativePriceLabel": "맛집김밥", + "address": "인천광역시 중구 서해대로 486-2 (유동) 1층", + "district": "인천광역시 중구", + "latitude": 37.46916114263947, + "longitude": 126.63654581942478, + "representativePriceAmount": 9000, + "representativePriceLabel": "감자칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 맛집김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-255-9597", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 감자칼국수 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-773-1003", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7ee369ed63fdfb03f10f", - "label": "맛집김밥", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d0e1902b346ab2ac56b5", - "label": "라면", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9a4850ad3d069d6ae818", - "label": "우동", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6480b3310eefd2a4e6ce", - "label": "국수", - "amount": 5000, + "id": "ec21bf0a8991773e9087", + "label": "감자칼국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7ee369ed63fdfb03f10f-history", - "label": "맛집김밥", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d0e1902b346ab2ac56b5-history", - "label": "라면", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9a4850ad3d069d6ae818-history", - "label": "우동", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6480b3310eefd2a4e6ce-history", - "label": "국수", - "amount": 5000, + "id": "ec21bf0a8991773e9087-history", + "label": "감자칼국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34390,51 +36608,65 @@ "comments": [] }, { - "id": "goodprice-17139", - "name": "먹거리아", - "businessName": "먹거리아", + "id": "goodprice-18819", + "name": "국수천천히", + "businessName": "국수천천히", "categorySlug": "korean", - "address": "경상남도 창원시 진해구 벚꽃로70번길 17-2 (화천동) 먹거리아", - "district": "경상남도 창원시", - "latitude": 35.151431963349566, - "longitude": 128.66566078665707, + "address": "서울특별시 동대문구 서울시립대로28길 6 (전농동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.58248022110494, + "longitude": 127.05300099206838, "representativePriceAmount": 5000, - "representativePriceLabel": "고구마튀김 8개", + "representativePriceLabel": "멸치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고구마튀김 8개 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-542-9476", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2215-1025", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8f683efe80f43544e9fa", - "label": "고구마튀김 8개", + "id": "179d60c9ffb0f2bf938c", + "label": "멸치국수", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b5ebfc444937dc484f11", - "label": "쥐포튀김 8개", - "amount": 5000, + "id": "c63406461e3f34db76c1", + "label": "비빔국수", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6c1dab690b1872cf3c83", + "label": "열무냉국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8f683efe80f43544e9fa-history", - "label": "고구마튀김 8개", + "id": "179d60c9ffb0f2bf938c-history", + "label": "멸치국수", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b5ebfc444937dc484f11-history", - "label": "쥐포튀김 8개", - "amount": 5000, + "id": "c63406461e3f34db76c1-history", + "label": "비빔국수", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6c1dab690b1872cf3c83-history", + "label": "열무냉국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34442,37 +36674,51 @@ "comments": [] }, { - "id": "goodprice-6804", - "name": "메밀파티", - "businessName": "메밀파티", + "id": "goodprice-19356", + "name": "무등산국밥", + "businessName": "무등산국밥", "categorySlug": "korean", - "address": "경상남도 창원시 성산구 토월로 88 (상남동) 지하", - "district": "경상남도 창원시", - "latitude": 35.21882052587623, - "longitude": 128.68409106230135, - "representativePriceAmount": 8000, - "representativePriceLabel": "막국수", + "address": "광주광역시 동구 제봉로17번길 2 (학동) 1층", + "district": "광주광역시 동구", + "latitude": 35.14024503188192, + "longitude": 126.92183479745447, + "representativePriceAmount": 7000, + "representativePriceLabel": "암뽕순대국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 막국수 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-284-0618", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 암뽕순대국밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-2051 / 영업시간: 매일 10:00~20:30 브레이크타임 2:00~2:30 첫째, 셋째 주 일요일 휴무(시장 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "df0afdc83052994bd6cd", - "label": "막국수", - "amount": 8000, + "id": "75452c3f5b208cb22d46", + "label": "암뽕순대국밥", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d2aea4228515e9ed89b4", + "label": "살코기국밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "df0afdc83052994bd6cd-history", - "label": "막국수", - "amount": 8000, + "id": "75452c3f5b208cb22d46-history", + "label": "암뽕순대국밥", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d2aea4228515e9ed89b4-history", + "label": "살코기국밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34480,51 +36726,51 @@ "comments": [] }, { - "id": "goodprice-7013", - "name": "다마내기", - "businessName": "다마내기", - "categorySlug": "other-service", - "address": "제주특별자치도 제주시 원노형로 26 202호 (서림빌딩)", - "district": "제주특별자치도 제주시", - "latitude": 33.4864471773391, - "longitude": 126.484759413813, - "representativePriceAmount": 1700, - "representativePriceLabel": "중대 10분", + "id": "goodprice-10378", + "name": "그린하우스", + "businessName": "그린하우스", + "categorySlug": "korean", + "address": "서울특별시 동대문구 전농로 219 (전농동)", + "district": "서울특별시 동대문구", + "latitude": 37.58369688833996, + "longitude": 127.0532274604834, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 중대 10분 1,700원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-747-0618 / 영업시간: 목요일12:00-00:00 매일12:00-00:00 금요일12:00-00:00 토요일12:00-00:00 일요일12:00-00:00 월요일12:00-00:00 화요일12:00-00:00 수요일12:00-00:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2247-2247", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bbff1e48933862c8375c", - "label": "중대 10분", - "amount": 1700, + "id": "7aeb9fc844bb273e7ab9", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "70efd2e12e5955def681", - "label": "기본 30분", - "amount": 5000, + "id": "56a89c0ff6e209ec1802", + "label": "참치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bbff1e48933862c8375c-history", - "label": "중대 10분", - "amount": 1700, + "id": "7aeb9fc844bb273e7ab9-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "70efd2e12e5955def681-history", - "label": "기본 30분", - "amount": 5000, + "id": "56a89c0ff6e209ec1802-history", + "label": "참치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34532,117 +36778,107 @@ "comments": [] }, { - "id": "goodprice-18086", - "name": "다올국수", - "businessName": "다올국수", + "id": "goodprice-2264", + "name": "박순자녹두집", + "businessName": "박순자녹두집", "categorySlug": "korean", - "address": "제주특별자치도 제주시 서광로 209-1 (삼도일동) 다올국수", - "district": "제주특별자치도 제주시", - "latitude": 33.50016357321733, - "longitude": 126.51892020124394, - "representativePriceAmount": 7000, - "representativePriceLabel": "멸치국수", + "address": "광주광역시 동구 구성로204번길 26 (대인동)", + "district": "광주광역시 동구", + "latitude": 35.1518665091161, + "longitude": 126.916416294973, + "representativePriceAmount": 6000, + "representativePriceLabel": "수제비", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-755-7076", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 수제비 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-8694 / 영업시간: 화-일 11:30-21:00/ 월요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d609a71ccef8b28eb64b", - "label": "멸치국수", + "id": "3c37ba479fe8fa6cc177", + "label": "수제비", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "bb57049bebaa85d00219", + "label": "팥죽", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f1075f433017e089b0a0", - "label": "고기국수", - "amount": 9000, + "id": "6256deaaa98f9da16fac", + "label": "동지죽", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1f6ec4f2d7d32a4c82af", - "label": "찐만두", - "amount": 8000, + "id": "9f5041d5579f8c893cb2", + "label": "콩나물국밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "835d8c6bec9f80cf621f", - "label": "계란말이", - "amount": 8000, + "id": "5352f6362859edb2be0d", + "label": "콩물국수", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "7c21100b2ff6d0594b46", + "label": "파전", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d609a71ccef8b28eb64b-history", - "label": "멸치국수", - "amount": 7000, + "id": "3c37ba479fe8fa6cc177-history", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f1075f433017e089b0a0-history", - "label": "고기국수", - "amount": 9000, + "id": "bb57049bebaa85d00219-history", + "label": "팥죽", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1f6ec4f2d7d32a4c82af-history", - "label": "찐만두", - "amount": 8000, + "id": "6256deaaa98f9da16fac-history", + "label": "동지죽", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "835d8c6bec9f80cf621f-history", - "label": "계란말이", - "amount": 8000, + "id": "9f5041d5579f8c893cb2-history", + "label": "콩나물국밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18078", - "name": "다인헤어", - "businessName": "다인헤어", - "categorySlug": "beauty", - "address": "제주특별자치도 제주시 원노형로 9 (노형동) 다인헤어", - "district": "제주특별자치도 제주시", - "latitude": 33.487776208529105, - "longitude": 126.48422199658157, - "representativePriceAmount": 10000, - "representativePriceLabel": "컷트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-744-9242", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "bc492fd6657fe1d9812e", - "label": "컷트", - "amount": 10000, + "id": "5352f6362859edb2be0d-history", + "label": "콩물국수", + "amount": 8500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "bc492fd6657fe1d9812e-history", - "label": "컷트", - "amount": 10000, + "id": "7c21100b2ff6d0594b46-history", + "label": "파전", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34650,51 +36886,51 @@ "comments": [] }, { - "id": "goodprice-952", - "name": "종묘이용원", - "businessName": "종묘이용원", - "categorySlug": "barber", - "address": "서울특별시 종로구 종로 146 (종로3가) (종로4가)", - "district": "서울특별시 종로구", - "latitude": 37.57022814518435, - "longitude": 126.99369870159373, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", + "id": "goodprice-10352", + "name": "금복", + "businessName": "금복", + "categorySlug": "korean", + "address": "서울특별시 동대문구 안암로20길 16 (제기동)", + "district": "서울특별시 동대문구", + "latitude": 37.58737447659273, + "longitude": 127.03504769377918, + "representativePriceAmount": 5500, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-923-7844", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1b85f27b1437d203ac50", - "label": "커트", - "amount": 7000, + "id": "dc4fcaac6211e3441777", + "label": "김치찌개", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "05e7d5a67b77f4a893bd", - "label": "염색", - "amount": 7000, + "id": "99280227dd2cb18abb8f", + "label": "된장찌개", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1b85f27b1437d203ac50-history", - "label": "커트", - "amount": 7000, + "id": "dc4fcaac6211e3441777-history", + "label": "김치찌개", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "05e7d5a67b77f4a893bd-history", - "label": "염색", - "amount": 7000, + "id": "99280227dd2cb18abb8f-history", + "label": "된장찌개", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34702,86 +36938,79 @@ "comments": [] }, { - "id": "goodprice-16865", - "name": "중국", - "businessName": "중국", - "categorySlug": "chinese", - "address": "서울특별시 종로구 자하문로33길 2 (청운동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.58619403165867, - "longitude": 126.96972945340502, + "id": "goodprice-2265", + "name": "반디식당", + "businessName": "반디식당", + "categorySlug": "korean", + "address": "광주광역시 동구 구성로 258 (계림동)", + "district": "광주광역시 동구", + "latitude": 35.1570933401735, + "longitude": 126.918837815272, "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-737-8055 / 영업시간: 10:00~13:00 (재료 소진 시 마감) 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-222-0809 / 영업시간: 월-목 09:00-15:00 금-일 09:00-20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "84706cbcda12f6223668", - "label": "짜장면", + "id": "debe2d932314ed5907fd", + "label": "백반", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "40eb4b8cc82012abea1c", - "label": "짬뽕", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "84706cbcda12f6223668-history", - "label": "짜장면", + "id": "debe2d932314ed5907fd-history", + "label": "백반", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "40eb4b8cc82012abea1c-history", - "label": "짬뽕", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-10019", - "name": "황소식당", - "businessName": "황소식당", + "id": "goodprice-10376", + "name": "김가네김밥", + "businessName": "김가네김밥", "categorySlug": "korean", - "address": "부산광역시 중구 충장대로 4번길 8 (중앙동4가)", - "district": "부산광역시 중구", - "latitude": 35.1044916301827, - "longitude": 129.036809946537, - "representativePriceAmount": 7000, - "representativePriceLabel": "부대찌개", + "address": "서울특별시 동대문구 서울시립대로16길 97-2 (전농동)", + "district": "서울특별시 동대문구", + "latitude": 37.57782337357348, + "longitude": 127.05575878506123, + "representativePriceAmount": 3000, + "representativePriceLabel": "김가네김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 부대찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-465-6648", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김가네김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2245-6340", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3850cf71cb847a965e5d", - "label": "부대찌개", - "amount": 7000, + "id": "c86ce855c93617f99356", + "label": "김가네김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "50d72a31c5707250be7e", - "label": "김치찌개", + "id": "d4bc17f50cc4b909983d", + "label": "깻잎김밥", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "67ddcd7bf4cb7a5947c6", + "label": "떡국", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -34789,15 +37018,22 @@ ], "history": [ { - "id": "3850cf71cb847a965e5d-history", - "label": "부대찌개", - "amount": 7000, + "id": "c86ce855c93617f99356-history", + "label": "김가네김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "50d72a31c5707250be7e-history", - "label": "김치찌개", + "id": "d4bc17f50cc4b909983d-history", + "label": "깻잎김밥", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "67ddcd7bf4cb7a5947c6-history", + "label": "떡국", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -34806,141 +37042,233 @@ "comments": [] }, { - "id": "goodprice-1420", - "name": "3678통장어", - "businessName": "3678통장어", + "id": "goodprice-2564", + "name": "뒤집어진뚝배기", + "businessName": "뒤집어진뚝배기", "categorySlug": "korean", - "address": "부산광역시 서구 구덕로 280번길 17 (동대신동1가)", - "district": "부산광역시 서구", - "latitude": 35.1095112240639, - "longitude": 129.01944149398, - "representativePriceAmount": 10000, - "representativePriceLabel": "장어탕", + "address": "대전광역시 동구 동대전로131번길 8-11 (자양동)", + "district": "대전광역시 동구", + "latitude": 36.3346159683747, + "longitude": 127.445358439471, + "representativePriceAmount": 7500, + "representativePriceLabel": "제육", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-242-3678 / 영업시간: 11:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-622-3692 / 영업시간: 10:00 ~ 19:00 / 토요일, 일요일, 공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d08cad99192b1fe9cafc", - "label": "장어탕", - "amount": 10000, + "id": "968d6d74fd1c637fd1b5", + "label": "제육", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "25d11598124354dc3727", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7d82857d8061822c187f", - "label": "장어들깨국밥", + "id": "1376effedab108d5a83e", + "label": "닭계장", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "7803ceaf4daf9338462e", + "label": "김치 볶음밥", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "829f5325118c463428f3", + "label": "뚝배기 김치찌개", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8263dd3157d0058c54ae", + "label": "뚝배기 닭계장", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ecadbbe5e1c44c9dc2a3", + "label": "뚝배기 라면", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "29e37499a3ec297011f4", + "label": "뚝배기 라면밥", + "amount": 4500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6427cffbe30e2be2592f", + "label": "뚝배기 만두국", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "7c16a40d39d0b9a755db", + "label": "뚝배기 수제비", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "dd37eeb5635b5bc238ad", + "label": "뚝배기 순대국", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8228c0466980f3143642", + "label": "뚝배기 순두부", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "82c444f803c12974e52d", + "label": "뚝배기 오징어볶음", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9edb102bb923703d0cf7", + "label": "뚝배기 제육", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "222c5bffe6bab588024b", + "label": "뚝배기 참치찌개", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d08cad99192b1fe9cafc-history", - "label": "장어탕", - "amount": 10000, + "id": "968d6d74fd1c637fd1b5-history", + "label": "제육", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7d82857d8061822c187f-history", - "label": "장어들깨국밥", + "id": "25d11598124354dc3727-history", + "label": "김치찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1393", - "name": "777헤어샵", - "businessName": "777헤어샵", - "categorySlug": "beauty", - "address": "부산광역시 서구 자갈치로 8-1 (충무동1가)", - "district": "부산광역시 서구", - "latitude": 35.0961210951299, - "longitude": 129.025327657564, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트(남)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(남) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-244-2430 / 영업시간: 09:30~19:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "e5c4df49a26681b91ac8", - "label": "커트(남)", - "amount": 10000, + "id": "1376effedab108d5a83e-history", + "label": "닭계장", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "4cd75aa50b1daf44eec0", - "label": "커트(여)", - "amount": 10000, + "id": "7803ceaf4daf9338462e-history", + "label": "김치 볶음밥", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "e5c4df49a26681b91ac8-history", - "label": "커트(남)", - "amount": 10000, + "id": "829f5325118c463428f3-history", + "label": "뚝배기 김치찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4cd75aa50b1daf44eec0-history", - "label": "커트(여)", - "amount": 10000, + "id": "8263dd3157d0058c54ae-history", + "label": "뚝배기 닭계장", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-10083", - "name": "강변복어", - "businessName": "강변복어", - "categorySlug": "korean", - "address": "대구광역시 동구 호반길67 (방촌동)", - "district": "대구광역시 동구", - "latitude": 35.8788829142879, - "longitude": 128.660877483508, - "representativePriceAmount": 8000, - "representativePriceLabel": "복어탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 복어탕 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-982-7252", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "30c5d3fb2997f3e50bf7", - "label": "복어탕", - "amount": 8000, + "id": "ecadbbe5e1c44c9dc2a3-history", + "label": "뚝배기 라면", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "30c5d3fb2997f3e50bf7-history", - "label": "복어탕", - "amount": 8000, + "id": "29e37499a3ec297011f4-history", + "label": "뚝배기 라면밥", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6427cffbe30e2be2592f-history", + "label": "뚝배기 만두국", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7c16a40d39d0b9a755db-history", + "label": "뚝배기 수제비", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "dd37eeb5635b5bc238ad-history", + "label": "뚝배기 순대국", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8228c0466980f3143642-history", + "label": "뚝배기 순두부", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "82c444f803c12974e52d-history", + "label": "뚝배기 오징어볶음", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9edb102bb923703d0cf7-history", + "label": "뚝배기 제육", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "222c5bffe6bab588024b-history", + "label": "뚝배기 참치찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -34948,121 +37276,107 @@ "comments": [] }, { - "id": "goodprice-1870", - "name": "고향손칼국수", - "businessName": "고향손칼국수", - "categorySlug": "korean", - "address": "대구광역시 동구 장등로 9 (신천동)", - "district": "대구광역시 동구", - "latitude": 35.8682732754141, - "longitude": 128.622905927079, - "representativePriceAmount": 4500, - "representativePriceLabel": "잔치국수", + "id": "goodprice-483", + "name": "까페뜨랑", + "businessName": "까페뜨랑", + "categorySlug": "other-food", + "address": "서울특별시 동대문구 제기로 130 (청량리동)", + "district": "서울특별시 동대문구", + "latitude": 37.58642702617338, + "longitude": 127.04748948131413, + "representativePriceAmount": 2500, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 4,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-752-8894 / 영업시간: 금 10:00-22:00 토 10:00-22:00 일 정기휴무(매주일요일) 월 10:00-22:00 화 10:00-22:00 수 10:00-22:00 목 10:00-22:00 -일요일휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6949-3928 / 영업시간: 매일 10:00-20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6edf3876036df9e3a321", - "label": "잔치국수", - "amount": 4500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "526da5701aacb92a2191", - "label": "칼국수", - "amount": 5500, + "id": "d0f57e0dedaa2f990665", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4bdcc35674f61fa4147c", - "label": "들깨 칼국수", - "amount": 6500, + "id": "078fc7403f597ac481ba", + "label": "카페라떼", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "af526dd48edeecfbd220", - "label": "바지락 칼국수", - "amount": 5500, + "id": "e04e7854f295b0d798cb", + "label": "카푸치노", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f629844b6121cacbd030", - "label": "손칼국수", - "amount": 5500, + "id": "701eeae4fd7a79ea3572", + "label": "빅아메리카노", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "955f0ad20cddbf8d1455", - "label": "얼큰 수제비", - "amount": 6500, + "id": "2c9b466e358a50383b67", + "label": "카페 라떼", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1c62861c1120b7f95a0e", - "label": "얼큰 칼국수", - "amount": 6500, + "id": "a8512aed0c7eeb11980b", + "label": "흑당 달고나 라떼", + "amount": 4800, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6edf3876036df9e3a321-history", - "label": "잔치국수", - "amount": 4500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "526da5701aacb92a2191-history", - "label": "칼국수", - "amount": 5500, + "id": "d0f57e0dedaa2f990665-history", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4bdcc35674f61fa4147c-history", - "label": "들깨 칼국수", - "amount": 6500, + "id": "078fc7403f597ac481ba-history", + "label": "카페라떼", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "af526dd48edeecfbd220-history", - "label": "바지락 칼국수", - "amount": 5500, + "id": "e04e7854f295b0d798cb-history", + "label": "카푸치노", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f629844b6121cacbd030-history", - "label": "손칼국수", - "amount": 5500, + "id": "701eeae4fd7a79ea3572-history", + "label": "빅아메리카노", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "955f0ad20cddbf8d1455-history", - "label": "얼큰 수제비", - "amount": 6500, + "id": "2c9b466e358a50383b67-history", + "label": "카페 라떼", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1c62861c1120b7f95a0e-history", - "label": "얼큰 칼국수", - "amount": 6500, + "id": "a8512aed0c7eeb11980b-history", + "label": "흑당 달고나 라떼", + "amount": 4800, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35070,51 +37384,51 @@ "comments": [] }, { - "id": "goodprice-2222", - "name": "현대세탁소", - "businessName": "현대세탁소", - "categorySlug": "laundry", - "address": "인천광역시 중구 인항로 34 1층 102호 (신흥동3가)", - "district": "인천광역시 중구", - "latitude": 37.4571633075413, - "longitude": 126.634101603919, + "id": "goodprice-16819", + "name": "또와짬뽕", + "businessName": "또와짬뽕", + "categorySlug": "chinese", + "address": "대전광역시 동구 동대전로 153-5 (자양동) 1층", + "district": "대전광역시 동구", + "latitude": 36.335615601209376, + "longitude": 127.446345541849, "representativePriceAmount": 5000, - "representativePriceLabel": "바지", + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 바지 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-891-5252 / 영업시간: 월~금 : 09:30~21:00 토 : 10;00~17;00 정기휴무(일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-623-6237 / 영업시간: 10:00 ~ 19:30( 매주 일요일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e7b80e9540039dce2f39", - "label": "바지", + "id": "915670eca6799fae27d7", + "label": "짜장면", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b35abd377b024318813c", - "label": "정장1벌", - "amount": 10000, + "id": "616ebfd5badf33b8a9b6", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e7b80e9540039dce2f39-history", - "label": "바지", + "id": "915670eca6799fae27d7-history", + "label": "짜장면", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b35abd377b024318813c-history", - "label": "정장1벌", - "amount": 10000, + "id": "616ebfd5badf33b8a9b6-history", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35122,37 +37436,51 @@ "comments": [] }, { - "id": "goodprice-16954", - "name": "혼밥밥상", - "businessName": "혼밥밥상", + "id": "goodprice-11344", + "name": "낙원떡방앗간", + "businessName": "낙원떡방앗간", "categorySlug": "korean", - "address": "인천광역시 중구 하늘중앙로225번길 11 (중산동) 2층 206,207호", - "district": "인천광역시 중구", - "latitude": 37.487838041971756, - "longitude": 126.55922287899413, - "representativePriceAmount": 10000, - "representativePriceLabel": "백반", + "address": "서울특별시 동대문구 회기로25길 11 (회기동)", + "district": "서울특별시 동대문구", + "latitude": 37.590971093960796, + "longitude": 127.05497688177023, + "representativePriceAmount": 3000, + "representativePriceLabel": "인절미(400g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 인절미(400g) 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-964-2450", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a4a6b446e9aa690c6668", - "label": "백반", - "amount": 10000, + "id": "bde626e15d0e78a1763a", + "label": "인절미(400g)", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "939ca252b0be28a8d866", + "label": "영양떡(400g)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a4a6b446e9aa690c6668-history", - "label": "백반", - "amount": 10000, + "id": "bde626e15d0e78a1763a-history", + "label": "인절미(400g)", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "939ca252b0be28a8d866-history", + "label": "영양떡(400g)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35160,51 +37488,51 @@ "comments": [] }, { - "id": "goodprice-2281", - "name": "한우물", - "businessName": "한우물", + "id": "goodprice-2575", + "name": "마실", + "businessName": "마실", "categorySlug": "korean", - "address": "광주광역시 동구 필문대로191번길 15-2 (산수동)", - "district": "광주광역시 동구", - "latitude": 35.1533803800092, - "longitude": 126.933174859781, - "representativePriceAmount": 9000, - "representativePriceLabel": "생선구이(모듬)", + "address": "대전광역시 동구 동산초교로 22번길 45 (홍도동)", + "district": "대전광역시 동구", + "latitude": 36.3475476850448, + "longitude": 127.429039114596, + "representativePriceAmount": 7000, + "representativePriceLabel": "수제비", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생선구이(모듬) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-675-9944 / 영업시간: 10:00-22:00 휴식시간 15:00-17:00 휴무일 일요일 공휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 수제비 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-635-7086 / 영업시간: 11:00 ~ 22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3c5b964b15c4b19aa122", - "label": "생선구이(모듬)", - "amount": 9000, + "id": "e3bf68ada9bf9499a474", + "label": "수제비", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "48939a8fa36e7670bb31", - "label": "모듬구이(1인)", - "amount": 8000, + "id": "42c9f13e5e1a190741c1", + "label": "손수제비", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3c5b964b15c4b19aa122-history", - "label": "생선구이(모듬)", - "amount": 9000, + "id": "e3bf68ada9bf9499a474-history", + "label": "수제비", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "48939a8fa36e7670bb31-history", - "label": "모듬구이(1인)", - "amount": 8000, + "id": "42c9f13e5e1a190741c1-history", + "label": "손수제비", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35212,37 +37540,51 @@ "comments": [] }, { - "id": "goodprice-2282", - "name": "해뜨는식당", - "businessName": "해뜨는식당", - "categorySlug": "korean", - "address": "광주광역시 동구 제봉로190번길 7-1 1층(대인동)", - "district": "광주광역시 동구", - "latitude": 35.1540271398023, - "longitude": 126.917438484668, - "representativePriceAmount": 1000, - "representativePriceLabel": "백반", + "id": "goodprice-18239", + "name": "난망베이킹스튜디오", + "businessName": "난망베이킹스튜디오", + "categorySlug": "other-food", + "address": "서울특별시 동대문구 사가정로 41-1 (답십리동) 3층", + "district": "서울특별시 동대문구", + "latitude": 37.572980184516354, + "longitude": 127.05156599223547, + "representativePriceAmount": 3500, + "representativePriceLabel": "대만카스테라", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 1,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-227-6063 / 영업시간: 매일 11:30-14:00 휴일 일요일, 공휴일", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 대만카스테라 3,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-6639-8697", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fc2ee60c70744efad7d9", - "label": "백반", - "amount": 1000, + "id": "959d5eb14c0ceafaf6e9", + "label": "대만카스테라", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "383c7aca174dd63d5bc7", + "label": "대만펑리수", + "amount": 3200, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fc2ee60c70744efad7d9-history", - "label": "백반", - "amount": 1000, + "id": "959d5eb14c0ceafaf6e9-history", + "label": "대만카스테라", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "383c7aca174dd63d5bc7-history", + "label": "대만펑리수", + "amount": 3200, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35250,51 +37592,51 @@ "comments": [] }, { - "id": "goodprice-17166", - "name": "헤어필(학동)", - "businessName": "헤어필(학동)", - "categorySlug": "beauty", - "address": "광주광역시 동구 천변우로 603 (학동, 백화아파트) 상가102동 104호", - "district": "광주광역시 동구", - "latitude": 35.13097376055375, - "longitude": 126.92644589626747, - "representativePriceAmount": 10000, - "representativePriceLabel": "성인커트", + "id": "goodprice-14774", + "name": "송림식당", + "businessName": "송림식당", + "categorySlug": "korean", + "address": "울산광역시 중구 성안6길 1 (성안동) 1층", + "district": "울산광역시 중구", + "latitude": 35.575033452695315, + "longitude": 129.31651249571607, + "representativePriceAmount": 8000, + "representativePriceLabel": "정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 성인커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 영업일: 월~토 08:30~17:30 휴무일: 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-246-8751 / 영업시간: 월요일~토요일 11:00~17:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2b6375cab58b23acd2fb", - "label": "성인커트", - "amount": 10000, + "id": "d2dbe13167ff89157f79", + "label": "정식", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "da31e14cc4246429590c", - "label": "학생커트", - "amount": 7000, + "id": "7a1a9a1e3ca7d8412e1c", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2b6375cab58b23acd2fb-history", - "label": "성인커트", - "amount": 10000, + "id": "d2dbe13167ff89157f79-history", + "label": "정식", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "da31e14cc4246429590c-history", - "label": "학생커트", - "amount": 7000, + "id": "7a1a9a1e3ca7d8412e1c-history", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35302,118 +37644,90 @@ "comments": [] }, { - "id": "goodprice-2568", - "name": "옛고을식당", - "businessName": "옛고을식당", + "id": "goodprice-506", + "name": "놀부만두", + "businessName": "놀부만두", "categorySlug": "korean", - "address": "대전광역시 동구 역전시장길 8 (정동)", - "district": "대전광역시 동구", - "latitude": 36.3304560058946, - "longitude": 127.433731277703, + "address": "서울특별시 동대문구 망우로16길 15 (휘경동)", + "district": "서울특별시 동대문구", + "latitude": 37.58935268371408, + "longitude": 127.06148244815414, "representativePriceAmount": 7000, - "representativePriceLabel": "비빔밥", + "representativePriceLabel": "고기통만두(10개)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-274-1983 / 영업시간: 06:00 ~ 15:00 / 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고기통만두(10개) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2241-7550 / 영업시간: 금 11:00-20:00 19:00라스트오더 토 정기휴무(매주토요일) 일 11:00-20:00 19:00라스트오더 월 11:00-20:00 19:00라스트오더 화 11:00-20:00 19:00라스트오더 수 11:00-20:00 19:00라스트오더 목 11:00-20:00 19:00라스트오더", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "de31213beaaee7425384", - "label": "비빔밥", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a936b28175aa0146ac45", - "label": "콩나물해장국", + "id": "a4257d2c78d84e19734e", + "label": "고기통만두(10개)", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8b3606143c48e938388c", - "label": "돌솥비빔밥", + "id": "f6295e85af6b6e1f2beb", + "label": "김치만두(8개)", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "11d5fd582f68aeefd46a", - "label": "갈치조림", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8ef3b0fb6d9f002da605", - "label": "김치찌개", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bc6aaa70f4107bb52caf", - "label": "돼지두루치기", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1c773938032efe6392b8", - "label": "된장찌개", + "id": "daee0cba6efd8d757ba4", + "label": "고기통만두 10개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b634c230c499a3881006", - "label": "북어해장국", + "id": "465c7d94bef76b7a1fdd", + "label": "김치만두 8개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "238a71da04facc914932", - "label": "뼈다귀해장국", + "id": "5ce246e1bd143a22f49b", + "label": "냉모밀", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9e58913b0214ad9cbe58", - "label": "선지해장국", - "amount": 6000, + "id": "deeded4d04eac452c586", + "label": "비빔모밀", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b176c93b48f7fecfd6d2", - "label": "순두부찌개", - "amount": 6000, + "id": "a04913ab612704630e6f", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3c0a67a56becca138172", - "label": "양푼이비빔밥", - "amount": 6000, + "id": "091018b9a4bab672a091", + "label": "온모밀", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "57277de7776386be1076", - "label": "육개장", + "id": "83b703db9d19f23c9d2b", + "label": "유부우동", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "36f2c4eab80cd48a37a3", - "label": "제육덮밥", + "id": "db20596357d96e9c3a1f", + "label": "쫄면", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -35421,99 +37735,71 @@ ], "history": [ { - "id": "de31213beaaee7425384-history", - "label": "비빔밥", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a936b28175aa0146ac45-history", - "label": "콩나물해장국", + "id": "a4257d2c78d84e19734e-history", + "label": "고기통만두(10개)", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8b3606143c48e938388c-history", - "label": "돌솥비빔밥", + "id": "f6295e85af6b6e1f2beb-history", + "label": "김치만두(8개)", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "11d5fd582f68aeefd46a-history", - "label": "갈치조림", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8ef3b0fb6d9f002da605-history", - "label": "김치찌개", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bc6aaa70f4107bb52caf-history", - "label": "돼지두루치기", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1c773938032efe6392b8-history", - "label": "된장찌개", + "id": "daee0cba6efd8d757ba4-history", + "label": "고기통만두 10개", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b634c230c499a3881006-history", - "label": "북어해장국", + "id": "465c7d94bef76b7a1fdd-history", + "label": "김치만두 8개", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "238a71da04facc914932-history", - "label": "뼈다귀해장국", + "id": "5ce246e1bd143a22f49b-history", + "label": "냉모밀", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9e58913b0214ad9cbe58-history", - "label": "선지해장국", - "amount": 6000, + "id": "deeded4d04eac452c586-history", + "label": "비빔모밀", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b176c93b48f7fecfd6d2-history", - "label": "순두부찌개", - "amount": 6000, + "id": "a04913ab612704630e6f-history", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3c0a67a56becca138172-history", - "label": "양푼이비빔밥", - "amount": 6000, + "id": "091018b9a4bab672a091-history", + "label": "온모밀", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "57277de7776386be1076-history", - "label": "육개장", + "id": "83b703db9d19f23c9d2b-history", + "label": "유부우동", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "36f2c4eab80cd48a37a3-history", - "label": "제육덮밥", + "id": "db20596357d96e9c3a1f-history", + "label": "쫄면", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -35522,117 +37808,103 @@ "comments": [] }, { - "id": "goodprice-14911", - "name": "왕관식당", - "businessName": "왕관식당", + "id": "goodprice-2994", + "name": "수다라", + "businessName": "수다라", "categorySlug": "korean", - "address": "대전광역시 동구 선화로196번길 6 (중동) 중동", - "district": "대전광역시 동구", - "latitude": 36.33360283723725, - "longitude": 127.42754191112995, + "address": "울산광역시 중구 서원1길 3 (반구동)", + "district": "울산광역시 중구", + "latitude": 35.5632555809223, + "longitude": 129.335301504887, "representativePriceAmount": 6000, - "representativePriceLabel": "콩나물밥", + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-221-1663 / 영업시간: 12:00~14:00 / 휴무일(일) / 예약불가", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-293-8818 / 영업시간: 10:00~18:00 -1인분은13:30이후주문가능", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3028b2dd7bffd45b02aa", - "label": "콩나물밥", + "id": "f24d2eb74ac6f49a318c", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "5a858002c4b084e7747b", + "label": "비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3028b2dd7bffd45b02aa-history", - "label": "콩나물밥", + "id": "f24d2eb74ac6f49a318c-history", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "5a858002c4b084e7747b-history", + "label": "비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-2887", - "name": "경주이용원", - "businessName": "경주이용원", - "categorySlug": "barber", - "address": "울산광역시 남구 월평로159번길 4 1층", - "district": "울산광역시 남구", - "latitude": 35.545149268254, - "longitude": 129.322629378239, - "representativePriceAmount": 10000, - "representativePriceLabel": "초등부컷트", + "id": "goodprice-14390", + "name": "다옴감자탕양평해장국", + "businessName": "다옴감자탕양평해장국", + "categorySlug": "korean", + "address": "서울특별시 동대문구 전농로 91 (답십리동)", + "district": "서울특별시 동대문구", + "latitude": 37.573100897078405, + "longitude": 127.05723973492465, + "representativePriceAmount": 9000, + "representativePriceLabel": "뼈해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 초등부컷트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-268-5170 / 영업시간: 07:30~20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2244-8500", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8670c1cb6d454dfeb00f", - "label": "초등부컷트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "36d3629e0b85d117cc6c", - "label": "중고등학생 컷트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "cc5fad78ca00471a809c", - "label": "중고생커트", - "amount": 10000, + "id": "53e3b76d21e54a8a61e3", + "label": "뼈해장국", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c9d0a8b0866ead151f4e", - "label": "초등부커트", - "amount": 10000, + "id": "2112dad89b01492a2fe3", + "label": "냉면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8670c1cb6d454dfeb00f-history", - "label": "초등부컷트", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "36d3629e0b85d117cc6c-history", - "label": "중고등학생 컷트", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "cc5fad78ca00471a809c-history", - "label": "중고생커트", - "amount": 10000, + "id": "53e3b76d21e54a8a61e3-history", + "label": "뼈해장국", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c9d0a8b0866ead151f4e-history", - "label": "초등부커트", - "amount": 10000, + "id": "2112dad89b01492a2fe3-history", + "label": "냉면", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35640,51 +37912,51 @@ "comments": [] }, { - "id": "goodprice-15106", - "name": "경주칼국수", - "businessName": "경주칼국수", + "id": "goodprice-14577", + "name": "순정분식", + "businessName": "순정분식", "categorySlug": "korean", - "address": "울산광역시 남구 월평로37번길 5 (신정동) 1층", - "district": "울산광역시 남구", - "latitude": 35.541808785746284, - "longitude": 129.30930615922028, - "representativePriceAmount": 6000, - "representativePriceLabel": "손칼국수", + "address": "울산광역시 중구 반구정15길 18 (반구동) 1층", + "district": "울산광역시 중구", + "latitude": 35.55845233751778, + "longitude": 129.34466380262637, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-271-3278", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10:40~19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e1c28b8724bb1719167b", - "label": "손칼국수", - "amount": 6000, + "id": "8c27edd344aef9057696", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0b62bb1eaf70d9b3dbe1", - "label": "수제비", - "amount": 6000, + "id": "967807d427281b4c30a1", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e1c28b8724bb1719167b-history", - "label": "손칼국수", - "amount": 6000, + "id": "8c27edd344aef9057696-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0b62bb1eaf70d9b3dbe1-history", - "label": "수제비", - "amount": 6000, + "id": "967807d427281b4c30a1-history", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35692,65 +37964,65 @@ "comments": [] }, { - "id": "goodprice-18735", - "name": "궁전중화요리", - "businessName": "궁전중화요리", + "id": "goodprice-18242", + "name": "대광반점", + "businessName": "대광반점", "categorySlug": "chinese", - "address": "울산광역시 남구 두왕로22번길 5-16 (선암동) 1층", - "district": "울산광역시 남구", - "latitude": 35.505829524208984, - "longitude": 129.30959340736075, - "representativePriceAmount": 6000, + "address": "서울특별시 동대문구 전농로 19-1 (답십리동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.56685793779734, + "longitude": 127.0561402766234, + "representativePriceAmount": 5000, "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-256-3003", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2214-2341", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "83ba90e8cc0e1a6b8f5e", + "id": "55e07d1633b39c7d19c6", "label": "짜장면", - "amount": 6000, + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "78ce729bc6a336781955", - "label": "짬뽕", - "amount": 8000, + "id": "5ace3a6b65b25fa14894", + "label": "짬봉", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9ba89743d8949885c92c", - "label": "우동", - "amount": 8000, + "id": "eece2ef273d3393b67c8", + "label": "볶음밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "83ba90e8cc0e1a6b8f5e-history", + "id": "55e07d1633b39c7d19c6-history", "label": "짜장면", - "amount": 6000, + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "78ce729bc6a336781955-history", - "label": "짬뽕", - "amount": 8000, + "id": "5ace3a6b65b25fa14894-history", + "label": "짬봉", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9ba89743d8949885c92c-history", - "label": "우동", - "amount": 8000, + "id": "eece2ef273d3393b67c8-history", + "label": "볶음밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35758,79 +38030,51 @@ "comments": [] }, { - "id": "goodprice-14935", - "name": "만두촌", - "businessName": "만두촌", + "id": "goodprice-10174", + "name": "복조갈비", + "businessName": "복조갈비", "categorySlug": "korean", - "address": "경기도 수원시 권선구 하탑로 39 (탑동) 102호", - "district": "경기도 수원시", - "latitude": 37.26911230608807, - "longitude": 126.97589883567454, - "representativePriceAmount": 5000, - "representativePriceLabel": "고기찐만두(10개)", + "address": "세종특별자치시 조치원읍 새내12길 51 1층", + "district": "세종특별자치시 조치원읍", + "latitude": 36.6026560183833, + "longitude": 127.300695361905, + "representativePriceAmount": 8000, + "representativePriceLabel": "육개장", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고기찐만두(10개) 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-295-8798 / 영업시간: 09:30~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 육개장 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-862-3890", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "98f81e9d9e02e9f780d1", - "label": "고기찐만두(10개)", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "dfff3b808529e51c761d", - "label": "김치찐만두(10개)", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "cd63701e5438b1bee426", - "label": "군만두(8개)", - "amount": 6000, + "id": "feb7c5375ccf1a9567ad", + "label": "육개장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "432ea2ba84a1ab249c94", - "label": "쫄면", - "amount": 6500, + "id": "5c9cbbb6e6dd94cdeb0d", + "label": "갈비탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "98f81e9d9e02e9f780d1-history", - "label": "고기찐만두(10개)", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "dfff3b808529e51c761d-history", - "label": "김치찐만두(10개)", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "cd63701e5438b1bee426-history", - "label": "군만두(8개)", - "amount": 6000, + "id": "feb7c5375ccf1a9567ad-history", + "label": "육개장", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "432ea2ba84a1ab249c94-history", - "label": "쫄면", - "amount": 6500, + "id": "5c9cbbb6e6dd94cdeb0d-history", + "label": "갈비탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35838,37 +38082,37 @@ "comments": [] }, { - "id": "goodprice-10202", - "name": "멋진남자", - "businessName": "멋진남자", - "categorySlug": "barber", - "address": "경기도 수원시 영통구 매봉로35번길 50 1층(매탄동)", - "district": "경기도 수원시", - "latitude": 37.2719859731344, - "longitude": 127.050140470108, - "representativePriceAmount": 10000, - "representativePriceLabel": "남성커트", + "id": "goodprice-18243", + "name": "도읍지", + "businessName": "도읍지", + "categorySlug": "korean", + "address": "서울특별시 동대문구 회기로21길 38-1 (회기동)", + "district": "서울특별시 동대문구", + "latitude": 37.593072231340464, + "longitude": 127.05308883621412, + "representativePriceAmount": 8000, + "representativePriceLabel": "순두부찌개백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 남성커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-964-2388", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "380217261036e1650647", - "label": "남성커트", - "amount": 10000, + "id": "369e4127ca7519e21e0d", + "label": "순두부찌개백반", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "380217261036e1650647-history", - "label": "남성커트", - "amount": 10000, + "id": "369e4127ca7519e21e0d-history", + "label": "순두부찌개백반", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35876,65 +38120,37 @@ "comments": [] }, { - "id": "goodprice-14015", - "name": "메종드커피", - "businessName": "메종드커피", - "categorySlug": "other-food", - "address": "경기도 수원시 팔달구 매산로 131 (교동) 1층", - "district": "경기도 수원시", - "latitude": 37.27211175333725, - "longitude": 127.01481129960187, - "representativePriceAmount": 3400, - "representativePriceLabel": "아메리카노", + "id": "goodprice-19176", + "name": "부산면가", + "businessName": "부산면가", + "categorySlug": "korean", + "address": "세종특별자치시 호려울로 29 (보람동) 110호", + "district": "세종특별자치시 호려울로", + "latitude": 36.477909935227785, + "longitude": 127.29023798268373, + "representativePriceAmount": 6500, + "representativePriceLabel": "옛날칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,400원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-258-3545", + "description": "5233600915", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-862-0626", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "36a2aa46986c4155a315", - "label": "아메리카노", - "amount": 3400, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3ce58dbefa9796abf3a1", - "label": "카페라떼", - "amount": 4900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2aa8d6f7ad79bc0032f1", - "label": "스무디", - "amount": 5200, + "id": "8e9ab34e11b7e10d86bf", + "label": "옛날칼국수", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "36a2aa46986c4155a315-history", - "label": "아메리카노", - "amount": 3400, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3ce58dbefa9796abf3a1-history", - "label": "카페라떼", - "amount": 4900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2aa8d6f7ad79bc0032f1-history", - "label": "스무디", - "amount": 5200, + "id": "8e9ab34e11b7e10d86bf-history", + "label": "옛날칼국수", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -35942,121 +38158,37 @@ "comments": [] }, { - "id": "goodprice-16199", - "name": "명랑꽈배기", - "businessName": "명랑꽈배기", - "categorySlug": "other-food", - "address": "경기도 수원시 권선구 하탑로 43 (탑동) 1층", - "district": "경기도 수원시", - "latitude": 37.26917399031983, - "longitude": 126.97642424590657, - "representativePriceAmount": 2000, - "representativePriceLabel": "찹쌀꽈배기(3개)", + "id": "goodprice-16148", + "name": "돈태자", + "businessName": "돈태자", + "categorySlug": "western", + "address": "서울특별시 동대문구 한천로24길 10 (장안동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.57052570021872, + "longitude": 127.06570259593434, + "representativePriceAmount": 10000, + "representativePriceLabel": "돈까스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 찹쌀꽈배기(3개) 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-9532-0088 / 영업시간: 11:00 ~ 20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈까스 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2244-9255", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "19eeb8be882450f974ad", - "label": "찹쌀꽈배기(3개)", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9032ddf8c11945ee46c5", - "label": "팥도너츠(1개)", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "55f5589ce73423bfd564", - "label": "찹쌀도너츠(3개)", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a205f61889efbc97dffa", - "label": "고구마고로케", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "822fb6f5201530f33683", - "label": "고기고로케", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3c611e6a50481448f544", - "label": "소세지핫도그", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6c88e90bdc72c83dea06", - "label": "치즈핫도그", - "amount": 2000, + "id": "8c41e7c2541f754f3c51", + "label": "돈까스", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "19eeb8be882450f974ad-history", - "label": "찹쌀꽈배기(3개)", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9032ddf8c11945ee46c5-history", - "label": "팥도너츠(1개)", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "55f5589ce73423bfd564-history", - "label": "찹쌀도너츠(3개)", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a205f61889efbc97dffa-history", - "label": "고구마고로케", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "822fb6f5201530f33683-history", - "label": "고기고로케", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3c611e6a50481448f544-history", - "label": "소세지핫도그", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6c88e90bdc72c83dea06-history", - "label": "치즈핫도그", - "amount": 2000, + "id": "8c41e7c2541f754f3c51-history", + "label": "돈까스", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36064,65 +38196,51 @@ "comments": [] }, { - "id": "goodprice-13799", - "name": "블루밍", - "businessName": "블루밍", + "id": "goodprice-14528", + "name": "까페시모 우만점", + "businessName": "까페시모 우만점", "categorySlug": "other-food", - "address": "강원특별자치도 춘천시 옥천길54번길 26-1 (옥천동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.88199230616044, - "longitude": 127.73200418707303, - "representativePriceAmount": 2000, + "address": "경기도 수원시 팔달구 경수대로656번길 37-22 (우만동) 1층", + "district": "경기도 수원시", + "latitude": 37.28563203757849, + "longitude": 127.02975069485917, + "representativePriceAmount": 2900, "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 08:00 - 17:00 매주 토, 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-304-0307 / 영업시간: 09:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "77754efeb791174058f2", + "id": "c12ccc64e732c15fb3c6", "label": "아메리카노", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "03b28cfec8ada9bab398", - "label": "아이스아메리카노", - "amount": 2500, + "amount": 2900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "535b8ca3f41c10d69092", + "id": "b3c037742f241acb148d", "label": "카페라떼", - "amount": 3000, + "amount": 3700, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "77754efeb791174058f2-history", + "id": "c12ccc64e732c15fb3c6-history", "label": "아메리카노", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "03b28cfec8ada9bab398-history", - "label": "아이스아메리카노", - "amount": 2500, + "amount": 2900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "535b8ca3f41c10d69092-history", + "id": "b3c037742f241acb148d-history", "label": "카페라떼", - "amount": 3000, + "amount": 3700, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36130,65 +38248,51 @@ "comments": [] }, { - "id": "goodprice-4390", - "name": "삼남매", - "businessName": "삼남매", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 춘천로170번길 8 1층(운교동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8756946677783, - "longitude": 127.73332299084, - "representativePriceAmount": 8000, - "representativePriceLabel": "가정식백반", + "id": "goodprice-18855", + "name": "디디카페", + "businessName": "디디카페", + "categorySlug": "other-food", + "address": "서울특별시 동대문구 회기로21가길 10 (회기동) 1층 101호", + "district": "서울특별시 동대문구", + "latitude": 37.59198193359728, + "longitude": 127.05360962878765, + "representativePriceAmount": 1900, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 가정식백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-637-5770", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 1,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1483-1997", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "31a1ca86fe5eff128a98", - "label": "가정식백반", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0a860cfd078ee39e1f12", - "label": "부대찌개", - "amount": 8500, + "id": "04e6ce8aa05b5d55e0d4", + "label": "아메리카노", + "amount": 1900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "19e7c43280cf58cb6cfe", - "label": "파삼겹백반", - "amount": 10000, + "id": "d50f86589d88dab00295", + "label": "카페라떼", + "amount": 3300, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "31a1ca86fe5eff128a98-history", - "label": "가정식백반", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0a860cfd078ee39e1f12-history", - "label": "부대찌개", - "amount": 8500, + "id": "04e6ce8aa05b5d55e0d4-history", + "label": "아메리카노", + "amount": 1900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "19e7c43280cf58cb6cfe-history", - "label": "파삼겹백반", - "amount": 10000, + "id": "d50f86589d88dab00295-history", + "label": "카페라떼", + "amount": 3300, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36196,65 +38300,51 @@ "comments": [] }, { - "id": "goodprice-10312", - "name": "석사반점", - "businessName": "석사반점", - "categorySlug": "chinese", - "address": "강원특별자치도 춘천시 효석로67번길 25 (석사동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.862559878518, - "longitude": 127.739362733706, - "representativePriceAmount": 4000, - "representativePriceLabel": "자장면", + "id": "goodprice-14526", + "name": "꼼빠도르", + "businessName": "꼼빠도르", + "categorySlug": "bakery", + "address": "경기도 수원시 팔달구 정조로 797-2 (팔달로2가) 101, 102호", + "district": "경기도 수원시", + "latitude": 37.279316026053095, + "longitude": 127.01637087798076, + "representativePriceAmount": 2000, + "representativePriceLabel": "팥빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-2354", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 팥빵 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-243-0588 / 영업시간: 08:00~23:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8ebeae938a1c9da40fb5", - "label": "자장면", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d6b48043c88c77e079af", - "label": "짬뽕", - "amount": 5000, + "id": "393b5e2b7035fd37d6b8", + "label": "팥빵", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3e5c895e8fa0797de7d1", - "label": "볶음밥", - "amount": 5000, + "id": "e023ccfd5df8d23acd8b", + "label": "아메리카노", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8ebeae938a1c9da40fb5-history", - "label": "자장면", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d6b48043c88c77e079af-history", - "label": "짬뽕", - "amount": 5000, + "id": "393b5e2b7035fd37d6b8-history", + "label": "팥빵", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3e5c895e8fa0797de7d1-history", - "label": "볶음밥", - "amount": 5000, + "id": "e023ccfd5df8d23acd8b-history", + "label": "아메리카노", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36262,51 +38352,51 @@ "comments": [] }, { - "id": "goodprice-15843", - "name": "더 맨", - "businessName": "더 맨", - "categorySlug": "beauty", - "address": "충청북도 청주시 청원구 율봉로 258 (율량동)", - "district": "충청북도 청주시", - "latitude": 36.666703430250955, - "longitude": 127.49720884874743, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-16158", + "name": "따께리아 라 비다(Taqueria La Vida)", + "businessName": "따께리아 라 비다(Taqueria La Vida)", + "categorySlug": "western", + "address": "서울특별시 동대문구 경희대로1길 27 (회기동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.591758876264926, + "longitude": 127.05063243471741, + "representativePriceAmount": 9000, + "representativePriceLabel": "타코(3p)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-214-2500", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 타코(3p) 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1389-4311", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8538a72416af671b3ed3", - "label": "커트", - "amount": 10000, + "id": "77861f56db8a26e58ef8", + "label": "타코(3p)", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7bb74927e421cb36864f", - "label": "커트(학생)", - "amount": 8000, + "id": "62dd0df967c0991e1a6a", + "label": "케사디야(퀘사디아)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8538a72416af671b3ed3-history", - "label": "커트", - "amount": 10000, + "id": "77861f56db8a26e58ef8-history", + "label": "타코(3p)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7bb74927e421cb36864f-history", - "label": "커트(학생)", - "amount": 8000, + "id": "62dd0df967c0991e1a6a-history", + "label": "케사디야(퀘사디아)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36314,65 +38404,79 @@ "comments": [] }, { - "id": "goodprice-4748", - "name": "덤블식당", - "businessName": "덤블식당", + "id": "goodprice-15303", + "name": "남문건강제분소", + "businessName": "남문건강제분소", "categorySlug": "korean", - "address": "충청북도 청주시 청원구 향군로31번길 32 (우암동)", - "district": "충청북도 청주시", - "latitude": 36.6477777347953, - "longitude": 127.485430090266, - "representativePriceAmount": 7000, - "representativePriceLabel": "된장찌개", + "address": "경기도 수원시 팔달구 창룡대로26번길 42-7 (남수동) 1층", + "district": "경기도 수원시", + "latitude": 37.28002458529435, + "longitude": 127.0188847877665, + "representativePriceAmount": 6000, + "representativePriceLabel": "콩나물국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-257-2237 / 영업시간: 매일 11:00~15:00 매주 일요일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-241-8002 / 영업시간: 09:00~21:00 화요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ab4cd716d01b798b2788", - "label": "된장찌개", - "amount": 7000, + "id": "e4166fabea6e8b8229a7", + "label": "콩나물국밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "451cdee75a72d2346008", - "label": "짜글이", - "amount": 9000, + "id": "f9821c6901d3e9c45004", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "cc77158266820e20bb4d", - "label": "제육볶음", - "amount": 8000, + "id": "488afc84183a91d07510", + "label": "비빔국수", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "96eab12924a0fb14f46a", + "label": "순두부", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ab4cd716d01b798b2788-history", - "label": "된장찌개", - "amount": 7000, + "id": "e4166fabea6e8b8229a7-history", + "label": "콩나물국밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "451cdee75a72d2346008-history", - "label": "짜글이", - "amount": 9000, + "id": "f9821c6901d3e9c45004-history", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cc77158266820e20bb4d-history", - "label": "제육볶음", - "amount": 8000, + "id": "488afc84183a91d07510-history", + "label": "비빔국수", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "96eab12924a0fb14f46a-history", + "label": "순두부", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36380,51 +38484,37 @@ "comments": [] }, { - "id": "goodprice-15776", - "name": "도니수제돈까스", - "businessName": "도니수제돈까스", + "id": "goodprice-18240", + "name": "따뜻한밥상 외대점", + "businessName": "따뜻한밥상 외대점", "categorySlug": "korean", - "address": "충청북도 청주시 서원구 호국로 99 (사직동) 1층", - "district": "충청북도 청주시", - "latitude": 36.636876933056726, - "longitude": 127.47622733012022, - "representativePriceAmount": 6000, - "representativePriceLabel": "등심돈까스정식", + "address": "서울특별시 동대문구 이문로 58 (휘경동) 오스카빌딩 2층", + "district": "서울특별시 동대문구", + "latitude": 37.592384712273564, + "longitude": 127.05779432976583, + "representativePriceAmount": 3000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 등심돈까스정식 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-277-8230", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1354-2143", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "822dc332234066aff0e7", - "label": "등심돈까스정식", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6cbd41db866e5a95b8aa", - "label": "카레돈까스정식", - "amount": 6000, + "id": "b2e0ab18b8f6f8f6b289", + "label": "김치찌개", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "822dc332234066aff0e7-history", - "label": "등심돈까스정식", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6cbd41db866e5a95b8aa-history", - "label": "카레돈까스정식", - "amount": 6000, + "id": "b2e0ab18b8f6f8f6b289-history", + "label": "김치찌개", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36432,65 +38522,41 @@ "comments": [] }, { - "id": "goodprice-4964", - "name": "미헤어샵", - "businessName": "미헤어샵", - "categorySlug": "beauty", - "address": "충청남도 천안시 서북구 쌍용16길 24 (쌍용동)", - "district": "충청남도 천안시", - "latitude": 36.798721258652, - "longitude": 127.120954088064, + "id": "goodprice-10304", + "name": "낭만국시", + "businessName": "낭만국시", + "categorySlug": "korean", + "address": "강원특별자치도 춘천시 명동길29번길 3 (죽림동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8781171202343, + "longitude": 127.725962552609, "representativePriceAmount": 7000, - "representativePriceLabel": "커트", + "representativePriceLabel": "칼국시", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-575-1196 / 영업시간: 10:00~18:00 정기휴무(매주 월요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국시 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-252-6255 / 영업시간: 10:00 - 18:00 라스트오더 17:30 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3d6eaedd18da5c5c9e7c", - "label": "커트", + "id": "751668ef606b1ac02aad", + "label": "칼국시", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "3d6eaedd18da5c5c9e7c-history", - "label": "커트", + "id": "0771aac23c5ade21f90e", + "label": "잔치국시", "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4913", - "name": "박정미5000냥헤어", - "businessName": "박정미5000냥헤어", - "categorySlug": "beauty", - "address": "충청남도 천안시 동남구 대흥로 127 (사직동)", - "district": "충청남도 천안시", - "latitude": 36.800548575871, - "longitude": 127.148519132471, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-561-3344 / 영업시간: 09:00~20:00 명절휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "8c16c87ab89b8084da73", - "label": "커트", + "id": "2c39310e2e26d6a19f6f", + "label": "비빔국시", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -36498,46 +38564,22 @@ ], "history": [ { - "id": "8c16c87ab89b8084da73-history", - "label": "커트", + "id": "751668ef606b1ac02aad-history", + "label": "칼국시", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11119", - "name": "박정미5000냥헤어2호점", - "businessName": "박정미5000냥헤어2호점", - "categorySlug": "beauty", - "address": "충청남도 천안시 동남구 영성로 36 (중앙동)", - "district": "충청남도 천안시", - "latitude": 36.8014348547938, - "longitude": 127.150782653869, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 09:00~20:00 명절휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "510f3ca575467210f36f", - "label": "커트", + "id": "0771aac23c5ade21f90e-history", + "label": "잔치국시", "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "510f3ca575467210f36f-history", - "label": "커트", + "id": "2c39310e2e26d6a19f6f-history", + "label": "비빔국시", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -36546,37 +38588,37 @@ "comments": [] }, { - "id": "goodprice-5412", - "name": "청년식탁 사잇길", - "businessName": "청년식탁 사잇길", + "id": "goodprice-14391", + "name": "또래가마솥해장국", + "businessName": "또래가마솥해장국", "categorySlug": "korean", - "address": "전북특별자치도 전주시 덕진구 백제대로 563 2층", - "district": "전북특별자치도 전주시", - "latitude": 35.8409178469739, - "longitude": 127.131238280077, - "representativePriceAmount": 3000, - "representativePriceLabel": "김치찌개", + "address": "서울특별시 동대문구 제기로 15 (제기동)", + "district": "서울특별시 동대문구", + "latitude": 37.58663659350062, + "longitude": 127.03463790145233, + "representativePriceAmount": 7000, + "representativePriceLabel": "해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-272-0214", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해장국 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-924-9319", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f9be1f1705b7c2f9adb5", - "label": "김치찌개", - "amount": 3000, + "id": "ed6666e90c6cec8ce99c", + "label": "해장국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f9be1f1705b7c2f9adb5-history", - "label": "김치찌개", - "amount": 3000, + "id": "ed6666e90c6cec8ce99c-history", + "label": "해장국", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36584,76 +38626,41 @@ "comments": [] }, { - "id": "goodprice-5446", - "name": "청라회관", - "businessName": "청라회관", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 노송여울2길 10", - "district": "전북특별자치도 전주시", - "latitude": 35.8242200343495, - "longitude": 127.146544090353, - "representativePriceAmount": 8000, - "representativePriceLabel": "돌솥비빔밥", + "id": "goodprice-4354", + "name": "누이네", + "businessName": "누이네", + "categorySlug": "japanese", + "address": "강원특별자치도 춘천시 영서로2279번길 25 (온의동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8628068929099, + "longitude": 127.720326390422, + "representativePriceAmount": 9000, + "representativePriceLabel": "회덮밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-286-3044 / 영업시간: 매일 06:00-20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 회덮밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-251-2261 / 영업시간: 11:30 21:00 매달 2, 4번째 일요일 정기 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "19cad06331469ebcd649", - "label": "돌솥비빔밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f465cea17a43366651fa", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "36bf89d4e6972ffb6f24", - "label": "물갈비", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ff6f100dccb633519622", - "label": "비빔밥", - "amount": 8000, + "id": "ace69905acad0bbab5c3", + "label": "회덮밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "00d3457dbe087ce39806", - "label": "육회비빔냉면", + "id": "6c616a8382253184d272", + "label": "알탕", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f9ca06c43e4331d9a32d", - "label": "청국장", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2753294c5a342ae7402b", - "label": "한우뚝불고기", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c5d56f68e70ed8f8d644", - "label": "한우비빔밥", + "id": "4688354b55ddad95947a", + "label": "구이백반", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -36661,57 +38668,22 @@ ], "history": [ { - "id": "19cad06331469ebcd649-history", - "label": "돌솥비빔밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f465cea17a43366651fa-history", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "36bf89d4e6972ffb6f24-history", - "label": "물갈비", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ff6f100dccb633519622-history", - "label": "비빔밥", - "amount": 8000, + "id": "ace69905acad0bbab5c3-history", + "label": "회덮밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "00d3457dbe087ce39806-history", - "label": "육회비빔냉면", + "id": "6c616a8382253184d272-history", + "label": "알탕", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f9ca06c43e4331d9a32d-history", - "label": "청국장", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2753294c5a342ae7402b-history", - "label": "한우뚝불고기", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c5d56f68e70ed8f8d644-history", - "label": "한우비빔밥", + "id": "4688354b55ddad95947a-history", + "label": "구이백반", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -36720,103 +38692,37 @@ "comments": [] }, { - "id": "goodprice-5421", - "name": "초희미용실", - "businessName": "초희미용실", - "categorySlug": "beauty", - "address": "전북특별자치도 전주시 완산구 모악로 4683 우미아파트 상가", - "district": "전북특별자치도 전주시", - "latitude": 35.7876745457672, - "longitude": 127.130038142656, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트(성인)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(성인) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-226-3701 / 영업시간: 매일 9:00-19:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "36a472224728b891455d", - "label": "커트(성인)", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "670b08838d2782e4fe24", - "label": "커트(학생)", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "36a472224728b891455d-history", - "label": "커트(성인)", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "670b08838d2782e4fe24-history", - "label": "커트(학생)", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15994", - "name": "최가돈", - "businessName": "최가돈", + "id": "goodprice-507", + "name": "명물식당", + "businessName": "명물식당", "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 후곡길 23-24 (효자동2가) 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.81087083441043, - "longitude": 127.09465897893688, - "representativePriceAmount": 7000, - "representativePriceLabel": "김치찌개", + "address": "서울특별시 동대문구 답십리로51길 8-4 (답십리동)", + "district": "서울특별시 동대문구", + "latitude": 37.573253667475235, + "longitude": 127.05873688627321, + "representativePriceAmount": 6000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-227-5931 / 영업시간: 평일 : 11:00~22:00(21:00 라스트오더) 토요일 : 11:00~22:00(21:00 라스트오더) 일요일 : 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2212-4039", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e5bc39e0c38bb9d17a16", - "label": "김치찌개", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0557d32a29e3aadc5d71", - "label": "갈비찌개", - "amount": 9000, + "id": "cdcb577d2ffd90e950dc", + "label": "백반", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e5bc39e0c38bb9d17a16-history", - "label": "김치찌개", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0557d32a29e3aadc5d71-history", - "label": "갈비찌개", - "amount": 9000, + "id": "cdcb577d2ffd90e950dc-history", + "label": "백반", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36824,65 +38730,65 @@ "comments": [] }, { - "id": "goodprice-10495", - "name": "홍가네만두분식", - "businessName": "홍가네만두분식", - "categorySlug": "korean", - "address": "전라남도 목포시 삼일로 12 (창평동)", - "district": "전라남도 목포시", - "latitude": 34.7933588484617, - "longitude": 126.38358115361, - "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "id": "goodprice-4327", + "name": "달콤한게으름", + "businessName": "달콤한게으름", + "categorySlug": "other-food", + "address": "강원특별자치도 춘천시 신북읍 신샘밭로 502 달콤한게으름", + "district": "강원특별자치도 춘천시", + "latitude": 37.9295512271344, + "longitude": 127.765130880111, + "representativePriceAmount": 4000, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-6705", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1359-7877 / 영업시간: 매일 11:00 - 19:30 라스트오더 19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b3b8da95b964886f03a7", - "label": "칼국수", - "amount": 7000, + "id": "59c64e68c76af501daeb", + "label": "아메리카노", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "48e3e80d0dccba4c87c4", - "label": "고기만두", + "id": "b051f9997a67624f5bf9", + "label": "아이스티", "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f7c45f3c0a168538bdee", - "label": "떡국", - "amount": 7000, + "id": "840a24c2af32ddbfb655", + "label": "얼그레이", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b3b8da95b964886f03a7-history", - "label": "칼국수", - "amount": 7000, + "id": "59c64e68c76af501daeb-history", + "label": "아메리카노", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "48e3e80d0dccba4c87c4-history", - "label": "고기만두", + "id": "b051f9997a67624f5bf9-history", + "label": "아이스티", "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f7c45f3c0a168538bdee-history", - "label": "떡국", - "amount": 7000, + "id": "840a24c2af32ddbfb655-history", + "label": "얼그레이", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36890,51 +38796,65 @@ "comments": [] }, { - "id": "goodprice-18288", - "name": "홍두깨멸치칼국수", - "businessName": "홍두깨멸치칼국수", + "id": "goodprice-16156", + "name": "명성식당", + "businessName": "명성식당", "categorySlug": "korean", - "address": "전라남도 목포시 교육로 45-1 (상동) 1층", - "district": "전라남도 목포시", - "latitude": 34.8014150837424, - "longitude": 126.42079872738657, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "address": "서울특별시 동대문구 무학로 142-2 (용두동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.576986767908934, + "longitude": 127.03083152169971, + "representativePriceAmount": 7000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-282-7669", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-922-3192", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dcecfd34f1293df491a5", - "label": "칼국수", - "amount": 6000, + "id": "9af8e49a10e675d3b76e", + "label": "백반", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2b4e94ea6c723de5db88", - "label": "수제비", - "amount": 6000, + "id": "59dd03eb2f7c611e7041", + "label": "청국장", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "3a37e0e0847565bc55a0", + "label": "콩나물국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dcecfd34f1293df491a5-history", - "label": "칼국수", - "amount": 6000, + "id": "9af8e49a10e675d3b76e-history", + "label": "백반", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2b4e94ea6c723de5db88-history", - "label": "수제비", - "amount": 6000, + "id": "59dd03eb2f7c611e7041-history", + "label": "청국장", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "3a37e0e0847565bc55a0-history", + "label": "콩나물국", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36942,51 +38862,65 @@ "comments": [] }, { - "id": "goodprice-15146", - "name": "황가네보리밥", - "businessName": "황가네보리밥", + "id": "goodprice-18315", + "name": "닭갈비짱", + "businessName": "닭갈비짱", "categorySlug": "korean", - "address": "전라남도 목포시 노적봉길 19-4 (무안동) 황가네보리밥", - "district": "전라남도 목포시", - "latitude": 34.78982445409798, - "longitude": 126.38334964496875, - "representativePriceAmount": 9000, - "representativePriceLabel": "보리밥", + "address": "강원특별자치도 춘천시 스무숲1길 38-9 -", + "district": "강원특별자치도 춘천시", + "latitude": 37.8492683443013, + "longitude": 127.750878159251, + "representativePriceAmount": 10000, + "representativePriceLabel": "특선 도시락", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보리밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-278-3986", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 특선 도시락 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-261-3688", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "73826e3aa6fb4ca1b35e", - "label": "보리밥", - "amount": 9000, + "id": "05516091ff2faa9f178c", + "label": "특선 도시락", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "281656b579a83985ec0c", - "label": "백반", - "amount": 9000, + "id": "4111dc51498daccc6580", + "label": "냉동 삼겹살", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "7954571b2e15a7f02521", + "label": "대패 삼겹살", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "73826e3aa6fb4ca1b35e-history", - "label": "보리밥", - "amount": 9000, + "id": "05516091ff2faa9f178c-history", + "label": "특선 도시락", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "281656b579a83985ec0c-history", - "label": "백반", - "amount": 9000, + "id": "4111dc51498daccc6580-history", + "label": "냉동 삼겹살", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7954571b2e15a7f02521-history", + "label": "대패 삼겹살", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -36994,37 +38928,37 @@ "comments": [] }, { - "id": "goodprice-10504", - "name": "흑산도전복", - "businessName": "흑산도전복", + "id": "goodprice-18820", + "name": "밥이야기", + "businessName": "밥이야기", "categorySlug": "korean", - "address": "전라남도 목포시 양을로208번길 9 (용당동)", - "district": "전라남도 목포시", - "latitude": 34.8103104782939, - "longitude": 126.393158316771, - "representativePriceAmount": 9000, - "representativePriceLabel": "백반", + "address": "서울특별시 동대문구 한천로33길 21 (답십리동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.57642809141042, + "longitude": 127.0669117429603, + "representativePriceAmount": 7000, + "representativePriceLabel": "특정식(10찬)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-276-5095", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 특정식(10찬) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3394-7433", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "47ce2f0ef84b41b1652c", - "label": "백반", - "amount": 9000, + "id": "9ee540b0a1c7714afa48", + "label": "특정식(10찬)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "47ce2f0ef84b41b1652c-history", - "label": "백반", - "amount": 9000, + "id": "9ee540b0a1c7714afa48-history", + "label": "특정식(10찬)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37032,51 +38966,37 @@ "comments": [] }, { - "id": "goodprice-6327", - "name": "내가본미용실", - "businessName": "내가본미용실", - "categorySlug": "beauty", - "address": "경상북도 포항시 남구 대이로45번길 15 내가본미용실", - "district": "경상북도 포항시", - "latitude": 36.0187057254121, - "longitude": 129.340316118787, - "representativePriceAmount": 10000, - "representativePriceLabel": "여자커트", + "id": "goodprice-16059", + "name": "그레이스 칼국수", + "businessName": "그레이스 칼국수", + "categorySlug": "korean", + "address": "충청북도 청주시 상당구 남일면 효촌송암길 18-11 1층 103호", + "district": "충청북도 청주시", + "latitude": 36.58914562523452, + "longitude": 127.50987272855514, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여자커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-274-7754 / 영업시간: 18:00에18시0분에 금 10:00-18:00 토 10:00-18:00 일 정기휴무(매주일요일) 월 10:00-18:00 화 10:00-18:00 수 10:00-18:00 목 10:00-18:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-288-1932 / 영업시간: 영업 10:30 - 15:00 14:30 라스트오더", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "83a4638fc1727d98e015", - "label": "여자커트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5be7270e6b5f140f4590", - "label": "남자커트", - "amount": 10000, + "id": "c27c37310072791440fb", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "83a4638fc1727d98e015-history", - "label": "여자커트", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5be7270e6b5f140f4590-history", - "label": "남자커트", - "amount": 10000, + "id": "c27c37310072791440fb-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37084,34 +39004,34 @@ "comments": [] }, { - "id": "goodprice-11257", - "name": "넌지시", - "businessName": "넌지시", + "id": "goodprice-11215", + "name": "배트콩", + "businessName": "배트콩", "categorySlug": "other-food", - "address": "경상북도 포항시 남구 오천읍 남원로 85-99 나동 101호", - "district": "경상북도 포항시", - "latitude": 35.9659854034839, - "longitude": 129.400825078075, - "representativePriceAmount": 2500, + "address": "서울특별시 동대문구 경희대로4길 52 (회기동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.59154149876361, + "longitude": 127.0551418511356, + "representativePriceAmount": 3000, "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-8870-3318", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6213-1835", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "33887f7100c981dc4727", + "id": "2ea58aba312836d26546", "label": "아메리카노", - "amount": 2500, + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "aeaca882d2092a4eb047", - "label": "카페라떼", + "id": "5cf187a1140e1cbc539b", + "label": "에스프레소", "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -37119,15 +39039,15 @@ ], "history": [ { - "id": "33887f7100c981dc4727-history", + "id": "2ea58aba312836d26546-history", "label": "아메리카노", - "amount": 2500, + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "aeaca882d2092a4eb047-history", - "label": "카페라떼", + "id": "5cf187a1140e1cbc539b-history", + "label": "에스프레소", "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -37136,65 +39056,51 @@ "comments": [] }, { - "id": "goodprice-6805", - "name": "메밀한판", - "businessName": "메밀한판", + "id": "goodprice-4746", + "name": "금와가든", + "businessName": "금와가든", "categorySlug": "korean", - "address": "경상남도 창원시 성산구 마디미로 28 B동 202호(상남동, 상남재래시장)", - "district": "경상남도 창원시", - "latitude": 35.2222148675498, - "longitude": 128.683379990696, - "representativePriceAmount": 5500, - "representativePriceLabel": "냄비우동", + "address": "충청북도 청주시 청원구 팔결로 66 (주중동)", + "district": "충청북도 청주시", + "latitude": 36.6890862826954, + "longitude": 127.482711215662, + "representativePriceAmount": 6000, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냄비우동 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-262-2002", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-211-8660 / 영업시간: 매일 11:30-21:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c3a0e1a95a66545e65b4", - "label": "냄비우동", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d4da09fa36d42a79f790", - "label": "메밀한판", - "amount": 3500, + "id": "d41df5501e8462705fa8", + "label": "한식뷔페", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "71f4c18d3adfb7800ee9", - "label": "꼬마김밥", - "amount": 2000, + "id": "514552fef1f075725c4c", + "label": "돼지고기 김치찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c3a0e1a95a66545e65b4-history", - "label": "냄비우동", - "amount": 5500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d4da09fa36d42a79f790-history", - "label": "메밀한판", - "amount": 3500, + "id": "d41df5501e8462705fa8-history", + "label": "한식뷔페", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "71f4c18d3adfb7800ee9-history", - "label": "꼬마김밥", - "amount": 2000, + "id": "514552fef1f075725c4c-history", + "label": "돼지고기 김치찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37202,65 +39108,65 @@ "comments": [] }, { - "id": "goodprice-6811", - "name": "명동식당", - "businessName": "명동식당", + "id": "goodprice-11549", + "name": "버드나무순대국", + "businessName": "버드나무순대국", "categorySlug": "korean", - "address": "경상남도 창원시 성산구 원이대로589번길 12 (용호동)", - "district": "경상남도 창원시", - "latitude": 35.2286912789379, - "longitude": 128.679710134939, - "representativePriceAmount": 8000, - "representativePriceLabel": "정식", + "address": "서울특별시 동대문구 휘경로2길 42 (이문동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.59439437972906, + "longitude": 127.05998891253705, + "representativePriceAmount": 7000, + "representativePriceLabel": "순대국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-262-8374", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-960-2932", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7b1cf8fe190b2f9ac28a", - "label": "정식", - "amount": 8000, + "id": "a10c0ccb5caf7d275d06", + "label": "순대국밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6de09426bf9374c0d09c", - "label": "두루치기", - "amount": 9000, + "id": "aaf6d956cfef068faa2e", + "label": "머리국밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ac13a91bba22676bfa8e", - "label": "된장찌개", - "amount": 8000, + "id": "26751386deba45867de1", + "label": "냉면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7b1cf8fe190b2f9ac28a-history", - "label": "정식", - "amount": 8000, + "id": "a10c0ccb5caf7d275d06-history", + "label": "순대국밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6de09426bf9374c0d09c-history", - "label": "두루치기", - "amount": 9000, + "id": "aaf6d956cfef068faa2e-history", + "label": "머리국밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ac13a91bba22676bfa8e-history", - "label": "된장찌개", - "amount": 8000, + "id": "26751386deba45867de1-history", + "label": "냉면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37268,117 +39174,51 @@ "comments": [] }, { - "id": "goodprice-17137", - "name": "모도면집", - "businessName": "모도면집", + "id": "goodprice-16069", + "name": "기쁨가득 엄마밥상", + "businessName": "기쁨가득 엄마밥상", "categorySlug": "korean", - "address": "경상남도 창원시 성산구 창이대로881번길 17 (대방동) 대방대동황토방아파트상가 12동 2층 206호", - "district": "경상남도 창원시", - "latitude": 35.20742717951569, - "longitude": 128.7086999798537, - "representativePriceAmount": 8500, - "representativePriceLabel": "비빔면", + "address": "충청북도 청주시 흥덕구 사운로190번길 1 (운천동)", + "district": "충청북도 청주시", + "latitude": 36.64618197563589, + "longitude": 127.47854183832706, + "representativePriceAmount": 6000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔면 8,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-713-1130", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7a7deb22551682cf335f", - "label": "비빔면", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a7e8ab3e253763c91b7f", - "label": "수제 떡갈비", - "amount": 6500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1754c017343d05c32860", - "label": "정성갈비 구이", - "amount": 8000, + "id": "d10fa185c4111ed3f338", + "label": "된장찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "22685468c8172195bb56", - "label": "주먹 군만두", - "amount": 7000, + "id": "29dd0404ebb25a96757b", + "label": "순두부찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7a7deb22551682cf335f-history", - "label": "비빔면", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a7e8ab3e253763c91b7f-history", - "label": "수제 떡갈비", - "amount": 6500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1754c017343d05c32860-history", - "label": "정성갈비 구이", - "amount": 8000, + "id": "d10fa185c4111ed3f338-history", + "label": "된장찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "22685468c8172195bb56-history", - "label": "주먹 군만두", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-10625", - "name": "도남오거리도남점", - "businessName": "도남오거리도남점", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 도남로6길 16", - "district": "제주특별자치도 제주시", - "latitude": 33.4965453079539, - "longitude": 126.526082680031, - "representativePriceAmount": 5000, - "representativePriceLabel": "김치찌개", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-722-4844", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "1b56f6a938727eb0dcd2", - "label": "김치찌개", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "1b56f6a938727eb0dcd2-history", - "label": "김치찌개", - "amount": 5000, + "id": "29dd0404ebb25a96757b-history", + "label": "순두부찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37386,34 +39226,34 @@ "comments": [] }, { - "id": "goodprice-14005", - "name": "진미김밥", - "businessName": "진미김밥", + "id": "goodprice-16095", + "name": "불꽃냉면칼국수", + "businessName": "불꽃냉면칼국수", "categorySlug": "korean", - "address": "서울특별시 종로구 종로46길 28 (창신동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.57045965794985, - "longitude": 127.01018731204245, - "representativePriceAmount": 4000, - "representativePriceLabel": "진미김밥", + "address": "서울특별시 동대문구 경희대로3길 13 (회기동) 2층", + "district": "서울특별시 동대문구", + "latitude": 37.59265919775777, + "longitude": 127.05165601213012, + "representativePriceAmount": 9000, + "representativePriceLabel": "장칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 진미김밥 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2268-0069 / 영업시간: 영업시간 : 월~금 08:00-21:30 / 토 08:00-19:00 휴무일 : 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장칼국수 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6014-0013", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5047c65c1b153c9f2849", - "label": "진미김밥", - "amount": 4000, + "id": "ba5c36df700870de4bc0", + "label": "장칼국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "406572e26edfea186c2c", - "label": "물냉면", + "id": "8c3991fbf90e7654b45e", + "label": "냉면", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -37421,15 +39261,15 @@ ], "history": [ { - "id": "5047c65c1b153c9f2849-history", - "label": "진미김밥", - "amount": 4000, + "id": "ba5c36df700870de4bc0-history", + "label": "장칼국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "406572e26edfea186c2c-history", - "label": "물냉면", + "id": "8c3991fbf90e7654b45e-history", + "label": "냉면", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -37438,41 +39278,27 @@ "comments": [] }, { - "id": "goodprice-19059", - "name": "착한커피공장", - "businessName": "착한커피공장", - "categorySlug": "other-food", - "address": "서울특별시 종로구 자하문로7길 66 (누하동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.58019735852819, - "longitude": 126.9691947292228, - "representativePriceAmount": 2000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-19313", + "name": "깨돌이김밥", + "businessName": "깨돌이김밥", + "categorySlug": "korean", + "address": "충청남도 천안시 동남구 각원사길 52 (안서동) 깨돌이김밥", + "district": "충청남도 천안시", + "latitude": 36.830711862714494, + "longitude": 127.1776761133309, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-738-7774", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1420-7277", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0b4a0972a271bd57ea99", - "label": "아메리카노", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "900c77cbb93c60360788", - "label": "카페라떼", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "7441fe48e1aa31b47865", - "label": "허브티", + "id": "e6646b5b885e609b83d4", + "label": "김밥", "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -37480,22 +39306,8 @@ ], "history": [ { - "id": "0b4a0972a271bd57ea99-history", - "label": "아메리카노", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "900c77cbb93c60360788-history", - "label": "카페라떼", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "7441fe48e1aa31b47865-history", - "label": "허브티", + "id": "e6646b5b885e609b83d4-history", + "label": "김밥", "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -37504,51 +39316,37 @@ "comments": [] }, { - "id": "goodprice-18198", - "name": "창신숯불돼지갈비", - "businessName": "창신숯불돼지갈비", - "categorySlug": "korean", - "address": "서울특별시 종로구 종로 322-11 (창신동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.5716697926823, - "longitude": 127.01361493727262, - "representativePriceAmount": 10000, - "representativePriceLabel": "돼지갈비정식", + "id": "goodprice-18238", + "name": "비나레스토랑", + "businessName": "비나레스토랑", + "categorySlug": "japanese", + "address": "서울특별시 동대문구 안암로24길 4 (제기동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.58842314254856, + "longitude": 127.03528592290078, + "representativePriceAmount": 9000, + "representativePriceLabel": "커리", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지갈비정식 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-766-5861", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 커리 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-926-5860", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "db72755398ff12364a07", - "label": "돼지갈비정식", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b102df77847429f1c2c1", - "label": "생선구이정식", - "amount": 10000, + "id": "a484831aa0a0c81b28fc", + "label": "커리", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "db72755398ff12364a07-history", - "label": "돼지갈비정식", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b102df77847429f1c2c1-history", - "label": "생선구이정식", - "amount": 10000, + "id": "a484831aa0a0c81b28fc-history", + "label": "커리", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37556,65 +39354,37 @@ "comments": [] }, { - "id": "goodprice-11365", - "name": "광화냉면", - "businessName": "광화냉면", + "id": "goodprice-18220", + "name": "만족", + "businessName": "만족", "categorySlug": "korean", - "address": "부산광역시 서구 대영로 73번길 108 (동대신동3가)", - "district": "부산광역시 서구", - "latitude": 35.1150878509163, - "longitude": 129.016829835228, - "representativePriceAmount": 9000, - "representativePriceLabel": "냉면", + "address": "전북특별자치도 전주시 완산구 안터6길 41 (서신동) 1층", + "district": "전북특별자치도 전주시", + "latitude": 35.8300315070019, + "longitude": 127.11645550914488, + "representativePriceAmount": 8000, + "representativePriceLabel": "비빔밥/순두부찌개/비빔막국수/바지락칼국수(점심)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-253-4823", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥/순두부찌개/비빔막국수/바지락칼국수(점심) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1358-5650 / 영업시간: 10:30~22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c1bacda4bb79e97a14d4", - "label": "냉면", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9d4fd871ee68a752adb2", - "label": "밀면", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d4d7d9be2eef5ccc67ae", - "label": "설렁탕", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "c1bacda4bb79e97a14d4-history", - "label": "냉면", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9d4fd871ee68a752adb2-history", - "label": "밀면", - "amount": 7000, + "id": "4f6ad6b8aeba8882a119", + "label": "비빔밥/순두부찌개/비빔막국수/바지락칼국수(점심)", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "d4d7d9be2eef5ccc67ae-history", - "label": "설렁탕", - "amount": 9000, + "id": "4f6ad6b8aeba8882a119-history", + "label": "비빔밥/순두부찌개/비빔막국수/바지락칼국수(점심)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37622,37 +39392,37 @@ "comments": [] }, { - "id": "goodprice-17709", - "name": "국수집국모", - "businessName": "국수집국모", + "id": "goodprice-11554", + "name": "비에르 에 프리트", + "businessName": "비에르 에 프리트", "categorySlug": "korean", - "address": "대구광역시 동구 팔공로27길 24 (불로동) 1층", - "district": "대구광역시 동구", - "latitude": 35.9115976360345, - "longitude": 128.63861561811987, - "representativePriceAmount": 5000, - "representativePriceLabel": "잔치국수", + "address": "서울특별시 동대문구 제기로5길 40 (제기동)", + "district": "서울특별시 동대문구", + "latitude": 37.58803260900692, + "longitude": 127.03542173796306, + "representativePriceAmount": 10000, + "representativePriceLabel": "소세지볶음", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-981-3339 / 영업시간: 영업시간 : 11:00~20:00 정기휴무 : 매주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소세지볶음 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3291-5111", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5e442101b960b766c6f8", - "label": "잔치국수", - "amount": 5000, + "id": "1c6870e097c864005cc0", + "label": "소세지볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5e442101b960b766c6f8-history", - "label": "잔치국수", - "amount": 5000, + "id": "1c6870e097c864005cc0-history", + "label": "소세지볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37660,155 +39430,187 @@ "comments": [] }, { - "id": "goodprice-13033", - "name": "갓구워낸빵", - "businessName": "갓구워낸빵", - "categorySlug": "bakery", - "address": "인천광역시 동구 샛골로 173 (송림동) 1층", - "district": "인천광역시 동구", - "latitude": 37.47786072727075, - "longitude": 126.64475585486453, - "representativePriceAmount": 1200, - "representativePriceLabel": "단팥빵", + "id": "goodprice-5425", + "name": "맛자랑 팥고향집", + "businessName": "맛자랑 팥고향집", + "categorySlug": "korean", + "address": "전북특별자치도 전주시 완산구 서학로 32-4", + "district": "전북특별자치도 전주시", + "latitude": 35.8093835840183, + "longitude": 127.152905612703, + "representativePriceAmount": 7000, + "representativePriceLabel": "손칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵 1,200원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-567-9019 / 영업시간: 월~일 07:00-21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-231-0993", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "45c5cda0b40a086d61df", - "label": "단팥빵", - "amount": 1200, + "id": "5ddd346193ead1403888", + "label": "손칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "29effc8bb253f4f5b29d", - "label": "크림빵", - "amount": 1200, + "id": "3a64512ae4b163d91457", + "label": "수제비", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "45c5cda0b40a086d61df-history", - "label": "단팥빵", - "amount": 1200, + "id": "f76b70ac7411791853bc", + "label": "비빔국수", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "29effc8bb253f4f5b29d-history", - "label": "크림빵", - "amount": 1200, + "id": "26ac6b25d3fa63898b9a", + "label": "비빔냉면", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13022", - "name": "남성여성커트전문점", - "businessName": "남성여성커트전문점", - "categorySlug": "beauty", - "address": "인천광역시 동구 샛골로161번길 26 (송림동) 1층", - "district": "인천광역시 동구", - "latitude": 37.47703198808541, - "longitude": 126.64334345184642, - "representativePriceAmount": 5000, - "representativePriceLabel": "남성커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8670-9155 / 영업시간: 월~일 09:00-20:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "e35fad3c00636f73168c", - "label": "남성커트", - "amount": 5000, + "id": "48c5cfdca728f63d79ae", + "label": "새알팥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bdf83478435f603d35e2", - "label": "여성커트", + "id": "6edb1760271046232b96", + "label": "열무냉면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "7342ff9bb3ff4d3efc0b", + "label": "콩국수", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0a073ee47d85b1d84a2e", + "label": "팥칼국수", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e35fad3c00636f73168c-history", - "label": "남성커트", - "amount": 5000, + "id": "5ddd346193ead1403888-history", + "label": "손칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bdf83478435f603d35e2-history", - "label": "여성커트", + "id": "3a64512ae4b163d91457-history", + "label": "수제비", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "f76b70ac7411791853bc-history", + "label": "비빔국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "26ac6b25d3fa63898b9a-history", + "label": "비빔냉면", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "48c5cfdca728f63d79ae-history", + "label": "새알팥", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6edb1760271046232b96-history", + "label": "열무냉면", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7342ff9bb3ff4d3efc0b-history", + "label": "콩국수", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0a073ee47d85b1d84a2e-history", + "label": "팥칼국수", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-13798", - "name": "냠냠분식", - "businessName": "냠냠분식", + "id": "goodprice-13727", + "name": "사나이뚝배기", + "businessName": "사나이뚝배기", "categorySlug": "korean", - "address": "인천광역시 동구 수문통로 39 (송현동) 1층", - "district": "인천광역시 동구", - "latitude": 37.47984549987457, - "longitude": 126.63397144892058, - "representativePriceAmount": 3500, - "representativePriceLabel": "떡볶이", + "address": "서울특별시 동대문구 경희대로4길 5 (회기동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.592580690345116, + "longitude": 127.05289457873386, + "representativePriceAmount": 6300, + "representativePriceLabel": "된장뚝배기", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-777-3355 / 영업시간: 화 ~ 일 10:00 ~ 22:00 월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장뚝배기 6,300원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-963-2407", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e64f240710635562762e", - "label": "떡볶이", - "amount": 3500, + "id": "6f48b5224f118f66329d", + "label": "된장뚝배기", + "amount": 6300, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "964185b1a6efb71a72a3", - "label": "튀김만두(2개)", - "amount": 1000, + "id": "a7f9f8a7891f09ed5ebd", + "label": "순두부뚝배기", + "amount": 6300, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e64f240710635562762e-history", - "label": "떡볶이", - "amount": 3500, + "id": "6f48b5224f118f66329d-history", + "label": "된장뚝배기", + "amount": 6300, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "964185b1a6efb71a72a3-history", - "label": "튀김만두(2개)", - "amount": 1000, + "id": "a7f9f8a7891f09ed5ebd-history", + "label": "순두부뚝배기", + "amount": 6300, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37816,37 +39618,37 @@ "comments": [] }, { - "id": "goodprice-2093", - "name": "네오클리닝센타", - "businessName": "네오클리닝센타", - "categorySlug": "laundry", - "address": "인천광역시 동구 송현로 19번길 14 (송현동)", - "district": "인천광역시 동구", - "latitude": 37.4785676119164, - "longitude": 126.634101843256, - "representativePriceAmount": 10000, - "representativePriceLabel": "정장1벌", + "id": "goodprice-15141", + "name": "미달이네집밥", + "businessName": "미달이네집밥", + "categorySlug": "korean", + "address": "전라남도 목포시 용당로 52 (산정동) 미달이네집밥", + "district": "전라남도 목포시", + "latitude": 34.79223219163826, + "longitude": 126.40229481607567, + "representativePriceAmount": 9000, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 정장1벌 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-766-0030 / 영업시간: 월~토 09:00:19:30 (일,공휴일) 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-244-0222", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "50b8f58682680df11daf", - "label": "정장1벌", - "amount": 10000, + "id": "308b1dc7aedb92d05068", + "label": "한식뷔페", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "50b8f58682680df11daf-history", - "label": "정장1벌", - "amount": 10000, + "id": "308b1dc7aedb92d05068-history", + "label": "한식뷔페", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37854,37 +39656,65 @@ "comments": [] }, { - "id": "goodprice-13184", - "name": "호수목욕탕", - "businessName": "호수목욕탕", - "categorySlug": "bath", - "address": "광주광역시 동구 구성로194번길 7-1 (대인동) 1층", - "district": "광주광역시 동구", - "latitude": 35.15276002074088, - "longitude": 126.9147242991847, - "representativePriceAmount": 4000, - "representativePriceLabel": "성인", + "id": "goodprice-10387", + "name": "삼보닭꼬치", + "businessName": "삼보닭꼬치", + "categorySlug": "korean", + "address": "서울특별시 동대문구 한천로 186 (장안동)", + "district": "서울특별시 동대문구", + "latitude": 37.57746456123217, + "longitude": 127.06816795077384, + "representativePriceAmount": 3500, + "representativePriceLabel": "파닭꼬치", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 성인 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-226-1142 / 영업시간: 월-토 04:30~16:00 / 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 파닭꼬치 3,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-6493-3450", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a299a6165b409b40254b", - "label": "성인", - "amount": 4000, + "id": "93c13d9a26b53e1259bf", + "label": "파닭꼬치", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "daff3d174f7893d05805", + "label": "염통꼬치(4개)", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2078239698d2c7934769", + "label": "닭껍질꼬치(4개)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a299a6165b409b40254b-history", - "label": "성인", - "amount": 4000, + "id": "93c13d9a26b53e1259bf-history", + "label": "파닭꼬치", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "daff3d174f7893d05805-history", + "label": "염통꼬치(4개)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2078239698d2c7934769-history", + "label": "닭껍질꼬치(4개)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37892,51 +39722,51 @@ "comments": [] }, { - "id": "goodprice-17171", - "name": "홀인원김밥", - "businessName": "홀인원김밥", + "id": "goodprice-10507", + "name": "백련가정식백반", + "businessName": "백련가정식백반", "categorySlug": "korean", - "address": "광주광역시 동구 독립로 262-1 (금남로5가) 1", - "district": "광주광역시 동구", - "latitude": 35.15454223324605, - "longitude": 126.91127651626087, - "representativePriceAmount": 3500, - "representativePriceLabel": "그냥김밥", + "address": "전라남도 목포시 백년대로 83 (용당동)", + "district": "전라남도 목포시", + "latitude": 34.7993153187521, + "longitude": 126.398708002647, + "representativePriceAmount": 9000, + "representativePriceLabel": "고등어구이백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 그냥김밥 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 1555-5878 / 영업시간: 영업일: 월~토 오전 8시~오후4시(재료소진시 마감) 휴무일: 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고등어구이백반 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-281-3931", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f972a30d434866edcbb0", - "label": "그냥김밥", - "amount": 3500, + "id": "7fe6bed28d1e3429824b", + "label": "고등어구이백반", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9122ffa379a3a0f739bc", - "label": "라면", - "amount": 3500, + "id": "0c344ea2e2d595dc43e3", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f972a30d434866edcbb0-history", - "label": "그냥김밥", - "amount": 3500, + "id": "7fe6bed28d1e3429824b-history", + "label": "고등어구이백반", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9122ffa379a3a0f739bc-history", - "label": "라면", - "amount": 3500, + "id": "0c344ea2e2d595dc43e3-history", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -37944,193 +39774,219 @@ "comments": [] }, { - "id": "goodprice-2569", - "name": "왕산", - "businessName": "왕산", - "categorySlug": "korean", - "address": "대전광역시 동구 계족로 202 (대동)", - "district": "대전광역시 동구", - "latitude": 36.3312406960166, - "longitude": 127.441181784066, - "representativePriceAmount": 7000, - "representativePriceLabel": "갈비탕", + "id": "goodprice-485", + "name": "서울쉬퐁", + "businessName": "서울쉬퐁", + "categorySlug": "other-food", + "address": "서울특별시 동대문구 한천로63길 17 (이문동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.60394823824401, + "longitude": 127.06653078603297, + "representativePriceAmount": 2500, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 갈비탕 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-626-7006 / 영업시간: 09:30 ~ 21:30 / 매주 일요일 정기 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-966-2539 / 영업시간: 17:30에라스트오더 17시30분에라스트오더 금 10:00-18:00 17:30라스트오더 토 10:00-18:00 17:30라스트오더 일 정기휴무(매주일요일) 월(12/25) 성탄절휴무 화 10:00-18:00 17:30라스트오더 수(12/27) 10:00-20:00 목 10:00-18:00 17:30라스트오더 01/01새해첫날휴무 -수요일탄력적으로운영합니다:)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "439620526ff9ca1c1ef6", - "label": "갈비탕", - "amount": 7000, + "id": "5b11deb2e3083614cc26", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6802179e82784d897836", - "label": "매생이갈비탕", - "amount": 10000, + "id": "498827e3ecc4991bcefd", + "label": "카페라떼", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e18dd2ca48e87e571014", - "label": "왕갈비탕(특)", - "amount": 10000, + "id": "56277982c054cb9e4d87", + "label": "레몬치즈타르트", + "amount": 2800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "de22f37e3fb321c9a5f0", + "label": "마들렌 2개", + "amount": 2900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8e2595f4ad498fac1eca", + "label": "말차초코칩 스콘", + "amount": 2800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f5384f4aa885602716ae", + "label": "얼그레이 쉬폰 M size", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0363257acdd9007939be", + "label": "에스프레소 쉬폰 M size", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "62977834e1d14bba095a", + "label": "초코 쉬폰 M size", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0d6a8ee802af609d29cc", + "label": "초코 스콘", + "amount": 2800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c0ac2a53568a25c1655f", + "label": "초코앤초코칩 미니머핀", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f7ddf6e539e9fbaf0486", + "label": "크림치즈 미니머핀 9개입", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "21216e26646a8cdbcc84", + "label": "프랑스 리얼 가레트", + "amount": 1800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fea40c5f166ac3c7ec3d", + "label": "플레인 순수머핀 9개입", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "bdcce94d95c31b5c9e4f", + "label": "플레인 스콘", + "amount": 2800, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "439620526ff9ca1c1ef6-history", - "label": "갈비탕", - "amount": 7000, + "id": "5b11deb2e3083614cc26-history", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6802179e82784d897836-history", - "label": "매생이갈비탕", - "amount": 10000, + "id": "498827e3ecc4991bcefd-history", + "label": "카페라떼", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e18dd2ca48e87e571014-history", - "label": "왕갈비탕(특)", - "amount": 10000, + "id": "56277982c054cb9e4d87-history", + "label": "레몬치즈타르트", + "amount": 2800, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18678", - "name": "우리뷰티", - "businessName": "우리뷰티", - "categorySlug": "beauty", - "address": "대전광역시 동구 용운로1번길 5 (대동) 대동", - "district": "대전광역시 동구", - "latitude": 36.32944033216982, - "longitude": 127.44360995154223, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-282-7718 / 영업시간: 10:00 ~ 19:00 매주 월요일 정기휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "a0f704f45a317b1f5b2f", - "label": "커트", - "amount": 10000, + "id": "de22f37e3fb321c9a5f0-history", + "label": "마들렌 2개", + "amount": 2900, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "a0f704f45a317b1f5b2f-history", - "label": "커트", - "amount": 10000, + "id": "8e2595f4ad498fac1eca-history", + "label": "말차초코칩 스콘", + "amount": 2800, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14912", - "name": "우리헤어클럽", - "businessName": "우리헤어클럽", - "categorySlug": "beauty", - "address": "대전광역시 동구 백룡로57번길 118 (자양동) 자양동", - "district": "대전광역시 동구", - "latitude": 36.3383596687159, - "longitude": 127.45088284522323, - "representativePriceAmount": 10000, - "representativePriceLabel": "미용료(커트)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1367-4071 / 영업시간: 15:00~19:00 / 휴무일(토요일)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "58b0cc4344c396ed705f", - "label": "미용료(커트)", - "amount": 10000, + "id": "f5384f4aa885602716ae-history", + "label": "얼그레이 쉬폰 M size", + "amount": 5500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "58b0cc4344c396ed705f-history", - "label": "미용료(커트)", - "amount": 10000, + "id": "0363257acdd9007939be-history", + "label": "에스프레소 쉬폰 M size", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2525", - "name": "운동화목욕한날", - "businessName": "운동화목욕한날", - "categorySlug": "laundry", - "address": "대전광역시 동구 용운로 170가동 102호(용운동)", - "district": "대전광역시 동구", - "latitude": 36.3276734373929, - "longitude": 127.460965313411, - "representativePriceAmount": 5000, - "representativePriceLabel": "운동화 빨래", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 운동화 빨래 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 08:30 ~ 19:00 매주 일요일 정기휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "79d7d9be0c9d09c61767", - "label": "운동화 빨래", - "amount": 5000, + "id": "62977834e1d14bba095a-history", + "label": "초코 쉬폰 M size", + "amount": 5500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "7b5d4f759cc379ef97c4", - "label": "운동화 빨래(물세탁)", - "amount": 5000, + "id": "0d6a8ee802af609d29cc-history", + "label": "초코 스콘", + "amount": 2800, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "79d7d9be0c9d09c61767-history", - "label": "운동화 빨래", - "amount": 5000, + "id": "c0ac2a53568a25c1655f-history", + "label": "초코앤초코칩 미니머핀", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7b5d4f759cc379ef97c4-history", - "label": "운동화 빨래(물세탁)", - "amount": 5000, + "id": "f7ddf6e539e9fbaf0486-history", + "label": "크림치즈 미니머핀 9개입", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "21216e26646a8cdbcc84-history", + "label": "프랑스 리얼 가레트", + "amount": 1800, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fea40c5f166ac3c7ec3d-history", + "label": "플레인 순수머핀 9개입", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "bdcce94d95c31b5c9e4f-history", + "label": "플레인 스콘", + "amount": 2800, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38138,37 +39994,51 @@ "comments": [] }, { - "id": "goodprice-17508", - "name": "꽃보다남자남성커트", - "businessName": "꽃보다남자남성커트", - "categorySlug": "beauty", - "address": "울산광역시 남구 두왕로190번길 31 (선암동) 1층", - "district": "울산광역시 남구", - "latitude": 35.518683361146806, - "longitude": 129.31515922674268, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-6388", + "name": "고향식당", + "businessName": "고향식당", + "categorySlug": "korean", + "address": "경상북도 포항시 남구 오천읍 세계길 34-2 고향식당", + "district": "경상북도 포항시", + "latitude": 35.9651038865803, + "longitude": 129.415954040359, + "representativePriceAmount": 7000, + "representativePriceLabel": "정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1315-4144 / 영업시간: 10:00~19:00(매주 화요일 정기휴무, 매주 첫째주 일요일 정기휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-291-5806 / 영업시간: 5시 30분~17시 (브레이크타임 14시30분~17시) 명절 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2f864f122e56ed02c126", - "label": "커트", - "amount": 10000, + "id": "74015a8b72777526b52c", + "label": "정식", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b3afd5378138bfdcfd6b", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2f864f122e56ed02c126-history", - "label": "커트", - "amount": 10000, + "id": "74015a8b72777526b52c-history", + "label": "정식", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b3afd5378138bfdcfd6b-history", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38176,51 +40046,65 @@ "comments": [] }, { - "id": "goodprice-15094", - "name": "나일57", - "businessName": "나일57", - "categorySlug": "bakery", - "address": "울산광역시 남구 삼산로83번길 35 (달동) 1층 101호", - "district": "울산광역시 남구", - "latitude": 35.53775574203502, - "longitude": 129.3154140122934, - "representativePriceAmount": 3000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-11305", + "name": "서희", + "businessName": "서희", + "categorySlug": "chinese", + "address": "서울특별시 동대문구 사가정로23길 64 (장안동, 성우스타팰리스) 105-101", + "district": "서울특별시 동대문구", + "latitude": 37.58163338009504, + "longitude": 127.07003011308035, + "representativePriceAmount": 5500, + "representativePriceLabel": "자장면(현금)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1346-4157", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면(현금) 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2212-8877", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "503d64abb636178f22d9", - "label": "아메리카노", - "amount": 3000, + "id": "27437bab37f1899e9c91", + "label": "자장면(현금)", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "189c4ad84a1362755998", - "label": "소금빵", - "amount": 2500, + "id": "abc66478f5f2fe91cc0e", + "label": "짬뽕", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1487fb8abe24f4ef6887", + "label": "간짜장", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "503d64abb636178f22d9-history", - "label": "아메리카노", - "amount": 3000, + "id": "27437bab37f1899e9c91-history", + "label": "자장면(현금)", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "189c4ad84a1362755998-history", - "label": "소금빵", - "amount": 2500, + "id": "abc66478f5f2fe91cc0e-history", + "label": "짬뽕", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1487fb8abe24f4ef6887-history", + "label": "간짜장", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38228,51 +40112,51 @@ "comments": [] }, { - "id": "goodprice-15102", - "name": "내고향추어탕", - "businessName": "내고향추어탕", + "id": "goodprice-16132", + "name": "공원분식", + "businessName": "공원분식", "categorySlug": "korean", - "address": "울산광역시 남구 산업로339번길 24-13 (선암동) 105호", - "district": "울산광역시 남구", - "latitude": 35.516428145861525, - "longitude": 129.33786343766934, - "representativePriceAmount": 9000, - "representativePriceLabel": "추어탕", + "address": "경상북도 포항시 북구 환호공원길 19-1 (환호동) 공원분식", + "district": "경상북도 포항시", + "latitude": 36.06805492716173, + "longitude": 129.3918551381414, + "representativePriceAmount": 6000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-256-7972", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-242-9337", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d2e3cbcd0f6083571bf2", - "label": "추어탕", - "amount": 9000, + "id": "37a5cfb5aea0128d0cff", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "71876c917d57014c6db6", - "label": "삼겹 김치찌개", - "amount": 9000, + "id": "be65fe5e71e17e07df73", + "label": "콩국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d2e3cbcd0f6083571bf2-history", - "label": "추어탕", - "amount": 9000, + "id": "37a5cfb5aea0128d0cff-history", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "71876c917d57014c6db6-history", - "label": "삼겹 김치찌개", - "amount": 9000, + "id": "be65fe5e71e17e07df73-history", + "label": "콩국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38280,51 +40164,65 @@ "comments": [] }, { - "id": "goodprice-3398", - "name": "명품세탁 빨래터", - "businessName": "명품세탁 빨래터", - "categorySlug": "laundry", - "address": "경기도 수원시 영통구 동탄원천로 915번길 36 104호", - "district": "경기도 수원시", - "latitude": 37.2569793706321, - "longitude": 127.043828501468, - "representativePriceAmount": 7500, - "representativePriceLabel": "세탁료", + "id": "goodprice-16097", + "name": "선이네순대국", + "businessName": "선이네순대국", + "categorySlug": "korean", + "address": "서울특별시 동대문구 이문로28길 16 (이문동)", + "district": "서울특별시 동대문구", + "latitude": 37.59549891463256, + "longitude": 127.06063036799861, + "representativePriceAmount": 8000, + "representativePriceLabel": "순대국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 세탁료 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-216-8939 / 영업시간: 매일 09:00~20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-968-9168", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b44b33137bc7284e67fa", - "label": "세탁료", - "amount": 7500, + "id": "48469df65811f9f23746", + "label": "순대국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "236a0579eee4a8ccaf80", - "label": "의복수선료", - "amount": 4000, + "id": "2cc964335f07f332c062", + "label": "갈비탕", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "47969adb25cac3f934a9", + "label": "해장국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b44b33137bc7284e67fa-history", - "label": "세탁료", - "amount": 7500, + "id": "48469df65811f9f23746-history", + "label": "순대국", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "236a0579eee4a8ccaf80-history", - "label": "의복수선료", - "amount": 4000, + "id": "2cc964335f07f332c062-history", + "label": "갈비탕", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "47969adb25cac3f934a9-history", + "label": "해장국", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38332,37 +40230,37 @@ "comments": [] }, { - "id": "goodprice-11096", - "name": "모아헤어", - "businessName": "모아헤어", - "categorySlug": "beauty", - "address": "경기도 수원시 장안구 화산로 285번길 12 화남아파트상가 102호(율전동)", - "district": "경기도 수원시", - "latitude": 37.3002864705875, - "longitude": 126.964407790648, - "representativePriceAmount": 9000, - "representativePriceLabel": "커트", + "id": "goodprice-15582", + "name": "낙지엔닭갈비", + "businessName": "낙지엔닭갈비", + "categorySlug": "korean", + "address": "경상남도 창원시 마산회원구 내서읍 중리상곡로 77 101호", + "district": "경상남도 창원시", + "latitude": 35.24768918750772, + "longitude": 128.50844422463186, + "representativePriceAmount": 10000, + "representativePriceLabel": "낙지비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-295-4005", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 낙지비빔밥 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-231-3217", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "624984a4be48bff5f97a", - "label": "커트", - "amount": 9000, + "id": "5a4de9a27ba2b32af2ef", + "label": "낙지비빔밥", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "624984a4be48bff5f97a-history", - "label": "커트", - "amount": 9000, + "id": "5a4de9a27ba2b32af2ef-history", + "label": "낙지비빔밥", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38370,41 +40268,34 @@ "comments": [] }, { - "id": "goodprice-11689", - "name": "모이세 분식", - "businessName": "모이세 분식", + "id": "goodprice-11555", + "name": "세진식당", + "businessName": "세진식당", "categorySlug": "korean", - "address": "경기도 수원시 팔달구 팔달문로3번길 5 (팔달로2가)", - "district": "경기도 수원시", - "latitude": 37.2779056593256, - "longitude": 127.017591481138, - "representativePriceAmount": 8000, - "representativePriceLabel": "돈까스", + "address": "서울특별시 동대문구 서울시립대로 61-4 (전농동)", + "district": "서울특별시 동대문구", + "latitude": 37.57682883460906, + "longitude": 127.04777654203231, + "representativePriceAmount": 6000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈까스 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-245-1189", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2215-0305", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d22373c84a6f179206de", - "label": "돈까스", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e3cc8b2346f2927077ee", - "label": "물냉면", - "amount": 6500, + "id": "be13e0b2628ab3036c70", + "label": "백반", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "366fcf1595f9db6334eb", - "label": "비빔밥", + "id": "4af14e6c72f5fa61f9a1", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -38412,22 +40303,15 @@ ], "history": [ { - "id": "d22373c84a6f179206de-history", - "label": "돈까스", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e3cc8b2346f2927077ee-history", - "label": "물냉면", - "amount": 6500, + "id": "be13e0b2628ab3036c70-history", + "label": "백반", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "366fcf1595f9db6334eb-history", - "label": "비빔밥", + "id": "4af14e6c72f5fa61f9a1-history", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -38436,51 +40320,79 @@ "comments": [] }, { - "id": "goodprice-4343", - "name": "송혜진미용실", - "businessName": "송혜진미용실", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 신흥길5번길 8-6 1층(우두동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.9005696948236, - "longitude": 127.727393589753, - "representativePriceAmount": 9000, - "representativePriceLabel": "커트", + "id": "goodprice-15129", + "name": "남원식당", + "businessName": "남원식당", + "categorySlug": "korean", + "address": "경상남도 창원시 의창구 도계로83번길 6-24 (도계동) 1층", + "district": "경상남도 창원시", + "latitude": 35.25676280757884, + "longitude": 128.6403988733871, + "representativePriceAmount": 8000, + "representativePriceLabel": "가정식 백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 가정식 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-238-0517", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "07cae761cdd68f6313f3", - "label": "커트", - "amount": 9000, + "id": "ed8010247b41922f5e19", + "label": "가정식 백반", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a9694e8dbfbfce2cee86", - "label": "드라이", - "amount": 10000, + "id": "eb8df1eddebc4719c5ea", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8fac1bdb8ce3bec3270f", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d1f5c6f74863baf32cf1", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "07cae761cdd68f6313f3-history", - "label": "커트", - "amount": 9000, + "id": "ed8010247b41922f5e19-history", + "label": "가정식 백반", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a9694e8dbfbfce2cee86-history", - "label": "드라이", - "amount": 10000, + "id": "eb8df1eddebc4719c5ea-history", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8fac1bdb8ce3bec3270f-history", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d1f5c6f74863baf32cf1-history", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38488,89 +40400,65 @@ "comments": [] }, { - "id": "goodprice-13802", - "name": "수제돈가스", - "businessName": "수제돈가스", + "id": "goodprice-10373", + "name": "수빈마마", + "businessName": "수빈마마", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 명동길 43 (죽림동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.87732611130328, - "longitude": 127.72485363921628, - "representativePriceAmount": 7000, - "representativePriceLabel": "돈가스정식", + "address": "서울특별시 동대문구 사가정로 221 (장안동) 103호", + "district": "서울특별시 동대문구", + "latitude": 37.57892188428139, + "longitude": 127.06970335305819, + "representativePriceAmount": 9000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-254-5074", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2244-9294", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "36659d5b5bfa2b099076", - "label": "돈가스정식", - "amount": 7000, + "id": "9b4791982b953f4895a2", + "label": "된장찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7389a1cab263c622a2e5", - "label": "돈가스 포장", - "amount": 4000, + "id": "5c94aa91fb799a830719", + "label": "순두부찌개", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c7ea9a4d5604e2155ba0", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "36659d5b5bfa2b099076-history", - "label": "돈가스정식", - "amount": 7000, + "id": "9b4791982b953f4895a2-history", + "label": "된장찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7389a1cab263c622a2e5-history", - "label": "돈가스 포장", - "amount": 4000, + "id": "5c94aa91fb799a830719-history", + "label": "순두부찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11113", - "name": "숙미용실", - "businessName": "숙미용실", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 공지로 432-1 (근화동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8737216981244, - "longitude": 127.719469536522, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-9217 / 영업시간: 10:00 - 20:00 일요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "2a82778f35ed691610ae", - "label": "커트", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "2a82778f35ed691610ae-history", - "label": "커트", - "amount": 5000, + "id": "c7ea9a4d5604e2155ba0-history", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38578,55 +40466,55 @@ "comments": [] }, { - "id": "goodprice-4761", - "name": "도토리명가", - "businessName": "도토리명가", - "categorySlug": "korean", - "address": "충청북도 청주시 흥덕구 흥덕로162번길 13 (운천동)", - "district": "충청북도 청주시", - "latitude": 36.6476629164762, - "longitude": 127.477294311131, - "representativePriceAmount": 7000, - "representativePriceLabel": "도토리묵밥", + "id": "goodprice-7068", + "name": "귀빈반점", + "businessName": "귀빈반점", + "categorySlug": "chinese", + "address": "제주특별자치도 제주시 정원로 53-1 (노형동)", + "district": "제주특별자치도 제주시", + "latitude": 33.4771339388759, + "longitude": 126.47755224554, + "representativePriceAmount": 5000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 도토리묵밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 예약제 운영", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-749-3080 / 영업시간: 19:15에라스트오더 19시15분에라스트오더 목 10:00-19:30 19:15라스트오더 금 10:00-19:30 19:15라스트오더 토 10:00-19:30 19:15라스트오더 일 정기휴무(매주일요일) 월 10:00-19:30 19:15라스트오더 화 10:00-19:30 19:15라스트오더 수 10:00-19:30 19:15라스트오더", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cc66019aca85e687aa2d", - "label": "도토리묵밥", - "amount": 7000, + "id": "3255eb85ffb83365cdf6", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ee55ebd9156c795ddf7d", - "label": "도토리 들깨칼국수", + "id": "5f1f828c55e5cb838837", + "label": "짬뽕", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d5ccc0474a059d279075", - "label": "도토리 들깨수제비", - "amount": 6000, + "id": "4122038c540974b7c625", + "label": "고기짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e039e1917744ecfbf138", - "label": "도토리들깨수제비", - "amount": 6000, + "id": "a479919e533e019ac74d", + "label": "짜장밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ac6ddfa3458a87568663", - "label": "도토리들깨칼국수", + "id": "035f3bb1b783447e5c4f", + "label": "짬뽕밥", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -38634,36 +40522,36 @@ ], "history": [ { - "id": "cc66019aca85e687aa2d-history", - "label": "도토리묵밥", - "amount": 7000, + "id": "3255eb85ffb83365cdf6-history", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ee55ebd9156c795ddf7d-history", - "label": "도토리 들깨칼국수", + "id": "5f1f828c55e5cb838837-history", + "label": "짬뽕", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d5ccc0474a059d279075-history", - "label": "도토리 들깨수제비", - "amount": 6000, + "id": "4122038c540974b7c625-history", + "label": "고기짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e039e1917744ecfbf138-history", - "label": "도토리들깨수제비", - "amount": 6000, + "id": "a479919e533e019ac74d-history", + "label": "짜장밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ac6ddfa3458a87568663-history", - "label": "도토리들깨칼국수", + "id": "035f3bb1b783447e5c4f-history", + "label": "짬뽕밥", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -38672,51 +40560,51 @@ "comments": [] }, { - "id": "goodprice-15760", - "name": "동의명가 뼈해장국,순대국,감자탕", - "businessName": "동의명가 뼈해장국,순대국,감자탕", - "categorySlug": "korean", - "address": "충청북도 청주시 상당구 무심동로392번길 4 (서문동) 1층", - "district": "충청북도 청주시", - "latitude": 36.6354992792621, - "longitude": 127.48497460255712, - "representativePriceAmount": 6900, - "representativePriceLabel": "순대국밥", + "id": "goodprice-18856", + "name": "시루앤도마", + "businessName": "시루앤도마", + "categorySlug": "other-food", + "address": "서울특별시 동대문구 제기로 131 (청량리동, 한신아파트) 121동 1층 6호", + "district": "서울특별시 동대문구", + "latitude": 37.587270026787095, + "longitude": 127.04826367370279, + "representativePriceAmount": 3000, + "representativePriceLabel": "호두강정", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 6,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 호두강정 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-7272-7777", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2d5bbd8a86a8d5a107f8", - "label": "순대국밥", - "amount": 6900, + "id": "5b15c01ef5ca81930548", + "label": "호두강정", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "590ec222a3e719d34204", - "label": "뼈해장국", - "amount": 6900, + "id": "0315beef4e389d593262", + "label": "쌀술빵", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2d5bbd8a86a8d5a107f8-history", - "label": "순대국밥", - "amount": 6900, + "id": "5b15c01ef5ca81930548-history", + "label": "호두강정", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "590ec222a3e719d34204-history", - "label": "뼈해장국", - "amount": 6900, + "id": "0315beef4e389d593262-history", + "label": "쌀술빵", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38724,75 +40612,51 @@ "comments": [] }, { - "id": "goodprice-4743", - "name": "돼풍이국내산생고기", - "businessName": "돼풍이국내산생고기", + "id": "goodprice-11423", + "name": "금악 똣똣라면", + "businessName": "금악 똣똣라면", "categorySlug": "korean", - "address": "충청북도 청주시 청원구 율봉로94번길 27 (율량동)", - "district": "충청북도 청주시", - "latitude": 36.6654896584325, - "longitude": 127.480643814831, - "representativePriceAmount": 9000, - "representativePriceLabel": "삼겹살(150g)", + "address": "제주특별자치도 제주시 한림읍 금악로 18", + "district": "제주특별자치도 제주시", + "latitude": 33.3586559057476, + "longitude": 126.296620943982, + "representativePriceAmount": 6500, + "representativePriceLabel": "똣똣라면(오리지널)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살(150g) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-211-5959 / 영업시간: 매일 17:00-22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 똣똣라면(오리지널) 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ea61ab109f619bc3c33d", - "label": "삼겹살(150g)", - "amount": 9000, + "id": "c9f40e1c42381560a249", + "label": "똣똣라면(오리지널)", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "ea61ab109f619bc3c33d-history", - "label": "삼겹살(150g)", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4915", - "name": "백미용실", - "businessName": "백미용실", - "categorySlug": "beauty", - "address": "충청남도 천안시 동남구 우영1길 10 106호(봉명동)", - "district": "충청남도 천안시", - "latitude": 36.805213750612, - "longitude": 127.140789087028, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-572-5953 / 영업시간: 10:00~18:30 정기휴무(매주 수, 일요일)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "2532a6004e61f0c118d0", - "label": "커트", - "amount": 7000, + "id": "5dde784b339aec88659d", + "label": "똣똣라면(순한맛)", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2532a6004e61f0c118d0-history", - "label": "커트", - "amount": 7000, + "id": "c9f40e1c42381560a249-history", + "label": "똣똣라면(오리지널)", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "5dde784b339aec88659d-history", + "label": "똣똣라면(순한맛)", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38800,51 +40664,37 @@ "comments": [] }, { - "id": "goodprice-4989", - "name": "별난생태나라", - "businessName": "별난생태나라", - "categorySlug": "korean", - "address": "충청남도 천안시 서북구 봉서5길 10 104호(쌍용동)", - "district": "충청남도 천안시", - "latitude": 36.808266626223, - "longitude": 127.132230635153, - "representativePriceAmount": 9000, - "representativePriceLabel": "동태탕", + "id": "goodprice-11304", + "name": "신라방마라탕 장안동맛집", + "businessName": "신라방마라탕 장안동맛집", + "categorySlug": "chinese", + "address": "서울특별시 동대문구 천호대로79길 66 (장안동)", + "district": "서울특별시 동대문구", + "latitude": 37.56504359478191, + "longitude": 127.06448608529534, + "representativePriceAmount": 7000, + "representativePriceLabel": "마라탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 동태탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-575-3675 / 영업시간: 08:30~21:00 정기휴무(매주 월요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 마라탕 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2212-9991", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "67a67edc651b472a1e47", - "label": "동태탕", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4249ac5ed329497dde9c", - "label": "김치찌개", - "amount": 9000, + "id": "7a03a1a1ac63da328621", + "label": "마라탕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "67a67edc651b472a1e47-history", - "label": "동태탕", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4249ac5ed329497dde9c-history", - "label": "김치찌개", - "amount": 9000, + "id": "7a03a1a1ac63da328621-history", + "label": "마라탕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38852,37 +40702,37 @@ "comments": [] }, { - "id": "goodprice-15998", - "name": "춘향골밥상", - "businessName": "춘향골밥상", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 덕진구 벚꽃2길 5 (진북동)", - "district": "전북특별자치도 전주시", - "latitude": 35.827911752494195, - "longitude": 127.1324721401412, - "representativePriceAmount": 8000, - "representativePriceLabel": "우렁된장찌개", + "id": "goodprice-17999", + "name": "금악리자양식당", + "businessName": "금악리자양식당", + "categorySlug": "chinese", + "address": "제주특별자치도 제주시 한림읍 금악로 18 자양식당", + "district": "제주특별자치도 제주시", + "latitude": 33.35865254119738, + "longitude": 126.29662954404655, + "representativePriceAmount": 9000, + "representativePriceLabel": "닭짬뽕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우렁된장찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-255-8500 / 영업시간: 월요일 ~ 토요일 : 11:00 ~ 21:00(브레이크 타임 15:00 ~ 17:00) 일요일 : 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 닭짬뽕 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-7163-3544", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fb20ff2c3b9804de4c7b", - "label": "우렁된장찌개", - "amount": 8000, + "id": "8e7fb0fb36592123c972", + "label": "닭짬뽕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fb20ff2c3b9804de4c7b-history", - "label": "우렁된장찌개", - "amount": 8000, + "id": "8e7fb0fb36592123c972-history", + "label": "닭짬뽕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38890,51 +40740,65 @@ "comments": [] }, { - "id": "goodprice-15995", - "name": "하루국수", - "businessName": "하루국수", + "id": "goodprice-16154", + "name": "신설동뚝배기", + "businessName": "신설동뚝배기", "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 메너머1길 30 (중화산동2가)", - "district": "전북특별자치도 전주시", - "latitude": 35.82106396957341, - "longitude": 127.11962562598723, - "representativePriceAmount": 5000, - "representativePriceLabel": "물국수", + "address": "서울특별시 동대문구 한빛로 18 (신설동)", + "district": "서울특별시 동대문구", + "latitude": 37.577277991288966, + "longitude": 127.02529432677873, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1347-0031 / 영업시간: 평일 : 10:00 ~ 16:00 토요일 : 10:00 ~ 16:00 일요일 : 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-922-1070", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bcefc48ef77d3a822f5d", - "label": "물국수", - "amount": 5000, + "id": "6d516640bceb3a97b763", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f1ef1db9206639c653f7", - "label": "비빔국수", - "amount": 6000, + "id": "42b5b8a9da50c43b9008", + "label": "순두부찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "34741a9da374848e0c90", + "label": "우렁된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bcefc48ef77d3a822f5d-history", - "label": "물국수", - "amount": 5000, + "id": "6d516640bceb3a97b763-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f1ef1db9206639c653f7-history", - "label": "비빔국수", - "amount": 6000, + "id": "42b5b8a9da50c43b9008-history", + "label": "순두부찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "34741a9da374848e0c90-history", + "label": "우렁된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -38942,65 +40806,65 @@ "comments": [] }, { - "id": "goodprice-5402", - "name": "하얀세탁나라", - "businessName": "하얀세탁나라", - "categorySlug": "laundry", - "address": "전북특별자치도 전주시 덕진구 시천로 29-30 (송천동1가, 한양아파트 상가 1층)", - "district": "전북특별자치도 전주시", - "latitude": 35.8605364471238, - "longitude": 127.113373136028, - "representativePriceAmount": 6000, - "representativePriceLabel": "양복", + "id": "goodprice-1637", + "name": "미도리우동", + "businessName": "미도리우동", + "categorySlug": "japanese", + "address": "부산광역시 중구 흑교로 45번길 10-1 (보수동)", + "district": "부산광역시 중구", + "latitude": 35.1036985758005, + "longitude": 129.024128409662, + "representativePriceAmount": 4000, + "representativePriceLabel": "유부초밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-902-4555 / 영업시간: 금 08:00-20:00 토 08:00-20:00 일 정기휴무(매주일요일) 월 08:00-20:00 화 08:00-20:00 수 08:00-20:00 목 08:00-20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 유부초밥 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-244-8246 / 영업시간: 10:30 - 15:00, 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3d29b3be1555e5293a6c", - "label": "양복", - "amount": 6000, + "id": "0dd8eea8d696633292eb", + "label": "유부초밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ea29b9f252655b5050c9", - "label": "바지", - "amount": 3000, + "id": "5ea365b83b6a80f89238", + "label": "우동", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "43735d2ed97a30d95ac7", - "label": "티셔츠", - "amount": 2000, + "id": "432af4dcd26e1381275b", + "label": "모밀국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3d29b3be1555e5293a6c-history", - "label": "양복", - "amount": 6000, + "id": "0dd8eea8d696633292eb-history", + "label": "유부초밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ea29b9f252655b5050c9-history", - "label": "바지", - "amount": 3000, + "id": "5ea365b83b6a80f89238-history", + "label": "우동", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "43735d2ed97a30d95ac7-history", - "label": "티셔츠", - "amount": 2000, + "id": "432af4dcd26e1381275b-history", + "label": "모밀국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39008,113 +40872,117 @@ "comments": [] }, { - "id": "goodprice-17489", - "name": "e쁘제헤어프리", - "businessName": "e쁘제헤어프리", - "categorySlug": "beauty", - "address": "전라남도 여수시 허문정1길 52 (문수동) 1층", - "district": "전라남도 여수시", - "latitude": 34.74984276015307, - "longitude": 127.69462555986541, + "id": "goodprice-11557", + "name": "신설보쌈앤칼국수", + "businessName": "신설보쌈앤칼국수", + "categorySlug": "korean", + "address": "서울특별시 동대문구 하정로3길 10 (신설동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.57559393325427, + "longitude": 127.02598045290175, "representativePriceAmount": 10000, - "representativePriceLabel": "성인여자커트", + "representativePriceLabel": "보쌈정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 성인여자커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-651-0612", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보쌈정식 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-925-3030", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7eabe0e141ba7b8fb314", - "label": "성인여자커트", + "id": "517f600b3e28efa28da5", + "label": "보쌈정식", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "63167bea9783cfb6c73e", + "label": "바지락칼국수", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7eabe0e141ba7b8fb314-history", - "label": "성인여자커트", + "id": "517f600b3e28efa28da5-history", + "label": "보쌈정식", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "63167bea9783cfb6c73e-history", + "label": "바지락칼국수", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-5747", - "name": "가든회관", - "businessName": "가든회관", + "id": "goodprice-17051", + "name": "미향장어탕", + "businessName": "미향장어탕", "categorySlug": "korean", - "address": "전라남도 여수시 시청동1길 7 (학동) 가든회관", - "district": "전라남도 여수시", - "latitude": 34.76010930737318, - "longitude": 127.66429037149783, - "representativePriceAmount": 9000, - "representativePriceLabel": "백반", + "address": "부산광역시 중구 남포길 45-1 (남포동2가) 1층", + "district": "부산광역시 중구", + "latitude": 35.09811695918981, + "longitude": 129.03373733333655, + "representativePriceAmount": 10000, + "representativePriceLabel": "장어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-681-5940 / 영업시간: 9:30~21:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장어탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1430-2452", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c012fd9e0b6d53a9fa64", - "label": "백반", - "amount": 9000, + "id": "21b813ee10539f5b6b97", + "label": "장어탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "c012fd9e0b6d53a9fa64-history", - "label": "백반", + "id": "05698e2d28ba78dd1ff7", + "label": "물냉면", "amount": 9000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-6433", - "name": "뉴현대미용실", - "businessName": "뉴현대미용실", - "categorySlug": "beauty", - "address": "경상북도 포항시 북구 새마을로 2 뉴현대미용실", - "district": "경상북도 포항시", - "latitude": 36.0384567529592, - "longitude": 129.358106840482, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-241-5678 / 영업시간: 8시~18시 매주 일요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "23fcc7a48f6035cc2c94", - "label": "커트", - "amount": 5000, + "id": "0ece2db7189f0014c1a1", + "label": "비빔냉면", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "23fcc7a48f6035cc2c94-history", - "label": "커트", - "amount": 5000, + "id": "21b813ee10539f5b6b97-history", + "label": "장어탕", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "05698e2d28ba78dd1ff7-history", + "label": "물냉면", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0ece2db7189f0014c1a1-history", + "label": "비빔냉면", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39122,51 +40990,65 @@ "comments": [] }, { - "id": "goodprice-6363", - "name": "다미손만두돈까스", - "businessName": "다미손만두돈까스", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 구룡포읍 구룡포길 85-1 다미손만두돈까스", - "district": "경상북도 포항시", - "latitude": 35.9912234274676, - "longitude": 129.555134254705, - "representativePriceAmount": 7000, - "representativePriceLabel": "냉면", + "id": "goodprice-16098", + "name": "아리랑동가스", + "businessName": "아리랑동가스", + "categorySlug": "western", + "address": "서울특별시 동대문구 이문로28길 13 (이문동)", + "district": "서울특별시 동대문구", + "latitude": 37.59561543618536, + "longitude": 127.06063764607374, + "representativePriceAmount": 6500, + "representativePriceLabel": "마늘돈까스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-284-2291 / 영업시간: 11시~21시 (휴뮤일 없음)", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 마늘돈까스 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3295-2897", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "67fe9acf403017f0efa8", - "label": "냉면", - "amount": 7000, + "id": "e6977b77e9eb6eb17ff9", + "label": "마늘돈까스", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "57daa89778316e271ac3", - "label": "비빔밥", - "amount": 8000, + "id": "5035af720b6c6967bdbf", + "label": "치즈돈까스", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a52e343022e304a163e1", + "label": "생선까스", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "67fe9acf403017f0efa8-history", - "label": "냉면", - "amount": 7000, + "id": "e6977b77e9eb6eb17ff9-history", + "label": "마늘돈까스", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "57daa89778316e271ac3-history", - "label": "비빔밥", - "amount": 8000, + "id": "5035af720b6c6967bdbf-history", + "label": "치즈돈까스", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a52e343022e304a163e1-history", + "label": "생선까스", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39174,89 +41056,65 @@ "comments": [] }, { - "id": "goodprice-6828", - "name": "미가칼국수", - "businessName": "미가칼국수", + "id": "goodprice-14624", + "name": "예원생선구이", + "businessName": "예원생선구이", "categorySlug": "korean", - "address": "경상남도 창원시 진해구 벚꽃로60번길 19-6 832(화천동)", - "district": "경상남도 창원시", - "latitude": 35.1512659472656, - "longitude": 128.665285213057, - "representativePriceAmount": 4000, - "representativePriceLabel": "보리밥", + "address": "대구광역시 중구 동덕로 114-12 (삼덕동2가) 1층", + "district": "대구광역시 중구", + "latitude": 35.8646330747017, + "longitude": 128.60381216563215, + "representativePriceAmount": 9000, + "representativePriceLabel": "고등어구이 정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보리밥 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-543-5200", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고등어구이 정식 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-421-4440 / 영업시간: 평일 10:30 - 20:00 15:00 - 16:00 브레이크타임 19:30 라스트오더 (토, 일 정기휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5f039dcfc50c77e53202", - "label": "보리밥", - "amount": 4000, + "id": "ccf2862d7c44ba120557", + "label": "고등어구이 정식", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "5f039dcfc50c77e53202-history", - "label": "보리밥", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-6825", - "name": "미진과자점", - "businessName": "미진과자점", - "categorySlug": "other-food", - "address": "경상남도 창원시 진해구 충장로130번길 4 (충무동)", - "district": "경상남도 창원시", - "latitude": 35.151815090165, - "longitude": 128.66605694706, - "representativePriceAmount": 3500, - "representativePriceLabel": "벚꽃크림치즈타르트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 벚꽃크림치즈타르트 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-545-3133", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "4a0f84492c7dab78f8ce", - "label": "벚꽃크림치즈타르트", - "amount": 3500, + "id": "60ca412b5c6768262dea", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "37e2d40297e1d50b9b42", - "label": "에그타르트", - "amount": 3000, + "id": "4ba5de9dd196b0d9096b", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4a0f84492c7dab78f8ce-history", - "label": "벚꽃크림치즈타르트", - "amount": 3500, + "id": "ccf2862d7c44ba120557-history", + "label": "고등어구이 정식", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "37e2d40297e1d50b9b42-history", - "label": "에그타르트", - "amount": 3000, + "id": "60ca412b5c6768262dea-history", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4ba5de9dd196b0d9096b-history", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39264,107 +41122,65 @@ "comments": [] }, { - "id": "goodprice-16321", - "name": "바름카페공방", - "businessName": "바름카페공방", - "categorySlug": "other-food", - "address": "경상남도 창원시 마산회원구 구암동정길 63 (구암동) 101호 바름카페공방", - "district": "경상남도 창원시", - "latitude": 35.253547999427646, - "longitude": 128.6004429633202, - "representativePriceAmount": 2000, - "representativePriceLabel": "커피(아메리카노)", + "id": "goodprice-495", + "name": "영칼국수", + "businessName": "영칼국수", + "categorySlug": "korean", + "address": "서울특별시 동대문구 답십리로51길 10 (답십리동)", + "district": "서울특별시 동대문구", + "latitude": 37.57342683203908, + "longitude": 127.05872117736355, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피(아메리카노) 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-6878-7075", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2213-0994 / 영업시간: 목 11:00-15:00 14:25라스트오더 금 11:00-15:00 14:25라스트오더 토 11:00-15:00 14:25라스트오더 일 정기휴무(매주일요일) 월 11:00-15:00 14:25라스트오더 화 11:00-15:00 14:25라스트오더 수 11:00-15:00 14:25라스트오더 01/01새해첫날휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "048f4dd0bdc07e63efed", - "label": "커피(아메리카노)", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b23dc56d4e0a1998ea04", - "label": "과일빙수", + "id": "2d83bdb6c550fe6ae111", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c307507bc23783a04e70", - "label": "카페라떼", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ec3864fc77156198d1bd", - "label": "라떼(바닐라/토피넛/쑥/녹차/고구마/곡물)", - "amount": 3800, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "36af1a993049c905a6e1", - "label": "수제차(자몽/레몬/생강/레몬모과/오미자)", - "amount": 4000, + "id": "b8e5e6a787c8b1650dce", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9761f20e75a1e26c5bcc", - "label": "과일스무디(블루베리/망고/딸기/멜론)", - "amount": 4000, + "id": "219362904eb0a9f5c506", + "label": "칼제비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "048f4dd0bdc07e63efed-history", - "label": "커피(아메리카노)", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b23dc56d4e0a1998ea04-history", - "label": "과일빙수", + "id": "2d83bdb6c550fe6ae111-history", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c307507bc23783a04e70-history", - "label": "카페라떼", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ec3864fc77156198d1bd-history", - "label": "라떼(바닐라/토피넛/쑥/녹차/고구마/곡물)", - "amount": 3800, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "36af1a993049c905a6e1-history", - "label": "수제차(자몽/레몬/생강/레몬모과/오미자)", - "amount": 4000, + "id": "b8e5e6a787c8b1650dce-history", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9761f20e75a1e26c5bcc-history", - "label": "과일스무디(블루베리/망고/딸기/멜론)", - "amount": 4000, + "id": "219362904eb0a9f5c506-history", + "label": "칼제비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39372,65 +41188,51 @@ "comments": [] }, { - "id": "goodprice-14254", - "name": "도넛킹", - "businessName": "도넛킹", - "categorySlug": "other-food", - "address": "제주특별자치도 제주시 구남로6길 25 (이도이동) 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.48841844009604, - "longitude": 126.53559021440631, - "representativePriceAmount": 1500, - "representativePriceLabel": "오리지널 글레이즈", + "id": "goodprice-15358", + "name": "옛고을", + "businessName": "옛고을", + "categorySlug": "korean", + "address": "대구광역시 중구 달구벌대로 2197-39 (삼덕동2가) 옛고을식당", + "district": "대구광역시 중구", + "latitude": 35.86464415410117, + "longitude": 128.60349499293326, + "representativePriceAmount": 8000, + "representativePriceLabel": "제육덮밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 오리지널 글레이즈 1,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-7443-1282", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육덮밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-427-8503", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3c7f7ad5a326b8112294", - "label": "오리지널 글레이즈", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "34b954c0a9d1fa5dfc15", - "label": "츄러스 도넛", - "amount": 2000, + "id": "971d2201e466cfc873b7", + "label": "제육덮밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a987d030bf513a47ac51", - "label": "아메리카노", - "amount": 3000, + "id": "00bf1ea43be2559b2a81", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3c7f7ad5a326b8112294-history", - "label": "오리지널 글레이즈", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "34b954c0a9d1fa5dfc15-history", - "label": "츄러스 도넛", - "amount": 2000, + "id": "971d2201e466cfc873b7-history", + "label": "제육덮밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a987d030bf513a47ac51-history", - "label": "아메리카노", - "amount": 3000, + "id": "00bf1ea43be2559b2a81-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39438,51 +41240,51 @@ "comments": [] }, { - "id": "goodprice-11363", - "name": "청정바지락칼국수", - "businessName": "청정바지락칼국수", + "id": "goodprice-10374", + "name": "옛고을닭한마리", + "businessName": "옛고을닭한마리", "categorySlug": "korean", - "address": "서울특별시 종로구 창신길 11 1층", - "district": "서울특별시 종로구", - "latitude": 37.5722071295158, - "longitude": 127.010524084538, + "address": "서울특별시 동대문구 사가정로 7 (답십리동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.57060345934798, + "longitude": 127.04900645171843, "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-743-6557", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2215-1316", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d1b6e431f92397f13595", - "label": "칼국수", + "id": "a5d6c5f4d48df6e34156", + "label": "백반", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5e19292dc1860292227e", - "label": "보리비빔밥", - "amount": 6000, + "id": "238155a4ced8f976a7f9", + "label": "닭곰탕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d1b6e431f92397f13595-history", - "label": "칼국수", + "id": "a5d6c5f4d48df6e34156-history", + "label": "백반", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5e19292dc1860292227e-history", - "label": "보리비빔밥", - "amount": 6000, + "id": "238155a4ced8f976a7f9-history", + "label": "닭곰탕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39490,51 +41292,51 @@ "comments": [] }, { - "id": "goodprice-19060", - "name": "체부동잔치집", - "businessName": "체부동잔치집", + "id": "goodprice-10074", + "name": "옛날국수", + "businessName": "옛날국수", "categorySlug": "korean", - "address": "서울특별시 종로구 자하문로1길 16 (체부동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.57655121434925, - "longitude": 126.97150085198783, - "representativePriceAmount": 5000, + "address": "대구광역시 중구 중앙대로 439 향촌동", + "district": "대구광역시 중구", + "latitude": 35.8724146556383, + "longitude": 128.594100102946, + "representativePriceAmount": 2000, "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-730-5420", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-256-1221", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "543d6c9cb6da159d48f2", + "id": "bac684aa9229002191a1", "label": "잔치국수", - "amount": 5000, + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "df6bc34949239d31c0ea", - "label": "비빔국수", - "amount": 6000, + "id": "11e6b304423b06b51aa1", + "label": "연탄불고기(1/2)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "543d6c9cb6da159d48f2-history", + "id": "bac684aa9229002191a1-history", "label": "잔치국수", - "amount": 5000, + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "df6bc34949239d31c0ea-history", - "label": "비빔국수", - "amount": 6000, + "id": "11e6b304423b06b51aa1-history", + "label": "연탄불고기(1/2)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39542,37 +41344,37 @@ "comments": [] }, { - "id": "goodprice-16867", - "name": "카츠연", - "businessName": "카츠연", - "categorySlug": "japanese", - "address": "서울특별시 종로구 삼봉로 81 (수송동) 지하1층 136호", - "district": "서울특별시 종로구", - "latitude": 37.572557012406925, - "longitude": 126.98181439015927, - "representativePriceAmount": 9500, - "representativePriceLabel": "등심돈카츠정식", + "id": "goodprice-18237", + "name": "오뚜기부대찌개", + "businessName": "오뚜기부대찌개", + "categorySlug": "korean", + "address": "서울특별시 동대문구 휘경로 6-5 (이문동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.59590086643286, + "longitude": 127.06081965165868, + "representativePriceAmount": 9000, + "representativePriceLabel": "부대찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 등심돈카츠정식 9,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4015-1318 / 영업시간: 11:00~20:00 (브레이크 타임 14:00~16:00) 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 부대찌개 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-968-0256", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "282f53a585881f3ba58d", - "label": "등심돈카츠정식", - "amount": 9500, + "id": "b8b6728ed032a3cf8b56", + "label": "부대찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "282f53a585881f3ba58d-history", - "label": "등심돈카츠정식", - "amount": 9500, + "id": "b8b6728ed032a3cf8b56-history", + "label": "부대찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39580,79 +41382,93 @@ "comments": [] }, { - "id": "goodprice-13949", - "name": "토리베이커리", - "businessName": "토리베이커리", - "categorySlug": "bakery", - "address": "서울특별시 종로구 옥인길 30-3 (옥인동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.58107428102593, - "longitude": 126.96708919813716, + "id": "goodprice-17977", + "name": "와래이수제꼬치전문점", + "businessName": "와래이수제꼬치전문점", + "categorySlug": "korean", + "address": "대구광역시 중구 달구벌대로450길 16-6 (대봉동) 달구벌대로450길 16-6", + "district": "대구광역시 중구", + "latitude": 35.86127644033642, + "longitude": 128.60713054755325, "representativePriceAmount": 4000, - "representativePriceLabel": "막걸리식빵", + "representativePriceLabel": "닭꼬치", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "막걸리로 반죽해 만든 막걸리 식빵과 바게트, 롤케이크가 유명해요", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-5330-0771 / 영업시간: 영업시간 : 화~토 08:00~21:00 / 일 08:00~17:00 휴무일 : 월요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 닭꼬치 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-254-1553", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1a5cd8cb2b91d3a967d9", - "label": "막걸리식빵", + "id": "597e56444a8edbd0b616", + "label": "닭꼬치", "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "901440c19185c8c9a7fb", + "label": "염통꼬치(8pcs)", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1a5cd8cb2b91d3a967d9-history", - "label": "막걸리식빵", + "id": "597e56444a8edbd0b616-history", + "label": "닭꼬치", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "901440c19185c8c9a7fb-history", + "label": "염통꼬치(8pcs)", + "amount": 5500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-1410", - "name": "남강숯불갈비", - "businessName": "남강숯불갈비", + "id": "goodprice-11559", + "name": "오뚝식당", + "businessName": "오뚝식당", "categorySlug": "korean", - "address": "부산광역시 서구 충무대로 255번길 9 (남부민동)", - "district": "부산광역시 서구", - "latitude": 35.0930541909753, - "longitude": 129.023262189766, - "representativePriceAmount": 8000, + "address": "서울특별시 동대문구 회기로21길 8-18 (회기동)", + "district": "서울특별시 동대문구", + "latitude": 37.591354802446865, + "longitude": 127.05383844362834, + "representativePriceAmount": 9000, "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-254-8108 / 영업시간: 10:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-966-6680", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1575e9926be97211d01f", + "id": "d570a09681399bff3b76", "label": "된장찌개", - "amount": 8000, + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6fade247537c078b9b17", - "label": "돼지갈비(200g)", - "amount": 10000, + "id": "22733cf05a05ebf4c663", + "label": "부대찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8d7ed0c6cdd6b58a57bb", - "label": "돼지갈비 200g", + "id": "e7cb63f8129cbae1d283", + "label": "제육볶음", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -39660,22 +41476,22 @@ ], "history": [ { - "id": "1575e9926be97211d01f-history", + "id": "d570a09681399bff3b76-history", "label": "된장찌개", - "amount": 8000, + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6fade247537c078b9b17-history", - "label": "돼지갈비(200g)", - "amount": 10000, + "id": "22733cf05a05ebf4c663-history", + "label": "부대찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8d7ed0c6cdd6b58a57bb-history", - "label": "돼지갈비 200g", + "id": "e7cb63f8129cbae1d283-history", + "label": "제육볶음", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -39684,34 +41500,27 @@ "comments": [] }, { - "id": "goodprice-19202", - "name": "대신 벚꽃길 빙수", - "businessName": "대신 벚꽃길 빙수", - "categorySlug": "other-food", - "address": "부산광역시 서구 대영로73번길 60 (동대신동3가) 1층", - "district": "부산광역시 서구", - "latitude": 35.11309551348351, - "longitude": 129.0178920843254, - "representativePriceAmount": 8500, - "representativePriceLabel": "팥빙수", + "id": "goodprice-2234", + "name": "신신분식", + "businessName": "신신분식", + "categorySlug": "korean", + "address": "인천광역시 중구 자유공원로27번길 1 (내동)", + "district": "인천광역시 중구", + "latitude": 37.475111739177, + "longitude": 126.627848403961, + "representativePriceAmount": 5500, + "representativePriceLabel": "우동", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 팥빙수 8,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-991-3610", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우동 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-762-0992 / 영업시간: 11:00~16:00 정기휴무(화요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "192dd02a87009f79fc02", - "label": "팥빙수", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "fe4bc5040211a3c91322", - "label": "수제대추차", + "id": "86af0e63ff25026bf1be", + "label": "우동", "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -39719,15 +41528,8 @@ ], "history": [ { - "id": "192dd02a87009f79fc02-history", - "label": "팥빙수", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "fe4bc5040211a3c91322-history", - "label": "수제대추차", + "id": "86af0e63ff25026bf1be-history", + "label": "우동", "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -39736,34 +41538,34 @@ "comments": [] }, { - "id": "goodprice-1388", - "name": "대영탕", - "businessName": "대영탕", - "categorySlug": "bath", - "address": "부산광역시 서구 구덕로 132번길 9 (토성동5가)", - "district": "부산광역시 서구", - "latitude": 35.0972775635676, - "longitude": 129.022430372656, - "representativePriceAmount": 8000, - "representativePriceLabel": "대인", + "id": "goodprice-10366", + "name": "오케이식당", + "businessName": "오케이식당", + "categorySlug": "korean", + "address": "서울특별시 동대문구 장한로18길 36 (장안동)", + "district": "서울특별시 동대문구", + "latitude": 37.56752539395785, + "longitude": 127.07102172457361, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 대인 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-254-9515 / 영업시간: 5:00-18:00 화요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2213-3671", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c09921136ff1eda92c56", - "label": "대인", - "amount": 8000, + "id": "5c89efad35101eb7e3fc", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "079d42a85ae084a4f85b", - "label": "소인", + "id": "e44c40a51119db8b2022", + "label": "잔치국수", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -39771,15 +41573,15 @@ ], "history": [ { - "id": "c09921136ff1eda92c56-history", - "label": "대인", - "amount": 8000, + "id": "5c89efad35101eb7e3fc-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "079d42a85ae084a4f85b-history", - "label": "소인", + "id": "e44c40a51119db8b2022-history", + "label": "잔치국수", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -39788,37 +41590,51 @@ "comments": [] }, { - "id": "goodprice-17930", - "name": "길목식당", - "businessName": "길목식당", + "id": "goodprice-2225", + "name": "신포대패", + "businessName": "신포대패", "categorySlug": "korean", - "address": "대구광역시 동구 평화로 58 (신암동)", - "district": "대구광역시 동구", - "latitude": 35.88437674353279, - "longitude": 128.62015239131767, - "representativePriceAmount": 7500, - "representativePriceLabel": "청국장 찌개", + "address": "인천광역시 중구 개항로 23 (관동3가)", + "district": "인천광역시 중구", + "latitude": 37.4719246800065, + "longitude": 126.625275097774, + "representativePriceAmount": 6000, + "representativePriceLabel": "신포대패(120g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 찌개 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-957-9711 / 영업시간: 영업시간 : 11:00~19:00 정기휴무 : 매주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 신포대패(120g) 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-5237 / 영업시간: 16:00~01:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fc08d8c30de9061924e3", - "label": "청국장 찌개", - "amount": 7500, + "id": "3c524898e96b91558a54", + "label": "신포대패(120g)", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "207a1dad1c0c2af09497", + "label": "냉동삼겹(120g)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fc08d8c30de9061924e3-history", - "label": "청국장 찌개", - "amount": 7500, + "id": "3c524898e96b91558a54-history", + "label": "신포대패(120g)", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "207a1dad1c0c2af09497-history", + "label": "냉동삼겹(120g)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39826,37 +41642,51 @@ "comments": [] }, { - "id": "goodprice-14954", - "name": "날마다좋은집1호점", - "businessName": "날마다좋은집1호점", + "id": "goodprice-10395", + "name": "왕산골만두(그시절그맛)", + "businessName": "왕산골만두(그시절그맛)", "categorySlug": "korean", - "address": "대구광역시 동구 아양로11길 10 (신암동)", - "district": "대구광역시 동구", - "latitude": 35.88346970782011, - "longitude": 128.62034336657473, - "representativePriceAmount": 6000, - "representativePriceLabel": "고딧국(2~3인용)", + "address": "서울특별시 동대문구 고산자로38길 25 (제기동) 경동시장 다-11", + "district": "서울특별시 동대문구", + "latitude": 37.58016480388146, + "longitude": 127.03986720453042, + "representativePriceAmount": 2000, + "representativePriceLabel": "꽈배기(3개)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "평화시장내", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-426-3531 / 영업시간: 월~일 07:30~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 꽈배기(3개) 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8205-2763", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5c8eaef5fd2bdff1f1e7", - "label": "고딧국(2~3인용)", - "amount": 6000, + "id": "734d712ea7606a36b362", + "label": "꽈배기(3개)", + "amount": 2000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c99f7c50018db4a8aea9", + "label": "도너츠(3개)", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5c8eaef5fd2bdff1f1e7-history", - "label": "고딧국(2~3인용)", - "amount": 6000, + "id": "734d712ea7606a36b362-history", + "label": "꽈배기(3개)", + "amount": 2000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c99f7c50018db4a8aea9-history", + "label": "도너츠(3개)", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -39864,62 +41694,34 @@ "comments": [] }, { - "id": "goodprice-1882", - "name": "다모아식당", - "businessName": "다모아식당", + "id": "goodprice-2235", + "name": "신포화로구이", + "businessName": "신포화로구이", "categorySlug": "korean", - "address": "대구광역시 동구 파계로 54 (지묘동)", - "district": "대구광역시 동구", - "latitude": 35.9386980766118, - "longitude": 128.638782921677, - "representativePriceAmount": 5000, - "representativePriceLabel": "해물칼국수", + "address": "인천광역시 중구 신포로 27번길 16 (관동3가)", + "district": "인천광역시 중구", + "latitude": 37.4719823087487, + "longitude": 126.624610999499, + "representativePriceAmount": 7500, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해물칼국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-986-2929 / 영업시간: 월-일 11:00-19:30 브레이크 타임 (평일) 15:00-16:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-777-0099 / 영업시간: 11:30~23:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6d2c4f2204207b6f72c6", - "label": "해물칼국수", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d0d5d0d0eb5ebd7b7cc5", - "label": "돌솥밥정식", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9d5104f078dd60311ed8", - "label": "냉콩국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f76b7f867eca0c9ef39a", - "label": "돌솥밥(청국장)", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f18669a8e1b9c76dec9d", - "label": "잔치국수", - "amount": 4000, + "id": "1425fa97eed209cdb448", + "label": "김치찌개", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "024d3ed0e5148470ae5d", - "label": "해물파전", + "id": "c9773354e1b10224b0e1", + "label": "양푼비빔밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -39927,43 +41729,15 @@ ], "history": [ { - "id": "6d2c4f2204207b6f72c6-history", - "label": "해물칼국수", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d0d5d0d0eb5ebd7b7cc5-history", - "label": "돌솥밥정식", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9d5104f078dd60311ed8-history", - "label": "냉콩국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f76b7f867eca0c9ef39a-history", - "label": "돌솥밥(청국장)", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f18669a8e1b9c76dec9d-history", - "label": "잔치국수", - "amount": 4000, + "id": "1425fa97eed209cdb448-history", + "label": "김치찌개", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "024d3ed0e5148470ae5d-history", - "label": "해물파전", + "id": "c9773354e1b10224b0e1-history", + "label": "양푼비빔밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -39972,27 +41746,41 @@ "comments": [] }, { - "id": "goodprice-17599", - "name": "만석골", - "businessName": "만석골", + "id": "goodprice-18245", + "name": "요집가먹으러", + "businessName": "요집가먹으러", "categorySlug": "korean", - "address": "인천 동구 화도진로192번길 2 1층 101호(만석동, 계성빌라)", - "district": "인천 동구", - "latitude": 37.4859697544878, - "longitude": 126.622682978871, - "representativePriceAmount": 10000, - "representativePriceLabel": "육개장", + "address": "서울특별시 동대문구 왕산로 183 (청량리동)", + "district": "서울특별시 동대문구", + "latitude": 37.57991964573927, + "longitude": 127.043578676224, + "representativePriceAmount": 8000, + "representativePriceLabel": "청국장", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 육개장 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-766-8080 / 영업시간: 월 ~ 금 09:00 ~ 20:00 토 ~ 일 09:00 ~ 17:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-951-6977", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5c8effbc83c0190d935f", - "label": "육개장", + "id": "e330e923cde8ac779051", + "label": "청국장", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "26f2ebb061a12cdcd02c", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f52aa2e013af7b8d77b4", + "label": "갈치조림", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -40000,47 +41788,23 @@ ], "history": [ { - "id": "5c8effbc83c0190d935f-history", - "label": "육개장", - "amount": 10000, + "id": "e330e923cde8ac779051-history", + "label": "청국장", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-19034", - "name": "명가순대", - "businessName": "명가순대", - "categorySlug": "korean", - "address": "인천광역시 동구 화수로 18 (송현동) 명가순대", - "district": "인천광역시 동구", - "latitude": 37.48123968414481, - "longitude": 126.6356097358181, - "representativePriceAmount": 9000, - "representativePriceLabel": "설렁탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 설렁탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-8833 / 영업시간: 매일 05:00 ~ 22:00 라스트오더 21:30", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "30ef5e2080b3669fcc50", - "label": "설렁탕", - "amount": 9000, + "id": "26f2ebb061a12cdcd02c-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "30ef5e2080b3669fcc50-history", - "label": "설렁탕", - "amount": 9000, + "id": "f52aa2e013af7b8d77b4-history", + "label": "갈치조림", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40048,27 +41812,27 @@ "comments": [] }, { - "id": "goodprice-17593", - "name": "모모식당", - "businessName": "모모식당", - "categorySlug": "western", - "address": "인천 동구 화수로 7 1층 102호 (송현동, 센타빌딩)", - "district": "인천 동구", - "latitude": 37.4803199313529, - "longitude": 126.636012820597, + "id": "goodprice-2226", + "name": "신흥숯불갈비", + "businessName": "신흥숯불갈비", + "categorySlug": "korean", + "address": "인천광역시 중구 서해대로454번길 14-2 (선화동)", + "district": "인천광역시 중구", + "latitude": 37.4656929791796, + "longitude": 126.636120369468, "representativePriceAmount": 10000, - "representativePriceLabel": "모모등심돈까스", + "representativePriceLabel": "냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 모모등심돈까스 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-213-2434 / 영업시간: 월 ~ 수 11:00 ~ 18:00 목, 금 11:00 ~ 21:00 토 11:00 ~ 16:00 마지막 주문 영업종료 30분 전 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-883-7717 / 영업시간: 10:00~21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "78c6852bc7f820c55700", - "label": "모모등심돈까스", + "id": "4c4bb3eb690ec16c2d60", + "label": "냉면", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -40076,8 +41840,8 @@ ], "history": [ { - "id": "78c6852bc7f820c55700-history", - "label": "모모등심돈까스", + "id": "4c4bb3eb690ec16c2d60-history", + "label": "냉면", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -40086,51 +41850,51 @@ "comments": [] }, { - "id": "goodprice-2094", - "name": "문성각", - "businessName": "문성각", - "categorySlug": "chinese", - "address": "인천광역시 동구 송미로 35 (송림동) 1층", - "district": "인천광역시 동구", - "latitude": 37.482903570468814, - "longitude": 126.6497277170181, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "id": "goodprice-16155", + "name": "용두동홍가네", + "businessName": "용두동홍가네", + "categorySlug": "korean", + "address": "서울특별시 동대문구 무학로 116 (용두동)", + "district": "서울특별시 동대문구", + "latitude": 37.574482059067876, + "longitude": 127.03087524947837, + "representativePriceAmount": 7000, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "키오스크 주문가능업체", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-777-0400 / 영업시간: 월~토 10:30-20:30 (일) 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2243-2465", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8c2a4191945becceda12", - "label": "짜장면", - "amount": 5000, + "id": "0d124b59030c04e3ed91", + "label": "한식뷔페", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "61eb97c3823468e51966", - "label": "짬뽕", - "amount": 5500, + "id": "d9af6930d1a01a1b18e3", + "label": "감자탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8c2a4191945becceda12-history", - "label": "짜장면", - "amount": 5000, + "id": "0d124b59030c04e3ed91-history", + "label": "한식뷔페", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "61eb97c3823468e51966-history", - "label": "짬뽕", - "amount": 5500, + "id": "d9af6930d1a01a1b18e3-history", + "label": "감자탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40138,117 +41902,107 @@ "comments": [] }, { - "id": "goodprice-2304", - "name": "금강식당", - "businessName": "금강식당", + "id": "goodprice-2266", + "name": "밥s", + "businessName": "밥s", "categorySlug": "korean", - "address": "광주광역시 서구 천변우하로 373 (동천동)", - "district": "광주광역시 서구", - "latitude": 35.1689145192112, - "longitude": 126.861118425373, - "representativePriceAmount": 8000, - "representativePriceLabel": "생고기비빔밥", + "address": "광주광역시 동구 지산로 21 (지산동)", + "district": "광주광역시 동구", + "latitude": 35.1460563034625, + "longitude": 126.931121713111, + "representativePriceAmount": 4500, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생고기비빔밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-514-9111 / 영업시간: 월 ~ 일 11:30~21:30 ※정기휴무 : 매달 2,4번쨰 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-222-2838 / 영업시간: 11:00-20:30 휴일 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9a4a3e71b501e3f98ea9", - "label": "생고기비빔밥", - "amount": 8000, + "id": "6136b6929e51c959155d", + "label": "돈가스", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "394793e4126b57bb9b61", - "label": "곰탕", - "amount": 7000, + "id": "d6867df1620da57623e0", + "label": "치즈돈가스", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "9a4a3e71b501e3f98ea9-history", - "label": "생고기비빔밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "394793e4126b57bb9b61-history", - "label": "곰탕", - "amount": 7000, + "id": "a597f42336e5d96b7b20", + "label": "도리아(치킨 해물 김치 피자)", + "amount": 4500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14921", - "name": "금룡", - "businessName": "금룡", - "categorySlug": "chinese", - "address": "광주광역시 서구 염화로 115 (화정동) 1층", - "district": "광주광역시 서구", - "latitude": 35.1430601138362, - "longitude": 126.87725557866646, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-681-2500", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "ac89c594cedd50a9c52f", - "label": "짜장면", - "amount": 5000, + "id": "ef0be6f803895d3d6426", + "label": "돈까스", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7054eeb78dc41fcdf8d9", - "label": "짬뽕", - "amount": 7000, + "id": "342f62f8f63391446790", + "label": "치즈돈까스", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "006339a87bdef2026eac", - "label": "탕수육", - "amount": 10000, + "id": "a01cf777fefe2a904b13", + "label": "치킨·해물·김치·피자 도리아", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ac89c594cedd50a9c52f-history", - "label": "짜장면", - "amount": 5000, + "id": "6136b6929e51c959155d-history", + "label": "돈가스", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7054eeb78dc41fcdf8d9-history", - "label": "짬뽕", - "amount": 7000, + "id": "d6867df1620da57623e0-history", + "label": "치즈돈가스", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "006339a87bdef2026eac-history", - "label": "탕수육", - "amount": 10000, + "id": "a597f42336e5d96b7b20-history", + "label": "도리아(치킨 해물 김치 피자)", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ef0be6f803895d3d6426-history", + "label": "돈까스", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "342f62f8f63391446790-history", + "label": "치즈돈까스", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a01cf777fefe2a904b13-history", + "label": "치킨·해물·김치·피자 도리아", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40256,51 +42010,65 @@ "comments": [] }, { - "id": "goodprice-2535", - "name": "은성미용실", - "businessName": "은성미용실", - "categorySlug": "beauty", - "address": "대전광역시 동구 새터2길 26 (신흥동)", - "district": "대전광역시 동구", - "latitude": 36.3227027931205, - "longitude": 127.443901827716, - "representativePriceAmount": 8000, - "representativePriceLabel": "미용료(커트)", + "id": "goodprice-16159", + "name": "우담", + "businessName": "우담", + "categorySlug": "korean", + "address": "서울특별시 동대문구 경희대로1가길 39 (회기동)", + "district": "서울특별시 동대문구", + "latitude": 37.59314778861966, + "longitude": 127.05219663105255, + "representativePriceAmount": 8400, + "representativePriceLabel": "양파보쌈정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-283-9633 / 영업시간: 09:00 ~ 19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 양파보쌈정식 8,400원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-3675-4790", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "37be0d2ab415ed738d3e", - "label": "미용료(커트)", - "amount": 8000, + "id": "ef7bcb5d5eb1fa88f1bc", + "label": "양파보쌈정식", + "amount": 8400, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a905416aa2b751b41ef1", - "label": "커트", - "amount": 8000, + "id": "3ac30ccde1e0727473e3", + "label": "양파족발정식", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4bb9944dabaeb32c22d6", + "label": "양파족발보쌈 정식", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "37be0d2ab415ed738d3e-history", - "label": "미용료(커트)", - "amount": 8000, + "id": "ef7bcb5d5eb1fa88f1bc-history", + "label": "양파보쌈정식", + "amount": 8400, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a905416aa2b751b41ef1-history", - "label": "커트", - "amount": 8000, + "id": "3ac30ccde1e0727473e3-history", + "label": "양파족발정식", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4bb9944dabaeb32c22d6-history", + "label": "양파족발보쌈 정식", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40308,79 +42076,65 @@ "comments": [] }, { - "id": "goodprice-14916", - "name": "인동왕만두", - "businessName": "인동왕만두", - "categorySlug": "bakery", - "address": "대전광역시 동구 대전로 697 (인동) 인동", - "district": "대전광역시 동구", - "latitude": 36.32247820088637, - "longitude": 127.43724722008199, - "representativePriceAmount": 6000, - "representativePriceLabel": "왕만두(고기만두)", + "id": "goodprice-10138", + "name": "삼미관", + "businessName": "삼미관", + "categorySlug": "korean", + "address": "광주광역시 동구 백서로189번길 14-32 (서석동)", + "district": "광주광역시 동구", + "latitude": 35.1458043478303, + "longitude": 126.924281394451, + "representativePriceAmount": 8000, + "representativePriceLabel": "간짜장", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 왕만두(고기만두) 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-285-5060 / 영업시간: 09:00 ~ 21:00 / 휴무일(없음) / 전화 예약 후 방문 희망", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 간짜장 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-227-0391 / 영업시간: 월-토 11:00~15:00 휴무일 일요일, 공휴일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f0fcc1791f1af5e614d2", - "label": "왕만두(고기만두)", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "8c447b26dadb7ec7f3c5", - "label": "찐빵", - "amount": 6000, + "id": "cfc2a6194cfcd3eb49bd", + "label": "간짜장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b078934ad6f20c02a892", - "label": "통만두", - "amount": 6000, + "id": "d96115f5ed37a3094072", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f309d63491dbee05d29c", - "label": "김치만두", - "amount": 6000, + "id": "890a2b70ed4f0a4afea8", + "label": "짜장", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f0fcc1791f1af5e614d2-history", - "label": "왕만두(고기만두)", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "8c447b26dadb7ec7f3c5-history", - "label": "찐빵", - "amount": 6000, + "id": "cfc2a6194cfcd3eb49bd-history", + "label": "간짜장", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b078934ad6f20c02a892-history", - "label": "통만두", - "amount": 6000, + "id": "d96115f5ed37a3094072-history", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f309d63491dbee05d29c-history", - "label": "김치만두", - "amount": 6000, + "id": "890a2b70ed4f0a4afea8-history", + "label": "짜장", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40388,51 +42142,51 @@ "comments": [] }, { - "id": "goodprice-16532", - "name": "장가네대구왕뽈데기", - "businessName": "장가네대구왕뽈데기", - "categorySlug": "korean", - "address": "대전광역시 동구 계족로 309-1 (성남동) 1층", - "district": "대전광역시 동구", - "latitude": 36.3400092088714, - "longitude": 127.43610509783201, - "representativePriceAmount": 10000, - "representativePriceLabel": "대구탕(점심)", + "id": "goodprice-11216", + "name": "원더월커피로스터스", + "businessName": "원더월커피로스터스", + "categorySlug": "other-food", + "address": "서울특별시 동대문구 답십리로 80 (답십리동)", + "district": "서울특별시 동대문구", + "latitude": 37.57473338785996, + "longitude": 127.04950893235026, + "representativePriceAmount": 1500, + "representativePriceLabel": "텀블러(to go) 아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 대구탕(점심) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-623-0750 / 영업시간: 11:00 ~ 22:00 영업 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 텀블러(to go) 아메리카노 1,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8754-6467", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4c9720f65b67a96914a9", - "label": "대구탕(점심)", - "amount": 10000, + "id": "5e32191d492db8e71bb7", + "label": "텀블러(to go) 아메리카노", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "433005e702eff3f8a600", - "label": "대구지리(점심)", - "amount": 10000, + "id": "026e2499f5285566b8f2", + "label": "아메리카노", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4c9720f65b67a96914a9-history", - "label": "대구탕(점심)", - "amount": 10000, + "id": "5e32191d492db8e71bb7-history", + "label": "텀블러(to go) 아메리카노", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "433005e702eff3f8a600-history", - "label": "대구지리(점심)", - "amount": 10000, + "id": "026e2499f5285566b8f2-history", + "label": "아메리카노", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40440,103 +42194,93 @@ "comments": [] }, { - "id": "goodprice-2541", - "name": "장성", - "businessName": "장성", - "categorySlug": "chinese", - "address": "대전광역시 동구 우암로 85번길 14 (삼성동)", + "id": "goodprice-16081", + "name": "메밀고개 시골막국수", + "businessName": "메밀고개 시골막국수", + "categorySlug": "korean", + "address": "대전광역시 동구 판교3길 3 (판암동) 메밀고개 시골막국수", "district": "대전광역시 동구", - "latitude": 36.3380538647397, - "longitude": 127.427767366719, + "latitude": 36.31841600671825, + "longitude": 127.45230275069078, "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", + "representativePriceLabel": "메밀만두", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-622-8494 / 영업시간: 평일 10:00 ~ 20:30 / 토요일 10:00 ~ 17:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 메밀만두 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-274-7787 / 영업시간: 11:00~15:00 / 매주 월요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bd5dad9cf4d543d116ab", - "label": "짜장면", + "id": "97255311643d762b605b", + "label": "메밀만두", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b0f389e44b20998e3aab", - "label": "짬뽕", - "amount": 7000, + "id": "eeb9b4250141c8552383", + "label": "물막국수", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "88d4d07894265b8a6606", + "label": "비빔막국수", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5506f93d282204b45f93", + "label": "들깨수제비", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "343123752f9a077f538e", + "label": "수제왕돈까스", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bd5dad9cf4d543d116ab-history", - "label": "짜장면", + "id": "97255311643d762b605b-history", + "label": "메밀만두", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b0f389e44b20998e3aab-history", - "label": "짬뽕", - "amount": 7000, + "id": "eeb9b4250141c8552383-history", + "label": "물막국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15118", - "name": "대박분식", - "businessName": "대박분식", - "categorySlug": "korean", - "address": "울산광역시 남구 월평로171번길 26 (신정동, 신정 지웰) 119호", - "district": "울산광역시 남구", - "latitude": 35.54739693327833, - "longitude": 129.32322710623595, - "representativePriceAmount": 3500, - "representativePriceLabel": "김밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-269-8845", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "001dea35174765d9f088", - "label": "김밥", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" }, { - "id": "4de8849b399edf330cfc", - "label": "즉석떡볶이", - "amount": 4500, + "id": "88d4d07894265b8a6606-history", + "label": "비빔막국수", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "001dea35174765d9f088-history", - "label": "김밥", - "amount": 3500, + "id": "5506f93d282204b45f93-history", + "label": "들깨수제비", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4de8849b399edf330cfc-history", - "label": "즉석떡볶이", - "amount": 4500, + "id": "343123752f9a077f538e-history", + "label": "수제왕돈까스", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40544,65 +42288,65 @@ "comments": [] }, { - "id": "goodprice-18786", - "name": "더짬뽕", - "businessName": "더짬뽕", - "categorySlug": "chinese", - "address": "울산광역시 남구 달삼로23번길 12 (달동) 1층", - "district": "울산광역시 남구", - "latitude": 35.53660268642255, - "longitude": 129.33148195611733, - "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", + "id": "goodprice-16144", + "name": "이도감식당", + "businessName": "이도감식당", + "categorySlug": "korean", + "address": "서울특별시 동대문구 망우로20가길 3 (휘경동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.5899681419076, + "longitude": 127.06325833607585, + "representativePriceAmount": 8000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1356-8941 / 영업시간: 11:00~21:00(15:00~17:00 브레이크 타임), 매주 일요일 휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3295-2250", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d07bbc58d1bc69d24ecf", - "label": "짜장면", - "amount": 6000, + "id": "05773eda91ed79d7e19f", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "56c5e2bb6f86dfa919ad", - "label": "짬뽕", + "id": "9ba066a87238f59011c0", + "label": "된장찌개", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "281e2982ce0d084ed6fe", - "label": "볶음밥", - "amount": 8000, + "id": "3d52f087eae245e75b67", + "label": "우렁된장국", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d07bbc58d1bc69d24ecf-history", - "label": "짜장면", - "amount": 6000, + "id": "05773eda91ed79d7e19f-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "56c5e2bb6f86dfa919ad-history", - "label": "짬뽕", + "id": "9ba066a87238f59011c0-history", + "label": "된장찌개", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "281e2982ce0d084ed6fe-history", - "label": "볶음밥", - "amount": 8000, + "id": "3d52f087eae245e75b67-history", + "label": "우렁된장국", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40610,149 +42354,163 @@ "comments": [] }, { - "id": "goodprice-2899", - "name": "덤", - "businessName": "덤", + "id": "goodprice-16083", + "name": "명동만두", + "businessName": "명동만두", "categorySlug": "korean", - "address": "울산광역시 남구 대학로84번길 5-5", - "district": "울산광역시 남구", - "latitude": 35.5426013606551, - "longitude": 129.260284008748, - "representativePriceAmount": 8000, - "representativePriceLabel": "냉칼국수", + "address": "대전광역시 동구 중앙로203번길 15 (중동) 약수식당", + "district": "대전광역시 동구", + "latitude": 36.331539175383156, + "longitude": 127.43111599831819, + "representativePriceAmount": 7000, + "representativePriceLabel": "비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉칼국수 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-247-1217 / 영업시간: 09:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-256-0444 / 영업시간: 08:00~21:00 / 매주 일요일 정기 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e894e5870be759810379", - "label": "냉칼국수", - "amount": 8000, + "id": "c50ae2d299a22b770fb6", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "20afa0788072fd096daa", - "label": "비빔밥", - "amount": 7500, + "id": "d612c941b5afb28cbb55", + "label": "갈비탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "145e0a0f7c0cc480ddbf", - "label": "돈까스", - "amount": 8500, + "id": "308a680d766079f9851c", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "89861aeffaad32a74408", + "id": "311e61c2b9f273ffde5b", + "label": "콩나물국밥", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c8ea766fc76a33962432", "label": "고기만두", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8b48e1b1f2c3d2d5f552", + "id": "ac610a1e3a8e55b14c7d", "label": "김치만두", - "amount": 5500, + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "55f72c0588a60bea7fa0", - "label": "돌솥비빔밥", + "id": "ece6a8e8eaa8524af341", + "label": "해물라면", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7558ae460acb91350c55", - "label": "비빔냉칼국수", - "amount": 6500, + "id": "fb2169ecf96f3fbec687", + "label": "육개장", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "358013b2f8d11c710126", - "label": "순두부찌개", - "amount": 5500, + "id": "4370c9fb015d10957f20", + "label": "손만두국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "12046d536f8fa84c37c2", - "label": "칼국수정식", - "amount": 5500, + "id": "882daae7dceca67a1b86", + "label": "떡만두국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e894e5870be759810379-history", - "label": "냉칼국수", - "amount": 8000, + "id": "c50ae2d299a22b770fb6-history", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "20afa0788072fd096daa-history", - "label": "비빔밥", - "amount": 7500, + "id": "d612c941b5afb28cbb55-history", + "label": "갈비탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "145e0a0f7c0cc480ddbf-history", - "label": "돈까스", - "amount": 8500, + "id": "308a680d766079f9851c-history", + "label": "냉면", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "311e61c2b9f273ffde5b-history", + "label": "콩나물국밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "89861aeffaad32a74408-history", + "id": "c8ea766fc76a33962432-history", "label": "고기만두", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8b48e1b1f2c3d2d5f552-history", + "id": "ac610a1e3a8e55b14c7d-history", "label": "김치만두", - "amount": 5500, + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "55f72c0588a60bea7fa0-history", - "label": "돌솥비빔밥", + "id": "ece6a8e8eaa8524af341-history", + "label": "해물라면", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7558ae460acb91350c55-history", - "label": "비빔냉칼국수", - "amount": 6500, + "id": "fb2169ecf96f3fbec687-history", + "label": "육개장", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "358013b2f8d11c710126-history", - "label": "순두부찌개", - "amount": 5500, + "id": "4370c9fb015d10957f20-history", + "label": "손만두국", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "12046d536f8fa84c37c2-history", - "label": "칼국수정식", - "amount": 5500, + "id": "882daae7dceca67a1b86-history", + "label": "떡만두국", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40760,65 +42518,51 @@ "comments": [] }, { - "id": "goodprice-3377", - "name": "못골해장국", - "businessName": "못골해장국", - "categorySlug": "korean", - "address": "경기도 수원시 권선구 금호로246번길 15-4 1층", - "district": "경기도 수원시", - "latitude": 37.2749502849126, - "longitude": 126.977331077535, - "representativePriceAmount": 6000, - "representativePriceLabel": "선지해장국", + "id": "goodprice-18250", + "name": "이문동커피집 크럼블로스터스", + "businessName": "이문동커피집 크럼블로스터스", + "categorySlug": "other-food", + "address": "서울특별시 동대문구 이문로25길 39 (이문동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.59546788028201, + "longitude": 127.05733028386251, + "representativePriceAmount": 2300, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 선지해장국 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-278-3493 / 영업시간: 7:30~22:00(일요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,300원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-8776-4147", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9064d3f7f7a5797a739b", - "label": "선지해장국", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6413d606230165e43711", - "label": "소고기해장국", - "amount": 7000, + "id": "755b2ee9d6c8748c7034", + "label": "아메리카노", + "amount": 2300, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "800b0a84dae4856c753e", - "label": "설렁탕", - "amount": 9000, + "id": "137bddf73f5a6f01e04c", + "label": "카페라떼", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9064d3f7f7a5797a739b-history", - "label": "선지해장국", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6413d606230165e43711-history", - "label": "소고기해장국", - "amount": 7000, + "id": "755b2ee9d6c8748c7034-history", + "label": "아메리카노", + "amount": 2300, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "800b0a84dae4856c753e-history", - "label": "설렁탕", - "amount": 9000, + "id": "137bddf73f5a6f01e04c-history", + "label": "카페라떼", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40826,65 +42570,79 @@ "comments": [] }, { - "id": "goodprice-16346", - "name": "몽뻬르베이커리카페", - "businessName": "몽뻬르베이커리카페", - "categorySlug": "bakery", - "address": "경기도 수원시 장안구 파장로 70 (파장동)", - "district": "경기도 수원시", - "latitude": 37.30605816813522, - "longitude": 126.9931791203893, - "representativePriceAmount": 2900, - "representativePriceLabel": "아메리카노", + "id": "goodprice-2545", + "name": "미가칼국수", + "businessName": "미가칼국수", + "categorySlug": "korean", + "address": "대전광역시 동구 백룡로 3 (자양동)", + "district": "대전광역시 동구", + "latitude": 36.3365141375393, + "longitude": 127.447715649929, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 아메리카노 2,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-246-5474 / 영업시간: 07:30~22:30 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-621-7533 / 영업시간: 11:00 ~ 15:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2106e101e023522278b0", - "label": "아메리카노", - "amount": 2900, + "id": "a2fbf71b41db68773f98", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2f26d11f7e5d2e63a6fd", - "label": "소금빵", - "amount": 2700, + "id": "5678b4d0b4e5f8abb3e3", + "label": "수제비", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2361f79e49285ec49000", + "label": "양푼이 비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2a1ac105924001f565d3", - "label": "에그타르트", - "amount": 2400, + "id": "f8cfcf148953e283f06c", + "label": "칼제비", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2106e101e023522278b0-history", - "label": "아메리카노", - "amount": 2900, + "id": "a2fbf71b41db68773f98-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2f26d11f7e5d2e63a6fd-history", - "label": "소금빵", - "amount": 2700, + "id": "5678b4d0b4e5f8abb3e3-history", + "label": "수제비", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2361f79e49285ec49000-history", + "label": "양푼이 비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2a1ac105924001f565d3-history", - "label": "에그타르트", - "amount": 2400, + "id": "f8cfcf148953e283f06c-history", + "label": "칼제비", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40892,65 +42650,51 @@ "comments": [] }, { - "id": "goodprice-3403", - "name": "문화미용실", - "businessName": "문화미용실", - "categorySlug": "beauty", - "address": "경기도 수원시 장안구 정조로 934번길 29-18 (영화동)", - "district": "경기도 수원시", - "latitude": 37.2923701800345, - "longitude": 127.013797271773, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트", + "id": "goodprice-13486", + "name": "인더베이글(InTheBagel)", + "businessName": "인더베이글(InTheBagel)", + "categorySlug": "other-food", + "address": "서울특별시 동대문구 회기로13길 19 (회기동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.59230617495015, + "longitude": 127.0508771710477, + "representativePriceAmount": 8500, + "representativePriceLabel": "훈제연어 샌드", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-256-1463 / 영업시간: 08:30~18:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 훈제연어 샌드 8,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1374-3338 / 영업시간: 샐러드(또는 샌드위치) 주문 시 음료 1,000원 할인", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bea0ee0cc07144323db6", - "label": "커트", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2583e71337de3ab3e874", - "label": "경로커트", - "amount": 5000, + "id": "7511250bc54f1b292925", + "label": "훈제연어 샌드", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c77aa4236003c0ea4d7c", - "label": "컷 커트", - "amount": 5000, + "id": "50289ac4678320e688cb", + "label": "잠봉뵈르 샌드", + "amount": 5900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bea0ee0cc07144323db6-history", - "label": "커트", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2583e71337de3ab3e874-history", - "label": "경로커트", - "amount": 5000, + "id": "7511250bc54f1b292925-history", + "label": "훈제연어 샌드", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c77aa4236003c0ea4d7c-history", - "label": "컷 커트", - "amount": 5000, + "id": "50289ac4678320e688cb-history", + "label": "잠봉뵈르 샌드", + "amount": 5900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40958,37 +42702,51 @@ "comments": [] }, { - "id": "goodprice-16643", - "name": "실비아미용실", - "businessName": "실비아미용실", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 춘천로296번길 18 (후평동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.879961550470746, - "longitude": 127.74662200640537, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-2995", + "name": "엄마네뷔페", + "businessName": "엄마네뷔페", + "categorySlug": "korean", + "address": "울산광역시 중구 당산4길 22 (우정동)", + "district": "울산광역시 중구", + "latitude": 35.5537031836629, + "longitude": 129.310593372233, + "representativePriceAmount": 7000, + "representativePriceLabel": "정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-5746 / 영업시간: 매일 09:00~20:00 일요일 비정기적 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 정기휴무(매주 일요일 오후) 08:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "45b88ff303770e9f315a", - "label": "커트", - "amount": 10000, + "id": "b58d6aa93223736e0c1a", + "label": "정식", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "82e599b443c7424b8ca9", + "label": "삼겹살(120g)", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "45b88ff303770e9f315a-history", - "label": "커트", - "amount": 10000, + "id": "b58d6aa93223736e0c1a-history", + "label": "정식", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "82e599b443c7424b8ca9-history", + "label": "삼겹살(120g)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -40996,51 +42754,51 @@ "comments": [] }, { - "id": "goodprice-10306", - "name": "쌍다리이용소", - "businessName": "쌍다리이용소", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 춘천순환로 42 상가동 101호 (석사동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8546857141914, - "longitude": 127.748703975697, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트", + "id": "goodprice-18515", + "name": "일심해장국 본점", + "businessName": "일심해장국 본점", + "categorySlug": "korean", + "address": "서울특별시 동대문구 장한로 179 (장안동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.57648686602377, + "longitude": 127.0717319866918, + "representativePriceAmount": 7000, + "representativePriceLabel": "해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-5087 / 영업시간: 06:30 - 16:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해장국 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2243-4525", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9aa42ad17ee018b1bd89", - "label": "커트", - "amount": 5000, + "id": "a9678110043807661f92", + "label": "해장국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b73481d284ed2e99cc7f", - "label": "염색", - "amount": 10000, + "id": "4196868cc39cdcb3270a", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9aa42ad17ee018b1bd89-history", - "label": "커트", - "amount": 5000, + "id": "a9678110043807661f92-history", + "label": "해장국", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b73481d284ed2e99cc7f-history", - "label": "염색", - "amount": 10000, + "id": "4196868cc39cdcb3270a-history", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41048,65 +42806,51 @@ "comments": [] }, { - "id": "goodprice-15784", - "name": "또또와식당", - "businessName": "또또와식당", - "categorySlug": "korean", - "address": "충청북도 청주시 서원구 내수동로108번길 43 (사창동) 1층", - "district": "충청북도 청주시", - "latitude": 36.63225988198158, - "longitude": 127.45773160968325, - "representativePriceAmount": 6000, - "representativePriceLabel": "순두부찌개", + "id": "goodprice-16557", + "name": "에뜨왈베이커리", + "businessName": "에뜨왈베이커리", + "categorySlug": "bakery", + "address": "울산광역시 중구 화합로 492-1 (복산동) 1층", + "district": "울산광역시 중구", + "latitude": 35.5679065905029, + "longitude": 129.33295718527037, + "representativePriceAmount": 1200, + "representativePriceLabel": "단팥빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "21eba5670c5beeeef39b", - "label": "순두부찌개", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵 1,200원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-227-8388 / 영업시간: 월~금 09:00~22:30 토 12:00~22:00 매주 일요일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "ac1b42677e78df2a8034", - "label": "육개장", - "amount": 7000, + "id": "78580876c5b89eb11ad0", + "label": "단팥빵", + "amount": 1200, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c772de53f9f2f7d24ed0", - "label": "제육덮밥", - "amount": 7000, + "id": "79c7ebef2540ba79e16b", + "label": "소보루빵", + "amount": 1200, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "21eba5670c5beeeef39b-history", - "label": "순두부찌개", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ac1b42677e78df2a8034-history", - "label": "육개장", - "amount": 7000, + "id": "78580876c5b89eb11ad0-history", + "label": "단팥빵", + "amount": 1200, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c772de53f9f2f7d24ed0-history", - "label": "제육덮밥", - "amount": 7000, + "id": "79c7ebef2540ba79e16b-history", + "label": "소보루빵", + "amount": 1200, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41114,51 +42858,65 @@ "comments": [] }, { - "id": "goodprice-15782", - "name": "럭키마라탕 양꼬치", - "businessName": "럭키마라탕 양꼬치", - "categorySlug": "chinese", - "address": "충청북도 청주시 서원구 서원남로 27-1 (모충동) 1층", - "district": "충청북도 청주시", - "latitude": 36.622339731999546, - "longitude": 127.4846288209598, - "representativePriceAmount": 1800, - "representativePriceLabel": "마라탕(100g)", + "id": "goodprice-16152", + "name": "자매분식", + "businessName": "자매분식", + "categorySlug": "korean", + "address": "서울특별시 동대문구 경희대로1가길 15 (회기동)", + "district": "서울특별시 동대문구", + "latitude": 37.59254506899683, + "longitude": 127.05139492741468, + "representativePriceAmount": 10000, + "representativePriceLabel": "오징어볶음", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 마라탕(100g) 1,800원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 오징어볶음 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-960-7455", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1d4bf421ff127782174c", - "label": "마라탕(100g)", - "amount": 1800, + "id": "3e7a214d4b85fc7bfdef", + "label": "오징어볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7478c39ae8e27d3a91ca", - "label": "마라향궈(100g)", - "amount": 3000, + "id": "73c06fae5a25811c7458", + "label": "김치제육볶음", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ad037e49e202e21600c7", + "label": "뚝불고기", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1d4bf421ff127782174c-history", - "label": "마라탕(100g)", - "amount": 1800, + "id": "3e7a214d4b85fc7bfdef-history", + "label": "오징어볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7478c39ae8e27d3a91ca-history", - "label": "마라향궈(100g)", - "amount": 3000, + "id": "73c06fae5a25811c7458-history", + "label": "김치제육볶음", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ad037e49e202e21600c7-history", + "label": "뚝불고기", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41166,37 +42924,37 @@ "comments": [] }, { - "id": "goodprice-19234", - "name": "부흥만두", - "businessName": "부흥만두", + "id": "goodprice-11677", + "name": "옥교국밥", + "businessName": "옥교국밥", "categorySlug": "korean", - "address": "충청남도 천안시 동남구 사직로 30 (사직동) 부흥만두", - "district": "충청남도 천안시", - "latitude": 36.802733785154345, - "longitude": 127.14941788531904, - "representativePriceAmount": 6000, - "representativePriceLabel": "고기만두 10개", + "address": "울산광역시 중구 중앙시장길 2-5 (옥교동)", + "district": "울산광역시 중구", + "latitude": 35.5550846130913, + "longitude": 129.322138841423, + "representativePriceAmount": 9000, + "representativePriceLabel": "돼지국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고기만두 10개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1412-5388", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지국밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-245-1163", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "10655db6d6adc70e0943", - "label": "고기만두 10개", - "amount": 6000, + "id": "aca3f745e94361f51d8f", + "label": "돼지국밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "10655db6d6adc70e0943-history", - "label": "고기만두 10개", - "amount": 6000, + "id": "aca3f745e94361f51d8f-history", + "label": "돼지국밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41204,103 +42962,79 @@ "comments": [] }, { - "id": "goodprice-4926", - "name": "북경중화요리", - "businessName": "북경중화요리", - "categorySlug": "chinese", - "address": "충청남도 천안시 동남구 신부1길 6 (신부동)", - "district": "충청남도 천안시", - "latitude": 36.8141759551811, - "longitude": 127.158996108759, - "representativePriceAmount": 6500, - "representativePriceLabel": "짜장면", + "id": "goodprice-512", + "name": "장안골", + "businessName": "장안골", + "categorySlug": "korean", + "address": "서울특별시 동대문구 답십리로65길 124-3 (장안동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.57818191527725, + "longitude": 127.07041173721838, + "representativePriceAmount": 7000, + "representativePriceLabel": "뚝배기불고기", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-554-1585 / 영업시간: 10:30~20:00 정기휴무(매주 일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뚝배기불고기 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2242-9476 / 영업시간: 매일 10:00-24:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "16cdc28a91d8d38eba08", - "label": "짜장면", - "amount": 6500, + "id": "a68cd0c99b1340e35512", + "label": "뚝배기불고기", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "475fdd9a2830734ec3af", - "label": "짬뽕", - "amount": 7500, + "id": "1627cf57a298f3177a46", + "label": "갈치조림", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "16cdc28a91d8d38eba08-history", - "label": "짜장면", - "amount": 6500, + "id": "d66c8ac21ff4d702b7e8", + "label": "청국된장", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "475fdd9a2830734ec3af-history", - "label": "짬뽕", - "amount": 7500, + "id": "9ce69eaae2c304a0dbd5", + "label": "잔치국수", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" } ], - "comments": [] - }, - { - "id": "goodprice-4965", - "name": "비비헤어샵", - "businessName": "비비헤어샵", - "categorySlug": "beauty", - "address": "충청남도 천안시 서북구 미라2길 26-1 (쌍용동)", - "district": "충청남도 천안시", - "latitude": 36.8018297147943, - "longitude": 127.129696210405, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-571-1666 / 영업시간: 09:00~19:00 정기휴무(매주 화요일)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "history": [ { - "id": "6bed5ad955e9f4b19c53", - "label": "커트", - "amount": 5000, + "id": "a68cd0c99b1340e35512-history", + "label": "뚝배기불고기", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "e4ebcd60513ed1dc2f88", - "label": "염색", - "amount": 10000, + "id": "1627cf57a298f3177a46-history", + "label": "갈치조림", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "6bed5ad955e9f4b19c53-history", - "label": "커트", - "amount": 5000, + "id": "d66c8ac21ff4d702b7e8-history", + "label": "청국된장", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e4ebcd60513ed1dc2f88-history", - "label": "염색", - "amount": 10000, + "id": "9ce69eaae2c304a0dbd5-history", + "label": "잔치국수", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41308,51 +43042,51 @@ "comments": [] }, { - "id": "goodprice-16875", - "name": "빵미당", - "businessName": "빵미당", - "categorySlug": "other-food", - "address": "충청남도 천안시 동남구 충절로 407 (삼룡동) 1층", - "district": "충청남도 천안시", - "latitude": 36.78497963691765, - "longitude": 127.16873525335542, - "representativePriceAmount": 1700, - "representativePriceLabel": "단팥빵", + "id": "goodprice-2996", + "name": "유가냉면", + "businessName": "유가냉면", + "categorySlug": "korean", + "address": "울산광역시 중구 먹자거리 12 (성남동)", + "district": "울산광역시 중구", + "latitude": 35.5545078517398, + "longitude": 129.320075389132, + "representativePriceAmount": 9000, + "representativePriceLabel": "물냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 단팥빵 1,700원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1387-9046 / 영업시간: 영업시간 09:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물냉면 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-258-6696 / 영업시간: 11:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bf1885fffc022f5eea39", - "label": "단팥빵", - "amount": 1700, + "id": "d83cde0a7c9287fcab3d", + "label": "물냉면", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c9e51551cbd7fd5a6f4b", - "label": "소금빵", - "amount": 2300, + "id": "568b249cfe73386e6316", + "label": "비빔냉면", + "amount": 9500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bf1885fffc022f5eea39-history", - "label": "단팥빵", - "amount": 1700, + "id": "d83cde0a7c9287fcab3d-history", + "label": "물냉면", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c9e51551cbd7fd5a6f4b-history", - "label": "소금빵", - "amount": 2300, + "id": "568b249cfe73386e6316-history", + "label": "비빔냉면", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41360,357 +43094,219 @@ "comments": [] }, { - "id": "goodprice-5424", - "name": "한들각중화요리", - "businessName": "한들각중화요리", - "categorySlug": "chinese", - "address": "전북특별자치도 전주시 완산구 안행로 112 1층", - "district": "전북특별자치도 전주시", - "latitude": 35.8062940498025, - "longitude": 127.134355429754, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "id": "goodprice-513", + "name": "장진주", + "businessName": "장진주", + "categorySlug": "korean", + "address": "서울특별시 동대문구 약령동길 97 (제기동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.582681211562026, + "longitude": 127.03787002162649, + "representativePriceAmount": 9000, + "representativePriceLabel": "콩나물비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-232-0317 / 영업시간: 월-토 11:00-20:00 (일요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물비빔밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-957-3993", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4a1a8397c84b6f53b388", - "label": "짜장면", - "amount": 5000, + "id": "ef7e4d3809c649943e8c", + "label": "콩나물비빔밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6e1a3d4f5eed4c51944c", - "label": "짬뽕", - "amount": 7000, + "id": "ac6f34ff4c2748fb38ed", + "label": "제육볶음", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f4825804819d3d1e2aa6", - "label": "간짜장", - "amount": 6500, + "id": "3468d97a4430720a3bc7", + "label": "부대찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fe56e6102618036662d4", - "label": "볶음밥", - "amount": 6000, + "id": "665f5d0aa2e4415a2343", + "label": "갈치", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "29ab561b719d4d2d6e5d", - "label": "옛날짜장", - "amount": 4500, + "id": "3b01665f4599c5ae4cd5", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6b28d9f1b0df05fce879", - "label": "우동", - "amount": 6000, + "id": "380fafdd7a0c0a721d10", + "label": "동태찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ac425c5c0b61fcb59e95", - "label": "울면", - "amount": 7000, + "id": "39dd27c00e737c8917da", + "label": "된장지개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ff480b7ec328d2e5577b", - "label": "짜장밥", - "amount": 5000, + "id": "157e04a1f16cf59c8e07", + "label": "뚝배기불고기", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6af1c8f378c77817ee38", - "label": "짬뽕밥", - "amount": 7000, + "id": "b101900d6ded08b1f2f5", + "label": "만두버섯전골", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "4a1a8397c84b6f53b388-history", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6e1a3d4f5eed4c51944c-history", - "label": "짬뽕", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f4825804819d3d1e2aa6-history", - "label": "간짜장", - "amount": 6500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "fe56e6102618036662d4-history", - "label": "볶음밥", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "29ab561b719d4d2d6e5d-history", - "label": "옛날짜장", - "amount": 4500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6b28d9f1b0df05fce879-history", - "label": "우동", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "ac425c5c0b61fcb59e95-history", - "label": "울면", - "amount": 7000, + "id": "bef0999ec593b94a0f6e", + "label": "새싹비빔밥", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "ff480b7ec328d2e5577b-history", - "label": "짜장밥", - "amount": 5000, + "id": "03ffd69e5e1459b45d15", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "6af1c8f378c77817ee38-history", - "label": "짬뽕밥", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5447", - "name": "한일옥", - "businessName": "한일옥", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 완산구 중산중앙로 29", - "district": "전북특별자치도 전주시", - "latitude": 35.8166803897759, - "longitude": 127.121458191969, - "representativePriceAmount": 9000, - "representativePriceLabel": "한우육회비빔밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한우육회비빔밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-222-3118", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "bacb331e39554986ce43", - "label": "한우육회비빔밥", - "amount": 9000, + "id": "c5f38598a75f02137bac", + "label": "오삼불고기", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "34c0260d89d2de425971", - "label": "한우선지해장국", - "amount": 7000, + "id": "a35608fca49a86f1994f", + "label": "오징어볶음", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a2e839c25eb27272b6e8", - "label": "소불고기쌈밥", - "amount": 7000, + "id": "ec69b6e4fc47e9198cd0", + "label": "조기찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bacb331e39554986ce43-history", - "label": "한우육회비빔밥", + "id": "ef7e4d3809c649943e8c-history", + "label": "콩나물비빔밥", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "34c0260d89d2de425971-history", - "label": "한우선지해장국", - "amount": 7000, + "id": "ac6f34ff4c2748fb38ed-history", + "label": "제육볶음", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a2e839c25eb27272b6e8-history", - "label": "소불고기쌈밥", - "amount": 7000, + "id": "3468d97a4430720a3bc7-history", + "label": "부대찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15997", - "name": "향촌", - "businessName": "향촌", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 덕진구 숲정이4길 3 (진북동, 다세대주택)", - "district": "전북특별자치도 전주시", - "latitude": 35.82908945757786, - "longitude": 127.13270073754536, - "representativePriceAmount": 8000, - "representativePriceLabel": "김치찌개", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-252-5733 / 영업시간: 월요일 ~ 토요일 : 11:00 ~ 21:00 일요일 : 정기휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, + { + "id": "665f5d0aa2e4415a2343-history", + "label": "갈치", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, { - "id": "5786ce054b6cb420fc3d", + "id": "3b01665f4599c5ae4cd5-history", "label": "김치찌개", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "e3e51df36981f7fda0de", - "label": "된장찌개", + "id": "380fafdd7a0c0a721d10-history", + "label": "동태찌개", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "5786ce054b6cb420fc3d-history", - "label": "김치찌개", + "id": "39dd27c00e737c8917da-history", + "label": "된장지개", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e3e51df36981f7fda0de-history", - "label": "된장찌개", + "id": "157e04a1f16cf59c8e07-history", + "label": "뚝배기불고기", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11766", - "name": "훈희국수", - "businessName": "훈희국수", - "categorySlug": "korean", - "address": "전북특별자치도 전주시 덕진구 우아8길 8", - "district": "전북특별자치도 전주시", - "latitude": 35.8506326095344, - "longitude": 127.156849553268, - "representativePriceAmount": 8000, - "representativePriceLabel": "백반(청국장 육개장 뼈다귀탕)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반(청국장 육개장 뼈다귀탕) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-247-1275", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "9c50e24fb473d02c3117", - "label": "백반(청국장 육개장 뼈다귀탕)", + "id": "b101900d6ded08b1f2f5-history", + "label": "만두버섯전골", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "9c50e24fb473d02c3117-history", - "label": "백반(청국장 육개장 뼈다귀탕)", + "id": "bef0999ec593b94a0f6e-history", + "label": "새싹비빔밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5711", - "name": "개성미용실", - "businessName": "개성미용실", - "categorySlug": "beauty", - "address": "전라남도 여수시 율촌면 당머리길3-1", - "district": "전라남도 여수시", - "latitude": 34.882586423451, - "longitude": 127.579141600752, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-684-7114", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "74b6a197d8d642642465", - "label": "커트", - "amount": 10000, + "id": "03ffd69e5e1459b45d15-history", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "4acc797fd060f61b1720", - "label": "드라이", - "amount": 10000, + "id": "c5f38598a75f02137bac-history", + "label": "오삼불고기", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "74b6a197d8d642642465-history", - "label": "커트", - "amount": 10000, + "id": "a35608fca49a86f1994f-history", + "label": "오징어볶음", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4acc797fd060f61b1720-history", - "label": "드라이", - "amount": 10000, + "id": "ec69b6e4fc47e9198cd0-history", + "label": "조기찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41718,37 +43314,37 @@ "comments": [] }, { - "id": "goodprice-11806", - "name": "광장서대회", - "businessName": "광장서대회", - "categorySlug": "korean", - "address": "전라남도 여수시 이순신광장로 196 (종화동) A동 1층", - "district": "전라남도 여수시", - "latitude": 34.73862390148165, - "longitude": 127.74443243353089, - "representativePriceAmount": 10000, - "representativePriceLabel": "서대회(1인)", + "id": "goodprice-10196", + "name": "스페이스", + "businessName": "스페이스", + "categorySlug": "western", + "address": "세종특별자치시 한누리대로 311 110호~111호", + "district": "세종특별자치시 한누리대로", + "latitude": 36.492070617908, + "longitude": 127.255836690696, + "representativePriceAmount": 9900, + "representativePriceLabel": "갈릭누들파스타", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 서대회(1인) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-666-2013", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 갈릭누들파스타 9,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-863-1122", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e1ed8b2ea24c74ee5707", - "label": "서대회(1인)", - "amount": 10000, + "id": "1fe89e56e0a7ce8d8911", + "label": "갈릭누들파스타", + "amount": 9900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e1ed8b2ea24c74ee5707-history", - "label": "서대회(1인)", - "amount": 10000, + "id": "1fe89e56e0a7ce8d8911-history", + "label": "갈릭누들파스타", + "amount": 9900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41756,169 +43352,107 @@ "comments": [] }, { - "id": "goodprice-11807", - "name": "광장서대회(이순신광장점)", - "businessName": "광장서대회(이순신광장점)", + "id": "goodprice-514", + "name": "전주곰탕", + "businessName": "전주곰탕", "categorySlug": "korean", - "address": "전라남도 여수시 이순신광장로 129 (중앙동) 1층(교동)", - "district": "전라남도 여수시", - "latitude": 34.738245805249676, - "longitude": 127.73846543180578, + "address": "서울특별시 동대문구 답십리로51길 15-12 (답십리동) 12호", + "district": "서울특별시 동대문구", + "latitude": 37.57341419897548, + "longitude": 127.05829549805017, "representativePriceAmount": 10000, - "representativePriceLabel": "서대회(1인)", + "representativePriceLabel": "소머리국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 서대회(1인) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1384-2782", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소머리국밥 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2249-3399", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ac7acc6cb07539ed0329", - "label": "서대회(1인)", + "id": "6edbc228b52789c004b2", + "label": "소머리국밥", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "ac7acc6cb07539ed0329-history", - "label": "서대회(1인)", + "id": "3d5a08826cb936237cc3", + "label": "도가니탕", "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16128", - "name": "다정한정식", - "businessName": "다정한정식", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 장기면 동해안로 3273 다정한정식", - "district": "경상북도 포항시", - "latitude": 35.87919614059732, - "longitude": 129.5172000677791, - "representativePriceAmount": 7000, - "representativePriceLabel": "한정식", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-284-9005", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "6efd879d6b330dcbc73b", - "label": "한정식", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "6efd879d6b330dcbc73b-history", - "label": "한정식", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-6423", - "name": "닥터크리닝", - "businessName": "닥터크리닝", - "categorySlug": "laundry", - "address": "경상북도 포항시 북구 삼호로253번길 14-1", - "district": "경상북도 포항시", - "latitude": 36.0612792841722, - "longitude": 129.378003776355, - "representativePriceAmount": 4000, - "representativePriceLabel": "세탁료 (상의)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 세탁료 (상의) 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-249-4519 / 영업시간: 금요일08:00-21:00점심시간:12:00~14:00 평일08:00-21:00점심시간:12:00~14:00 토요일08:00-21:00점심시간:12:00~14:00 월요일08:00-21:00점심시간:12:00~14:00 화요일08:00-21:00점심시간:12:00~14:00 수요일08:00-21:00점심시간:12:00~14:00 목요일08:00-21:00점심시간:12:00~14:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "1740a924887f2f0d4e3d", - "label": "세탁료 (상의)", - "amount": 4000, - "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fbe0cf783713abbcefba", - "label": "세탁료 (하의)", - "amount": 3000, + "id": "b8efb0284787386dc198", + "label": "도가니탕(보통)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "8b3c5a3df8c1c136604f", - "label": "세탁료 (와이셔츠)", - "amount": 3000, + }, + { + "id": "e9cd471198f7609d26cd", + "label": "뚝배기제육볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "401226d6dc07b2269f3e", - "label": "상의", - "amount": 4000, + "id": "94d223878ef04b18f439", + "label": "설럴탕(보통)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ef27105aa9f326ba96ab", - "label": "하의", - "amount": 3000, + "id": "ab3db6cd63df51803b30", + "label": "소머리국밥(보통)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1740a924887f2f0d4e3d-history", - "label": "세탁료 (상의)", - "amount": 4000, + "id": "6edbc228b52789c004b2-history", + "label": "소머리국밥", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fbe0cf783713abbcefba-history", - "label": "세탁료 (하의)", - "amount": 3000, + "id": "3d5a08826cb936237cc3-history", + "label": "도가니탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8b3c5a3df8c1c136604f-history", - "label": "세탁료 (와이셔츠)", - "amount": 3000, + "id": "b8efb0284787386dc198-history", + "label": "도가니탕(보통)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "401226d6dc07b2269f3e-history", - "label": "상의", - "amount": 4000, + "id": "e9cd471198f7609d26cd-history", + "label": "뚝배기제육볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ef27105aa9f326ba96ab-history", - "label": "하의", - "amount": 3000, + "id": "94d223878ef04b18f439-history", + "label": "설럴탕(보통)", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ab3db6cd63df51803b30-history", + "label": "소머리국밥(보통)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41926,51 +43460,51 @@ "comments": [] }, { - "id": "goodprice-18356", - "name": "달전밀면", - "businessName": "달전밀면", + "id": "goodprice-10186", + "name": "시장감자탕", + "businessName": "시장감자탕", "categorySlug": "korean", - "address": "경상북도 포항시 북구 흥해읍 도음로917번길 12 달전밀면", - "district": "경상북도 포항시", - "latitude": 36.07939354295344, - "longitude": 129.33344894912452, + "address": "세종특별자치시 조치원읍 조치원로 30-8 101호", + "district": "세종특별자치시 조치원읍", + "latitude": 36.6012589737358, + "longitude": 127.300019359062, "representativePriceAmount": 7000, - "representativePriceLabel": "밀면", + "representativePriceLabel": "뼈해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 밀면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-261-6468", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-862-6513", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d29991997b0a39fe2bfd", - "label": "밀면", + "id": "2c8c36853a41b93faaaa", + "label": "뼈해장국", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3edc7640163c7edae4af", - "label": "비빔밀면", - "amount": 7000, + "id": "d41544045b8a3d54de98", + "label": "콩나물해장국", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d29991997b0a39fe2bfd-history", - "label": "밀면", + "id": "2c8c36853a41b93faaaa-history", + "label": "뼈해장국", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3edc7640163c7edae4af-history", - "label": "비빔밀면", - "amount": 7000, + "id": "d41544045b8a3d54de98-history", + "label": "콩나물해장국", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -41978,131 +43512,163 @@ "comments": [] }, { - "id": "goodprice-6424", - "name": "대명세탁소", - "businessName": "대명세탁소", - "categorySlug": "laundry", - "address": "경상북도 포항시 북구 중흥로213번길 18-1", - "district": "경상북도 포항시", - "latitude": 36.0236667659089, - "longitude": 129.356179134247, - "representativePriceAmount": 2500, - "representativePriceLabel": "와이셔츠", + "id": "goodprice-497", + "name": "정성서울국수집", + "businessName": "정성서울국수집", + "categorySlug": "korean", + "address": "서울특별시 동대문구 이문로 166 (이문동) 캠퍼스빌 101호", + "district": "서울특별시 동대문구", + "latitude": 37.60131518930494, + "longitude": 127.06226389136587, + "representativePriceAmount": 5000, + "representativePriceLabel": "멸치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 와이셔츠 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-275-9579 / 영업시간: 08시~20시30분 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-966-0579 / 영업시간: 15:00에브레이크타임 15시0분에브레이크타임 금 11:00-21:00 15:00-16:00브레이크타임 토 11:00-21:00 15:00-16:00브레이크타임 일 정기휴무(매주일요일) 월 11:00-21:00 15:00-16:00브레이크타임 화 11:00-21:00 15:00-16:00브레이크타임 수 11:00-21:00 15:00-16:00브레이크타임 목 11:00-21:00 15:00-16:00브레이크타임", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3a69b57acdb01a64e464", - "label": "와이셔츠", - "amount": 2500, + "id": "e4746e6177896c8a4166", + "label": "멸치국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f92394eaa0f366071c6f", - "label": "양복", - "amount": 8000, + "id": "c0ea9c91cf6f1b13a3c7", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "41da7d4d46fa19f3a149", - "label": "상의", - "amount": 4000, + "id": "e6d14bb1221893b576ec", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "3a69b57acdb01a64e464-history", - "label": "와이셔츠", - "amount": 2500, + "id": "1ace961910292109b062", + "label": "꼬마김밥(3개)", + "amount": 2000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "f92394eaa0f366071c6f-history", - "label": "양복", - "amount": 8000, + "id": "5da8d1301dd1964e52c0", + "label": "떡국", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "41da7d4d46fa19f3a149-history", - "label": "상의", - "amount": 4000, + "id": "2ed0e4650888f5c6a4f9", + "label": "떡만두", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18617", - "name": "바보엄마칼국수 진해석동점", - "businessName": "바보엄마칼국수 진해석동점", - "categorySlug": "korean", - "address": "경상남도 창원시 진해구 석동로59번길 6-9 (석동) 1층", - "district": "경상남도 창원시", - "latitude": 35.15643049996103, - "longitude": 128.7056441225601, - "representativePriceAmount": 5500, - "representativePriceLabel": "사골칼국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 사골칼국수 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-547-5255 / 영업시간: 월,화,목,금,토,일 11:00 - 20:30 20:00 라스트오더 수요일 정기휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "50e4c44017fbaf29a8f3", - "label": "사골칼국수", - "amount": 5500, + "id": "bb005f4d8bc87fa808e6", + "label": "만두국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0422cfad9aa27700a527", - "label": "들깨칼국수", - "amount": 6500, + "id": "23398186f3014e80b43d", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fc5de5b71738d544fe50", - "label": "바보비빔밥", - "amount": 6500, + "id": "d0b355e51fec9b367510", + "label": "찐만두", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b063ec01c407646dd529", + "label": "칼만두", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "50e4c44017fbaf29a8f3-history", - "label": "사골칼국수", - "amount": 5500, + "id": "e4746e6177896c8a4166-history", + "label": "멸치국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0422cfad9aa27700a527-history", - "label": "들깨칼국수", - "amount": 6500, + "id": "c0ea9c91cf6f1b13a3c7-history", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fc5de5b71738d544fe50-history", - "label": "바보비빔밥", - "amount": 6500, + "id": "e6d14bb1221893b576ec-history", + "label": "칼국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "1ace961910292109b062-history", + "label": "꼬마김밥(3개)", + "amount": 2000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "5da8d1301dd1964e52c0-history", + "label": "떡국", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2ed0e4650888f5c6a4f9-history", + "label": "떡만두", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "bb005f4d8bc87fa808e6-history", + "label": "만두국", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "23398186f3014e80b43d-history", + "label": "수제비", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d0b355e51fec9b367510-history", + "label": "찐만두", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b063ec01c407646dd529-history", + "label": "칼만두", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -42110,65 +43676,65 @@ "comments": [] }, { - "id": "goodprice-18612", - "name": "바보엄마칼국수 창원점", - "businessName": "바보엄마칼국수 창원점", + "id": "goodprice-15882", + "name": "냉삼집", + "businessName": "냉삼집", "categorySlug": "korean", - "address": "경상남도 창원시 의창구 의창대로247번길 33 (소답동) 1층", - "district": "경상남도 창원시", - "latitude": 35.26473140031365, - "longitude": 128.625169764524, - "representativePriceAmount": 5500, - "representativePriceLabel": "사골칼국수", + "address": "경기도 수원시 영통구 영통로214번길 9 (영통동) 106호", + "district": "경기도 수원시", + "latitude": 37.246578887390704, + "longitude": 127.05763865693096, + "representativePriceAmount": 9900, + "representativePriceLabel": "급랭삼겹살(200g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 사골칼국수 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-299-0094 / 영업시간: 월~토 11:00 - 20:00 19:00 라스트오더 일 11:00 - 16:00 15:00 라스트오더", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 급랭삼겹살(200g) 9,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-206-3389", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "90742379b5f296e83ead", - "label": "사골칼국수", - "amount": 5500, + "id": "18b4012f8a2dba791d3a", + "label": "급랭삼겹살(200g)", + "amount": 9900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "89dd3ef8df22396944e5", - "label": "들깨칼국수", - "amount": 6500, + "id": "01954e678a6c4c9cccf3", + "label": "차돌된장찌개", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d362feded40f61f0d400", - "label": "바보비빔밥", - "amount": 6500, + "id": "a549238239c91339deba", + "label": "계란찜", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "90742379b5f296e83ead-history", - "label": "사골칼국수", - "amount": 5500, + "id": "18b4012f8a2dba791d3a-history", + "label": "급랭삼겹살(200g)", + "amount": 9900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "89dd3ef8df22396944e5-history", - "label": "들깨칼국수", - "amount": 6500, + "id": "01954e678a6c4c9cccf3-history", + "label": "차돌된장찌개", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d362feded40f61f0d400-history", - "label": "바보비빔밥", - "amount": 6500, + "id": "a549238239c91339deba-history", + "label": "계란찜", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -42176,439 +43742,327 @@ "comments": [] }, { - "id": "goodprice-15989", - "name": "바삭왕돈까스", - "businessName": "바삭왕돈까스", + "id": "goodprice-515", + "name": "제주흑돼지알토란쌈밥", + "businessName": "제주흑돼지알토란쌈밥", "categorySlug": "korean", - "address": "경상남도 창원시 성산구 중앙대로 111 (중앙동) 205호", - "district": "경상남도 창원시", - "latitude": 35.22477010317151, - "longitude": 128.67987955499908, - "representativePriceAmount": 8500, - "representativePriceLabel": "바삭돈까스", + "address": "서울특별시 동대문구 한천로14길 69 (장안동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.56660165261301, + "longitude": 127.06651991212908, + "representativePriceAmount": 7000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 바삭돈까스 8,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-268-5008", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2246-8987", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f875b28abd3ded000375", - "label": "바삭돈까스", - "amount": 8500, + "id": "3222b7ad01cd09bf59df", + "label": "백반", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "342805b0a958d69fe9f5", - "label": "매콤돈까스", - "amount": 9000, + "id": "ed8b2680bc4f9d4a3239", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "f875b28abd3ded000375-history", - "label": "바삭돈까스", - "amount": 8500, + "id": "aa65cba34bd1c1e2f759", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "342805b0a958d69fe9f5-history", - "label": "매콤돈까스", - "amount": 9000, + "id": "605ff286f4e58463446f", + "label": "김치두루치기", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15406", - "name": "박하헤어", - "businessName": "박하헤어", - "categorySlug": "beauty", - "address": "경상남도 창원시 진해구 충장로 397-1 (이동) 1층", - "district": "경상남도 창원시", - "latitude": 35.15259896527641, - "longitude": 128.69534269679198, - "representativePriceAmount": 10000, - "representativePriceLabel": "컷트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-542-5894", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "ada14fd6b85dcd49d21a", - "label": "컷트", - "amount": 10000, + "id": "dbd89a72b9f6142b247f", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "ada14fd6b85dcd49d21a-history", - "label": "컷트", - "amount": 10000, + "id": "43f7e2de6a9a21969a96", + "label": "돈까스", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18050", - "name": "돌하루방방", - "businessName": "돌하루방방", - "categorySlug": "other-service", - "address": "제주특별자치도 제주시 화삼북로 43 (화북일동) 돌하루방방", - "district": "제주특별자치도 제주시", - "latitude": 33.517489993448145, - "longitude": 126.57772441179883, - "representativePriceAmount": 3000, - "representativePriceLabel": "트램펄린(30분)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 트램펄린(30분) 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-9487-4132", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "23e1254142f11cec7393", - "label": "트램펄린(30분)", - "amount": 3000, + "id": "5309568448decf79a16e", + "label": "돌솥비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "123ced0cd75c929079c6", - "label": "트램펄린(1시간)", - "amount": 5000, + "id": "2313d1ee82025eb2b68a", + "label": "동태찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "23e1254142f11cec7393-history", - "label": "트램펄린(30분)", - "amount": 3000, + "id": "605cbf1ddfe686ce7cc6", + "label": "뚝배기불고기", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "123ced0cd75c929079c6-history", - "label": "트램펄린(1시간)", - "amount": 5000, + "id": "bf2e8aa31852fc018440", + "label": "만두국", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-953", - "name": "파고다이용원", - "businessName": "파고다이용원", - "categorySlug": "barber", - "address": "서울특별시 종로구 종로17길 12 (종로2가)", - "district": "서울특별시 종로구", - "latitude": 37.5709410977686, - "longitude": 126.988999535085, - "representativePriceAmount": 6000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "d430dcd5cab5c8e23a58", - "label": "커트", + "id": "dc638831e235730edd37", + "label": "순두부", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9ff38b3fb86e70204d14", - "label": "염색", + "id": "2d135397fe2c519a8a0f", + "label": "오늘의 메뉴", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "d430dcd5cab5c8e23a58-history", - "label": "커트", - "amount": 6000, + "id": "681260dbfcffdba81122", + "label": "오삼불고기", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "9ff38b3fb86e70204d14-history", - "label": "염색", + "id": "93fca3c2684f55e9435a", + "label": "오징어볶음", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "1ba73ceb4130163814e3", + "label": "제육볶음", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "72c05ffb2e78e29ce9b2", + "label": "차돌된장", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "91c7010254a161772300", + "label": "청국장", "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-19241", - "name": "현궁", - "businessName": "현궁", - "categorySlug": "korean", - "address": "서울특별시 종로구 종로1길 42 (수송동) 지하1층", - "district": "서울특별시 종로구", - "latitude": 37.57390412787066, - "longitude": 126.97898519648197, - "representativePriceAmount": 10000, - "representativePriceLabel": "철판제육쌈밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 철판제육쌈밥 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-736-3369 / 영업시간: 10:00-22:00 일요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "1e72def18c7803fe3850", - "label": "철판제육쌈밥", - "amount": 10000, + "id": "bf848b7b53298f491351", + "label": "콩국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1e72def18c7803fe3850-history", - "label": "철판제육쌈밥", - "amount": 10000, + "id": "3222b7ad01cd09bf59df-history", + "label": "백반", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1423", - "name": "뚜레박", - "businessName": "뚜레박", - "categorySlug": "korean", - "address": "부산광역시 서구 엄광산로 32 (서대신동3가)", - "district": "부산광역시 서구", - "latitude": 35.1283242912417, - "longitude": 129.008759677418, - "representativePriceAmount": 8000, - "representativePriceLabel": "청국장", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-246-5233 / 영업시간: 08:00~19:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "6303fc4ebd9e723e06dc", - "label": "청국장", + "id": "ed8b2680bc4f9d4a3239-history", + "label": "순두부찌개", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "6303fc4ebd9e723e06dc-history", - "label": "청국장", + "id": "aa65cba34bd1c1e2f759-history", + "label": "비빔밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1390", - "name": "류박사종합세탁", - "businessName": "류박사종합세탁", - "categorySlug": "laundry", - "address": "부산광역시 서구 대영로 40 (서대신동1가)", - "district": "부산광역시 서구", - "latitude": 35.1092342130678, - "longitude": 129.015966141997, - "representativePriceAmount": 7000, - "representativePriceLabel": "양복", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-253-0972 / 영업시간: 금 08:30-20:30 토 08:30-20:30 일 정기휴무(매주일요일) 월 08:30-20:30 화 08:30-20:30 수 08:30-20:30 목 08:30-20:30", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, + { + "id": "605ff286f4e58463446f-history", + "label": "김치두루치기", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "dbd89a72b9f6142b247f-history", + "label": "김치찌개", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "43f7e2de6a9a21969a96-history", + "label": "돈까스", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, { - "id": "4e1a0ca3c5dc7d085542", - "label": "양복", + "id": "5309568448decf79a16e-history", + "label": "돌솥비빔밥", "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "443236d320ae6f0511c7", - "label": "바지수선", - "amount": 3000, + "id": "2313d1ee82025eb2b68a-history", + "label": "동태찌개", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "f61c96c54b287dd6e561", - "label": "바지 수선", - "amount": 3000, + "id": "605cbf1ddfe686ce7cc6-history", + "label": "뚝배기불고기", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "7e8c286b4baf7e1bda76", - "label": "양복 세탁", + "id": "bf2e8aa31852fc018440-history", + "label": "만두국", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "dc638831e235730edd37-history", + "label": "순두부", "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "4e1a0ca3c5dc7d085542-history", - "label": "양복", - "amount": 7000, + "id": "2d135397fe2c519a8a0f-history", + "label": "오늘의 메뉴", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "443236d320ae6f0511c7-history", - "label": "바지수선", - "amount": 3000, + "id": "681260dbfcffdba81122-history", + "label": "오삼불고기", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f61c96c54b287dd6e561-history", - "label": "바지 수선", - "amount": 3000, + "id": "93fca3c2684f55e9435a-history", + "label": "오징어볶음", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7e8c286b4baf7e1bda76-history", - "label": "양복 세탁", + "id": "1ba73ceb4130163814e3-history", + "label": "제육볶음", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "72c05ffb2e78e29ce9b2-history", + "label": "차돌된장", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "91c7010254a161772300-history", + "label": "청국장", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "bf848b7b53298f491351-history", + "label": "콩국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-1404", - "name": "마산손팥칼국수", - "businessName": "마산손팥칼국수", + "id": "goodprice-3419", + "name": "논골손칼국수", + "businessName": "논골손칼국수", "categorySlug": "korean", - "address": "부산광역시 서구 자갈치로 10 (충무동1가)", - "district": "부산광역시 서구", - "latitude": 35.0960483857352, - "longitude": 129.025418401842, + "address": "경기도 수원시 장안구 장안로75번길 52-2 102호(정자동)", + "district": "경기도 수원시", + "latitude": 37.2903281507546, + "longitude": 127.000141983781, "representativePriceAmount": 6000, - "representativePriceLabel": "팥칼국수", + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 팥칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-243-7226 / 영업시간: 9:00-07:00 한달에 한번 휴무 정해진 날짜는 없음", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-252-9696 / 영업시간: 10:30~19:00 화요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "97a57764b8ba2ec8a371", - "label": "팥칼국수", + "id": "069e23b5a12414009833", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "33e330d9b9626b6fe72a", - "label": "손칼국수", - "amount": 4000, + "id": "9a547388375aa41f09b2", + "label": "만둣국", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "97a57764b8ba2ec8a371-history", - "label": "팥칼국수", + "id": "069e23b5a12414009833-history", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "33e330d9b9626b6fe72a-history", - "label": "손칼국수", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-17711", - "name": "다반트", - "businessName": "다반트", - "categorySlug": "other-food", - "address": "대구광역시 동구 용진길 4 (중대동)", - "district": "대구광역시 동구", - "latitude": 35.97887295843366, - "longitude": 128.6327864396004, - "representativePriceAmount": 4500, - "representativePriceLabel": "아메리카노", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 4,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-9774-7888 / 영업시간: 영업시간 : 10:00~23:00 정기휴무 : 매주 목요일", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "fe63091c5d4370ceb1be", - "label": "아메리카노", - "amount": 4500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "fe63091c5d4370ceb1be-history", - "label": "아메리카노", - "amount": 4500, + "id": "9a547388375aa41f09b2-history", + "label": "만둣국", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -42616,65 +44070,65 @@ "comments": [] }, { - "id": "goodprice-17929", - "name": "다온가야밀면", - "businessName": "다온가야밀면", + "id": "goodprice-16100", + "name": "주연푸드", + "businessName": "주연푸드", "categorySlug": "korean", - "address": "대구광역시 동구 반야월로 311-11 (신서동)", - "district": "대구광역시 동구", - "latitude": 35.872498143444936, - "longitude": 128.7226197105274, - "representativePriceAmount": 7000, - "representativePriceLabel": "물밀면", + "address": "서울특별시 동대문구 휘경로 3-4 (이문동)", + "district": "서울특별시 동대문구", + "latitude": 37.5964812118617, + "longitude": 127.06087344222534, + "representativePriceAmount": 8500, + "representativePriceLabel": "돼지짜글이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물밀면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-269-7771 / 영업시간: 영업시간 : 10:30~20:30 정기휴무 : 매주 월요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지짜글이 8,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1400-8509", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "eb937f0f11bcdd2f6fad", - "label": "물밀면", - "amount": 7000, + "id": "d77202bbb7fe7b3abc82", + "label": "돼지짜글이", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "45fd6ffc0d337c62ea67", - "label": "비빔밀면", - "amount": 7000, + "id": "f74b19c43d55dc84a4cf", + "label": "육개장", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f99a399bd84057e2418a", - "label": "물비빔밀면", - "amount": 7000, + "id": "98a032b4420a59d7107c", + "label": "갈비탕", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "eb937f0f11bcdd2f6fad-history", - "label": "물밀면", - "amount": 7000, + "id": "d77202bbb7fe7b3abc82-history", + "label": "돼지짜글이", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "45fd6ffc0d337c62ea67-history", - "label": "비빔밀면", - "amount": 7000, + "id": "f74b19c43d55dc84a4cf-history", + "label": "육개장", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f99a399bd84057e2418a-history", - "label": "물비빔밀면", - "amount": 7000, + "id": "98a032b4420a59d7107c-history", + "label": "갈비탕", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -42682,141 +44136,65 @@ "comments": [] }, { - "id": "goodprice-17932", - "name": "다옴한식뷔페", - "businessName": "다옴한식뷔페", + "id": "goodprice-10313", + "name": "더밥", + "businessName": "더밥", "categorySlug": "korean", - "address": "대구광역시 동구 동대구로83길 18 (신천동, 동림아파트) 상가동 101호(신천동, 동림아파트)", - "district": "대구광역시 동구", - "latitude": 35.869577777820616, - "longitude": 128.62410506814535, - "representativePriceAmount": 8000, - "representativePriceLabel": "한식뷔페(일반)", + "address": "강원특별자치도 춘천시 춘주로91번길 10 (온의동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.862555029709, + "longitude": 127.720541103243, + "representativePriceAmount": 8900, + "representativePriceLabel": "제육덮밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페(일반) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-755-4446 / 영업시간: 영업시간 : 11:00 ~ 14:00 정기휴무 : 매주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육덮밥 8,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-242-2178 / 영업시간: 10:00 - 20:00 라스트오더 19:30 * 배달주문시 8,900원", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fd31ab01a6c860d27509", - "label": "한식뷔페(일반)", - "amount": 8000, + "id": "ad23a47aa3834388560e", + "label": "제육덮밥", + "amount": 8900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2d72922c796f07089337", - "label": "한식뷔페(~초등학생)", - "amount": 5000, + "id": "58b4291a3325e385af14", + "label": "오므라이스", + "amount": 8900, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "fd31ab01a6c860d27509-history", - "label": "한식뷔페(일반)", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "2d72922c796f07089337-history", - "label": "한식뷔페(~초등학생)", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13035", - "name": "밥심", - "businessName": "밥심", - "categorySlug": "korean", - "address": "인천광역시 동구 샛골로 129 (송림동) 1층", - "district": "인천광역시 동구", - "latitude": 37.473936489089034, - "longitude": 126.6440676374549, - "representativePriceAmount": 8000, - "representativePriceLabel": "한식부페", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식부페 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-766-5648 / 영업시간: 월~토 11:00-22:30 (브래이크타임) 14:00-16:00 (일) 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "59be0442679aa2508779", - "label": "한식부페", - "amount": 8000, + "id": "4c424c21e47efc2f16a4", + "label": "불고기필라프", + "amount": 8900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "59be0442679aa2508779-history", - "label": "한식부페", - "amount": 8000, + "id": "ad23a47aa3834388560e-history", + "label": "제육덮밥", + "amount": 8900, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2099", - "name": "벽란식당", - "businessName": "벽란식당", - "categorySlug": "korean", - "address": "인천광역시 동구 화도진로 102-4 (화수동) 1층", - "district": "인천광역시 동구", - "latitude": 37.48049836555108, - "longitude": 126.6292399056602, - "representativePriceAmount": 9000, - "representativePriceLabel": "벤뎅이덮밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 벤뎅이덮밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-766-7022 / 영업시간: 월~일 11:00-20:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "e61bfc7b8e1166741592", - "label": "벤뎅이덮밥", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" }, { - "id": "f77251e2ace0be4a2cc4", - "label": "한치덮밥", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "e61bfc7b8e1166741592-history", - "label": "벤뎅이덮밥", - "amount": 9000, + "id": "58b4291a3325e385af14-history", + "label": "오므라이스", + "amount": 8900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f77251e2ace0be4a2cc4-history", - "label": "한치덮밥", - "amount": 10000, + "id": "4c424c21e47efc2f16a4-history", + "label": "불고기필라프", + "amount": 8900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -42824,51 +44202,51 @@ "comments": [] }, { - "id": "goodprice-17584", - "name": "브레드 오뉴", - "businessName": "브레드 오뉴", - "categorySlug": "other-food", - "address": "인천 동구 송미로 50 1층, 2층 일부호 (송림동)", - "district": "인천 동구", - "latitude": 37.4826357598258, - "longitude": 126.650995645435, - "representativePriceAmount": 2000, - "representativePriceLabel": "단팥빵", + "id": "goodprice-10372", + "name": "지노돈까스", + "businessName": "지노돈까스", + "categorySlug": "western", + "address": "서울특별시 동대문구 제기로38길 40 (청량리동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.584488619841885, + "longitude": 127.0494960787065, + "representativePriceAmount": 8500, + "representativePriceLabel": "돈까스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 단팥빵 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-777-4997 / 영업시간: 월 ~ 일 07:00 ~ 22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈까스 8,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-959-3189", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "27fb427316d281a8139b", - "label": "단팥빵", - "amount": 2000, + "id": "5c39fbd9276d088acbd5", + "label": "돈까스", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7d5acd9c3cdbadc25295", - "label": "소보루빵", - "amount": 2000, + "id": "181d5c8845bc6e7ae203", + "label": "제육덮밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "27fb427316d281a8139b-history", - "label": "단팥빵", - "amount": 2000, + "id": "5c39fbd9276d088acbd5-history", + "label": "돈까스", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7d5acd9c3cdbadc25295-history", - "label": "소보루빵", - "amount": 2000, + "id": "181d5c8845bc6e7ae203-history", + "label": "제육덮밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -42876,51 +44254,65 @@ "comments": [] }, { - "id": "goodprice-2302", - "name": "김강심 칼국수", - "businessName": "김강심 칼국수", + "id": "goodprice-10310", + "name": "동이만두", + "businessName": "동이만두", "categorySlug": "korean", - "address": "광주광역시 서구 회재로 841 (매월동)", - "district": "광주광역시 서구", - "latitude": 35.1193464844953, - "longitude": 126.857831988453, - "representativePriceAmount": 9000, - "representativePriceLabel": "바지락칼국수", + "address": "강원특별자치도 춘천시 효제길 36 (효자동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8709546627662, + "longitude": 127.737049930361, + "representativePriceAmount": 6000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 바지락칼국수 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-682-8801 / 영업시간: 월~일 11:00~19:30 ※휴게시간 - 평일 : 15:00~17:00 - 주말 : 16:00~17:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-3633 / 영업시간: 09:00 - 22:00 생방송투데이 3385회(23.09.22.)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ba31fc496dba5e55d625", - "label": "바지락칼국수", - "amount": 9000, + "id": "a6e1819c32fc48701a42", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6ef7a13df2f2ee30d193", - "label": "팥죽", - "amount": 9000, + "id": "c54d01c1d180ca223f92", + "label": "잔치국수", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "42fc5b5d5b27fe50374f", + "label": "제육볶음", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ba31fc496dba5e55d625-history", - "label": "바지락칼국수", - "amount": 9000, + "id": "a6e1819c32fc48701a42-history", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6ef7a13df2f2ee30d193-history", - "label": "팥죽", - "amount": 9000, + "id": "c54d01c1d180ca223f92-history", + "label": "잔치국수", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "42fc5b5d5b27fe50374f-history", + "label": "제육볶음", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -42928,51 +44320,51 @@ "comments": [] }, { - "id": "goodprice-11081", - "name": "꺳잎머리", - "businessName": "꺳잎머리", - "categorySlug": "beauty", - "address": "광주광역시 서구 경열로76번길 6 (농성동)", - "district": "광주광역시 서구", - "latitude": 35.151028051239, - "longitude": 126.894249830137, - "representativePriceAmount": 10000, - "representativePriceLabel": "성인커트", + "id": "goodprice-10381", + "name": "청량리할머니냉면", + "businessName": "청량리할머니냉면", + "categorySlug": "korean", + "address": "서울특별시 동대문구 왕산로37길 51 (제기동)", + "district": "서울특별시 동대문구", + "latitude": 37.58228095120073, + "longitude": 127.04375491090488, + "representativePriceAmount": 7000, + "representativePriceLabel": "냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 성인커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-361-1781", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-963-5362", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0cd9c885c098ce90ea92", - "label": "성인커트", - "amount": 10000, + "id": "c05bb8007d61f5f5f945", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b00d45e5d878592a1927", - "label": "학생커트", - "amount": 8000, + "id": "7687697d9d64add80742", + "label": "냉면곱배기", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0cd9c885c098ce90ea92-history", - "label": "성인커트", - "amount": 10000, + "id": "c05bb8007d61f5f5f945-history", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b00d45e5d878592a1927-history", - "label": "학생커트", - "amount": 8000, + "id": "7687697d9d64add80742-history", + "label": "냉면곱배기", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -42980,51 +44372,51 @@ "comments": [] }, { - "id": "goodprice-14467", - "name": "나주곰탕 노안집", - "businessName": "나주곰탕 노안집", + "id": "goodprice-15783", + "name": "꽃돼지댁", + "businessName": "꽃돼지댁", "categorySlug": "korean", - "address": "광주광역시 서구 서광주로 171 (마륵동) 101호", - "district": "광주광역시 서구", - "latitude": 35.1424008219587, - "longitude": 126.84867047979041, - "representativePriceAmount": 9000, - "representativePriceLabel": "곰탕", + "address": "충청북도 청주시 서원구 서원남로20번길 4 (모충동) 1층", + "district": "충청북도 청주시", + "latitude": 36.6220030068416, + "longitude": 127.48577351993595, + "representativePriceAmount": 10000, + "representativePriceLabel": "1인보쌈정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 곰탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-382-0525", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 1인보쌈정식 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-295-3423", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "578a2afeb94e360e1f9d", - "label": "곰탕", - "amount": 9000, + "id": "6de1595354bd39f2465d", + "label": "1인보쌈정식", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5b7735718cd6732d5481", - "label": "설렁탕", - "amount": 9000, + "id": "e60fa561e099305d5765", + "label": "1인삼겹김치찜", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "578a2afeb94e360e1f9d-history", - "label": "곰탕", - "amount": 9000, + "id": "6de1595354bd39f2465d-history", + "label": "1인보쌈정식", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5b7735718cd6732d5481-history", - "label": "설렁탕", - "amount": 9000, + "id": "e60fa561e099305d5765-history", + "label": "1인삼겹김치찜", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43032,191 +44424,51 @@ "comments": [] }, { - "id": "goodprice-2542", - "name": "정통짜장", - "businessName": "정통짜장", - "categorySlug": "chinese", - "address": "대전광역시 동구 동대전로 102 (대동)", - "district": "대전광역시 동구", - "latitude": 36.3313112531177, - "longitude": 127.444394046485, - "representativePriceAmount": 7500, - "representativePriceLabel": "짜장면", + "id": "goodprice-16162", + "name": "청정생고기집", + "businessName": "청정생고기집", + "categorySlug": "korean", + "address": "서울특별시 동대문구 서울시립대로 121 (전농동)", + "district": "서울특별시 동대문구", + "latitude": 37.5813115354497, + "longitude": 127.05167468958982, + "representativePriceAmount": 7000, + "representativePriceLabel": "삼겹살(150g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-631-3535 / 영업시간: 11:00 ~ 20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살(150g) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2244-3467", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8a4a63dd418cd0067465", - "label": "짜장면", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "22762d6f08e1b01ed794", - "label": "짬뽕", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1926ec7c9213d2a95609", - "label": "간짜장", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "643431e300a1bb440b05", - "label": "우동", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "71e6729a8006fe88cdc8", - "label": "쫄면", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "51bc4b13199cbeac42d5", - "label": "볶음밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "24872fac2fe3fe5b09f0", - "label": "짬뽕밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "556efca6d58f7dd695eb", - "label": "잡채밥", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0b9d9984333d17ff1b61", - "label": "갈비탕", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9dfd832813d35ca5df9a", - "label": "오징어덮밥", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1abfb6f96e4ae6420472", - "label": "군만두", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b7b8a1ffd94f287c1b93", - "label": "물만두", - "amount": 6000, + "id": "9b9175d0b4900d0d4b32", + "label": "삼겹살(150g)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "8a4a63dd418cd0067465-history", - "label": "짜장면", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "22762d6f08e1b01ed794-history", - "label": "짬뽕", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1926ec7c9213d2a95609-history", - "label": "간짜장", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "643431e300a1bb440b05-history", - "label": "우동", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "71e6729a8006fe88cdc8-history", - "label": "쫄면", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "51bc4b13199cbeac42d5-history", - "label": "볶음밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "24872fac2fe3fe5b09f0-history", - "label": "짬뽕밥", + "id": "72bdba1d13441ab31d8c", + "label": "갈매기살(150g)", "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "556efca6d58f7dd695eb-history", - "label": "잡채밥", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0b9d9984333d17ff1b61-history", - "label": "갈비탕", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9dfd832813d35ca5df9a-history", - "label": "오징어덮밥", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "1abfb6f96e4ae6420472-history", - "label": "군만두", - "amount": 6000, + "id": "9b9175d0b4900d0d4b32-history", + "label": "삼겹살(150g)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b7b8a1ffd94f287c1b93-history", - "label": "물만두", - "amount": 6000, + "id": "72bdba1d13441ab31d8c-history", + "label": "갈매기살(150g)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43224,65 +44476,79 @@ "comments": [] }, { - "id": "goodprice-18133", - "name": "제일국수", - "businessName": "제일국수", + "id": "goodprice-4687", + "name": "나누리장터", + "businessName": "나누리장터", "categorySlug": "korean", - "address": "대전광역시 동구 계족로 398 (성남동) (성남동)", - "district": "대전광역시 동구", - "latitude": 36.34716116444066, - "longitude": 127.43251503519676, - "representativePriceAmount": 5000, - "representativePriceLabel": "잔치국수", + "address": "충청북도 청주시 상당구 쇠내로 69-1 (금천동)", + "district": "충청북도 청주시", + "latitude": 36.6249932875208, + "longitude": 127.501521214447, + "representativePriceAmount": 4000, + "representativePriceLabel": "장터칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-626-7467 / 영업시간: 10:30 ~ 21:00 매주 수요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장터칼국수 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 10:00-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a5a5c6398e2fdb354bce", - "label": "잔치국수", + "id": "4b4d55156223430dbeae", + "label": "장터칼국수", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8f697746c32510a33280", + "label": "바지락칼국수", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1e0ec93d5ea2ba217a7a", - "label": "비빔국수", - "amount": 7000, + "id": "9c615e2b212f3f1d8315", + "label": "떡만두국", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2c4127c9feeab495625b", - "label": "옛날짜장면", - "amount": 6000, + "id": "71352ee06b7140a02e1a", + "label": "비빔국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a5a5c6398e2fdb354bce-history", - "label": "잔치국수", + "id": "4b4d55156223430dbeae-history", + "label": "장터칼국수", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8f697746c32510a33280-history", + "label": "바지락칼국수", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1e0ec93d5ea2ba217a7a-history", - "label": "비빔국수", - "amount": 7000, + "id": "9c615e2b212f3f1d8315-history", + "label": "떡만두국", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2c4127c9feeab495625b-history", - "label": "옛날짜장면", - "amount": 6000, + "id": "71352ee06b7140a02e1a-history", + "label": "비빔국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43290,41 +44556,41 @@ "comments": [] }, { - "id": "goodprice-18134", - "name": "제일짜장", - "businessName": "제일짜장", - "categorySlug": "chinese", - "address": "대전광역시 동구 옥천로176번길 15-17 (판암동) (판암동)", - "district": "대전광역시 동구", - "latitude": 36.316651760925616, - "longitude": 127.46034281277733, - "representativePriceAmount": 3900, - "representativePriceLabel": "짜장면", + "id": "goodprice-11558", + "name": "충북식당", + "businessName": "충북식당", + "categorySlug": "korean", + "address": "서울특별시 동대문구 고산자로38길 27 (제기동)", + "district": "서울특별시 동대문구", + "latitude": 37.5801860790802, + "longitude": 127.04003274480417, + "representativePriceAmount": 8000, + "representativePriceLabel": "청국장보리밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 3,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-322-9999 / 영업시간: 10:00 ~ 20:00 매주 월요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장보리밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-964-3031", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0c3e5c7e02d74a1d449a", - "label": "짜장면", - "amount": 3900, + "id": "4fb24be022577db3a509", + "label": "청국장보리밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6484b29b533f25135b1e", - "label": "멸치국수", - "amount": 5000, + "id": "11ae97d0f2cfb1ac047d", + "label": "된장보리밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b077871f27380a1e8d06", - "label": "미니탕수육", + "id": "0d801fc30695b42b3bfd", + "label": "뚝배기불고기", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -43332,22 +44598,22 @@ ], "history": [ { - "id": "0c3e5c7e02d74a1d449a-history", - "label": "짜장면", - "amount": 3900, + "id": "4fb24be022577db3a509-history", + "label": "청국장보리밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6484b29b533f25135b1e-history", - "label": "멸치국수", - "amount": 5000, + "id": "11ae97d0f2cfb1ac047d-history", + "label": "된장보리밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b077871f27380a1e8d06-history", - "label": "미니탕수육", + "id": "0d801fc30695b42b3bfd-history", + "label": "뚝배기불고기", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -43356,113 +44622,197 @@ "comments": [] }, { - "id": "goodprice-16820", - "name": "동호손칼국수", - "businessName": "동호손칼국수", + "id": "goodprice-4747", + "name": "나성불고기쌈밥", + "businessName": "나성불고기쌈밥", "categorySlug": "korean", - "address": "울산광역시 남구 월평로37번길 8 (신정동) 1층", - "district": "울산광역시 남구", - "latitude": 35.542081300176, - "longitude": 129.3095258019906, + "address": "충청북도 청주시 청원구 향군로 51 (우암동)", + "district": "충청북도 청주시", + "latitude": 36.6501623292297, + "longitude": 127.485399652549, "representativePriceAmount": 6000, - "representativePriceLabel": "손칼국수", + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1348-4813", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-253-3511 / 영업시간: 매일 11:00~21:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c33d20f3c8b3be98c9aa", - "label": "손칼국수", + "id": "420b234cc7df8cb5a739", + "label": "된장찌개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "3479badd86901c0c6ee0", + "label": "된장백반", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c33d20f3c8b3be98c9aa-history", - "label": "손칼국수", + "id": "420b234cc7df8cb5a739-history", + "label": "된장찌개", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "3479badd86901c0c6ee0-history", + "label": "된장백반", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-15119", - "name": "만리장성", - "businessName": "만리장성", - "categorySlug": "chinese", - "address": "울산광역시 남구 번영로233번길 2 (신정동) 1층", - "district": "울산광역시 남구", - "latitude": 35.5456689671537, - "longitude": 129.32345313112896, + "id": "goodprice-18244", + "name": "충청도식당", + "businessName": "충청도식당", + "categorySlug": "korean", + "address": "서울특별시 동대문구 경동시장로12길 26 (제기동)", + "district": "서울특별시 동대문구", + "latitude": 37.58207907922376, + "longitude": 127.04203783971076, "representativePriceAmount": 6000, - "representativePriceLabel": "유니짜장", + "representativePriceLabel": "정식백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 유니짜장 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-256-1325", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식백반 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-959-1192", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0437e8bda3d9b75a4ffd", - "label": "유니짜장", + "id": "26456a30df57b44acb0b", + "label": "정식백반", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "ee5ba8ce39fed1e7a13d", + "label": "순두부찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4021732daed5d1747560", + "label": "된장찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0437e8bda3d9b75a4ffd-history", - "label": "유니짜장", + "id": "26456a30df57b44acb0b-history", + "label": "정식백반", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "ee5ba8ce39fed1e7a13d-history", + "label": "순두부찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4021732daed5d1747560-history", + "label": "된장찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-2900", - "name": "만추", - "businessName": "만추", + "id": "goodprice-13848", + "name": "백운면", + "businessName": "백운면", "categorySlug": "korean", - "address": "울산광역시 남구 돋질로239번길 4-4", - "district": "울산광역시 남구", - "latitude": 35.5434956538115, - "longitude": 129.331253640737, - "representativePriceAmount": 9000, - "representativePriceLabel": "낙지볶음", + "address": "전북특별자치도 전주시 덕진구 떡전4길 20-1 (금암동)", + "district": "전북특별자치도 전주시", + "latitude": 35.83744887478051, + "longitude": 127.12964026212448, + "representativePriceAmount": 5000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 낙지볶음 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-260-0123 / 영업시간: 10:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-277-1007 / 영업시간: 운영시간 - (월요일~금요일) 10:30~19:00(브레이크 타임 15:00-17:00) - (토요일) 10:30 ~ 15:00 - (일요일) 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "961d58ec88f2764e6e8c", - "label": "낙지볶음", - "amount": 9000, + "id": "90b64341e16932244b5f", + "label": "잔치국수", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "db664707e014980b9248", + "label": "칼국수", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "32d52d173fa9d6123dac", + "label": "냉밀면", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "df7a134f1aae7fbe1873", + "label": "수제 돈가스", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "961d58ec88f2764e6e8c-history", - "label": "낙지볶음", - "amount": 9000, + "id": "90b64341e16932244b5f-history", + "label": "잔치국수", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "db664707e014980b9248-history", + "label": "칼국수", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "32d52d173fa9d6123dac-history", + "label": "냉밀면", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "df7a134f1aae7fbe1873-history", + "label": "수제 돈가스", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43470,41 +44820,41 @@ "comments": [] }, { - "id": "goodprice-14019", - "name": "미랑", - "businessName": "미랑", - "categorySlug": "korean", - "address": "경기도 수원시 장안구 만석로 181 (송죽동) 1층", - "district": "경기도 수원시", - "latitude": 37.30303778554212, - "longitude": 126.99929045467675, - "representativePriceAmount": 5900, - "representativePriceLabel": "소고기국밥", + "id": "goodprice-13400", + "name": "친친", + "businessName": "친친", + "categorySlug": "chinese", + "address": "서울특별시 동대문구 정릉천동로 58 (용두동, 롯데캐슬피렌체)", + "district": "서울특별시 동대문구", + "latitude": 37.5771639443969, + "longitude": 127.03580933416836, + "representativePriceAmount": 6000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소고기국밥 5,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-255-7200 / 영업시간: 월요일~토요일 10:30~21:00 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-8960-9891", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b1c9fdb12fcdc9303fc7", - "label": "소고기국밥", - "amount": 5900, + "id": "e3ec01f0bca6a57988ae", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fc8b9f97a5065e0b64f9", - "label": "왕만두(소12개)", - "amount": 3000, + "id": "9d403a5471c2864baa67", + "label": "짬봉", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7757336495b3b9fb58f5", - "label": "소고기국밥(특)", + "id": "9c1b85fea5439677fb3d", + "label": "볶음밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -43512,22 +44862,22 @@ ], "history": [ { - "id": "b1c9fdb12fcdc9303fc7-history", - "label": "소고기국밥", - "amount": 5900, + "id": "e3ec01f0bca6a57988ae-history", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fc8b9f97a5065e0b64f9-history", - "label": "왕만두(소12개)", - "amount": 3000, + "id": "9d403a5471c2864baa67-history", + "label": "짬봉", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7757336495b3b9fb58f5-history", - "label": "소고기국밥(특)", + "id": "9c1b85fea5439677fb3d-history", + "label": "볶음밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -43536,51 +44886,79 @@ "comments": [] }, { - "id": "goodprice-3444", - "name": "미소레", - "businessName": "미소레", - "categorySlug": "other-food", - "address": "경기도 수원시 팔달구 덕영대로 지하911 (매산로1가) 64호", - "district": "경기도 수원시", - "latitude": 37.2674076594333, - "longitude": 127.00066634836122, - "representativePriceAmount": 3400, - "representativePriceLabel": "아메리카노", + "id": "goodprice-13852", + "name": "백운면아중점", + "businessName": "백운면아중점", + "categorySlug": "korean", + "address": "전북특별자치도 전주시 덕진구 가재미로 38 (인후동1가) 1층", + "district": "전북특별자치도 전주시", + "latitude": 35.82849083250596, + "longitude": 127.16271510485184, + "representativePriceAmount": 5900, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,400원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-247-9449 / 영업시간: 셋째주 수요일 휴무 07:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-714-3877 / 영업시간: 운영시간 - (월요일~금요일) 10:30 ~ 19:30 (브레이크 타임 16:00 ~ 17:00) - (토요일) 10:30 ~ 16:00 - (일요일) 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ca47e69d41405c7c9847", - "label": "아메리카노", - "amount": 3400, + "id": "83de07179908889b9467", + "label": "잔치국수", + "amount": 5900, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "549f058ee3ac0e550d08", - "label": "아메리카노(테이크아웃)", - "amount": 1500, + "id": "4b284365460afdde05d3", + "label": "비빔국수", + "amount": 6900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a52909f7a40ecff6cbe2", + "label": "냉밀면", + "amount": 7900, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "7906c42d32927271b18a", + "label": "등심돈가스", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ca47e69d41405c7c9847-history", - "label": "아메리카노", - "amount": 3400, + "id": "83de07179908889b9467-history", + "label": "잔치국수", + "amount": 5900, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "549f058ee3ac0e550d08-history", - "label": "아메리카노(테이크아웃)", - "amount": 1500, + "id": "4b284365460afdde05d3-history", + "label": "비빔국수", + "amount": 6900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a52909f7a40ecff6cbe2-history", + "label": "냉밀면", + "amount": 7900, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7906c42d32927271b18a-history", + "label": "등심돈가스", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43588,75 +44966,117 @@ "comments": [] }, { - "id": "goodprice-11033", - "name": "미영목욕탕", - "businessName": "미영목욕탕", - "categorySlug": "bath", - "address": "경기도 수원시 권선구 정조로 432 (세류동)", - "district": "경기도 수원시", - "latitude": 37.2474693136438, - "longitude": 127.014533989176, - "representativePriceAmount": 9000, - "representativePriceLabel": "목욕료", + "id": "goodprice-11551", + "name": "칼리앤메리", + "businessName": "칼리앤메리", + "categorySlug": "korean", + "address": "서울특별시 동대문구 서울시립대로 160 (전농동) 영광빌딩 105호", + "district": "서울특별시 동대문구", + "latitude": 37.58341533342644, + "longitude": 127.05453994474995, + "representativePriceAmount": 8000, + "representativePriceLabel": "제육비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕료 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-236-5038", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육비빔밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-6429-0747", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "71b96a82f2df0710c13d", - "label": "목욕료", + "id": "6d395352bc628a7d72ca", + "label": "제육비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "7cc6fc7905b91de42351", + "label": "불고기비빔밥", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "11ae02dea985df51bddc", + "label": "소불고기비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "71b96a82f2df0710c13d-history", - "label": "목욕료", + "id": "6d395352bc628a7d72ca-history", + "label": "제육비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7cc6fc7905b91de42351-history", + "label": "불고기비빔밥", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "11ae02dea985df51bddc-history", + "label": "소불고기비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-16810", - "name": "민속왕순대", - "businessName": "민속왕순대", - "categorySlug": "korean", - "address": "경기도 수원시 영통구 매탄로 61 (매탄동) 1층", - "district": "경기도 수원시", - "latitude": 37.25670557506686, - "longitude": 127.04114285158384, - "representativePriceAmount": 9000, - "representativePriceLabel": "순대국밥", + "id": "goodprice-5414", + "name": "빵굽는나라", + "businessName": "빵굽는나라", + "categorySlug": "bakery", + "address": "전북특별자치도 전주시 완산구 팔달로 263", + "district": "전북특별자치도 전주시", + "latitude": 35.8254765184598, + "longitude": 127.143901262223, + "representativePriceAmount": 1000, + "representativePriceLabel": "도너츠(2개)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-238-5862 / 영업시간: 10:00~22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 도너츠(2개) 1,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-275-2974 / 영업시간: 매일 06:30-20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8f2432a5a1f2307e8e82", - "label": "순대국밥", - "amount": 9000, + "id": "66ed61b15f5a8ee71c89", + "label": "도너츠(2개)", + "amount": 1000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "3ae4644d7c0d6c7107d5", + "label": "크림빵(1개)", + "amount": 1000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8f2432a5a1f2307e8e82-history", - "label": "순대국밥", - "amount": 9000, + "id": "66ed61b15f5a8ee71c89-history", + "label": "도너츠(2개)", + "amount": 1000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "3ae4644d7c0d6c7107d5-history", + "label": "크림빵(1개)", + "amount": 1000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43664,65 +45084,65 @@ "comments": [] }, { - "id": "goodprice-4392", - "name": "안가네밥집", - "businessName": "안가네밥집", + "id": "goodprice-13393", + "name": "푸드김밥", + "businessName": "푸드김밥", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 남춘로25번길 4-1 1층(퇴계동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.863683071761, - "longitude": 127.730587479698, - "representativePriceAmount": 7000, - "representativePriceLabel": "두부전골(2인이상)", + "address": "서울특별시 동대문구 왕산로9길 6 (용두동)", + "district": "서울특별시 동대문구", + "latitude": 37.577352181924674, + "longitude": 127.02794251747314, + "representativePriceAmount": 2500, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 두부전골(2인이상) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-0528 / 영업시간: 10:00 - 20:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-929-4123", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b094070a82d013381c3f", - "label": "두부전골(2인이상)", - "amount": 7000, + "id": "c0a9774b5350f92982de", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e6ec15f2bee4cf93e804", - "label": "김치찌개(2인이상)", - "amount": 7000, + "id": "8eb00a3fc3c04fcf9531", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "413a80164cc837ee8303", - "label": "청국장(2인이상)", - "amount": 7000, + "id": "f6aa1ccc5a5c52dedc25", + "label": "비빔밥", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b094070a82d013381c3f-history", - "label": "두부전골(2인이상)", - "amount": 7000, + "id": "c0a9774b5350f92982de-history", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e6ec15f2bee4cf93e804-history", - "label": "김치찌개(2인이상)", - "amount": 7000, + "id": "8eb00a3fc3c04fcf9531-history", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "413a80164cc837ee8303-history", - "label": "청국장(2인이상)", - "amount": 7000, + "id": "f6aa1ccc5a5c52dedc25-history", + "label": "비빔밥", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43730,34 +45150,48 @@ "comments": [] }, { - "id": "goodprice-4393", - "name": "양지뜨락", - "businessName": "양지뜨락", + "id": "goodprice-5439", + "name": "서신정", + "businessName": "서신정", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 동면 만천양지길 114 양지뜨락", - "district": "강원특별자치도 춘천시", - "latitude": 37.88764975508379, - "longitude": 127.7665243763595, - "representativePriceAmount": 8000, - "representativePriceLabel": "손두부전골", + "address": "전북특별자치도 전주시 완산구 감나무4길 26", + "district": "전북특별자치도 전주시", + "latitude": 35.8317212468129, + "longitude": 127.119926240397, + "representativePriceAmount": 10000, + "representativePriceLabel": "고등어구이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손두부전골 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-244-6690 / 영업시간: 11:30 - 21:00 브레이크타임 14:00 - 17:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고등어구이 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-277-3455 / 영업시간: 월~토 11:30-22:00 (휴일 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e85f0dceafb465cdf36b", - "label": "손두부전골", + "id": "196ff6eb3521dc9ae697", + "label": "고등어구이", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0cb7ba9e444ed0953d46", + "label": "김치찌개", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d1fd44e4899a8b6791d3", + "id": "b9859c41ab517909c607", "label": "제육볶음", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "184639c8ba12d31afaa5", + "label": "이상배달)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -43765,54 +45199,30 @@ ], "history": [ { - "id": "e85f0dceafb465cdf36b-history", - "label": "손두부전골", - "amount": 8000, + "id": "196ff6eb3521dc9ae697-history", + "label": "고등어구이", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d1fd44e4899a8b6791d3-history", - "label": "제육볶음", + "id": "0cb7ba9e444ed0953d46-history", + "label": "김치찌개", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16986", - "name": "로얄생고기", - "businessName": "로얄생고기", - "categorySlug": "korean", - "address": "충청북도 청주시 서원구 봉명로 238-1 (사창동) (사창동)", - "district": "충청북도 청주시", - "latitude": 36.63972616939694, - "longitude": 127.46810353853678, - "representativePriceAmount": 9000, - "representativePriceLabel": "점심특선(짜글이)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 점심특선(짜글이) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-262-9233 / 영업시간: 08:30~22:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "3850db9dd13eef225dcc", - "label": "점심특선(짜글이)", + "id": "b9859c41ab517909c607-history", + "label": "제육볶음", "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "3850db9dd13eef225dcc-history", - "label": "점심특선(짜글이)", - "amount": 9000, + "id": "184639c8ba12d31afaa5-history", + "label": "이상배달)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43820,51 +45230,51 @@ "comments": [] }, { - "id": "goodprice-15780", - "name": "마신네제육볶음짜장", - "businessName": "마신네제육볶음짜장", - "categorySlug": "chinese", - "address": "충청북도 청주시 흥덕구 1순환로594번길 48 (봉명동) 1층", - "district": "충청북도 청주시", - "latitude": 36.640964119481026, - "longitude": 127.45784060326959, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "id": "goodprice-16093", + "name": "푸른하늘", + "businessName": "푸른하늘", + "categorySlug": "korean", + "address": "서울특별시 동대문구 경희대로6길 3-4 (회기동)", + "district": "서울특별시 동대문구", + "latitude": 37.593546790515155, + "longitude": 127.0530751458377, + "representativePriceAmount": 6500, + "representativePriceLabel": "물냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-262-0789", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물냉면 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-966-3394", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d412bedb579de7d0af5f", - "label": "짜장면", - "amount": 5000, + "id": "dd3ae0a60034b0a0f9bc", + "label": "물냉면", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4e77f4c105d23a87a083", - "label": "짬뽕", - "amount": 7000, + "id": "0a2debdefb90b3c7e6ac", + "label": "원조김밥", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d412bedb579de7d0af5f-history", - "label": "짜장면", - "amount": 5000, + "id": "dd3ae0a60034b0a0f9bc-history", + "label": "물냉면", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4e77f4c105d23a87a083-history", - "label": "짬뽕", - "amount": 7000, + "id": "0a2debdefb90b3c7e6ac-history", + "label": "원조김밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43872,37 +45282,37 @@ "comments": [] }, { - "id": "goodprice-4966", - "name": "사라헤어라인", - "businessName": "사라헤어라인", - "categorySlug": "beauty", - "address": "충청남도 천안시 서북구 양지21길 25 (성정동)", - "district": "충청남도 천안시", - "latitude": 36.8127160425691, - "longitude": 127.138482517182, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-15145", + "name": "복스짜장짬뽕(용해점)", + "businessName": "복스짜장짬뽕(용해점)", + "categorySlug": "chinese", + "address": "전라남도 목포시 대양로 111 (용해동) 복스짜장짬뽕(용해점)", + "district": "전라남도 목포시", + "latitude": 34.82166789677919, + "longitude": 126.39167301998671, + "representativePriceAmount": 6000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-575-5093 / 영업시간: 09:00~20:00 정기휴무(매주 월요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-277-2737", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c2177f9494fc58d96600", - "label": "커트", - "amount": 10000, + "id": "74ed96c6204d7d0b83d4", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c2177f9494fc58d96600-history", - "label": "커트", - "amount": 10000, + "id": "74ed96c6204d7d0b83d4-history", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43910,37 +45320,51 @@ "comments": [] }, { - "id": "goodprice-4967", - "name": "사천냥클럽", - "businessName": "사천냥클럽", - "categorySlug": "beauty", - "address": "충청남도 천안시 서북구 두정로 271 (두정동)", - "district": "충청남도 천안시", - "latitude": 36.8332567599608, - "longitude": 127.147007440446, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트", + "id": "goodprice-13405", + "name": "할매순대국", + "businessName": "할매순대국", + "categorySlug": "korean", + "address": "서울특별시 동대문구 망우로 76 (휘경동)", + "district": "서울특별시 동대문구", + "latitude": 37.589743964646864, + "longitude": 127.0616549489971, + "representativePriceAmount": 9000, + "representativePriceLabel": "순대국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-564-5283 / 영업시간: 09:00~20:00 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2247-1213", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f8ee75edf86084bdaf31", - "label": "커트", - "amount": 5000, + "id": "8bb16e11b1ca9974a645", + "label": "순대국", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d457797b0d58c0c77656", + "label": "뼈해장국", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f8ee75edf86084bdaf31-history", - "label": "커트", - "amount": 5000, + "id": "8bb16e11b1ca9974a645-history", + "label": "순대국", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d457797b0d58c0c77656-history", + "label": "뼈해장국", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -43948,465 +45372,317 @@ "comments": [] }, { - "id": "goodprice-4943", - "name": "삼양순대", - "businessName": "삼양순대", - "categorySlug": "korean", - "address": "충청남도 천안시 동남구 공설시장1길 9 (대흥동)", - "district": "충청남도 천안시", - "latitude": 36.8099075703016, - "longitude": 127.148908259385, - "representativePriceAmount": 8000, - "representativePriceLabel": "순대국밥", + "id": "goodprice-5609", + "name": "삼국지", + "businessName": "삼국지", + "categorySlug": "chinese", + "address": "전라남도 목포시 하당남부로 108 (옥암동)", + "district": "전라남도 목포시", + "latitude": 34.8022264162699, + "longitude": 126.435217612049, + "representativePriceAmount": 6000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-562-3980 / 영업시간: 10:00~20:00 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-284-8775 / 영업시간: 11:00~21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2a0d311bab63772dd300", - "label": "순대국밥", - "amount": 8000, + "id": "57287162157decfbdbb0", + "label": "자장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0057edad7cf866df0acc", - "label": "돼지국밥", + "id": "fe4abe27502504c8bfc8", + "label": "짬뽕", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ac98b5753ab545e6af14", - "label": "내장국밥", - "amount": 9000, + "id": "d24db216cce9e743c5a9", + "label": "간짜장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "2a0d311bab63772dd300-history", - "label": "순대국밥", + "id": "b19230bf31fea2b04293", + "label": "갈비탕", "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "0057edad7cf866df0acc-history", - "label": "돼지국밥", + "id": "6fc8a9170233778ea26f", + "label": "곰탕", "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "ac98b5753ab545e6af14-history", - "label": "내장국밥", - "amount": 9000, + "id": "fb7a7c646dedc7cd46b7", + "label": "떡국", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4944", - "name": "서산순대집", - "businessName": "서산순대집", - "categorySlug": "korean", - "address": "충청남도 천안시 동남구 큰시장길 17 (사직동)", - "district": "충청남도 천안시", - "latitude": 36.8018424794039, - "longitude": 127.148521406806, - "representativePriceAmount": 8000, - "representativePriceLabel": "순대국밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-555-3723 / 영업시간: 06:00~20:00 명절 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "c3771d2fda153399b432", - "label": "순대국밥", + "id": "d120605263662b645376", + "label": "떡만두국", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e7c51ace172ae1b69145", - "label": "돼지국밥", + "id": "853f8bff341a805cf8d8", + "label": "만두국", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "68f095d11d6e55dac837", - "label": "내장국밥", + "id": "4141f87ba20ccfe9c704", + "label": "볶음밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7790bf281159d90d6ed9", - "label": "소머리국밥", + "id": "1abe81fd01dd40f081f0", + "label": "볶짜면", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "c3771d2fda153399b432-history", - "label": "순대국밥", - "amount": 8000, + "id": "9e528a92b98409070588", + "label": "볶짬면", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "e7c51ace172ae1b69145-history", - "label": "돼지국밥", - "amount": 8000, + "id": "e842af80c8cd359a3e71", + "label": "사이다 1.25mL", + "amount": 3000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "68f095d11d6e55dac837-history", - "label": "내장국밥", - "amount": 8000, + "id": "40d444c35e66a2e2a478", + "label": "사이다 500mL", + "amount": 2000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "7790bf281159d90d6ed9-history", - "label": "소머리국밥", + "id": "eac97474c7f60405023f", + "label": "삼선볶음밥", "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5183", - "name": "가야장", - "businessName": "가야장", - "categorySlug": "chinese", - "address": "전북특별자치도 군산시 경암4길 4 경암동", - "district": "전북특별자치도 군산시", - "latitude": 35.9758848350524, - "longitude": 126.731277098377, - "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-442-2760 / 영업시간: 화~일(매주 월요일 휴무) 10:30~19:40", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "1b3976bcadcf20f1dc58", - "label": "짜장면", - "amount": 6000, + "id": "e1fd30c04c47c76720ac", + "label": "새우볶음밥", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "18c5ade509519b6da69e", - "label": "간짜장", - "amount": 9000, + "id": "85f8a8dde7c5d1304f5c", + "label": "우동", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "973eea20776685005349", - "label": "볶음밥", - "amount": 8000, + "id": "6b8f18e08a7d5f1ccef9", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "22226462835f11323068", - "label": "우동", + "id": "fd7b8fa3652a77981a94", + "label": "짬뽕밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "07ed433051fe91249ba9", - "label": "잡채밥", - "amount": 9000, + "id": "364a90efac0606959c6f", + "label": "짬짜면", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d19e70409ddbbd0f76d8", - "label": "짬뽕", - "amount": 8000, + "id": "594aa06e98144d5111fc", + "label": "콜라 1.25mL", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "32bb6466cda53c74eaed", - "label": "짬뽕밥", - "amount": 8000, + "id": "4f23a7ba91747661dec6", + "label": "콜라 500mL", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1b3976bcadcf20f1dc58-history", - "label": "짜장면", + "id": "57287162157decfbdbb0-history", + "label": "자장면", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "18c5ade509519b6da69e-history", - "label": "간짜장", - "amount": 9000, + "id": "fe4abe27502504c8bfc8-history", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "973eea20776685005349-history", - "label": "볶음밥", + "id": "d24db216cce9e743c5a9-history", + "label": "간짜장", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "22226462835f11323068-history", - "label": "우동", + "id": "b19230bf31fea2b04293-history", + "label": "갈비탕", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "07ed433051fe91249ba9-history", - "label": "잡채밥", - "amount": 9000, + "id": "6fc8a9170233778ea26f-history", + "label": "곰탕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d19e70409ddbbd0f76d8-history", - "label": "짬뽕", + "id": "fb7a7c646dedc7cd46b7-history", + "label": "떡국", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "32bb6466cda53c74eaed-history", - "label": "짬뽕밥", + "id": "d120605263662b645376-history", + "label": "떡만두국", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14783", - "name": "건행사", - "businessName": "건행사", - "categorySlug": "korean", - "address": "전북특별자치도 군산시 문화로 194 (미장동) 미장동", - "district": "전북특별자치도 군산시", - "latitude": 35.96975827182978, - "longitude": 126.72713182040677, - "representativePriceAmount": 3500, - "representativePriceLabel": "양념 제육(600g)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 양념 제육(600g) 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-452-3880 / 영업시간: 08:00~20:30", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "53df84a9e81e13e3258b", - "label": "양념 제육(600g)", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" }, { - "id": "9334f400f0b9e8abc02b", - "label": "양념 불고기(600g)", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "53df84a9e81e13e3258b-history", - "label": "양념 제육(600g)", - "amount": 3500, + "id": "853f8bff341a805cf8d8-history", + "label": "만두국", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9334f400f0b9e8abc02b-history", - "label": "양념 불고기(600g)", - "amount": 3500, + "id": "4141f87ba20ccfe9c704-history", + "label": "볶음밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13060", - "name": "국일식당", - "businessName": "국일식당", - "categorySlug": "korean", - "address": "전북특별자치도 군산시 평화길 99-4 (죽성동) 국일식당", - "district": "전북특별자치도 군산시", - "latitude": 35.98618129717657, - "longitude": 126.71664597988809, - "representativePriceAmount": 10000, - "representativePriceLabel": "생선탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생선탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-445-2716", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "65566625f35d894ef523", - "label": "생선탕", + "id": "1abe81fd01dd40f081f0-history", + "label": "볶짜면", "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "65566625f35d894ef523-history", - "label": "생선탕", + "id": "9e528a92b98409070588-history", + "label": "볶짬면", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5737", - "name": "구봉국수", - "businessName": "구봉국수", - "categorySlug": "korean", - "address": "전라남도 여수시 좌수영로 18-4 (서교동)", - "district": "전라남도 여수시", - "latitude": 34.7420171629949, - "longitude": 127.728259892105, - "representativePriceAmount": 6000, - "representativePriceLabel": "잔치국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-641-0389 / 영업시간: 매일 11:00-20:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "109ce5866f47d8e1a187", - "label": "잔치국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" }, { - "id": "cb797db23e612bb2fad4", - "label": "칼국수", - "amount": 6000, + "id": "e842af80c8cd359a3e71-history", + "label": "사이다 1.25mL", + "amount": 3000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "5c4612e2e8e3c0628866", - "label": "매밀소바", - "amount": 7000, + "id": "40d444c35e66a2e2a478-history", + "label": "사이다 500mL", + "amount": 2000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "21013ca30c3baa37ef4c", - "label": "김치볶음밥", - "amount": 7000, + "id": "eac97474c7f60405023f-history", + "label": "삼선볶음밥", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "efa92023d3904355c779", - "label": "냉면", - "amount": 7000, + "id": "e1fd30c04c47c76720ac-history", + "label": "새우볶음밥", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "db082c1c3ac156b0d83d", - "label": "메밀소바", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "109ce5866f47d8e1a187-history", - "label": "잔치국수", - "amount": 6000, + "id": "85f8a8dde7c5d1304f5c-history", + "label": "우동", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cb797db23e612bb2fad4-history", - "label": "칼국수", + "id": "6b8f18e08a7d5f1ccef9-history", + "label": "짜장면", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5c4612e2e8e3c0628866-history", - "label": "매밀소바", - "amount": 7000, + "id": "fd7b8fa3652a77981a94-history", + "label": "짬뽕밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "21013ca30c3baa37ef4c-history", - "label": "김치볶음밥", - "amount": 7000, + "id": "364a90efac0606959c6f-history", + "label": "짬짜면", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "efa92023d3904355c779-history", - "label": "냉면", - "amount": 7000, + "id": "594aa06e98144d5111fc-history", + "label": "콜라 1.25mL", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "db082c1c3ac156b0d83d-history", - "label": "메밀소바", - "amount": 6000, + "id": "4f23a7ba91747661dec6-history", + "label": "콜라 500mL", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -44414,117 +45690,65 @@ "comments": [] }, { - "id": "goodprice-5750", - "name": "구이구이식당", - "businessName": "구이구이식당", + "id": "goodprice-16090", + "name": "행복한연탄구이", + "businessName": "행복한연탄구이", "categorySlug": "korean", - "address": "전라남도 여수시 공화남 2길 19 (공화동)", - "district": "전라남도 여수시", - "latitude": 34.7446444430853, - "longitude": 127.742681652413, - "representativePriceAmount": 10000, - "representativePriceLabel": "생선구이백반", + "address": "서울특별시 동대문구 답십리로 145-1 (답십리동)", + "district": "서울특별시 동대문구", + "latitude": 37.573075434834955, + "longitude": 127.05632065426413, + "representativePriceAmount": 4000, + "representativePriceLabel": "라면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생선구이백반 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-666-6567 / 영업시간: 10시-20시", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 라면 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2216-4861", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8825484dd812770d720e", - "label": "생선구이백반", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3c68395046168f61cdb7", - "label": "김치찌개", - "amount": 8000, + "id": "b3781d52c0cf7558953d", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "8825484dd812770d720e-history", - "label": "생선구이백반", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "3c68395046168f61cdb7-history", - "label": "김치찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5738", - "name": "국수가 맛있는 집", - "businessName": "국수가 맛있는 집", - "categorySlug": "korean", - "address": "전라남도 여수시 거북선공원2길 11 (학동)", - "district": "전라남도 여수시", - "latitude": 34.7606101451048, - "longitude": 127.66632099815, - "representativePriceAmount": 6000, - "representativePriceLabel": "잔치국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-686-6640 / 영업시간: 10:30-21:00[영업시간] 15:00-15:30 [브레이크타임] 20:45라스트오더 [매주 일요일 정기휴무]", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "417118a775c805967a5f", - "label": "잔치국수", + "id": "b904231683743f3dedb8", + "label": "누룽지탕", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "106b86239246671b8eca", - "label": "비빔국수", + "id": "b06cba6346d96ed13d5f", + "label": "냉면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "18fa6178b7f75ca0330f", - "label": "김밥", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "417118a775c805967a5f-history", - "label": "잔치국수", - "amount": 6000, + "id": "b3781d52c0cf7558953d-history", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "106b86239246671b8eca-history", - "label": "비빔국수", - "amount": 7000, + "id": "b904231683743f3dedb8-history", + "label": "누룽지탕", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "18fa6178b7f75ca0330f-history", - "label": "김밥", - "amount": 3000, + "id": "b06cba6346d96ed13d5f-history", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -44532,89 +45756,51 @@ "comments": [] }, { - "id": "goodprice-6391", - "name": "대왕한정식", - "businessName": "대왕한정식", - "categorySlug": "korean", - "address": "경상북도 포항시 남구 상도로26번길 10 대왕한정식", - "district": "경상북도 포항시", - "latitude": 36.0112042608931, - "longitude": 129.353700089153, - "representativePriceAmount": 9000, - "representativePriceLabel": "된장찌개", + "id": "goodprice-16968", + "name": "서울대중", + "businessName": "서울대중", + "categorySlug": "chinese", + "address": "전남 목포시 소영길 7 (용당동)", + "district": "전남 목포시", + "latitude": 34.8046888223113, + "longitude": 126.395998892103, + "representativePriceAmount": 6500, + "representativePriceLabel": "짜장", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-277-8570 / 영업시간: 매일 10:00-22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-276-0242", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "64642b9872fa81669093", - "label": "된장찌개", - "amount": 9000, + "id": "53c8884d0d49f2926e06", + "label": "짜장", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6880342cba4a9100ff6b", - "label": "순두부찌개", - "amount": 9000, + "id": "a817a7a7e8612f8f9d44", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "64642b9872fa81669093-history", - "label": "된장찌개", - "amount": 9000, + "id": "53c8884d0d49f2926e06-history", + "label": "짜장", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6880342cba4a9100ff6b-history", - "label": "순두부찌개", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14877", - "name": "더(the) 공감", - "businessName": "더(the) 공감", - "categorySlug": "beauty", - "address": "경상북도 포항시 북구 환호공원길 17-4 (환호동) 1층", - "district": "경상북도 포항시", - "latitude": 36.06810739171294, - "longitude": 129.39160852450493, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-615-9097", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "764484bc613fc79d1948", - "label": "커트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "764484bc613fc79d1948-history", - "label": "커트", - "amount": 10000, + "id": "a817a7a7e8612f8f9d44-history", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -44622,51 +45808,51 @@ "comments": [] }, { - "id": "goodprice-6785", - "name": "발리불소사우나", - "businessName": "발리불소사우나", - "categorySlug": "bath", - "address": "경상남도 창원시 마산회원구 석전동16길 28 (석전동)", - "district": "경상남도 창원시", - "latitude": 35.2368615089355, - "longitude": 128.579505619476, + "id": "goodprice-18247", + "name": "형제집칼국수", + "businessName": "형제집칼국수", + "categorySlug": "korean", + "address": "서울특별시 동대문구 사가정로25길 46 (장안동)", + "district": "서울특별시 동대문구", + "latitude": 37.58079543205763, + "longitude": 127.07099071013515, "representativePriceAmount": 7000, - "representativePriceLabel": "목욕(대인)", + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕(대인) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-292-3588 / 영업시간: 07:30~21:00 매주 토요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2216-7502", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "341ac870e0c7d85d2f96", - "label": "목욕(대인)", + "id": "6d1e68ae06f85f5a1f8c", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d07e3b2d3351c2bbf9aa", - "label": "목욕(소인)", - "amount": 5000, + "id": "a2812450a81a444b1160", + "label": "냉면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "341ac870e0c7d85d2f96-history", - "label": "목욕(대인)", + "id": "6d1e68ae06f85f5a1f8c-history", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d07e3b2d3351c2bbf9aa-history", - "label": "목욕(소인)", - "amount": 5000, + "id": "a2812450a81a444b1160-history", + "label": "냉면", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -44674,177 +45860,159 @@ "comments": [] }, { - "id": "goodprice-7130", - "name": "동문시장고기국수금복식당", - "businessName": "동문시장고기국수금복식당", + "id": "goodprice-5617", + "name": "손가네분식", + "businessName": "손가네분식", "categorySlug": "korean", - "address": "제주특별자치도 제주시 동문로 16", - "district": "제주특별자치도 제주시", - "latitude": 33.5127966491588, - "longitude": 126.5283196783, - "representativePriceAmount": 8000, - "representativePriceLabel": "고기국수", + "address": "전라남도 목포시 남해로 8-1 (산정동)", + "district": "전라남도 목포시", + "latitude": 34.7900774150742, + "longitude": 126.396716006428, + "representativePriceAmount": 2500, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고기국수 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-757-6055 / 영업시간: 18:30에18시30분에 목 08:30-18:30 금 08:30-18:30 토 정기휴무(매주토요일) 일 08:30-18:30 월 08:30-18:30 화 08:30-18:30 수 08:30-18:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-242-3375", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7a91ce4f9ba7bf2e0510", - "label": "고기국수", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3cd8a614d1614e354e89", - "label": "멸치국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c25b3cfcde40adb82fd8", - "label": "비빔국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3780066b021076bc26de", - "label": "김밥(11시30분부터 주문가능)", - "amount": 3000, + "id": "b487a8fb655a489dfc21", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "562f9c7289bbab07e7bc", - "label": "냉 면", + "id": "b1325fdcffcc471076f5", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e231d99b12d821ed4d3b", - "label": "냉국수", + "id": "0f5a593522f328cf3b1f", + "label": "팥죽", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "03942de2eb20f0ff56c1", - "label": "동문시장 고기국수", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b7c5cb75c81a7f3dc8f4", - "label": "멸 고", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3f966ecbacc50b31c393", - "label": "비비고", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "74ebb8a632147c5972f6", - "label": "비빔밥", + "id": "28989ea315f0d903d897", + "label": "동지죽", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "96fde1c8997130173207", - "label": "콩국수", - "amount": 8000, + "id": "da43af9d0c2186fc2e6c", + "label": "팥칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7a91ce4f9ba7bf2e0510-history", - "label": "고기국수", - "amount": 8000, + "id": "b487a8fb655a489dfc21-history", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3cd8a614d1614e354e89-history", - "label": "멸치국수", - "amount": 6000, + "id": "b1325fdcffcc471076f5-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c25b3cfcde40adb82fd8-history", - "label": "비빔국수", + "id": "0f5a593522f328cf3b1f-history", + "label": "팥죽", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3780066b021076bc26de-history", - "label": "김밥(11시30분부터 주문가능)", - "amount": 3000, + "id": "28989ea315f0d903d897-history", + "label": "동지죽", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "562f9c7289bbab07e7bc-history", - "label": "냉 면", - "amount": 7000, + "id": "da43af9d0c2186fc2e6c-history", + "label": "팥칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-16149", + "name": "호미", + "businessName": "호미", + "categorySlug": "korean", + "address": "서울특별시 동대문구 안암로20길 7-15 (제기동) 지하1층", + "district": "서울특별시 동대문구", + "latitude": 37.58802747170622, + "longitude": 127.03482903872096, + "representativePriceAmount": 7000, + "representativePriceLabel": "참치김치찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 참치김치찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8761-3297", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "e231d99b12d821ed4d3b-history", - "label": "냉국수", + "id": "2c9f3dd84ad562d82d8f", + "label": "참치김치찌개", "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "03942de2eb20f0ff56c1-history", - "label": "동문시장 고기국수", + "id": "70086098b8d4cc0e207f", + "label": "부대찌개", "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "b7c5cb75c81a7f3dc8f4-history", - "label": "멸 고", - "amount": 8000, + "id": "52746418016acef31af8", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "3f966ecbacc50b31c393-history", - "label": "비비고", - "amount": 8000, + "id": "2c9f3dd84ad562d82d8f-history", + "label": "참치김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "74ebb8a632147c5972f6-history", - "label": "비빔밥", - "amount": 7000, + "id": "70086098b8d4cc0e207f-history", + "label": "부대찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "96fde1c8997130173207-history", - "label": "콩국수", - "amount": 8000, + "id": "52746418016acef31af8-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -44852,65 +46020,65 @@ "comments": [] }, { - "id": "goodprice-7198", - "name": "동진", - "businessName": "동진", + "id": "goodprice-6374", + "name": "국수마을", + "businessName": "국수마을", "categorySlug": "korean", - "address": "제주특별자치도 제주시 동문로4길 9 (일도일동)", - "district": "제주특별자치도 제주시", - "latitude": 33.5120874337174, - "longitude": 126.528242265925, + "address": "경상북도 포항시 남구 효자동5번길 10 나동 국수마을", + "district": "경상북도 포항시", + "latitude": 36.0078387636712, + "longitude": 129.329195759208, "representativePriceAmount": 6000, - "representativePriceLabel": "멸치국수", + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목 08:00 - 19:00 18:30 라스트오더 금 08:00 - 19:00 18:30 라스트오더 토 08:00 - 19:00 18:30 라스트오더 일 08:00 - 19:00 18:30 라스트오더 월 08:00 - 19:00 18:30 라스트오더 화 08:00 - 19:00 18:30 라스트오더 수 08:00 - 19:00 18:30 라스트오더 매달 1, 3번째 일요일 정기 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목 11:00-15:00 금 11:00-15:00 토 11:00-15:00 일(12/24) 정기휴무(매달2,4번째일요일) 월 11:00-15:00 화 11:00-15:00 수 11:00-15:00 매달2,4번째일요일정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bbc9a233a7677cda6aa6", - "label": "멸치국수", + "id": "452d6dd00d54ae1c3672", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7e5db784a2b8cc9c45e8", - "label": "비빔국수", - "amount": 7000, + "id": "0f7295146e6ba2933806", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "eaf9369c0003c583324d", - "label": "고기국수", - "amount": 8000, + "id": "ff42ed3c643e620425fd", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bbc9a233a7677cda6aa6-history", - "label": "멸치국수", + "id": "452d6dd00d54ae1c3672-history", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7e5db784a2b8cc9c45e8-history", - "label": "비빔국수", - "amount": 7000, + "id": "0f7295146e6ba2933806-history", + "label": "잔치국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "eaf9369c0003c583324d-history", - "label": "고기국수", - "amount": 8000, + "id": "ff42ed3c643e620425fd-history", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -44918,65 +46086,65 @@ "comments": [] }, { - "id": "goodprice-15821", - "name": "디벨롭(주식회사 마켓로스팅)", - "businessName": "디벨롭(주식회사 마켓로스팅)", - "categorySlug": "other-food", - "address": "제주특별자치도 제주시 고산동산5길 4 (이도이동) 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.49553210244031, - "longitude": 126.53372036725969, - "representativePriceAmount": 3000, - "representativePriceLabel": "플렛 화이트", + "id": "goodprice-13391", + "name": "홍두깨손칼국수(청량리)", + "businessName": "홍두깨손칼국수(청량리)", + "categorySlug": "korean", + "address": "서울특별시 동대문구 왕산로 185 (청량리동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.57990785905942, + "longitude": 127.0437870917468, + "representativePriceAmount": 4000, + "representativePriceLabel": "손칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 플렛 화이트 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 1800-6816", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-957-7734", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b8d257d40a15037b8c1a", - "label": "플렛 화이트", - "amount": 3000, + "id": "588d4415f36a67bff3f0", + "label": "손칼국수", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d024b4f2e666e5b530ef", - "label": "바닐라라떼", - "amount": 3000, + "id": "215c49471132fe6ef0d0", + "label": "손짜장면", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "05cf73f5779c3488c57a", - "label": "핸드드립", - "amount": 3000, + "id": "563bc58e7c70cca78333", + "label": "비빔밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b8d257d40a15037b8c1a-history", - "label": "플렛 화이트", - "amount": 3000, + "id": "588d4415f36a67bff3f0-history", + "label": "손칼국수", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d024b4f2e666e5b530ef-history", - "label": "바닐라라떼", - "amount": 3000, + "id": "215c49471132fe6ef0d0-history", + "label": "손짜장면", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "05cf73f5779c3488c57a-history", - "label": "핸드드립", - "amount": 3000, + "id": "563bc58e7c70cca78333-history", + "label": "비빔밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -44984,51 +46152,51 @@ "comments": [] }, { - "id": "goodprice-11580", - "name": "홍순두부", - "businessName": "홍순두부", + "id": "goodprice-14723", + "name": "국시묵자", + "businessName": "국시묵자", "categorySlug": "korean", - "address": "서울특별시 종로구 명륜길 50 1층", - "district": "서울특별시 종로구", - "latitude": 37.5892935619767, - "longitude": 126.994629871047, - "representativePriceAmount": 5500, - "representativePriceLabel": "홍순두부", + "address": "경상북도 포항시 남구 장기면 동해안로 3271-1 -", + "district": "경상북도 포항시", + "latitude": 35.87906957004322, + "longitude": 129.5171647482038, + "representativePriceAmount": 6000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 홍순두부 5,500원입니다.", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 6,000원입니다.", "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "957837f91d58cf5efa45", - "label": "홍순두부", - "amount": 5500, + "id": "73e42d3d50ceb273e862", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4aa7e96eb5cdcde2b16f", - "label": "순두부", - "amount": 6000, + "id": "4751a8df9cf113cbf16a", + "label": "만두국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "957837f91d58cf5efa45-history", - "label": "홍순두부", - "amount": 5500, + "id": "73e42d3d50ceb273e862-history", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4aa7e96eb5cdcde2b16f-history", - "label": "순두부", - "amount": 6000, + "id": "4751a8df9cf113cbf16a-history", + "label": "만두국", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45036,51 +46204,51 @@ "comments": [] }, { - "id": "goodprice-13929", - "name": "효자왕족발", - "businessName": "효자왕족발", + "id": "goodprice-18516", + "name": "홍두깨칼국수(답십리동)", + "businessName": "홍두깨칼국수(답십리동)", "categorySlug": "korean", - "address": "서울특별시 종로구 자하문로 31-2 (통인동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.578801957623014, - "longitude": 126.9712764779437, - "representativePriceAmount": 9000, - "representativePriceLabel": "보쌈정식(점심)", + "address": "서울특별시 동대문구 전농로 99 (답십리동) 1층", + "district": "서울특별시 동대문구", + "latitude": 37.573895151532554, + "longitude": 127.05726590799888, + "representativePriceAmount": 5000, + "representativePriceLabel": "손칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보쌈정식(점심) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-735-7601 / 영업시간: 영업시간 : 매일 11:00~22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2243-2734", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d325e45d19cc4b8bcd47", - "label": "보쌈정식(점심)", - "amount": 9000, + "id": "a9a2bec51f62843c061a", + "label": "손칼국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f35fde8c8ab8bd603b19", - "label": "쟁반막국수", - "amount": 9000, + "id": "c1eaccef5a3a4b49ac14", + "label": "떡만두국", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d325e45d19cc4b8bcd47-history", - "label": "보쌈정식(점심)", - "amount": 9000, + "id": "a9a2bec51f62843c061a-history", + "label": "손칼국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f35fde8c8ab8bd603b19-history", - "label": "쟁반막국수", - "amount": 9000, + "id": "c1eaccef5a3a4b49ac14-history", + "label": "떡만두국", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45088,89 +46256,79 @@ "comments": [] }, { - "id": "goodprice-19242", - "name": "흥진옥", - "businessName": "흥진옥", - "categorySlug": "korean", - "address": "서울특별시 종로구 종로5길 19-12 (청진동) 1층", - "district": "서울특별시 종로구", - "latitude": 37.571396433403386, - "longitude": 126.98027437148129, - "representativePriceAmount": 10000, - "representativePriceLabel": "뼈해장국", + "id": "goodprice-14472", + "name": "다래성", + "businessName": "다래성", + "categorySlug": "chinese", + "address": "경상남도 창원시 마산합포구 교방북2길 1 (교방동) 육일약국 인근", + "district": "경상남도 창원시", + "latitude": 35.2148898765735, + "longitude": 128.56421595996898, + "representativePriceAmount": 7000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-732-2214 / 영업시간: 09:00-21:00 (Break Time 15:00-17:00) 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-243-6166", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "19dcdd4b7f6a29bdd80b", - "label": "뼈해장국", - "amount": 10000, + "id": "e67d5f35a0c3bb2f806c", + "label": "짜장면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "19dcdd4b7f6a29bdd80b-history", - "label": "뼈해장국", - "amount": 10000, + "id": "a48c97e026d335178d18", + "label": "콩국수", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1424", - "name": "마을식당", - "businessName": "마을식당", - "categorySlug": "korean", - "address": "부산광역시 서구 구덕로148번길 37 (토성동1가)", - "district": "부산광역시 서구", - "latitude": 35.098196151826, - "longitude": 129.022780265053, - "representativePriceAmount": 7000, - "representativePriceLabel": "순두부찌개", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-231-7877 / 영업시간: 11:30~18:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "2ba265e80e1d7e4c53dd", - "label": "순두부찌개", - "amount": 7000, + "id": "78e5b1f5be767c0c7f36", + "label": "간짜장", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8510aabe3582c45a7899", - "label": "김치찌개", - "amount": 7000, + "id": "50f44674f1a284dabd19", + "label": "우동", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2ba265e80e1d7e4c53dd-history", - "label": "순두부찌개", + "id": "e67d5f35a0c3bb2f806c-history", + "label": "짜장면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8510aabe3582c45a7899-history", - "label": "김치찌개", - "amount": 7000, + "id": "a48c97e026d335178d18-history", + "label": "콩국수", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "78e5b1f5be767c0c7f36-history", + "label": "간짜장", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "50f44674f1a284dabd19-history", + "label": "우동", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45178,41 +46336,41 @@ "comments": [] }, { - "id": "goodprice-16518", - "name": "만두우", - "businessName": "만두우", + "id": "goodprice-18246", + "name": "홍두깨칼국수(제기동)", + "businessName": "홍두깨칼국수(제기동)", "categorySlug": "korean", - "address": "부산광역시 서구 충무대로255번길 5-39 (남부민동) 1층", - "district": "부산광역시 서구", - "latitude": 35.09250331554456, - "longitude": 129.02367538034923, - "representativePriceAmount": 4500, - "representativePriceLabel": "고기만두", + "address": "서울특별시 동대문구 왕산로 165 (제기동)", + "district": "서울특별시 동대문구", + "latitude": 37.57923386335034, + "longitude": 127.04162867525169, + "representativePriceAmount": 4000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "가격부담없고 편안한 가게. 지역주민과 함께하는 청년만두/만두우 본점입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-244-1719 / 영업시간: 16:00~01:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-960-6126", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5bd458eb207552b81648", - "label": "고기만두", - "amount": 4500, + "id": "6494acb73c5163def3bb", + "label": "칼국수", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e019f64ac88d70bac084", - "label": "김치만두", + "id": "5080c6cd32357a25657a", + "label": "손짜장면", "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e30f8daf65b3681a9532", - "label": "군만두", + "id": "618f60eb7e40a7d5817b", + "label": "돌솥비빔밥", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -45220,22 +46378,22 @@ ], "history": [ { - "id": "5bd458eb207552b81648-history", - "label": "고기만두", - "amount": 4500, + "id": "6494acb73c5163def3bb-history", + "label": "칼국수", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e019f64ac88d70bac084-history", - "label": "김치만두", + "id": "5080c6cd32357a25657a-history", + "label": "손짜장면", "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e30f8daf65b3681a9532-history", - "label": "군만두", + "id": "618f60eb7e40a7d5817b-history", + "label": "돌솥비빔밥", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -45244,65 +46402,51 @@ "comments": [] }, { - "id": "goodprice-1425", - "name": "명문김밥", - "businessName": "명문김밥", + "id": "goodprice-13714", + "name": "다래원", + "businessName": "다래원", "categorySlug": "korean", - "address": "부산광역시 서구 구덕로 124번길 16-1 (토성동4가)", - "district": "부산광역시 서구", - "latitude": 35.097384071594, - "longitude": 129.022711843754, - "representativePriceAmount": 2500, - "representativePriceLabel": "원조김밥", + "address": "경상남도 창원시 성산구 신촌로 21 (신촌동) 지하 21호(신촌동, 유신종합상가)", + "district": "경상남도 창원시", + "latitude": 35.20756422962718, + "longitude": 128.62678091758497, + "representativePriceAmount": 7000, + "representativePriceLabel": "한식부페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 원조김밥 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-254-9295 / 영업시간: 11:00~17:00", + "description": "소방파출소 뒷편 양곡교회 맞은편", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-261-1930", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "54ec0a9e295d0215930c", - "label": "원조김밥", - "amount": 2500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "76ab37cdc09b9c58e21f", - "label": "유부김밥", - "amount": 3000, + "id": "ffc5afe538ca686dd61c", + "label": "한식부페", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6d7f46a60b1538b73483", - "label": "일미김밥", - "amount": 3500, + "id": "1bbaa75eba45137ca793", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "54ec0a9e295d0215930c-history", - "label": "원조김밥", - "amount": 2500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "76ab37cdc09b9c58e21f-history", - "label": "유부김밥", - "amount": 3000, + "id": "ffc5afe538ca686dd61c-history", + "label": "한식부페", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6d7f46a60b1538b73483-history", - "label": "일미김밥", - "amount": 3500, + "id": "1bbaa75eba45137ca793-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45310,34 +46454,34 @@ "comments": [] }, { - "id": "goodprice-1866", - "name": "도심속바닷가식당", - "businessName": "도심속바닷가식당", - "categorySlug": "japanese", - "address": "대구광역시 동구 화랑로 508 (용계동)", - "district": "대구광역시 동구", - "latitude": 35.8746900465407, - "longitude": 128.67940877344, - "representativePriceAmount": 7000, - "representativePriceLabel": "회덮밥", + "id": "goodprice-13402", + "name": "휘경곱창", + "businessName": "휘경곱창", + "categorySlug": "korean", + "address": "서울특별시 동대문구 휘경로14길 15-1 (휘경동)", + "district": "서울특별시 동대문구", + "latitude": 37.59452741434721, + "longitude": 127.06330212739795, + "representativePriceAmount": 10000, + "representativePriceLabel": "야채곱창", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 회덮밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-962-5444 / 영업시간: 매일 10:00-24:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 야채곱창 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-959-7973", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "82aa2cf4a4c52948439e", - "label": "회덮밥", - "amount": 7000, + "id": "c271c607f83b041aad67", + "label": "야채곱창", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8949d4e1fab80d2728ef", - "label": "도심속물회", + "id": "db59534982b92f180c2d", + "label": "알곱창", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -45345,15 +46489,15 @@ ], "history": [ { - "id": "82aa2cf4a4c52948439e-history", - "label": "회덮밥", - "amount": 7000, + "id": "c271c607f83b041aad67-history", + "label": "야채곱창", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8949d4e1fab80d2728ef-history", - "label": "도심속물회", + "id": "db59534982b92f180c2d-history", + "label": "알곱창", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -45362,51 +46506,51 @@ "comments": [] }, { - "id": "goodprice-17588", - "name": "브레드나눔터", - "businessName": "브레드나눔터", - "categorySlug": "bakery", - "address": "인천 동구 화도진로 36 1층(송현동)", - "district": "인천 동구", - "latitude": 37.4759668751201, - "longitude": 126.634280823838, - "representativePriceAmount": 5000, - "representativePriceLabel": "꽈배기 12개", + "id": "goodprice-13719", + "name": "다복식당", + "businessName": "다복식당", + "categorySlug": "korean", + "address": "경상남도 창원시 마산합포구 진동면 진북산업로 82 1층", + "district": "경상남도 창원시", + "latitude": 35.123393709489115, + "longitude": 128.4878116919056, + "representativePriceAmount": 6000, + "representativePriceLabel": "한식(뷔페)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 꽈배기 12개 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-6435-2786 / 영업시간: 월 ~ 토 10:00 ~ 20:00 일요일 휴무", + "description": "방문접수/출장", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-271-7783 / 영업시간: 월 11:00 - 13:30 화 11:00 - 13:30 수 11:00 - 13:30 목 11:00 - 13:30 금 11:00 - 13:30 토 정기휴무 (매주 토요일) 일 정기휴무 (매주 일요일)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "831f5a33947582709ff7", - "label": "꽈배기 12개", - "amount": 5000, + "id": "1da55d5cd13c4148d9f1", + "label": "한식(뷔페)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a665dc9cc8535a2d2ea2", - "label": "도너츠10개", - "amount": 5000, + "id": "594b0b30c62c062e6c86", + "label": "도시락(배달)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "831f5a33947582709ff7-history", - "label": "꽈배기 12개", - "amount": 5000, + "id": "1da55d5cd13c4148d9f1-history", + "label": "한식(뷔페)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a665dc9cc8535a2d2ea2-history", - "label": "도너츠10개", - "amount": 5000, + "id": "594b0b30c62c062e6c86-history", + "label": "도시락(배달)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45414,33 +46558,26 @@ "comments": [] }, { - "id": "goodprice-13023", - "name": "석이네분식", - "businessName": "석이네분식", + "id": "goodprice-14499", + "name": "곰배령칼국수", + "businessName": "곰배령칼국수", "categorySlug": "korean", - "address": "인천광역시 동구 샛골로162번길 17 (송림동) 1층 (현대시장 내)", - "district": "인천광역시 동구", - "latitude": 37.47696074463108, - "longitude": 126.64588420994905, - "representativePriceAmount": 7000, - "representativePriceLabel": "백반", + "address": "서울특별시 중랑구 용마산로117길 54 (신내동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.60000933540708, + "longitude": 127.09746561077974, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-2307-9215 / 영업시간: 월~일 10:00-19:00 (일) 첫째, 셋째주 휴무", + "description": "깨끗하고 넓은 홀, 친정한 사장님이 해주시는 맛있고 저렴한 칼국수가 일품", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4175-9089", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "08ecc717f28f9da1d710", - "label": "백반", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "33057dcec39f553427a7", + "id": "c18af7f3ed6b00dc39b4", "label": "칼국수", "amount": 6000, "verificationStatus": "verified", @@ -45449,14 +46586,7 @@ ], "history": [ { - "id": "08ecc717f28f9da1d710-history", - "label": "백반", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "33057dcec39f553427a7-history", + "id": "c18af7f3ed6b00dc39b4-history", "label": "칼국수", "amount": 6000, "verificationStatus": "verified", @@ -45466,37 +46596,37 @@ "comments": [] }, { - "id": "goodprice-17597", - "name": "선이네생선구이", - "businessName": "선이네생선구이", + "id": "goodprice-6810", + "name": "다복한식부페", + "businessName": "다복한식부페", "categorySlug": "korean", - "address": "인천 동구 샛골로 128-1 1층(송림동)", - "district": "인천 동구", - "latitude": 37.4737972412671, - "longitude": 126.64440141639, - "representativePriceAmount": 10000, - "representativePriceLabel": "생선구이", + "address": "경상남도 창원시 성산구 동산로65번길 33 (상남동)", + "district": "경상남도 창원시", + "latitude": 35.2170705144953, + "longitude": 128.684009304443, + "representativePriceAmount": 7000, + "representativePriceLabel": "뷔페 1인", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생선구이 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-762-4358 / 영업시간: 월 ~ 일 06:00 ~ 21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뷔페 1인 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-282-1212", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0b0c5c7f45814eaca1ca", - "label": "생선구이", - "amount": 10000, + "id": "4f504bded820354ee27f", + "label": "뷔페 1인", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0b0c5c7f45814eaca1ca-history", - "label": "생선구이", - "amount": 10000, + "id": "4f504bded820354ee27f-history", + "label": "뷔페 1인", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45504,79 +46634,51 @@ "comments": [] }, { - "id": "goodprice-17610", - "name": "송학남원추어탕", - "businessName": "송학남원추어탕", - "categorySlug": "korean", - "address": "인천 동구 수문통로 15 1층(송현동)", - "district": "인천 동구", - "latitude": 37.4779829436, - "longitude": 126.632329265245, - "representativePriceAmount": 10000, - "representativePriceLabel": "추어탕", + "id": "goodprice-11221", + "name": "다이렉트커피", + "businessName": "다이렉트커피", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 용마산로100길 35 (망우동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.59112764712891, + "longitude": 127.10012606552009, + "representativePriceAmount": 2300, + "representativePriceLabel": "커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-5256 / 영업시간: 월 ~ 일 08:00 ~ 21:00 둘째주, 넷째주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 2,300원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-0288-7263", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ea7f5210d268650990a3", - "label": "추어탕", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9bee9c80b5101f31b3fd", - "label": "닭개장", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ed6bedaefa6cf9a50f6e", - "label": "돈까스", - "amount": 8000, + "id": "9e0c8de523624f9df24d", + "label": "커피", + "amount": 2300, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9ae553c78148220361de", - "label": "꼬물이만두", - "amount": 5000, + "id": "8dd85c3ffd61adad1798", + "label": "국산차", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ea7f5210d268650990a3-history", - "label": "추어탕", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9bee9c80b5101f31b3fd-history", - "label": "닭개장", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ed6bedaefa6cf9a50f6e-history", - "label": "돈까스", - "amount": 8000, + "id": "9e0c8de523624f9df24d-history", + "label": "커피", + "amount": 2300, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9ae553c78148220361de-history", - "label": "꼬물이만두", - "amount": 5000, + "id": "8dd85c3ffd61adad1798-history", + "label": "국산차", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45584,51 +46686,51 @@ "comments": [] }, { - "id": "goodprice-2288", - "name": "남진컴퓨터", - "businessName": "남진컴퓨터", - "categorySlug": "laundry", - "address": "광주광역시 서구 구성로 109-3 (양동)", - "district": "광주광역시 서구", - "latitude": 35.1488007460721, - "longitude": 126.907060175109, - "representativePriceAmount": 6000, - "representativePriceLabel": "정장1벌드라이", + "id": "goodprice-7019", + "name": "김녕빵집", + "businessName": "김녕빵집", + "categorySlug": "bakery", + "address": "제주특별자치도 제주시 구좌읍 김녕로1길 25 1층", + "district": "제주특별자치도 제주시", + "latitude": 33.5559045926848, + "longitude": 126.747620056758, + "representativePriceAmount": 2100, + "representativePriceLabel": "소금버터빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 정장1벌드라이 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-368-3931 / 영업시간: 월~토 06:00~21:00 ※ 정기휴무 : 매주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 소금버터빵 2,100원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목 10:00-17:00 금 10:00-17:00 토 10:00-17:00 일 10:00-17:00 월 10:00-17:00 화 정기휴무(매주화요일) 수 정기휴무(매주수요일) --통로앞정차금지-", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e00120fc818d6830b7a0", - "label": "정장1벌드라이", - "amount": 6000, + "id": "5152fce2db5cc2d3fdb4", + "label": "소금버터빵", + "amount": 2100, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "95d899bae1e9ed7adeb7", - "label": "바지하단수선", - "amount": 3000, + "id": "0ac60737e39278293deb", + "label": "누룽지빵", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e00120fc818d6830b7a0-history", - "label": "정장1벌드라이", - "amount": 6000, + "id": "5152fce2db5cc2d3fdb4-history", + "label": "소금버터빵", + "amount": 2100, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "95d899bae1e9ed7adeb7-history", - "label": "바지하단수선", - "amount": 3000, + "id": "0ac60737e39278293deb-history", + "label": "누룽지빵", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45636,37 +46738,37 @@ "comments": [] }, { - "id": "goodprice-14036", - "name": "담양통추어탕", - "businessName": "담양통추어탕", - "categorySlug": "korean", - "address": "광주광역시 서구 월드컵4강로229번길 47 (쌍촌동) 1층", - "district": "광주광역시 서구", - "latitude": 35.154919778981, - "longitude": 126.86578570780239, - "representativePriceAmount": 10000, - "representativePriceLabel": "추어탕", + "id": "goodprice-16076", + "name": "담다", + "businessName": "담다", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 봉화산로4길 62 (중화동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.59915611624509, + "longitude": 127.0751578970956, + "representativePriceAmount": 2500, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-384-9980", + "description": "아담하고 깔끔한 카페로 조용하게 커피를 즐길수 있는곳", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 영업시간 : 월~금 (10시~19시) , 토 (11시~17시) 매주 일요일, 마지막주 토요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "79a3aa519ea61da8d70b", - "label": "추어탕", - "amount": 10000, + "id": "cf077ba03d28dc1f8368", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "79a3aa519ea61da8d70b-history", - "label": "추어탕", - "amount": 10000, + "id": "cf077ba03d28dc1f8368-history", + "label": "아메리카노", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45674,37 +46776,37 @@ "comments": [] }, { - "id": "goodprice-14736", - "name": "대성떡방앗간", - "businessName": "대성떡방앗간", - "categorySlug": "other-service", - "address": "광주광역시 서구 상무대로1005번길 46 (내방동) 1층", - "district": "광주광역시 서구", - "latitude": 35.155975871786964, - "longitude": 126.87179971307111, - "representativePriceAmount": 10000, - "representativePriceLabel": "참기름 350ml", + "id": "goodprice-1655", + "name": "민아식당", + "businessName": "민아식당", + "categorySlug": "korean", + "address": "부산광역시 중구 충장대로9번길 21-1 (중앙동4가)", + "district": "부산광역시 중구", + "latitude": 35.107289725493, + "longitude": 129.037456085025, + "representativePriceAmount": 9000, + "representativePriceLabel": "따로국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 참기름 350ml 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-365-0059", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 따로국밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-462-1774 / 영업시간: 11:00 - 20:00 일요일,공휴일 휴일,", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1e83676c162295441cc6", - "label": "참기름 350ml", - "amount": 10000, + "id": "0286e90b72d575254680", + "label": "따로국밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1e83676c162295441cc6-history", - "label": "참기름 350ml", - "amount": 10000, + "id": "0286e90b72d575254680-history", + "label": "따로국밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45712,135 +46814,51 @@ "comments": [] }, { - "id": "goodprice-2548", - "name": "주연칼국수", - "businessName": "주연칼국수", + "id": "goodprice-14494", + "name": "대성식당", + "businessName": "대성식당", "categorySlug": "korean", - "address": "대전광역시 동구 흥룡로 29-1 (가양동)", - "district": "대전광역시 동구", - "latitude": 36.3488890741268, - "longitude": 127.447085109324, - "representativePriceAmount": 5500, - "representativePriceLabel": "바지락 칼국수", + "address": "서울특별시 중랑구 면목로33길 14 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.57679837613986, + "longitude": 127.08508904482112, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 바지락 칼국수 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-626-3838 / 영업시간: 12:00 ~ 21:00 / 매주 수요일 정기 휴무 / 브레이크타임 14:00 ~ 16:00", + "description": "친근한 분위기, 따뜻한 집밥을 먹을 수 있는 가게", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8962-7097 / 영업시간: 영업시간 : 09:00~18:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "aab739b47ac5ba34f11f", - "label": "바지락 칼국수", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ac7c6bf408f6d2070a5a", - "label": "삼겹살(200g)", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "cef2c5b6f176f269fe9d", - "label": "초벌구이 돼지갈비(300g)", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "474f31ad9aa0106ce4d0", - "label": "냉면(후식)", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5d3cf611d7f488cfe79d", - "label": "두부두루치기", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2ee23bdb2f7b5ad1923c", - "label": "수육", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "078548fe793d0f9df8ca", - "label": "갈비탕", + "id": "92f83fa335b25a3e4589", + "label": "김치찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1856b0766deb45427088", - "label": "비빔냉면(후식)", - "amount": 4000, + "id": "7def001327afbe18377d", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "aab739b47ac5ba34f11f-history", - "label": "바지락 칼국수", - "amount": 5500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ac7c6bf408f6d2070a5a-history", - "label": "삼겹살(200g)", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "cef2c5b6f176f269fe9d-history", - "label": "초벌구이 돼지갈비(300g)", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "474f31ad9aa0106ce4d0-history", - "label": "냉면(후식)", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5d3cf611d7f488cfe79d-history", - "label": "두부두루치기", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2ee23bdb2f7b5ad1923c-history", - "label": "수육", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "078548fe793d0f9df8ca-history", - "label": "갈비탕", + "id": "92f83fa335b25a3e4589-history", + "label": "김치찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1856b0766deb45427088-history", - "label": "비빔냉면(후식)", - "amount": 4000, + "id": "7def001327afbe18377d-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -45848,76 +46866,41 @@ "comments": [] }, { - "id": "goodprice-16082", - "name": "중국집", - "businessName": "중국집", + "id": "goodprice-1638", + "name": "석기시대", + "businessName": "석기시대", "categorySlug": "chinese", - "address": "대전광역시 동구 대전로791번길 44 (중동) 1층 중국집", - "district": "대전광역시 동구", - "latitude": 36.32950860974082, - "longitude": 127.43082628893573, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "address": "부산광역시 중구 동광길 75-1 1층(동광동5가)", + "district": "부산광역시 중구", + "latitude": 35.1061565412503, + "longitude": 129.034868484553, + "representativePriceAmount": 7000, + "representativePriceLabel": "만둣국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "중앙시장 먹자골목 위치", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-226-0648 / 영업시간: 10:00 ~ 20:00 매주 월요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 만둣국 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월~토 15:00~22:00 매주 일요일 휴무 명절 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e882b3ce2c8154bbb6b9", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3e3493d59a4b2a028967", - "label": "콩국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "640a02beef33cda55850", - "label": "짜장밥", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a88bf7fc79b9a1232141", - "label": "짬뽕", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "707b1132e92790ca0101", - "label": "간짜장", + "id": "90be9cfabbae89a06c59", + "label": "만둣국", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ad68a5952712704bd91e", - "label": "냉밀면", + "id": "e6cd1311830e29811642", + "label": "찐만두", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "13faf980bdab9a71bf6e", - "label": "비빔냉면", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "be9d0b7927d91396e5c3", - "label": "물냉면", + "id": "538c2922de55b1b33762", + "label": "군만두", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -45925,57 +46908,22 @@ ], "history": [ { - "id": "e882b3ce2c8154bbb6b9-history", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3e3493d59a4b2a028967-history", - "label": "콩국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "640a02beef33cda55850-history", - "label": "짜장밥", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a88bf7fc79b9a1232141-history", - "label": "짬뽕", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "707b1132e92790ca0101-history", - "label": "간짜장", + "id": "90be9cfabbae89a06c59-history", + "label": "만둣국", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ad68a5952712704bd91e-history", - "label": "냉밀면", + "id": "e6cd1311830e29811642-history", + "label": "찐만두", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "13faf980bdab9a71bf6e-history", - "label": "비빔냉면", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "be9d0b7927d91396e5c3-history", - "label": "물냉면", + "id": "538c2922de55b1b33762-history", + "label": "군만두", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -45984,51 +46932,51 @@ "comments": [] }, { - "id": "goodprice-2536", - "name": "지선미용타운", - "businessName": "지선미용타운", - "categorySlug": "beauty", - "address": "대전광역시 동구 솔랑시울길 87 (소제동)", - "district": "대전광역시 동구", - "latitude": 36.3353609397276, - "longitude": 127.434496484742, + "id": "goodprice-14504", + "name": "대흥각", + "businessName": "대흥각", + "categorySlug": "chinese", + "address": "서울특별시 중랑구 동일로139길 7 (중화동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.603360654414715, + "longitude": 127.07849409383937, "representativePriceAmount": 5000, - "representativePriceLabel": "미용료(커트)", + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 09:00 ~ 18:00", + "description": "친절하고 저렴한 가격으로 맛있는 음식을 즐길 수 있습니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1415-5215 / 영업시간: 영업시간 : 11시~20시 휴무일 : 매주 금요일 배달 : X", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "db024191dfc8ff7b1e88", - "label": "미용료(커트)", + "id": "420207524bf86e382ccf", + "label": "자장면", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "94269a529ea945c59334", - "label": "커트(성인 일반)", - "amount": 5000, + "id": "36fe6547c61466141480", + "label": "짬뽕", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "db024191dfc8ff7b1e88-history", - "label": "미용료(커트)", + "id": "420207524bf86e382ccf-history", + "label": "자장면", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "94269a529ea945c59334-history", - "label": "커트(성인 일반)", - "amount": 5000, + "id": "36fe6547c61466141480-history", + "label": "짬뽕", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -46036,51 +46984,79 @@ "comments": [] }, { - "id": "goodprice-15108", - "name": "명문칼국수", - "businessName": "명문칼국수", + "id": "goodprice-17050", + "name": "양가손만두 부평직영점", + "businessName": "양가손만두 부평직영점", "categorySlug": "korean", - "address": "울산광역시 남구 월평로37번길 5 (신정동) 1층", - "district": "울산광역시 남구", - "latitude": 35.541808785746284, - "longitude": 129.30930615922028, - "representativePriceAmount": 6000, - "representativePriceLabel": "손칼국수", + "address": "부산광역시 중구 부평1길 48 (부평동2가) 1층", + "district": "부산광역시 중구", + "latitude": 35.101570977897914, + "longitude": 129.02602680604465, + "representativePriceAmount": 7000, + "representativePriceLabel": "고기찐만두", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-274-2719", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고기찐만두 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-243-8436", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "123225ca048607ddcd41", - "label": "손칼국수", - "amount": 6000, + "id": "c978c3f7c66a39ed66f1", + "label": "고기찐만두", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b51874bfd05dc147df4e", - "label": "수제비", - "amount": 6000, + "id": "ed9e210fd664e04181b3", + "label": "고기군만두", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "bec52f4a97622533d877", + "label": "김치찐만두", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0ad6b287f0e5c6ade870", + "label": "김치군만두", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "123225ca048607ddcd41-history", - "label": "손칼국수", - "amount": 6000, + "id": "c978c3f7c66a39ed66f1-history", + "label": "고기찐만두", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b51874bfd05dc147df4e-history", - "label": "수제비", - "amount": 6000, + "id": "ed9e210fd664e04181b3-history", + "label": "고기군만두", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "bec52f4a97622533d877-history", + "label": "김치찐만두", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0ad6b287f0e5c6ade870-history", + "label": "김치군만두", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -46088,197 +47064,145 @@ "comments": [] }, { - "id": "goodprice-11681", - "name": "모두랑국수먹는날", - "businessName": "모두랑국수먹는날", - "categorySlug": "korean", - "address": "울산광역시 남구 수암로 54번길 17 1층", - "district": "울산광역시 남구", - "latitude": 35.5292661959496, - "longitude": 129.313833538665, + "id": "goodprice-16077", + "name": "동춘원", + "businessName": "동춘원", + "categorySlug": "chinese", + "address": "서울특별시 중랑구 망우로66길 57 (망우동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.59695205479161, + "longitude": 127.09963096790973, "representativePriceAmount": 5000, - "representativePriceLabel": "국수", + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-260-2411", + "description": "저렴한 가격으로 따뜻한 한끼를 먹을수 있는곳. 배달은 안되지만 오랜 단골을 보유한 맛집", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-434-9454 / 영업시간: 영업시간 : 11시~21시 (브레이크타임 : 15시30분~16시30분) 매주 화요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "80b4892e6b97b2158967", - "label": "국수", + "id": "966acda47a5010ace83f", + "label": "자장면", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "354a738286cdc7eab1be", - "label": "비빔국수", + "id": "c1f842683e409662f495", + "label": "짬뽕", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "985cada66c1bf993583a", - "label": "냉국수", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "80b4892e6b97b2158967-history", - "label": "국수", + "id": "966acda47a5010ace83f-history", + "label": "자장면", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "354a738286cdc7eab1be-history", - "label": "비빔국수", + "id": "c1f842683e409662f495-history", + "label": "짬뽕", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "985cada66c1bf993583a-history", - "label": "냉국수", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-17495", - "name": "무교동갈비", - "businessName": "무교동갈비", - "categorySlug": "korean", - "address": "울산광역시 남구 북부순환도로13번길 6-3 (무거동) 1층", - "district": "울산광역시 남구", - "latitude": 35.55177936582806, - "longitude": 129.26483586878214, - "representativePriceAmount": 8000, - "representativePriceLabel": "뷔페정식", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뷔페정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-221-0472", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "d71c7697428acbe55d45", - "label": "뷔페정식", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "d71c7697428acbe55d45-history", - "label": "뷔페정식", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-3440", - "name": "백천홍두깨칼국수", - "businessName": "백천홍두깨칼국수", - "categorySlug": "korean", - "address": "경기도 수원시 팔달구 수원천로 264번길 21-11", - "district": "경기도 수원시", - "latitude": 37.2774167510803, - "longitude": 127.019892600036, - "representativePriceAmount": 5000, - "representativePriceLabel": "칼국수(보통)", + "id": "goodprice-14625", + "name": "용정반점", + "businessName": "용정반점", + "categorySlug": "chinese", + "address": "대구광역시 중구 중앙대로 376-16 (덕산동) .", + "district": "대구광역시 중구", + "latitude": 35.8664000572041, + "longitude": 128.5943258541125, + "representativePriceAmount": 5500, + "representativePriceLabel": "쇠고기짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수(보통) 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-7559-1261", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 쇠고기짜장면 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-423-8118 / 영업시간: 평일, 토요일 10:30 - 20:30 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e2d4ec1cb1b53059db7c", - "label": "칼국수(보통)", - "amount": 5000, + "id": "0e7c9a64868c0096c327", + "label": "쇠고기짜장면", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "97885033b76a4a25ff52", - "label": "수제비", - "amount": 5000, + "id": "8300ade851bc19ca5f98", + "label": "짬뽕", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a75d32bac0bc667c06c9", - "label": "칼제비", - "amount": 6000, + "id": "8df52d9b92a90956e057", + "label": "해물야끼우동", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "371dd52c0bf37f73acea", - "label": "칼국수", - "amount": 5000, + "id": "0cadf78055d29e8ca9a0", + "label": "우동", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "267130e6535093357bac", - "label": "칼국수(소)", - "amount": 4000, + "id": "3045c4408f6f80600d31", + "label": "볶음밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e2d4ec1cb1b53059db7c-history", - "label": "칼국수(보통)", - "amount": 5000, + "id": "0e7c9a64868c0096c327-history", + "label": "쇠고기짜장면", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "97885033b76a4a25ff52-history", - "label": "수제비", - "amount": 5000, + "id": "8300ade851bc19ca5f98-history", + "label": "짬뽕", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a75d32bac0bc667c06c9-history", - "label": "칼제비", - "amount": 6000, + "id": "8df52d9b92a90956e057-history", + "label": "해물야끼우동", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "371dd52c0bf37f73acea-history", - "label": "칼국수", - "amount": 5000, + "id": "0cadf78055d29e8ca9a0-history", + "label": "우동", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "267130e6535093357bac-history", - "label": "칼국수(소)", - "amount": 4000, + "id": "3045c4408f6f80600d31-history", + "label": "볶음밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -46286,51 +47210,37 @@ "comments": [] }, { - "id": "goodprice-13686", - "name": "벽산세탁소", - "businessName": "벽산세탁소", - "categorySlug": "laundry", - "address": "경기도 수원시 장안구 파장로 53 (정자동, 정자 벽산블루밍) 108호", - "district": "경기도 수원시", - "latitude": 37.3054993333515, - "longitude": 126.99475365985273, - "representativePriceAmount": 6000, - "representativePriceLabel": "드라이클리닝", + "id": "goodprice-1028", + "name": "마션", + "businessName": "마션", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 봉화산로56길 69", + "district": "서울특별시 중랑구", + "latitude": 37.6056814088478, + "longitude": 127.098096524041, + "representativePriceAmount": 2000, + "representativePriceLabel": "커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 드라이클리닝 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-245-1269 / 영업시간: 09:00 ~ 21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월~토 - 07:00~22:00 일 - 12:00~21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8644d786bfa63972df7e", - "label": "드라이클리닝", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6c05c42d574ff73d39b1", - "label": "수선", - "amount": 4000, + "id": "d92a036e993565070f90", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8644d786bfa63972df7e-history", - "label": "드라이클리닝", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6c05c42d574ff73d39b1-history", - "label": "수선", - "amount": 4000, + "id": "d92a036e993565070f90-history", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -46338,41 +47248,41 @@ "comments": [] }, { - "id": "goodprice-4394", - "name": "언덕집", - "businessName": "언덕집", + "id": "goodprice-2018", + "name": "우리할매칼국수", + "businessName": "우리할매칼국수", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 금강로83번길 6 (운교동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8783065745038, - "longitude": 127.730392278353, - "representativePriceAmount": 7000, - "representativePriceLabel": "보리밥뷔페", + "address": "대구광역시 중구 남산로7길 44 (남산)", + "district": "대구광역시 중구", + "latitude": 35.8587866686385, + "longitude": 128.580391726297, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보리밥뷔페 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-256-2220", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-255-8802 / 영업시간: 10:00~19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "21bbf10c0afa244b3921", - "label": "보리밥뷔페", - "amount": 7000, + "id": "c0d8462b59ebf338ce48", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "50f9f53c42f395410f4e", - "label": "김치찌개", + "id": "3cff33a3dcec4f057d79", + "label": "칼제비", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e6d2e2da5d0553a217d3", - "label": "된장찌개", + "id": "b180fd10b9b8d3b9ae3c", + "label": "손수제비", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -46380,22 +47290,22 @@ ], "history": [ { - "id": "21bbf10c0afa244b3921-history", - "label": "보리밥뷔페", - "amount": 7000, + "id": "c0d8462b59ebf338ce48-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "50f9f53c42f395410f4e-history", - "label": "김치찌개", + "id": "3cff33a3dcec4f057d79-history", + "label": "칼제비", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e6d2e2da5d0553a217d3-history", - "label": "된장찌개", + "id": "b180fd10b9b8d3b9ae3c-history", + "label": "손수제비", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -46404,89 +47314,65 @@ "comments": [] }, { - "id": "goodprice-4357", - "name": "연화각", - "businessName": "연화각", - "categorySlug": "chinese", - "address": "강원특별자치도 춘천시 충혼길52번길 20-23 (온의동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8617817124155, - "longitude": 127.71898650725, - "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", + "id": "goodprice-15224", + "name": "미례김밥", + "businessName": "미례김밥", + "categorySlug": "korean", + "address": "서울특별시 중랑구 상봉로 7 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58643600575516, + "longitude": 127.0943796758029, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-256-5863 / 영업시간: 11:00 - 15:00 매주 일요일 정기휴무", + "description": "두툼하고 맛있는 김밥을 저렴하게 즐기는 가성비 맛집", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4757-6109", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a067adf881229d7e4aae", - "label": "짜장면", + "id": "76a8c2c670af31371320", + "label": "김밥", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "92e2e457d47b44b7491e", + "label": "김치찌개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7138243870095d0d34b4", - "label": "짬뽕", - "amount": 8000, + "id": "9dca790ca48111ec3567", + "label": "된장찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a067adf881229d7e4aae-history", - "label": "짜장면", - "amount": 6000, + "id": "76a8c2c670af31371320-history", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7138243870095d0d34b4-history", - "label": "짬뽕", - "amount": 8000, + "id": "92e2e457d47b44b7491e-history", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16640", - "name": "예대미용실", - "businessName": "예대미용실", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 후만로 69-1 (후평동) 1층", - "district": "강원특별자치도 춘천시", - "latitude": 37.87612733597792, - "longitude": 127.75221288287008, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-241-2937 / 영업시간: 일, 월 정기휴무(매주 월요일) 화~토 09:00~19:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "987db2128987d31a4c00", - "label": "커트", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "987db2128987d31a4c00-history", - "label": "커트", - "amount": 8000, + "id": "9dca790ca48111ec3567-history", + "label": "된장찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -46494,65 +47380,79 @@ "comments": [] }, { - "id": "goodprice-4395", - "name": "옛촌", - "businessName": "옛촌", + "id": "goodprice-14950", + "name": "윤소인고단백장어죽", + "businessName": "윤소인고단백장어죽", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 향교앞길 4 (교동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8810059576535, - "longitude": 127.734270783857, - "representativePriceAmount": 8000, - "representativePriceLabel": "백반", + "address": "대구광역시 중구 동성로 19-11 (사일동) 1층", + "district": "대구광역시 중구", + "latitude": 35.86899504826444, + "longitude": 128.59462940407954, + "representativePriceAmount": 6000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-254-1511", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-255-7097 / 영업시간: 11:00 ~ 21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f2eaa3a77e60dcd28ae5", - "label": "백반", - "amount": 8000, + "id": "2471f3f144f0f6387a08", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5150e5b5c4187c105cda", - "label": "청국장", - "amount": 8000, + "id": "ce84d13c3048b2bbc70d", + "label": "된장찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "25a06568bb247de0de5e", - "label": "두부전골", - "amount": 9000, + "id": "3c1f90d4016c87ced9d1", + "label": "굴국밥", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "609238e7a422027ccf25", + "label": "제육덮밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f2eaa3a77e60dcd28ae5-history", - "label": "백반", - "amount": 8000, + "id": "2471f3f144f0f6387a08-history", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5150e5b5c4187c105cda-history", - "label": "청국장", - "amount": 8000, + "id": "ce84d13c3048b2bbc70d-history", + "label": "된장찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "25a06568bb247de0de5e-history", - "label": "두부전골", - "amount": 9000, + "id": "3c1f90d4016c87ced9d1-history", + "label": "굴국밥", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "609238e7a422027ccf25-history", + "label": "제육덮밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -46560,51 +47460,65 @@ "comments": [] }, { - "id": "goodprice-14740", - "name": "만나김치식당", - "businessName": "만나김치식당", + "id": "goodprice-11581", + "name": "박리김밥", + "businessName": "박리김밥", "categorySlug": "korean", - "address": "충청북도 청주시 서원구 남이면 양촌2길 12 (남이면)", - "district": "충청북도 청주시", - "latitude": 36.59132784293651, - "longitude": 127.46831535088468, - "representativePriceAmount": 6000, - "representativePriceLabel": "백반", + "address": "서울특별시 중랑구 공릉로2길 22 1층", + "district": "서울특별시 중랑구", + "latitude": 37.6119559660238, + "longitude": 127.079036383266, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-295-2366", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-949-7101", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a7551dd489aa872b08e6", - "label": "백반", - "amount": 6000, + "id": "ed984fc2279ce28e1259", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f0a68db079b13ff98312", - "label": "아침식사", - "amount": 1000, + "id": "3de8708e0ea792b0c025", + "label": "된장찌개", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "15ad00ad2d2b212abce7", + "label": "김치찌개", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a7551dd489aa872b08e6-history", - "label": "백반", - "amount": 6000, + "id": "ed984fc2279ce28e1259-history", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f0a68db079b13ff98312-history", - "label": "아침식사", - "amount": 1000, + "id": "3de8708e0ea792b0c025-history", + "label": "된장찌개", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "15ad00ad2d2b212abce7-history", + "label": "김치찌개", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -46612,34 +47526,27 @@ "comments": [] }, { - "id": "goodprice-14764", - "name": "만리장성", - "businessName": "만리장성", - "categorySlug": "chinese", - "address": "충청북도 청주시 흥덕구 덕암로 2 (봉명동) 봉명동 2803", - "district": "충청북도 청주시", - "latitude": 36.6525501290308, - "longitude": 127.45432666746878, + "id": "goodprice-14012", + "name": "옹진찰밥", + "businessName": "옹진찰밥", + "categorySlug": "korean", + "address": "인천광역시 중구 제물량로306번길 45 (북성동2가) 1층", + "district": "인천광역시 중구", + "latitude": 37.476757097944784, + "longitude": 126.61796394907029, "representativePriceAmount": 8000, - "representativePriceLabel": "짬뽕", + "representativePriceLabel": "소라된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짬뽕 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1440-7787 / 영업시간: 월~일 11:00 ~ 21:30 15:00 ~ 17:00 브레이크타임 20:30 라스트 오더", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소라된장찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-765-2773", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "79ad7c87ec5f79fa76f5", - "label": "짬뽕", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "cf8d6c331577b1ec0f4a", - "label": "간짜장", + "id": "7dbdcb1584bc109479ab", + "label": "소라된장찌개", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -46647,15 +47554,8 @@ ], "history": [ { - "id": "79ad7c87ec5f79fa76f5-history", - "label": "짬뽕", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "cf8d6c331577b1ec0f4a-history", - "label": "간짜장", + "id": "7dbdcb1584bc109479ab-history", + "label": "소라된장찌개", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -46664,37 +47564,37 @@ "comments": [] }, { - "id": "goodprice-14755", - "name": "맘이가", - "businessName": "맘이가", - "categorySlug": "korean", - "address": "충청북도 청주시 청원구 팔결로 170 (외남동)", - "district": "충청북도 청주시", - "latitude": 36.69825806579632, - "longitude": 127.48090489420618, - "representativePriceAmount": 6000, - "representativePriceLabel": "백반", + "id": "goodprice-15221", + "name": "베이글옆케이크", + "businessName": "베이글옆케이크", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 면목로21길 26 (면목동, 현대주택) 102호", + "district": "서울특별시 중랑구", + "latitude": 37.572657693081965, + "longitude": 127.08243699640079, + "representativePriceAmount": 5000, + "representativePriceLabel": "컵케이크", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-225-0033", + "description": "예쁜 떡케이크를 저렴한 가격으로 맛볼수 있습니다. 친절한 상담으로 만족도가 높은 착한가게입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-3917-1293", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "aeb94181ba3935cc87a1", - "label": "백반", - "amount": 6000, + "id": "af37af7f74bbd3a38cc8", + "label": "컵케이크", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "aeb94181ba3935cc87a1-history", - "label": "백반", - "amount": 6000, + "id": "af37af7f74bbd3a38cc8-history", + "label": "컵케이크", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -46702,64 +47602,88 @@ "comments": [] }, { - "id": "goodprice-16991", - "name": "메르토스트", - "businessName": "메르토스트", + "id": "goodprice-13120", + "name": "우리두리머물다", + "businessName": "우리두리머물다", "categorySlug": "other-food", - "address": "충청북도 청주시 서원구 창신로26번길 4 (사창동) (사창동)", - "district": "충청북도 청주시", - "latitude": 36.633121740098396, - "longitude": 127.46456147717325, + "address": "인천광역시 중구 제물량로166번길 5 (신생동) 1층", + "district": "인천광역시 중구", + "latitude": 37.47050706598982, + "longitude": 126.62550477060184, "representativePriceAmount": 3000, - "representativePriceLabel": "계란햄치즈토스트", + "representativePriceLabel": "미식혜(500ml)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 계란햄치즈토스트 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1411-1253 / 영업시간: 11:00~00:10", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 미식혜(500ml) 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1446-1503", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7720c7b3ff1c8a0d2617", - "label": "계란햄치즈토스트", + "id": "7231553709d1149d394a", + "label": "미식혜(500ml)", "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "eeab1760c828a44548cd", - "label": "계란토스트", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "843e15693b30cb2d7208", - "label": "계란햄토스트", - "amount": 2500, + "id": "64658319208128e9beb1", + "label": "박식혜(500ml)", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7720c7b3ff1c8a0d2617-history", - "label": "계란햄치즈토스트", + "id": "7231553709d1149d394a-history", + "label": "미식혜(500ml)", "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "eeab1760c828a44548cd-history", - "label": "계란토스트", - "amount": 2000, + "id": "64658319208128e9beb1-history", + "label": "박식혜(500ml)", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-15226", + "name": "복희커피 인테리어공방", + "businessName": "복희커피 인테리어공방", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 상봉로1길 14 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58627856313082, + "longitude": 127.09386999547063, + "representativePriceAmount": 2500, + "representativePriceLabel": "커피", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "아기자기하고 따뜻한 공간에서 마시는 맛있는 커피 한잔. 사장님도 친절해요~", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2207-5000 / 영업시간: 10:00~19:00 / 목요일 휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "aaac66b79c6d24500538", + "label": "커피", + "amount": 2500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "843e15693b30cb2d7208-history", - "label": "계란햄토스트", + "id": "aaac66b79c6d24500538-history", + "label": "커피", "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -46768,34 +47692,34 @@ "comments": [] }, { - "id": "goodprice-4945", - "name": "서산집", - "businessName": "서산집", + "id": "goodprice-2284", + "name": "서석식당", + "businessName": "서석식당", "categorySlug": "korean", - "address": "충청남도 천안시 동남구 사직로 18 (사직동)", - "district": "충청남도 천안시", - "latitude": 36.8017540145744, - "longitude": 127.149508884078, - "representativePriceAmount": 8000, - "representativePriceLabel": "순대국밥", + "address": "광주광역시 동구 백서로 171-3 1층(서석동)", + "district": "광주광역시 동구", + "latitude": 35.1438778671915, + "longitude": 126.92342010806, + "representativePriceAmount": 9000, + "representativePriceLabel": "낚지비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-552-6650 / 영업시간: 06:00~20:30 명절휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 낚지비빔밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-223-9009 / 영업시간: 11:00-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "802cf8dbc463ccae3b23", - "label": "순대국밥", - "amount": 8000, + "id": "a3826046570543db133c", + "label": "낚지비빔밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c1309533ea4aeb71e387", - "label": "돼지머리국밥", + "id": "770d6cdd5f8722c5e587", + "label": "낚지볶음밥", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -46803,15 +47727,15 @@ ], "history": [ { - "id": "802cf8dbc463ccae3b23-history", - "label": "순대국밥", - "amount": 8000, + "id": "a3826046570543db133c-history", + "label": "낚지비빔밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c1309533ea4aeb71e387-history", - "label": "돼지머리국밥", + "id": "770d6cdd5f8722c5e587-history", + "label": "낚지볶음밥", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -46820,65 +47744,51 @@ "comments": [] }, { - "id": "goodprice-11164", - "name": "선경세탁소", - "businessName": "선경세탁소", - "categorySlug": "laundry", - "address": "충청남도 천안시 동남구 양지4길 15 (봉명동)", - "district": "충청남도 천안시", - "latitude": 36.8084580969342, - "longitude": 127.137098587523, - "representativePriceAmount": 9000, - "representativePriceLabel": "신사복드라이", + "id": "goodprice-14500", + "name": "사가정손두부", + "businessName": "사가정손두부", + "categorySlug": "korean", + "address": "서울특별시 중랑구 면목로44길 62 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58087636617898, + "longitude": 127.09196826611658, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 신사복드라이 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-574-7001", + "description": "다양한 메뉴를 정성들여 만들어 맛있는 사가정 시장 맛집", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-496-7787 / 영업시간: 영업시간 : 11:30~21:00 / 브레이크타임 : 15:00~16:00 휴무일 : 수요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1672ec0e08b233a6d7a9", - "label": "신사복드라이", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5139099ba98e4f009d94", - "label": "기장수선", - "amount": 3000, + "id": "5ae29efe7a758667d9f4", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f636fa3666c34186b98d", - "label": "이불빨래(중)", - "amount": 10000, + "id": "ad9b4506ce37e142a534", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1672ec0e08b233a6d7a9-history", - "label": "신사복드라이", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5139099ba98e4f009d94-history", - "label": "기장수선", - "amount": 3000, + "id": "5ae29efe7a758667d9f4-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f636fa3666c34186b98d-history", - "label": "이불빨래(중)", - "amount": 10000, + "id": "ad9b4506ce37e142a534-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -46886,41 +47796,69 @@ "comments": [] }, { - "id": "goodprice-14780", - "name": "군산꽁보리", - "businessName": "군산꽁보리", + "id": "goodprice-2269", + "name": "수라상", + "businessName": "수라상", "categorySlug": "korean", - "address": "전북특별자치도 군산시 신금길 18 (신영동) 2층, 414호(공설시장)", - "district": "전북특별자치도 군산시", - "latitude": 35.98317108726744, - "longitude": 126.72032453610362, - "representativePriceAmount": 5500, - "representativePriceLabel": "보리비빔밥", + "address": "광주광역시 동구 제봉로82번길 13-9 (동명동)", + "district": "광주광역시 동구", + "latitude": 35.1469059969152, + "longitude": 126.922577872694, + "representativePriceAmount": 7000, + "representativePriceLabel": "찌개(된장순두부청국장김치)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보리비빔밥 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-732-6065 / 영업시간: 11:00~13:00 (시장 휴무일 휴무/ 매월 첫째주, 셋째주 일요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 찌개(된장순두부청국장김치) 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-234-2002 / 영업시간: 11:00-21:00 휴무일 일요일, 새해첫날", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b9e7a3eda6ee80227e0d", - "label": "보리비빔밥", - "amount": 5500, + "id": "5350144105790c5cad8f", + "label": "찌개(된장순두부청국장김치)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3c9245b4b4dbff33a526", - "label": "팥칼국수", + "id": "d953a623062d34e492fc", + "label": "돌솥(된장순두부청국장김치)", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2375ddff47c791faee4e", + "label": "덮밥(낙지새우제육)", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "87787b56273154c47c2f", + "label": "돌솥진지상", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5dd8619529fbc6d99540", + "label": "막국수 (땅콩 알레르기 확인 요함)", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "49f38bf8b42b1ad4d8e8", - "label": "열무국수", + "id": "d3b22dc1e631054ed641", + "label": "생등심 돈가스(수제소스 따로 제공)", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "70366d3f4c9d9f95cf53", + "label": "진지상(밥+정찬+찌개택일)", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -46928,75 +47866,51 @@ ], "history": [ { - "id": "b9e7a3eda6ee80227e0d-history", - "label": "보리비빔밥", - "amount": 5500, + "id": "5350144105790c5cad8f-history", + "label": "찌개(된장순두부청국장김치)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3c9245b4b4dbff33a526-history", - "label": "팥칼국수", - "amount": 7000, + "id": "d953a623062d34e492fc-history", + "label": "돌솥(된장순두부청국장김치)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "49f38bf8b42b1ad4d8e8-history", - "label": "열무국수", - "amount": 6000, + "id": "2375ddff47c791faee4e-history", + "label": "덮밥(낙지새우제육)", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5187", - "name": "꼬꼬꽥꽥", - "businessName": "꼬꼬꽥꽥", - "categorySlug": "korean", - "address": "전북특별자치도 군산시 백릉로 35 경암동", - "district": "전북특별자치도 군산시", - "latitude": 35.9750863927652, - "longitude": 126.729895097495, - "representativePriceAmount": 8000, - "representativePriceLabel": "닭곰탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 닭곰탕 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-464-4943 / 영업시간: 월~토(매주 일요일 휴무) 11:00~22:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "3a817b11d081ac915320", - "label": "닭곰탕", + "id": "87787b56273154c47c2f-history", + "label": "돌솥진지상", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "c290e997fcca7235d999", - "label": "오리탕", - "amount": 8000, + "id": "5dd8619529fbc6d99540-history", + "label": "막국수 (땅콩 알레르기 확인 요함)", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "3a817b11d081ac915320-history", - "label": "닭곰탕", + "id": "d3b22dc1e631054ed641-history", + "label": "생등심 돈가스(수제소스 따로 제공)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c290e997fcca7235d999-history", - "label": "오리탕", - "amount": 8000, + "id": "70366d3f4c9d9f95cf53-history", + "label": "진지상(밥+정찬+찌개택일)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47004,37 +47918,37 @@ "comments": [] }, { - "id": "goodprice-5188", - "name": "나라식당", - "businessName": "나라식당", - "categorySlug": "korean", - "address": "전북특별자치도 군산시 서흥안2길 30 문화동", - "district": "전북특별자치도 군산시", - "latitude": 35.9722769459747, - "longitude": 126.708026322198, - "representativePriceAmount": 8000, - "representativePriceLabel": "백반", + "id": "goodprice-15227", + "name": "사가커피", + "businessName": "사가커피", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 면목로44길 37 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58107796557923, + "longitude": 127.09064720619213, + "representativePriceAmount": 2000, + "representativePriceLabel": "커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-462-0673 / 영업시간: 월~일 (2,4째주 화요일 휴무) 12:00~19:00", + "description": "맛있는 커피를 저렴한 가격으로 즐길수 있는 곳", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1427-0539", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "89adb3edcc1652d2ffec", - "label": "백반", - "amount": 8000, + "id": "0958087cb8c9a5e3e5c5", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "89adb3edcc1652d2ffec-history", - "label": "백반", - "amount": 8000, + "id": "0958087cb8c9a5e3e5c5-history", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47042,37 +47956,37 @@ "comments": [] }, { - "id": "goodprice-16455", - "name": "김연선 헤어뷰", - "businessName": "김연선 헤어뷰", - "categorySlug": "beauty", - "address": "전라남도 여수시 돌산읍 강남동로 46-19 1층 104호(청솔상가)", - "district": "전라남도 여수시", - "latitude": 34.71784643561729, - "longitude": 127.75728889294511, - "representativePriceAmount": 8000, - "representativePriceLabel": "소아 커트", + "id": "goodprice-13185", + "name": "옥땡김밥", + "businessName": "옥땡김밥", + "categorySlug": "korean", + "address": "광주광역시 동구 무등로 503-1 (산수동) 1층", + "district": "광주광역시 동구", + "latitude": 35.15563375812957, + "longitude": 126.93466382911126, + "representativePriceAmount": 2500, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 소아 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-643-0669", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-263-0527 / 영업시간: 09:00~20:30(휴게시간 15:00~16:00)/ 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2c0ef91eddf58968fea9", - "label": "소아 커트", - "amount": 8000, + "id": "d6eeb687685a0d61aff2", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2c0ef91eddf58968fea9-history", - "label": "소아 커트", - "amount": 8000, + "id": "d6eeb687685a0d61aff2-history", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47080,37 +47994,51 @@ "comments": [] }, { - "id": "goodprice-5712", - "name": "남성커트클럽 블루가이", - "businessName": "남성커트클럽 블루가이", - "categorySlug": "barber", - "address": "전라남도 여수시 여문2로 97 (문수동)", - "district": "전라남도 여수시", - "latitude": 34.7547925562527, - "longitude": 127.695461279732, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-17615", + "name": "상하이", + "businessName": "상하이", + "categorySlug": "chinese", + "address": "서울특별시 중랑구 면목로 223 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.57319243078983, + "longitude": 127.08410245355938, + "representativePriceAmount": 4000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-653-0317 / 영업시간: 평일:오전10~19시 휴무 :일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-432-3240", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b269c4b8447e1b50ae25", - "label": "커트", - "amount": 10000, + "id": "820b1b8e5c811cf1ee55", + "label": "자장면", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "bf9bd25215e16598f041", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b269c4b8447e1b50ae25-history", - "label": "커트", - "amount": 10000, + "id": "820b1b8e5c811cf1ee55-history", + "label": "자장면", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "bf9bd25215e16598f041-history", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47118,37 +48046,65 @@ "comments": [] }, { - "id": "goodprice-5751", - "name": "남촌식당", - "businessName": "남촌식당", + "id": "goodprice-18131", + "name": "별이네 분식", + "businessName": "별이네 분식", "categorySlug": "korean", - "address": "전라남도 여수시 신기남길 33 (신기동)", - "district": "전라남도 여수시", - "latitude": 34.7607366293679, - "longitude": 127.672645842488, - "representativePriceAmount": 10000, - "representativePriceLabel": "삼겹살", + "address": "대전광역시 동구 비래서로42번길 70 (가양동) (가양동)", + "district": "대전광역시 동구", + "latitude": 36.3512336467034, + "longitude": 127.44731554696641, + "representativePriceAmount": 5000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-682-1619", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-673-7737", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9b475bcc120cacb079fb", - "label": "삼겹살", - "amount": 10000, + "id": "e8a8bfbad03b38e0d0c7", + "label": "잔치국수", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "75feb946aa8a51d9da9f", + "label": "비빔국수", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d0431dbd82ee2abe99ef", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9b475bcc120cacb079fb-history", - "label": "삼겹살", - "amount": 10000, + "id": "e8a8bfbad03b38e0d0c7-history", + "label": "잔치국수", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "75feb946aa8a51d9da9f-history", + "label": "비빔국수", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d0431dbd82ee2abe99ef-history", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47156,51 +48112,51 @@ "comments": [] }, { - "id": "goodprice-13340", - "name": "내고향식당", - "businessName": "내고향식당", + "id": "goodprice-14501", + "name": "성이네천원김밥", + "businessName": "성이네천원김밥", "categorySlug": "korean", - "address": "전라남도 여수시 어항로 13-1 (봉산동) 내고향식당", - "district": "전라남도 여수시", - "latitude": 34.732507178346495, - "longitude": 127.72016163447275, - "representativePriceAmount": 7000, - "representativePriceLabel": "비빔밥(점심)", + "address": "서울특별시 중랑구 중랑역로 150 (묵동, 우성아파트) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.60677911638967, + "longitude": 127.07715385191284, + "representativePriceAmount": 2000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥(점심) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-642-9032", + "description": "모든메뉴가 저렴하고 맛있는 가성비 맛집, 천원김밥은 1인 5줄 한정", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-976-5648 / 영업시간: 영업시간 : 07:00~20:00 휴무일 : 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4cf8796d5d841abd4ca4", - "label": "비빔밥(점심)", - "amount": 7000, + "id": "2ca431de25f2afd5cd50", + "label": "김밥", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "53d1d7c9d32ba270ac8f", - "label": "칼국수", - "amount": 8000, + "id": "19c1eac9aafbc0576aed", + "label": "조리라면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4cf8796d5d841abd4ca4-history", - "label": "비빔밥(점심)", - "amount": 7000, + "id": "2ca431de25f2afd5cd50-history", + "label": "김밥", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "53d1d7c9d32ba270ac8f-history", - "label": "칼국수", - "amount": 8000, + "id": "19c1eac9aafbc0576aed-history", + "label": "조리라면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47208,34 +48164,34 @@ "comments": [] }, { - "id": "goodprice-6435", - "name": "더헤어", - "businessName": "더헤어", - "categorySlug": "beauty", - "address": "경상북도 포항시 북구 흥해읍 중성로32번길 14 (1층)", - "district": "경상북도 포항시", - "latitude": 36.1074175340788, - "longitude": 129.346453745514, - "representativePriceAmount": 8000, - "representativePriceLabel": "여성커트", + "id": "goodprice-16673", + "name": "자금성", + "businessName": "자금성", + "categorySlug": "chinese", + "address": "울산광역시 중구 구교9길 64 (반구동) 1층", + "district": "울산광역시 중구", + "latitude": 35.56321242205221, + "longitude": 129.3378786473305, + "representativePriceAmount": 5500, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여성커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-261-6785 / 영업시간: 9시~17시 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-292-2346 / 영업시간: 매일 11:00~20:00 15:00~17:00 브레이크타임", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "aceb65a5fae506de0302", - "label": "여성커트", - "amount": 8000, + "id": "2c7c72bd25c0b980a4e4", + "label": "자장면", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e75d11bed4907dad7f51", - "label": "남성커트", + "id": "689c3d29289775d30c4f", + "label": "짬뽕", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -47243,15 +48199,15 @@ ], "history": [ { - "id": "aceb65a5fae506de0302-history", - "label": "여성커트", - "amount": 8000, + "id": "2c7c72bd25c0b980a4e4-history", + "label": "자장면", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e75d11bed4907dad7f51-history", - "label": "남성커트", + "id": "689c3d29289775d30c4f-history", + "label": "짬뽕", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -47260,51 +48216,51 @@ "comments": [] }, { - "id": "goodprice-6484", - "name": "돈부야", - "businessName": "돈부야", - "categorySlug": "japanese", - "address": "경상북도 포항시 북구 삼호로8번길 1 1층", - "district": "경상북도 포항시", - "latitude": 36.0418016819054, - "longitude": 129.36741065867, - "representativePriceAmount": 7500, - "representativePriceLabel": "우동", + "id": "goodprice-14496", + "name": "성창식당", + "businessName": "성창식당", + "categorySlug": "korean", + "address": "서울특별시 중랑구 면목로 421 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58964701261553, + "longitude": 127.08705113856698, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 우동 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-246-0771 / 영업시간: 매일 10:30-21:00", + "description": "저렴한 가격과 푸짐한 양으로 오랜시간 영업해온 장수식당", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-435-3061", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "df871a5697263566ee30", - "label": "우동", - "amount": 7500, + "id": "177f96747f6d4b64cbab", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3ff8a0cf37ef231be301", - "label": "카레덮밥", - "amount": 9000, + "id": "7d543852d6211a3301c8", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "df871a5697263566ee30-history", - "label": "우동", - "amount": 7500, + "id": "177f96747f6d4b64cbab-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3ff8a0cf37ef231be301-history", - "label": "카레덮밥", - "amount": 9000, + "id": "7d543852d6211a3301c8-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47312,37 +48268,37 @@ "comments": [] }, { - "id": "goodprice-6436", - "name": "동동이네시니어펌전문점", - "businessName": "동동이네시니어펌전문점", - "categorySlug": "beauty", - "address": "경상북도 포항시 북구 월막길 2", - "district": "경상북도 포항시", - "latitude": 36.049135177781, - "longitude": 129.367187661289, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", + "id": "goodprice-2997", + "name": "장현돼지국밥", + "businessName": "장현돼지국밥", + "categorySlug": "korean", + "address": "울산광역시 중구 종가로 745 (장현동)", + "district": "울산광역시 중구", + "latitude": 35.5881230965409, + "longitude": 129.343478559476, + "representativePriceAmount": 8000, + "representativePriceLabel": "돼지국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-247-6989 / 영업시간: 09시~19시 매주 수요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지국밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-293-0392 / 영업시간: 일~토 09:30~21:30 (매월 첫번째, 세번째 일요일 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c7606df5723d22c048e1", - "label": "커트", - "amount": 7000, + "id": "10e7b1d0e911f70ad0b2", + "label": "돼지국밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c7606df5723d22c048e1-history", - "label": "커트", - "amount": 7000, + "id": "10e7b1d0e911f70ad0b2-history", + "label": "돼지국밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47350,41 +48306,48 @@ "comments": [] }, { - "id": "goodprice-6812", - "name": "보리밥집", - "businessName": "보리밥집", + "id": "goodprice-1023", + "name": "세븐돈가스", + "businessName": "세븐돈가스", "categorySlug": "korean", - "address": "경상남도 창원시 성산구 마디미로28 D동 203호 (상남동, 상남재래시장)", - "district": "경상남도 창원시", - "latitude": 35.2222148675498, - "longitude": 128.683379990696, - "representativePriceAmount": 7000, - "representativePriceLabel": "보리밥", + "address": "서울특별시 중랑구 용마산로 557", + "district": "서울특별시 중랑구", + "latitude": 37.6006970374489, + "longitude": 127.100246556563, + "representativePriceAmount": 6000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보리밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-263-7298", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-433-1644 / 영업시간: 월,화,수,목,금,토,일 / 08:00~21:00 2,4째주 금 / 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fb458e5997604e4cf9ce", - "label": "보리밥", - "amount": 7000, + "id": "0fc9a34ba2c56f9a3fd4", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d670e364f4aa0d366a57", - "label": "된장찌개", + "id": "a8b050eb456f0683b3a2", + "label": "돈가스", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6276502f1a681d9d114c", - "label": "김치찌개", + "id": "1b13c555ee5aa3458c51", + "label": "김밥", + "amount": 2500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fd9b6adfde84828b0c4c", + "label": "돈까스", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -47392,22 +48355,29 @@ ], "history": [ { - "id": "fb458e5997604e4cf9ce-history", - "label": "보리밥", - "amount": 7000, + "id": "0fc9a34ba2c56f9a3fd4-history", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d670e364f4aa0d366a57-history", - "label": "된장찌개", + "id": "a8b050eb456f0683b3a2-history", + "label": "돈가스", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6276502f1a681d9d114c-history", - "label": "김치찌개", + "id": "1b13c555ee5aa3458c51-history", + "label": "김밥", + "amount": 2500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fd9b6adfde84828b0c4c-history", + "label": "돈까스", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -47416,51 +48386,51 @@ "comments": [] }, { - "id": "goodprice-6772", - "name": "복가득뚱보갈비", - "businessName": "복가득뚱보갈비", + "id": "goodprice-10188", + "name": "엉클생고기(보람동)", + "businessName": "엉클생고기(보람동)", "categorySlug": "korean", - "address": "경상남도 창원시 마산합포구 노산서18길 114 (교방동)", - "district": "경상남도 창원시", - "latitude": 35.2148634483788, - "longitude": 128.564078372768, - "representativePriceAmount": 6000, - "representativePriceLabel": "물냉면", + "address": "세종특별자치시 호려울로 29 207호", + "district": "세종특별자치시 호려울로", + "latitude": 36.4779099639115, + "longitude": 127.290238012216, + "representativePriceAmount": 10000, + "representativePriceLabel": "파불고기+공기밥된장찌개(점심특선)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물냉면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-243-0172 / 영업시간: 09:30~18:00 매주 일요일, 공휴일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 파불고기+공기밥된장찌개(점심특선) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-868-9242", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a41bfd3cd39388a0f734", - "label": "물냉면", - "amount": 6000, + "id": "2104446ec8c807edc2dd", + "label": "파불고기+공기밥된장찌개(점심특선)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2266b863403a4c53a6a7", - "label": "비빔냉면", - "amount": 7000, + "id": "cd4aac34a2901cc7b548", + "label": "대패삼겹+공기밥된장찌개(점심특선)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a41bfd3cd39388a0f734-history", - "label": "물냉면", - "amount": 6000, + "id": "2104446ec8c807edc2dd-history", + "label": "파불고기+공기밥된장찌개(점심특선)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2266b863403a4c53a6a7-history", - "label": "비빔냉면", - "amount": 7000, + "id": "cd4aac34a2901cc7b548-history", + "label": "대패삼겹+공기밥된장찌개(점심특선)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47468,27 +48438,27 @@ "comments": [] }, { - "id": "goodprice-6835", - "name": "복개천감자탕", - "businessName": "복개천감자탕", + "id": "goodprice-17617", + "name": "소문난 황칠 순대국 왕족발", + "businessName": "소문난 황칠 순대국 왕족발", "categorySlug": "korean", - "address": "경상남도 창원시 진해구 중원로79번길 13-1 (송학동)", - "district": "경상남도 창원시", - "latitude": 35.1513509347336, - "longitude": 128.65847962579, + "address": "서울특별시 중랑구 겸재로 217 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.589475647450776, + "longitude": 127.09178385349664, "representativePriceAmount": 8000, - "representativePriceLabel": "뼈해장국", + "representativePriceLabel": "순대국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-546-5580", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2138-0908", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3ffda3d8fb43dc771d77", - "label": "뼈해장국", + "id": "ddfe99760905fba65e18", + "label": "순대국밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -47496,8 +48466,8 @@ ], "history": [ { - "id": "3ffda3d8fb43dc771d77-history", - "label": "뼈해장국", + "id": "ddfe99760905fba65e18-history", + "label": "순대국밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -47506,37 +48476,51 @@ "comments": [] }, { - "id": "goodprice-14091", - "name": "복자네뼈해장국", - "businessName": "복자네뼈해장국", + "id": "goodprice-10193", + "name": "엉클생고기(아름동)", + "businessName": "엉클생고기(아름동)", "categorySlug": "korean", - "address": "경상남도 창원시 진해구 이동로38번길 8 (이동) 1층", - "district": "경상남도 창원시", - "latitude": 35.15045351250758, - "longitude": 128.6957928158142, - "representativePriceAmount": 8500, - "representativePriceLabel": "뼈해장국(1인분)", + "address": "세종특별자치시 보듬3로 100 209, 210호", + "district": "세종특별자치시 보듬3로", + "latitude": 36.5119529197334, + "longitude": 127.248623728597, + "representativePriceAmount": 10000, + "representativePriceLabel": "파불고기+공기밥된장찌개 점십특선", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "이동화이트광장 밑 세븐일레븐골목 도보 1분거리", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1404-5766 / 영업시간: 매일 11:30 - 22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 파불고기+공기밥된장찌개 점십특선 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-862-0267", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "28394e8b7088f149bb03", - "label": "뼈해장국(1인분)", - "amount": 8500, + "id": "6daf75385fb1f66fcb9d", + "label": "파불고기+공기밥된장찌개 점십특선", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6fcabe069347fa57e9ab", + "label": "대패삼겹+공기밥된장찌개 점심특선", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "28394e8b7088f149bb03-history", - "label": "뼈해장국(1인분)", - "amount": 8500, + "id": "6daf75385fb1f66fcb9d-history", + "label": "파불고기+공기밥된장찌개 점십특선", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6fcabe069347fa57e9ab-history", + "label": "대패삼겹+공기밥된장찌개 점심특선", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47544,65 +48528,37 @@ "comments": [] }, { - "id": "goodprice-11864", - "name": "또옵서식당", - "businessName": "또옵서식당", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 번영로 459", - "district": "제주특별자치도 제주시", - "latitude": 33.4922578901329, - "longitude": 126.591494992712, - "representativePriceAmount": 6000, - "representativePriceLabel": "된장찌개", + "id": "goodprice-14489", + "name": "수리야", + "businessName": "수리야", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 양원역로 19 (망우동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.602247869293805, + "longitude": 127.1079142080932, + "representativePriceAmount": 1500, + "representativePriceLabel": "커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-794-0051", + "description": "다양한 디저트와 향긋한 커피를 조용하게 즐길 수 있는 카페", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8969-7459", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "de587a79e34bce760423", - "label": "된장찌개", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5998fdb1497e38be93b5", - "label": "동태찌개", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "7952bd1f314dbc7745c2", - "label": "김치찌개", - "amount": 8000, + "id": "aa33a5ddf1f60e691327", + "label": "커피", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "de587a79e34bce760423-history", - "label": "된장찌개", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5998fdb1497e38be93b5-history", - "label": "동태찌개", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "7952bd1f314dbc7745c2-history", - "label": "김치찌개", - "amount": 8000, + "id": "aa33a5ddf1f60e691327-history", + "label": "커피", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47610,37 +48566,37 @@ "comments": [] }, { - "id": "goodprice-7216", - "name": "또와헤어샾", - "businessName": "또와헤어샾", - "categorySlug": "beauty", - "address": "제주특별자치도 제주시 지석6길 9 또와헤어샾", - "district": "제주특별자치도 제주시", - "latitude": 33.5203409285847, - "longitude": 126.581100037461, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-3428", + "name": "대복식당", + "businessName": "대복식당", + "categorySlug": "korean", + "address": "경기도 수원시 팔달구 매산로84-1 (매산로3가)", + "district": "경기도 수원시", + "latitude": 37.269844360739, + "longitude": 127.010370350622, + "representativePriceAmount": 6000, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-756-6528", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-238-2080 / 영업시간: 11:00~14:30 토요일, 공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d75dd3f0a7a1cea18963", - "label": "커트", - "amount": 10000, + "id": "af92146eb190832c13ad", + "label": "한식뷔페", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d75dd3f0a7a1cea18963-history", - "label": "커트", - "amount": 10000, + "id": "af92146eb190832c13ad-history", + "label": "한식뷔페", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47648,51 +48604,51 @@ "comments": [] }, { - "id": "goodprice-18037", - "name": "뛰니뛰니", - "businessName": "뛰니뛰니", - "categorySlug": "other-service", - "address": "제주특별자치도 제주시 연신로 76 (이도이동) 뛰니뛰니", - "district": "제주특별자치도 제주시", - "latitude": 33.4946894705016, - "longitude": 126.54802422292092, - "representativePriceAmount": 6000, - "representativePriceLabel": "어린이입장료", + "id": "goodprice-1030", + "name": "스텔라커피", + "businessName": "스텔라커피", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 신내로7가길 13 1층", + "district": "서울특별시 중랑구", + "latitude": 37.6023913424372, + "longitude": 127.095139356268, + "representativePriceAmount": 2000, + "representativePriceLabel": "커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 어린이입장료 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-727-0369", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 8:30~19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e6d923f7e0a9397d788f", - "label": "어린이입장료", - "amount": 6000, + "id": "981fb9b661adddf0396b", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c5106c85625491c8b7fe", - "label": "보호자입장료", - "amount": 0, + "id": "19dfa5c23335672c6c6a", + "label": "녹차", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e6d923f7e0a9397d788f-history", - "label": "어린이입장료", - "amount": 6000, + "id": "981fb9b661adddf0396b-history", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c5106c85625491c8b7fe-history", - "label": "보호자입장료", - "amount": 0, + "id": "19dfa5c23335672c6c6a-history", + "label": "녹차", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47700,41 +48656,41 @@ "comments": [] }, { - "id": "goodprice-968", - "name": "345국수", - "businessName": "345국수", + "id": "goodprice-11723", + "name": "뚝배기마을", + "businessName": "뚝배기마을", "categorySlug": "korean", - "address": "서울특별시 중구 청구로 83-9 1층", - "district": "서울특별시 중구", - "latitude": 37.560172073734, - "longitude": 127.013228537389, - "representativePriceAmount": 8000, - "representativePriceLabel": "손수제비", + "address": "강원특별자치도 춘천시 중앙로37-3 (중앙로1가)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8814765592669, + "longitude": 127.728258889089, + "representativePriceAmount": 7000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손수제비 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-5257 / 영업시간: 월~금 11:00~20:00 토 11:00~15:00 일요일 휴무", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-5455 / 영업시간: 10:00 - 22:00 매월 두번째 화요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "93807d7eba2568964966", - "label": "손수제비", - "amount": 8000, + "id": "95bd5df0eee7d02b94ca", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "66fbf5a1cea154438d07", - "label": "잔치국수", + "id": "2f9b89fbdb9232968278", + "label": "두부찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "096de478bf333e20cc09", - "label": "칼국수", + "id": "626cf3d2373cd9d98fcf", + "label": "제육덮밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -47742,22 +48698,22 @@ ], "history": [ { - "id": "93807d7eba2568964966-history", - "label": "손수제비", - "amount": 8000, + "id": "95bd5df0eee7d02b94ca-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "66fbf5a1cea154438d07-history", - "label": "잔치국수", + "id": "2f9b89fbdb9232968278-history", + "label": "두부찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "096de478bf333e20cc09-history", - "label": "칼국수", + "id": "626cf3d2373cd9d98fcf-history", + "label": "제육덮밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -47766,34 +48722,34 @@ "comments": [] }, { - "id": "goodprice-979", - "name": "거목식당", - "businessName": "거목식당", + "id": "goodprice-14497", + "name": "신성식당", + "businessName": "신성식당", "categorySlug": "korean", - "address": "서울특별시 중구 을지로36길 18 (을지로5가)", - "district": "서울특별시 중구", - "latitude": 37.5659767545803, - "longitude": 127.001477572948, + "address": "서울특별시 중랑구 겸재로 202 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58876000358219, + "longitude": 127.09009548531725, "representativePriceAmount": 7000, - "representativePriceLabel": "된장찌개", + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-226-0010 / 영업시간: 월~토 05:00~20:00 일요일 휴무", + "description": "푸짐한 양과 맛있는 집밥 한끼, 친절해서 단골 많은 식당", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-437-4132", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0a3174cd0f6da08e1c41", - "label": "된장찌개", + "id": "7c7bc55de79596891ac8", + "label": "김치찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1a4d07add33313b4fdfd", - "label": "순두부찌개", + "id": "cc5338f129115ad6c6bc", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -47801,15 +48757,15 @@ ], "history": [ { - "id": "0a3174cd0f6da08e1c41-history", - "label": "된장찌개", + "id": "7c7bc55de79596891ac8-history", + "label": "김치찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1a4d07add33313b4fdfd-history", - "label": "순두부찌개", + "id": "cc5338f129115ad6c6bc-history", + "label": "된장찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -47818,51 +48774,75 @@ "comments": [] }, { - "id": "goodprice-16085", - "name": "공화춘", - "businessName": "공화춘", - "categorySlug": "chinese", - "address": "서울특별시 중구 청파로 457-1 (중림동) 2층", - "district": "서울특별시 중구", - "latitude": 37.56020605082971, - "longitude": 126.96781059246393, - "representativePriceAmount": 6000, - "representativePriceLabel": "짜장면", + "id": "goodprice-4381", + "name": "롯데자율식당", + "businessName": "롯데자율식당", + "categorySlug": "korean", + "address": "강원특별자치도 춘천시 공지로 387 지하층(약사동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8716410438521, + "longitude": 127.723885862381, + "representativePriceAmount": 8000, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-723-4038 / 영업시간: 영업시간 10:30 ~ 21:00 BreakTime 15:00 ~ 17:00 (일요일 정기휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1395-5955 / 영업시간: 11:00 - 22:00 브레이크타임 14:00 - 17:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "80381c7c3813a0cd4c59", - "label": "짜장면", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "46eb2fc605087014020b", - "label": "짬뽕", - "amount": 7000, + "id": "a6437fe4621de3be5c08", + "label": "한식뷔페", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "80381c7c3813a0cd4c59-history", - "label": "짜장면", - "amount": 6000, + "id": "a6437fe4621de3be5c08-history", + "label": "한식뷔페", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-1029", + "name": "아르카디아커피컴퍼니", + "businessName": "아르카디아커피컴퍼니", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 면목로88길 5-9", + "district": "서울특별시 중랑구", + "latitude": 37.5944534334494, + "longitude": 127.086350457246, + "representativePriceAmount": 2000, + "representativePriceLabel": "커피", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 커피 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-640-9692 / 영업시간: 월~금 11:00~21:00 토~일 12:00~20:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "46eb2fc605087014020b-history", - "label": "짬뽕", - "amount": 7000, + "id": "f5ef47abdf654f51f9ff", + "label": "커피", + "amount": 2000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "f5ef47abdf654f51f9ff-history", + "label": "커피", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47870,65 +48850,65 @@ "comments": [] }, { - "id": "goodprice-1426", - "name": "미소정 멸치국수", - "businessName": "미소정 멸치국수", - "categorySlug": "korean", - "address": "부산광역시 서구 대영로 85번길 24-1 (동대신동2가)", - "district": "부산광역시 서구", - "latitude": 35.1121156286607, - "longitude": 129.020062894885, - "representativePriceAmount": 4000, - "representativePriceLabel": "멸치국수", + "id": "goodprice-4356", + "name": "만리향", + "businessName": "만리향", + "categorySlug": "chinese", + "address": "강원특별자치도 춘천시 명동길29번길 4-5 (죽림동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8779879948066, + "longitude": 127.725893087544, + "representativePriceAmount": 5000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멸치국수 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-242-8531 / 영업시간: 10:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-251-2227 / 영업시간: 10:00 - 21:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bac19bbd56c631e3d2c6", - "label": "멸치국수", - "amount": 4000, + "id": "1a98c9d84453277c7b49", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5cb344aa79602bcd9910", - "label": "비빔밥", - "amount": 6500, + "id": "5a7492b3f45a54a92fc5", + "label": "짬뽕", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3484ee3ae0809a2db8fb", - "label": "소고기국밥", - "amount": 6500, + "id": "197d8b7c748cc1bdbb38", + "label": "탕수육(소)", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bac19bbd56c631e3d2c6-history", - "label": "멸치국수", - "amount": 4000, + "id": "1a98c9d84453277c7b49-history", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5cb344aa79602bcd9910-history", - "label": "비빔밥", - "amount": 6500, + "id": "5a7492b3f45a54a92fc5-history", + "label": "짬뽕", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3484ee3ae0809a2db8fb-history", - "label": "소고기국밥", - "amount": 6500, + "id": "197d8b7c748cc1bdbb38-history", + "label": "탕수육(소)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -47936,79 +48916,51 @@ "comments": [] }, { - "id": "goodprice-1427", - "name": "바보면가", - "businessName": "바보면가", + "id": "goodprice-15223", + "name": "안대복원조맛집 멸치국수", + "businessName": "안대복원조맛집 멸치국수", "categorySlug": "korean", - "address": "부산광역시 서구 임시수도기념로 21-10 (부민동3가)", - "district": "부산광역시 서구", - "latitude": 35.1030261158569, - "longitude": 129.018574291429, - "representativePriceAmount": 7000, - "representativePriceLabel": "손칼국수+돈까스", + "address": "서울특별시 중랑구 상봉로 33 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.588839182048, + "longitude": 127.09369137430004, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수+돈까스 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-255-8336 / 영업시간: 10:00~20:00", + "description": "진한 육수가 맛있어 오래된 단골이 많은 진짜 원조맛집", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-9272-9806", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d5b8fe0efac625c93a94", - "label": "손칼국수+돈까스", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "491d810bf9eb8a7bda0a", - "label": "만두국+돈까스", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "7448511d56b8f0fee81f", - "label": "만두국+돈가스", - "amount": 6500, + "id": "376c946dccc459517060", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "52dd0a69c98d04533361", - "label": "손칼국수+돈가스", - "amount": 6500, + "id": "2555d8018c542baaca08", + "label": "멸치국수", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d5b8fe0efac625c93a94-history", - "label": "손칼국수+돈까스", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "491d810bf9eb8a7bda0a-history", - "label": "만두국+돈까스", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "7448511d56b8f0fee81f-history", - "label": "만두국+돈가스", - "amount": 6500, + "id": "376c946dccc459517060-history", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "52dd0a69c98d04533361-history", - "label": "손칼국수+돈가스", - "amount": 6500, + "id": "2555d8018c542baaca08-history", + "label": "멸치국수", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48016,48 +48968,41 @@ "comments": [] }, { - "id": "goodprice-17740", - "name": "동림식당", - "businessName": "동림식당", - "categorySlug": "korean", - "address": "대구광역시 동구 파계로116길 49 (중대동)", - "district": "대구광역시 동구", - "latitude": 35.98617130128156, - "longitude": 128.6374302331672, - "representativePriceAmount": 4000, - "representativePriceLabel": "칼국수", + "id": "goodprice-16981", + "name": "남문갤러리카페", + "businessName": "남문갤러리카페", + "categorySlug": "other-food", + "address": "충청북도 청주시 상당구 무심동로336번길 105 (남문로2가) (남문로2가)", + "district": "충청북도 청주시", + "latitude": 36.63162469216909, + "longitude": 127.4888655463895, + "representativePriceAmount": 3000, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-982-2860 / 영업시간: 영업시간 : 10:00~21:00 정기휴무 : 없음", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1437-8606 / 영업시간: 10:30~18:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fb5cd59e3ed8b3f66cb6", - "label": "칼국수", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b13e6c4574afd4287900", - "label": "비빔밥", - "amount": 4000, + "id": "330cee2d9761628b1916", + "label": "아메리카노", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "43e4e489a96cf0888c79", - "label": "촌두부", - "amount": 4000, + "id": "3f65828b1ecf0a5beff7", + "label": "쌍화차", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d7cf5cda208ea2781b50", - "label": "도토리묵", + "id": "6cf90869cb219a53e153", + "label": "대추차", "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -48065,29 +49010,22 @@ ], "history": [ { - "id": "fb5cd59e3ed8b3f66cb6-history", - "label": "칼국수", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b13e6c4574afd4287900-history", - "label": "비빔밥", - "amount": 4000, + "id": "330cee2d9761628b1916-history", + "label": "아메리카노", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "43e4e489a96cf0888c79-history", - "label": "촌두부", - "amount": 4000, + "id": "3f65828b1ecf0a5beff7-history", + "label": "쌍화차", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d7cf5cda208ea2781b50-history", - "label": "도토리묵", + "id": "6cf90869cb219a53e153-history", + "label": "대추차", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -48096,41 +49034,48 @@ "comments": [] }, { - "id": "goodprice-1871", - "name": "만보칼국수", - "businessName": "만보칼국수", + "id": "goodprice-1024", + "name": "와우돈까스", + "businessName": "와우돈까스", "categorySlug": "korean", - "address": "대구광역시 동구 팔공로209길 15 (백안동)", - "district": "대구광역시 동구", - "latitude": 35.9539345412516, - "longitude": 128.693850133799, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "address": "서울특별시 중랑구 공릉로12가길 6 1층", + "district": "서울특별시 중랑구", + "latitude": 37.6163424774824, + "longitude": 127.080165526507, + "representativePriceAmount": 7000, + "representativePriceLabel": "돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-982-7524 / 영업시간: 월 화 목 금 토 일 11:00-19:30 수 휴무 브레이크 타임 15:30-17:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돈가스 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-220-3607 / 영업시간: 매일 08:00~21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "94560b3d220b6f8fd7df", - "label": "칼국수", + "id": "ebd8cf9660e0c05b2bf4", + "label": "돈가스", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6f32264d2cbabb16befa", + "label": "냉면", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "76d3dd38b0ce189772ce", - "label": "잔치국수", - "amount": 5000, + "id": "716c945adfee4b7f9886", + "label": "돈까스", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e034ef6c990d021f7cfd", - "label": "감자수제비", + "id": "bee46a612bc68a142d11", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -48138,22 +49083,29 @@ ], "history": [ { - "id": "94560b3d220b6f8fd7df-history", - "label": "칼국수", + "id": "ebd8cf9660e0c05b2bf4-history", + "label": "돈가스", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6f32264d2cbabb16befa-history", + "label": "냉면", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "76d3dd38b0ce189772ce-history", - "label": "잔치국수", - "amount": 5000, + "id": "716c945adfee4b7f9886-history", + "label": "돈까스", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e034ef6c990d021f7cfd-history", - "label": "감자수제비", + "id": "bee46a612bc68a142d11-history", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -48162,37 +49114,37 @@ "comments": [] }, { - "id": "goodprice-14063", - "name": "머리쟁이", - "businessName": "머리쟁이", - "categorySlug": "beauty", - "address": "대구광역시 동구 아양로 117 (신암동)", - "district": "대구광역시 동구", - "latitude": 35.88476589784557, - "longitude": 128.62608730053938, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트", + "id": "goodprice-16070", + "name": "남원추어탕", + "businessName": "남원추어탕", + "categorySlug": "korean", + "address": "충청북도 청주시 흥덕구 풍산로25번길 38-1 (가경동)", + "district": "충청북도 청주시", + "latitude": 36.62809148912409, + "longitude": 127.43233008358878, + "representativePriceAmount": 10000, + "representativePriceLabel": "찰솥밥추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-957-0050", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 찰솥밥추어탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-236-8959", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7229cf5e35f2709799bd", - "label": "커트", - "amount": 8000, + "id": "021df2059f7225ab8a06", + "label": "찰솥밥추어탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7229cf5e35f2709799bd-history", - "label": "커트", - "amount": 8000, + "id": "021df2059f7225ab8a06-history", + "label": "찰솥밥추어탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48200,75 +49152,117 @@ "comments": [] }, { - "id": "goodprice-13034", - "name": "시온이네집밥", - "businessName": "시온이네집밥", - "categorySlug": "korean", - "address": "인천광역시 동구 샛골로 168-3 (송림동) 1층 (현대시장 내)", - "district": "인천광역시 동구", - "latitude": 37.47735018760701, - "longitude": 126.6452386553363, - "representativePriceAmount": 6000, - "representativePriceLabel": "청국장", + "id": "goodprice-1016", + "name": "왕짜장", + "businessName": "왕짜장", + "categorySlug": "chinese", + "address": "서울특별시 중랑구 신내로14길 26", + "district": "서울특별시 중랑구", + "latitude": 37.6054986627446, + "longitude": 127.097037404944, + "representativePriceAmount": 4500, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-710-9274 / 영업시간: 월~토 10:00-20:30 (일) 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-433-0202 / 영업시간: 매일 10:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7844d0aef3f917153026", - "label": "청국장", + "id": "3b4a7732517337a6abd2", + "label": "짜장면", + "amount": 4500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c426f263f0ca6f941166", + "label": "짬뽕", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "969878b0396aa1d1234f", + "label": "자자면", + "amount": 4500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7844d0aef3f917153026-history", - "label": "청국장", + "id": "3b4a7732517337a6abd2-history", + "label": "짜장면", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "c426f263f0ca6f941166-history", + "label": "짬뽕", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "969878b0396aa1d1234f-history", + "label": "자자면", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-2101", - "name": "신대청마루", - "businessName": "신대청마루", + "id": "goodprice-4938", + "name": "늑대골", + "businessName": "늑대골", "categorySlug": "korean", - "address": "인천광역시 동구 방축로 105 (송림동, 산업용품유통센타 편익 C동 지하 21호)", - "district": "인천광역시 동구", - "latitude": 37.4841229128464, - "longitude": 126.656111822612, - "representativePriceAmount": 7000, + "address": "충청남도 천안시 동남구 풍세로696 (구룡동)", + "district": "충청남도 천안시", + "latitude": 36.7722721143035, + "longitude": 127.13808266914, + "representativePriceAmount": 8000, "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-589-2355 / 영업시간: 월~금 09:00-17:00 (주말, 공휴일) 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-573-5122 / 영업시간: 06:00~21:00 (1월 1일, 명절 휴무)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "49290318f34c4b2bc829", + "id": "3fa9349df27c5538579e", "label": "백반", - "amount": 7000, + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "50cff938a52d2265ce57", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "49290318f34c4b2bc829-history", + "id": "3fa9349df27c5538579e-history", "label": "백반", - "amount": 7000, + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "50cff938a52d2265ce57-history", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48276,37 +49270,51 @@ "comments": [] }, { - "id": "goodprice-2311", - "name": "대정회관", - "businessName": "대정회관", - "categorySlug": "korean", - "address": "광주광역시 서구 대남대로462번길 3 (농성동)", - "district": "광주광역시 서구", - "latitude": 35.1515316175609, - "longitude": 126.88645436957, - "representativePriceAmount": 8000, - "representativePriceLabel": "청국장", + "id": "goodprice-14505", + "name": "용궁", + "businessName": "용궁", + "categorySlug": "chinese", + "address": "서울특별시 중랑구 봉우재로5길 16 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.59068228806201, + "longitude": 127.0756692353704, + "representativePriceAmount": 5000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-364-7999 / 영업시간: 월~일 11시~21시", + "description": "저렴한 가격으로 즐길 수 있는 업소입니다. 친절해서 아이들과 가도 좋습니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-437-2007", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "55db0c805d73e851b2e6", - "label": "청국장", - "amount": 8000, + "id": "47bd301d20e19094af3b", + "label": "자장면", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4dac7a6e5a2f2ebabac8", + "label": "짬뽕", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "55db0c805d73e851b2e6-history", - "label": "청국장", - "amount": 8000, + "id": "47bd301d20e19094af3b-history", + "label": "자장면", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4dac7a6e5a2f2ebabac8-history", + "label": "짬뽕", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48314,51 +49322,51 @@ "comments": [] }, { - "id": "goodprice-14042", - "name": "대흥민속목욕탕", - "businessName": "대흥민속목욕탕", - "categorySlug": "bath", - "address": "광주광역시 서구 운천로 34 (금호동) 금호1동", - "district": "광주광역시 서구", - "latitude": 35.13576588266793, - "longitude": 126.85944266692678, + "id": "goodprice-19291", + "name": "단대로", + "businessName": "단대로", + "categorySlug": "korean", + "address": "충청남도 천안시 동남구 단대로 110 (신부동) 가동 1층", + "district": "충청남도 천안시", + "latitude": 36.83081336695418, + "longitude": 127.16257265306993, "representativePriceAmount": 7000, - "representativePriceLabel": "성인", + "representativePriceLabel": "삼겹살 200g", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 성인 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-374-7079", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살 200g 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-562-7767", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9015ca45d1fdf3ad44ed", - "label": "성인", + "id": "d2e578f8459eab215329", + "label": "삼겹살 200g", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2d8081dd90421e6eb1b2", - "label": "아동", - "amount": 3000, + "id": "a23ac1036c2170b864f0", + "label": "육회비빔밥", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9015ca45d1fdf3ad44ed-history", - "label": "성인", + "id": "d2e578f8459eab215329-history", + "label": "삼겹살 200g", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2d8081dd90421e6eb1b2-history", - "label": "아동", - "amount": 3000, + "id": "a23ac1036c2170b864f0-history", + "label": "육회비빔밥", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48366,65 +49374,51 @@ "comments": [] }, { - "id": "goodprice-13667", - "name": "동해계절맛집", - "businessName": "동해계절맛집", + "id": "goodprice-14493", + "name": "유미식당", + "businessName": "유미식당", "categorySlug": "korean", - "address": "광주광역시 서구 계수로 56 (쌍촌동) 1층", - "district": "광주광역시 서구", - "latitude": 35.16026802456817, - "longitude": 126.8567005862501, - "representativePriceAmount": 9000, + "address": "서울특별시 중랑구 망우로 276 (상봉동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.59549904416484, + "longitude": 127.08321851811226, + "representativePriceAmount": 7000, "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-385-6363", + "description": "친절한 서비스와 다양한 메뉴를 저렴하게 즐길 수 있는 가게", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6338-3814", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1e9e8824ce10cf237564", + "id": "955320b67fa771d0e179", "label": "김치찌개", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9762e0a0fdabe1110c3d", - "label": "생선구이백반", - "amount": 9000, + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8eebd958b9421acdb5af", - "label": "청국장", - "amount": 9000, + "id": "aea7879195043aae541e", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1e9e8824ce10cf237564-history", + "id": "955320b67fa771d0e179-history", "label": "김치찌개", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9762e0a0fdabe1110c3d-history", - "label": "생선구이백반", - "amount": 9000, + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8eebd958b9421acdb5af-history", - "label": "청국장", - "amount": 9000, + "id": "aea7879195043aae541e-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48432,51 +49426,37 @@ "comments": [] }, { - "id": "goodprice-2312", - "name": "동해회바다", - "businessName": "동해회바다", + "id": "goodprice-18728", + "name": "달식당", + "businessName": "달식당", "categorySlug": "korean", - "address": "광주광역시 서구 경열로26번길 3 (농성동)", - "district": "광주광역시 서구", - "latitude": 35.1514604680169, - "longitude": 126.88894822121, - "representativePriceAmount": 10000, - "representativePriceLabel": "생선초밥", + "address": "충청남도 천안시 동남구 대흥로 215 (대흥동) 달식당", + "district": "충청남도 천안시", + "latitude": 36.80733781767005, + "longitude": 127.14715925093927, + "representativePriceAmount": 8000, + "representativePriceLabel": "냉모밀", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생선초밥 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-367-1023 / 영업시간: 월~토 9시~21시 ※정기휴무 : 매주 토요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉모밀 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-557-2266", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "085b50435cf0889ff5c4", - "label": "생선초밥", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "762f3beaa52db02a31cb", - "label": "낙지비빔밥", - "amount": 9000, + "id": "9f90dccd12569b91cb8e", + "label": "냉모밀", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "085b50435cf0889ff5c4-history", - "label": "생선초밥", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "762f3beaa52db02a31cb-history", - "label": "낙지비빔밥", - "amount": 9000, + "id": "9f90dccd12569b91cb8e-history", + "label": "냉모밀", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48484,65 +49464,51 @@ "comments": [] }, { - "id": "goodprice-16084", - "name": "진심만두", - "businessName": "진심만두", + "id": "goodprice-14492", + "name": "이가김밥", + "businessName": "이가김밥", "categorySlug": "korean", - "address": "대전광역시 동구 대전로785번길 41-3 (원동) 119호", - "district": "대전광역시 동구", - "latitude": 36.32895512036512, - "longitude": 127.4312023578623, - "representativePriceAmount": 5000, - "representativePriceLabel": "고기교자만두", + "address": "서울특별시 중랑구 망우로 383 (상봉동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.5988034614169, + "longitude": 127.09479366777123, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고기교자만두 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1378-0210 / 영업시간: 08:00~19:30 / 수요일 정기 휴무", + "description": "다양한 메뉴와 깨끗한 매장에서 즐기는 맛있는 한끼", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-433-5575 / 영업시간: 영업시간 : 08:00~20:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "adcab42c8bd6c1a284e9", - "label": "고기교자만두", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "efce12b5d5c00ceed455", - "label": "김치교자만두", - "amount": 5000, + "id": "c6b291a8fcee34bc6305", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "57e5e0c2db24eb479157", - "label": "새우교자만두", - "amount": 5000, + "id": "1e175db6d8e4ee8abd60", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "adcab42c8bd6c1a284e9-history", - "label": "고기교자만두", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "efce12b5d5c00ceed455-history", - "label": "김치교자만두", - "amount": 5000, + "id": "c6b291a8fcee34bc6305-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "57e5e0c2db24eb479157-history", - "label": "새우교자만두", - "amount": 5000, + "id": "1e175db6d8e4ee8abd60-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48550,121 +49516,145 @@ "comments": [] }, { - "id": "goodprice-2549", - "name": "진짜손칼국수", - "businessName": "진짜손칼국수", + "id": "goodprice-5440", + "name": "섬진강백반", + "businessName": "섬진강백반", "categorySlug": "korean", - "address": "대전광역시 동구 우암로 341-2 (가양동)", - "district": "대전광역시 동구", - "latitude": 36.3496914492847, - "longitude": 127.451550689252, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "address": "전북특별자치도 전주시 완산구 꽃밭정로 13", + "district": "전북특별자치도 전주시", + "latitude": 35.7967253851275, + "longitude": 127.134316971962, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-622-0109 / 영업시간: 11:00 ~ 21:00 / 매주 토요일 정기휴무 / 둘째, 넷째주 금요일 정기 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-226-6809", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8b7165153fed8150f893", - "label": "칼국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "540b672c76b0a690a27a", - "label": "미니족발 중", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6f4b99ac50328324e377", - "label": "순둥이칼국수", - "amount": 6000, + "id": "12651c5ef8497ca10a3e", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0f1547642f7414fe05b3", - "label": "얼큰이칼국수", - "amount": 6000, + "id": "49c3b564da82a2eb6dd2", + "label": "동태찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "47cbabaff56a0e30b196", - "label": "여름별미 열무국수", - "amount": 6000, + "id": "d998a5dcf42324a3c09f", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "afe8045f1055fbfbe810", - "label": "여름별미콩국수", - "amount": 7000, + "id": "204c0a52dffa26d2ae10", + "label": "돼지주물럭", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "83e4f536a4c24ec438df", - "label": "잔치국수", - "amount": 6000, + "id": "3d7950a3520b4fe5905b", + "label": "홍어찌개", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8b7165153fed8150f893-history", - "label": "칼국수", - "amount": 6000, + "id": "12651c5ef8497ca10a3e-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "540b672c76b0a690a27a-history", - "label": "미니족발 중", - "amount": 10000, + "id": "49c3b564da82a2eb6dd2-history", + "label": "동태찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6f4b99ac50328324e377-history", - "label": "순둥이칼국수", - "amount": 6000, + "id": "d998a5dcf42324a3c09f-history", + "label": "된장찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0f1547642f7414fe05b3-history", - "label": "얼큰이칼국수", - "amount": 6000, + "id": "204c0a52dffa26d2ae10-history", + "label": "돼지주물럭", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "47cbabaff56a0e30b196-history", - "label": "여름별미 열무국수", - "amount": 6000, + "id": "3d7950a3520b4fe5905b-history", + "label": "홍어찌개", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-1019", + "name": "정가네홍두깨손칼국수", + "businessName": "정가네홍두깨손칼국수", + "categorySlug": "korean", + "address": "서울특별시 중랑구 망우로62길 61", + "district": "서울특별시 중랑구", + "latitude": 37.5966527672409, + "longitude": 127.098957490859, + "representativePriceAmount": 4500, + "representativePriceLabel": "칼국수", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-491-8457 / 영업시간: 월,화,수,목,금,토 10:30-21:00 일 / 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "fc9a9b98c2da9e4129ee", + "label": "칼국수", + "amount": 4500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" }, { - "id": "afe8045f1055fbfbe810-history", - "label": "여름별미콩국수", - "amount": 7000, + "id": "50a002bd27365d1814ce", + "label": "냉면", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "fc9a9b98c2da9e4129ee-history", + "label": "칼국수", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "83e4f536a4c24ec438df-history", - "label": "잔치국수", - "amount": 6000, + "id": "50a002bd27365d1814ce-history", + "label": "냉면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48672,103 +49662,103 @@ "comments": [] }, { - "id": "goodprice-2537", - "name": "착한미용실", - "businessName": "착한미용실", - "categorySlug": "beauty", - "address": "대전광역시 동구 중앙로204번길 6 (중동)", - "district": "대전광역시 동구", - "latitude": 36.3305464456764, - "longitude": 127.431800535141, - "representativePriceAmount": 9000, - "representativePriceLabel": "미용료(커트)", + "id": "goodprice-5426", + "name": "세은이네집", + "businessName": "세은이네집", + "categorySlug": "korean", + "address": "전북특별자치도 전주시 완산구 풍남문2길 42-3 1층", + "district": "전북특별자치도 전주시", + "latitude": 35.8135584755908, + "longitude": 127.146849696525, + "representativePriceAmount": 7000, + "representativePriceLabel": "국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-222-0594 / 영업시간: 10:00 ~ 17:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-283-3376 / 영업시간: 월~토 11:30-21:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e2f58cbd26b8a4665bf5", - "label": "미용료(커트)", - "amount": 9000, + "id": "ccb43b04b280416299e1", + "label": "국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3e7de58f4009c2751c0b", - "label": "커트(남성 일반)", + "id": "d76b59514e3afa9bbe1a", + "label": "보리비빔밥(계절 5월~)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "6a738b82e9e5bb81a74e", - "label": "커트(여성 일반)", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e2f58cbd26b8a4665bf5-history", - "label": "미용료(커트)", - "amount": 9000, + "id": "ccb43b04b280416299e1-history", + "label": "국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3e7de58f4009c2751c0b-history", - "label": "커트(남성 일반)", + "id": "d76b59514e3afa9bbe1a-history", + "label": "보리비빔밥(계절 5월~)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "6a738b82e9e5bb81a74e-history", - "label": "커트(여성 일반)", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-18135", - "name": "커피언니", - "businessName": "커피언니", - "categorySlug": "other-food", - "address": "대전광역시 동구 중앙로203번길 36 (중동) (중동)", - "district": "대전광역시 동구", - "latitude": 36.33236086267619, - "longitude": 127.43077262275567, - "representativePriceAmount": 3000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-14488", + "name": "짜앤짬", + "businessName": "짜앤짬", + "categorySlug": "chinese", + "address": "서울특별시 중랑구 겸재로 130 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58698484069053, + "longitude": 127.08211584334735, + "representativePriceAmount": 4000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-2254-7813 / 영업시간: 11:00 ~ 18:00 매주 일요일 정기휴무", + "description": "오래된 가성비 맛집으로 부담없이 찾을수 있는 곳", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-493-8136 / 영업시간: 영업시간 - 10:00~20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2cd87958889b01d347db", - "label": "아메리카노", - "amount": 3000, + "id": "fa0a8e7bbfc5c1d19603", + "label": "자장면", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e6498fbe7f03f1534bfe", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2cd87958889b01d347db-history", - "label": "아메리카노", - "amount": 3000, + "id": "fa0a8e7bbfc5c1d19603-history", + "label": "자장면", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e6498fbe7f03f1534bfe-history", + "label": "짬뽕", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48776,37 +49766,51 @@ "comments": [] }, { - "id": "goodprice-15095", - "name": "미송", - "businessName": "미송", - "categorySlug": "korean", - "address": "울산광역시 남구 수암로 171 (야음동) 1층", - "district": "울산광역시 남구", - "latitude": 35.52698514192849, - "longitude": 129.3255895227967, - "representativePriceAmount": 4000, - "representativePriceLabel": "김밥", + "id": "goodprice-5415", + "name": "수제왕돈까스(경원점)", + "businessName": "수제왕돈까스(경원점)", + "categorySlug": "western", + "address": "전북특별자치도 전주시 완산구 충경로 84", + "district": "전북특별자치도 전주시", + "latitude": 35.8187713842813, + "longitude": 127.148157077333, + "representativePriceAmount": 7500, + "representativePriceLabel": "기본돈가스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-276-5445 / 영업시간: 8:00~15:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 기본돈가스 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-282-8855", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fed37d071192757a1273", - "label": "김밥", - "amount": 4000, + "id": "0e4bec155b3ae1f6125d", + "label": "기본돈가스", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0351515dcdbb5aec0b3f", + "label": "왕돈가스", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fed37d071192757a1273-history", - "label": "김밥", - "amount": 4000, + "id": "0e4bec155b3ae1f6125d-history", + "label": "기본돈가스", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0351515dcdbb5aec0b3f-history", + "label": "왕돈가스", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48814,107 +49818,117 @@ "comments": [] }, { - "id": "goodprice-2890", - "name": "산동만두", - "businessName": "산동만두", + "id": "goodprice-1017", + "name": "짜장나루", + "businessName": "짜장나루", "categorySlug": "chinese", - "address": "울산광역시 남구 월평로37번길 8", - "district": "울산광역시 남구", - "latitude": 35.5421330808182, - "longitude": 129.309578534087, - "representativePriceAmount": 5000, + "address": "서울특별시 중랑구 겸재로 161", + "district": "서울특별시 중랑구", + "latitude": 37.5880809932158, + "longitude": 127.085476828026, + "representativePriceAmount": 4500, "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-226-7459 / 영업시간: 목 11:00-15:00 금 11:00-15:00 토 11:00-15:00 일 11:00-15:00 월 11:00-15:00 화 11:00-15:00 수 11:00-15:00 매달1,3번째일요일정기휴무 -첫째,셋째일요일휴무/둘째,넷째월요일휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-494-4774 / 영업시간: 월,수,목,금,토,일 / 10:30~20:00 화 / 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b7daf199752e69726a0f", + "id": "b0b88dd847c8c25a1f6c", "label": "자장면", - "amount": 5000, + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "06ab122e9f53ac1ea21a", + "id": "869f41ec592c4f97b9b3", "label": "짬뽕", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "576bb56c3b93cfd5f366", - "label": "찐만두", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "46dcfe2a2bbd1f0ddb31", - "label": "군만두", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0fd5a094372537c3222b", - "label": "짜장면", - "amount": 5000, + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9dfa3eda106193e9999d", - "label": "해물우동", - "amount": 7000, + "id": "f174e3bfaff4482355b0", + "label": "자자면", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b7daf199752e69726a0f-history", + "id": "b0b88dd847c8c25a1f6c-history", "label": "자장면", - "amount": 5000, + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "06ab122e9f53ac1ea21a-history", + "id": "869f41ec592c4f97b9b3-history", "label": "짬뽕", - "amount": 7000, + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "576bb56c3b93cfd5f366-history", - "label": "찐만두", - "amount": 6000, + "id": "f174e3bfaff4482355b0-history", + "label": "자자면", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-5442", + "name": "신뱅이", + "businessName": "신뱅이", + "categorySlug": "korean", + "address": "전북특별자치도 전주시 완산구 경기전길 153-9", + "district": "전북특별자치도 전주시", + "latitude": 35.8126362604144, + "longitude": 127.151819419275, + "representativePriceAmount": 8000, + "representativePriceLabel": "야채비빔밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 야채비빔밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-282-3030", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "46dcfe2a2bbd1f0ddb31-history", - "label": "군만두", - "amount": 6000, + "id": "d5e3cea80692f71b5659", + "label": "야채비빔밥", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "0fd5a094372537c3222b-history", - "label": "짜장면", - "amount": 5000, + "id": "4046713fac44337dc9ce", + "label": "알비빔밥", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "d5e3cea80692f71b5659-history", + "label": "야채비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9dfa3eda106193e9999d-history", - "label": "해물우동", - "amount": 7000, + "id": "4046713fac44337dc9ce-history", + "label": "알비빔밥", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -48922,27 +49936,27 @@ "comments": [] }, { - "id": "goodprice-13862", - "name": "삼산국수", - "businessName": "삼산국수", + "id": "goodprice-18848", + "name": "청석골잔치국수", + "businessName": "청석골잔치국수", "categorySlug": "korean", - "address": "울산광역시 남구 삼산중로 41 (달동) 1층", - "district": "울산광역시 남구", - "latitude": 35.53723577488518, - "longitude": 129.3356157418434, + "address": "서울특별시 중랑구 중랑역로 152 (묵동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.60695316722815, + "longitude": 127.07690616768816, "representativePriceAmount": 6000, - "representativePriceLabel": "손칼국수", + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-256-3998", + "description": "푸짐한 양에 가격까지 저렴한 국수 맛집", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-948-9819", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6e849605192339abde01", - "label": "손칼국수", + "id": "1e5053b5d3c201ff460f", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -48950,8 +49964,8 @@ ], "history": [ { - "id": "6e849605192339abde01-history", - "label": "손칼국수", + "id": "1e5053b5d3c201ff460f-history", + "label": "칼국수", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -48960,79 +49974,65 @@ "comments": [] }, { - "id": "goodprice-11692", - "name": "분식나라 김밥마을", - "businessName": "분식나라 김밥마을", + "id": "goodprice-11789", + "name": "시골집 순두부(연산)", + "businessName": "시골집 순두부(연산)", "categorySlug": "korean", - "address": "경기도 수원시 영통구 덕영대로 1699 (영통동)", - "district": "경기도 수원시", - "latitude": 37.2479713166815, - "longitude": 127.077097970377, - "representativePriceAmount": 7500, - "representativePriceLabel": "비빔밥", + "address": "전라남도 목포시 연산로 140 (연산동)", + "district": "전라남도 목포시", + "latitude": 34.8096541758217, + "longitude": 126.3815570128, + "representativePriceAmount": 9000, + "representativePriceLabel": "순두부", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 7,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-206-0599 / 영업시간: 10:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-274-9999", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9230f07dbdcc6cb1989f", - "label": "비빔밥", - "amount": 7500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3e73601278cc0eeaabf9", - "label": "된장찌개", - "amount": 8000, + "id": "726bacfc6565241140e2", + "label": "순두부", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "702c2e491c33d41af7f3", - "label": "칼국수", - "amount": 8000, + "id": "fc28168b420dd0a54046", + "label": "청국장", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3eff18e1757191350f52", - "label": "김밥", - "amount": 3500, + "id": "3871c191d22cdf864f7a", + "label": "청국장백반", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9230f07dbdcc6cb1989f-history", - "label": "비빔밥", - "amount": 7500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3e73601278cc0eeaabf9-history", - "label": "된장찌개", - "amount": 8000, + "id": "726bacfc6565241140e2-history", + "label": "순두부", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "702c2e491c33d41af7f3-history", - "label": "칼국수", - "amount": 8000, + "id": "fc28168b420dd0a54046-history", + "label": "청국장", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3eff18e1757191350f52-history", - "label": "김밥", - "amount": 3500, + "id": "3871c191d22cdf864f7a-history", + "label": "청국장백반", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49040,37 +50040,37 @@ "comments": [] }, { - "id": "goodprice-3395", - "name": "붕붕샐러드", - "businessName": "붕붕샐러드", + "id": "goodprice-16075", + "name": "카페 피울", + "businessName": "카페 피울", "categorySlug": "other-food", - "address": "경기도 수원시 영통구 신원로 146 .", - "district": "경기도 수원시", - "latitude": 37.2494809372827, - "longitude": 127.057033352061, - "representativePriceAmount": 3000, + "address": "서울특별시 중랑구 용마산로129나길 42 (신내동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.60569483355735, + "longitude": 127.09903182293912, + "representativePriceAmount": 2000, "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-206-9891 / 영업시간: 09:00~21:00 일요일 휴무 15:00~17:00 브레이크 타임", + "description": "오랜시간 운영해온 가게로 단골이 많고, 맛있는 커피를 넓은 공간에서 여유롭게 즐길수 있는곳", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1471-7980 / 영업시간: 영업시간 : 8시10~19시 / 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bfc53e879ed750d8922f", + "id": "0118cd59f90920acdfb8", "label": "아메리카노", - "amount": 3000, + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bfc53e879ed750d8922f-history", + "id": "0118cd59f90920acdfb8-history", "label": "아메리카노", - "amount": 3000, + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49078,37 +50078,37 @@ "comments": [] }, { - "id": "goodprice-14021", - "name": "블랙남성컷", - "businessName": "블랙남성컷", - "categorySlug": "beauty", - "address": "경기도 수원시 권선구 세권로 76 (세류동, 경일아파트) 105호", - "district": "경기도 수원시", - "latitude": 37.25844888657563, - "longitude": 127.01243796592051, - "representativePriceAmount": 9000, - "representativePriceLabel": "커트", + "id": "goodprice-15155", + "name": "어락", + "businessName": "어락", + "categorySlug": "korean", + "address": "전라남도 목포시 평화로 45 (상동) 어락", + "district": "전라남도 목포시", + "latitude": 34.795442625350994, + "longitude": 126.43019587300199, + "representativePriceAmount": 10000, + "representativePriceLabel": "장어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-234-7585 / 영업시간: 10:00~19:00 화요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장어탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-287-8789", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cfe006a3d34cf1dcf2b1", - "label": "커트", - "amount": 9000, + "id": "1e8db80c38807ee3800c", + "label": "장어탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "cfe006a3d34cf1dcf2b1-history", - "label": "커트", - "amount": 9000, + "id": "1e8db80c38807ee3800c-history", + "label": "장어탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49116,65 +50116,37 @@ "comments": [] }, { - "id": "goodprice-13803", - "name": "오믈하우스", - "businessName": "오믈하우스", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 서부대성로227번길 24 (효자동) 2층", - "district": "강원특별자치도 춘천시", - "latitude": 37.873367758817224, - "longitude": 127.74517942757676, - "representativePriceAmount": 5000, - "representativePriceLabel": "오므라이스", + "id": "goodprice-14490", + "name": "커피나무", + "businessName": "커피나무", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 겸재로 263 (망우동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.590672677811746, + "longitude": 127.09677404278304, + "representativePriceAmount": 2500, + "representativePriceLabel": "커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 오므라이스 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1363-1331 / 영업시간: 11:00 - 20:00 브레이크타임 15:00 - 16:30 라스트오더 19:45 매주 토요일, 일요일 정기휴무", + "description": "저렴한 가격으로 향긋한 커피를 즐길 수 있는 카페, 다양한 화초 구경은 덤", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6012-1333 / 영업시간: 영업시간 - 09:00~22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fe1dabed0196a9d8d1d5", - "label": "오므라이스", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "4f7d58b816040c397e88", - "label": "데미그라스오므라이스", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bf3d85a1d523f3d1a48d", - "label": "크림오므라이스", - "amount": 6500, + "id": "f8c2fdb72c8bd0b21dfb", + "label": "커피", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fe1dabed0196a9d8d1d5-history", - "label": "오므라이스", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "4f7d58b816040c397e88-history", - "label": "데미그라스오므라이스", - "amount": 5500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bf3d85a1d523f3d1a48d-history", - "label": "크림오므라이스", - "amount": 6500, + "id": "f8c2fdb72c8bd0b21dfb-history", + "label": "커피", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49182,103 +50154,51 @@ "comments": [] }, { - "id": "goodprice-4364", - "name": "와송칼국수", - "businessName": "와송칼국수", + "id": "goodprice-11788", + "name": "연산순대국밥", + "businessName": "연산순대국밥", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 명동길 46-1 (중앙로3가)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8772319253533, - "longitude": 127.724402610449, - "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "address": "전라남도 목포시 후광대로 105번안길 21 (옥암동)", + "district": "전라남도 목포시", + "latitude": 34.8114935235184, + "longitude": 126.44243592283, + "representativePriceAmount": 9000, + "representativePriceLabel": "순대국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-7600 / 영업시간: 10:30 - 17:00 토요일 10:30 - 14:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-285-4012", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "08ac7c9ebf64b74d0a64", - "label": "칼국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "26e95e7a0fddb56cc625", - "label": "쫄면", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "672414f28b56e86714de", - "label": "냉면", - "amount": 7000, + "id": "ca1a9f75ccecd4db66be", + "label": "순대국밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "08ac7c9ebf64b74d0a64-history", - "label": "칼국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "26e95e7a0fddb56cc625-history", - "label": "쫄면", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "672414f28b56e86714de-history", - "label": "냉면", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4396", - "name": "왕가", - "businessName": "왕가", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 석사길 15 (석사동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8579328322032, - "longitude": 127.744971856148, - "representativePriceAmount": 6000, - "representativePriceLabel": "한식뷔페", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-261-0559", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "ce24033ee15c076f69e2", - "label": "한식뷔페", - "amount": 6000, + "id": "7b9ae25cbddb5662ad54", + "label": "순대한접시", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ce24033ee15c076f69e2-history", - "label": "한식뷔페", - "amount": 6000, + "id": "ca1a9f75ccecd4db66be-history", + "label": "순대국밥", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "7b9ae25cbddb5662ad54-history", + "label": "순대한접시", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49286,65 +50206,65 @@ "comments": [] }, { - "id": "goodprice-4762", - "name": "명동식당", - "businessName": "명동식당", - "categorySlug": "korean", - "address": "충청북도 청주시 흥덕구 천석로 56 (봉명동)", - "district": "충청북도 청주시", - "latitude": 36.6403799754467, - "longitude": 127.465551511862, - "representativePriceAmount": 7000, - "representativePriceLabel": "청국장", + "id": "goodprice-17626", + "name": "케익하우스 쥬떼므", + "businessName": "케익하우스 쥬떼므", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 망우로32길 49 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.59161249706707, + "longitude": 127.07738948509346, + "representativePriceAmount": 500, + "representativePriceLabel": "단팥빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-268-8320 / 영업시간: 매일 09:00~20:00 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 단팥빵 500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-492-1148", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9ad01dd7f0dd4cb60a9b", - "label": "청국장", - "amount": 7000, + "id": "83b8b6c1e7d969ba911b", + "label": "단팥빵", + "amount": 500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9b952fd0cd84bbd25d75", - "label": "김치찌개", - "amount": 7000, + "id": "9d9127e991d4ff4189cb", + "label": "소보루빵", + "amount": 500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a8dcb689f57be7d2914c", - "label": "동태찌개", - "amount": 8000, + "id": "94ae7c7b2561447f5edb", + "label": "크림빵", + "amount": 500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9ad01dd7f0dd4cb60a9b-history", - "label": "청국장", - "amount": 7000, + "id": "83b8b6c1e7d969ba911b-history", + "label": "단팥빵", + "amount": 500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9b952fd0cd84bbd25d75-history", - "label": "김치찌개", - "amount": 7000, + "id": "9d9127e991d4ff4189cb-history", + "label": "소보루빵", + "amount": 500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a8dcb689f57be7d2914c-history", - "label": "동태찌개", - "amount": 8000, + "id": "94ae7c7b2561447f5edb-history", + "label": "크림빵", + "amount": 500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49352,65 +50272,65 @@ "comments": [] }, { - "id": "goodprice-15524", - "name": "몽키만두", - "businessName": "몽키만두", + "id": "goodprice-6369", + "name": "그린손칼국수", + "businessName": "그린손칼국수", "categorySlug": "korean", - "address": "충청북도 청주시 흥덕구 사직대로 62 (복대동) 101호(몽키만두)", - "district": "충청북도 청주시", - "latitude": 36.634284271568625, - "longitude": 127.45416055015329, - "representativePriceAmount": 5000, - "representativePriceLabel": "고기만두", + "address": "경상북도 포항시 남구 오천읍 장기로1690번길 7-1 1층", + "district": "경상북도 포항시", + "latitude": 35.9662564080845, + "longitude": 129.4171669752, + "representativePriceAmount": 3000, + "representativePriceLabel": "손칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고기만두 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-260-9132", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 11시~17시 매월 첫째, 셋째 화요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a2f91607a6f7caaa4f69", - "label": "고기만두", - "amount": 5000, + "id": "652881ed5452415dbb40", + "label": "손칼국수", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e9925a4075548324f9b8", - "label": "김치만두", - "amount": 5000, + "id": "36d4910fce62ffc16639", + "label": "손수제비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "66e7d8bf5a32ddd71dc7", - "label": "떡만두국", - "amount": 7500, + "id": "fc824afc2610083c3075", + "label": "수제비칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a2f91607a6f7caaa4f69-history", - "label": "고기만두", - "amount": 5000, + "id": "652881ed5452415dbb40-history", + "label": "손칼국수", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e9925a4075548324f9b8-history", - "label": "김치만두", - "amount": 5000, + "id": "36d4910fce62ffc16639-history", + "label": "손수제비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "66e7d8bf5a32ddd71dc7-history", - "label": "떡만두국", - "amount": 7500, + "id": "fc824afc2610083c3075-history", + "label": "수제비칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49418,37 +50338,37 @@ "comments": [] }, { - "id": "goodprice-18723", - "name": "성환반점", - "businessName": "성환반점", - "categorySlug": "chinese", - "address": "충청남도 천안시 서북구 성환읍 성진로 27 성환반점", - "district": "충청남도 천안시", - "latitude": 36.91213733151647, - "longitude": 127.13855017469305, - "representativePriceAmount": 9000, - "representativePriceLabel": "짬뽕", + "id": "goodprice-14491", + "name": "코끼리카페", + "businessName": "코끼리카페", + "categorySlug": "other-food", + "address": "서울특별시 중랑구 봉우재로33길 25 (상봉동, 이레59) 102호", + "district": "서울특별시 중랑구", + "latitude": 37.593888437528356, + "longitude": 127.08743089890284, + "representativePriceAmount": 2500, + "representativePriceLabel": "커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짬뽕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-581-3353", + "description": "다양한 종류의 음료와 아기자기한 인테리어가 기분좋게 만드는 카페", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1323-4183 / 영업시간: 영업시간 : 09:00~23:00 휴무일 : 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dc5da367ca2c8aec7e3a", - "label": "짬뽕", - "amount": 9000, + "id": "d5a28fefb11cc88c185b", + "label": "커피", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dc5da367ca2c8aec7e3a-history", - "label": "짬뽕", - "amount": 9000, + "id": "d5a28fefb11cc88c185b-history", + "label": "커피", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49456,37 +50376,79 @@ "comments": [] }, { - "id": "goodprice-4968", - "name": "세븐데이남성커트", - "businessName": "세븐데이남성커트", - "categorySlug": "barber", - "address": "충청남도 천안시 서북구 두정로 212 107호 (두정동)", - "district": "충청남도 천안시", - "latitude": 36.8333285541934, - "longitude": 127.140544198528, - "representativePriceAmount": 9000, - "representativePriceLabel": "커트", + "id": "goodprice-15982", + "name": "다정다맛", + "businessName": "다정다맛", + "categorySlug": "korean", + "address": "경상남도 창원시 의창구 퇴촌로25번길 6-31 (사림동) 다정다맛", + "district": "경상남도 창원시", + "latitude": 35.24267515982134, + "longitude": 128.68959344279395, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 커트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-568-6808 / 영업시간: 10:00~20:00 연중무휴", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-284-6114", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a0c29e0c7bd5125a93de", - "label": "커트", - "amount": 9000, + "id": "9f2b6cb1cf6189c5819c", + "label": "김치찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a8e803a17352dc89ca05", + "label": "된장찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e2a856962b1d3d96f88d", + "label": "순두부찌개", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a4c03bc456bb73fbbda2", + "label": "돼지찌개", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a0c29e0c7bd5125a93de-history", - "label": "커트", - "amount": 9000, + "id": "9f2b6cb1cf6189c5819c-history", + "label": "김치찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a8e803a17352dc89ca05-history", + "label": "된장찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e2a856962b1d3d96f88d-history", + "label": "순두부찌개", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a4c03bc456bb73fbbda2-history", + "label": "돼지찌개", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49494,51 +50456,37 @@ "comments": [] }, { - "id": "goodprice-14668", - "name": "셀프밥집", - "businessName": "셀프밥집", + "id": "goodprice-10675", + "name": "한밀청년밥상", + "businessName": "한밀청년밥상", "categorySlug": "korean", - "address": "충청남도 천안시 서북구 나사렛대길 22-4 (쌍용동) .", - "district": "충청남도 천안시", - "latitude": 36.79863752371899, - "longitude": 127.11896536809991, - "representativePriceAmount": 8000, - "representativePriceLabel": "고추장불고기", + "address": "서울특별시 중랑구 동일로140길 15 1층", + "district": "서울특별시 중랑구", + "latitude": 37.6043694603432, + "longitude": 127.079965365014, + "representativePriceAmount": 3000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고추장불고기 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-575-1213 / 영업시간: 11:00~20:00 정기휴무 매주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e782d286a993487ee161", - "label": "고추장불고기", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "eb402ca9113c1eeaac3b", - "label": "뼈해장국", - "amount": 8000, + "id": "8f9b85f431ba33a19ebb", + "label": "김치찌개", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e782d286a993487ee161-history", - "label": "고추장불고기", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "eb402ca9113c1eeaac3b-history", - "label": "뼈해장국", - "amount": 8000, + "id": "8f9b85f431ba33a19ebb-history", + "label": "김치찌개", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49546,65 +50494,65 @@ "comments": [] }, { - "id": "goodprice-17033", - "name": "담다한식뷔페", - "businessName": "담다한식뷔페", + "id": "goodprice-6834", + "name": "대도식당", + "businessName": "대도식당", "categorySlug": "korean", - "address": "전북특별자치도 군산시 문화로 151 (수송동) 1층", - "district": "전북특별자치도 군산시", - "latitude": 35.9701627176277, - "longitude": 126.72247350070346, - "representativePriceAmount": 7000, - "representativePriceLabel": "한식(초등학생)", + "address": "경상남도 창원시 진해구 중원로 67-14 (평안동)", + "district": "경상남도 창원시", + "latitude": 35.1504050990581, + "longitude": 128.659012145261, + "representativePriceAmount": 9000, + "representativePriceLabel": "추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식(초등학생) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1495-1228 / 영업시간: 월~토(11:00~20:00) * 15:00~17:00 브레이크타임 * 19:30 라스트오더 * 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-546-3458", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4ad4359fd0071f43656c", - "label": "한식(초등학생)", - "amount": 7000, + "id": "33d26ac2f77bb05c8849", + "label": "추어탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5dfbee5a28ce08954597", - "label": "한식(성인)", - "amount": 10000, + "id": "5922e146b7eb33fa6d38", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ea9d9146c6629bdc62a3", - "label": "한식(미취학)", - "amount": 5000, + "id": "0566341d1a3a705cfa80", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4ad4359fd0071f43656c-history", - "label": "한식(초등학생)", - "amount": 7000, + "id": "33d26ac2f77bb05c8849-history", + "label": "추어탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5dfbee5a28ce08954597-history", - "label": "한식(성인)", - "amount": 10000, + "id": "5922e146b7eb33fa6d38-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ea9d9146c6629bdc62a3-history", - "label": "한식(미취학)", - "amount": 5000, + "id": "0566341d1a3a705cfa80-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49612,37 +50560,51 @@ "comments": [] }, { - "id": "goodprice-17032", - "name": "돔베초밥", - "businessName": "돔베초밥", - "categorySlug": "japanese", - "address": "전북특별자치도 군산시 수송남로 2 (수송동) 1층", - "district": "전북특별자치도 군산시", - "latitude": 35.95970510152752, - "longitude": 126.71457201468164, - "representativePriceAmount": 10000, - "representativePriceLabel": "모듬초밥(10p)", + "id": "goodprice-14498", + "name": "한우리", + "businessName": "한우리", + "categorySlug": "korean", + "address": "서울특별시 중랑구 중랑천로 70 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.591448171182655, + "longitude": 127.07321790898509, + "representativePriceAmount": 5000, + "representativePriceLabel": "잔치국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 모듬초밥(10p) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-471-8884 / 영업시간: 월, 수, 목, 금, 토, 일(11:00~21:00) * 20:40 라스트오더 * 매주 화요일 정기휴무", + "description": "다양한 국수종류가 가득, 가격도 저렴한 가성비 맛집", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dc31e202b0876e4fc725", - "label": "모듬초밥(10p)", - "amount": 10000, + "id": "8ecdef68258c0cba0fdf", + "label": "잔치국수", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "053601b4e56ee2fc1804", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dc31e202b0876e4fc725-history", - "label": "모듬초밥(10p)", - "amount": 10000, + "id": "8ecdef68258c0cba0fdf-history", + "label": "잔치국수", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "053601b4e56ee2fc1804-history", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49650,89 +50612,79 @@ "comments": [] }, { - "id": "goodprice-13056", - "name": "동신미용실", - "businessName": "동신미용실", - "categorySlug": "beauty", - "address": "전북특별자치도 군산시 창성3길 13 (개복동) 동신미용실", - "district": "전북특별자치도 군산시", - "latitude": 35.984326824789925, - "longitude": 126.71266844987171, + "id": "goodprice-17127", + "name": "대림식당", + "businessName": "대림식당", + "categorySlug": "korean", + "address": "경상남도 창원시 마산회원구 회원동24길 36 (회원동) 대림식당", + "district": "경상남도 창원시", + "latitude": 35.21968201084791, + "longitude": 128.57667591118778, "representativePriceAmount": 8000, - "representativePriceLabel": "커트(여)", + "representativePriceLabel": "삼겹살", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(여) 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-223-2407", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0d6ae12480a1e4fa85f7", - "label": "커트(여)", + "id": "5d9679d0e4cfbcf31110", + "label": "삼겹살", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "075f219efe03ca0c0e22", - "label": "커트(남)", - "amount": 10000, + "id": "9658d787087e20d730b0", + "label": "불고기", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4fc5a4baed5b7bf92ac4", + "label": "된장찌개", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ac439e49aef611de0f86", + "label": "오리불고기", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0d6ae12480a1e4fa85f7-history", - "label": "커트(여)", + "id": "5d9679d0e4cfbcf31110-history", + "label": "삼겹살", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "075f219efe03ca0c0e22-history", - "label": "커트(남)", - "amount": 10000, + "id": "9658d787087e20d730b0-history", + "label": "불고기", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5713", - "name": "뉴미인", - "businessName": "뉴미인", - "categorySlug": "beauty", - "address": "전라남도 여수시 구봉산길 11-2 (국동)", - "district": "전라남도 여수시", - "latitude": 34.7344828301154, - "longitude": 127.718486920101, - "representativePriceAmount": 10000, - "representativePriceLabel": "여성 커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 여성 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-642-7885 / 영업시간: 월-토 08:30-18:00 일요일휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "46c92cf54a4a6f9472c6", - "label": "여성 커트", - "amount": 10000, + "id": "4fc5a4baed5b7bf92ac4-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "46c92cf54a4a6f9472c6-history", - "label": "여성 커트", - "amount": 10000, + "id": "ac439e49aef611de0f86-history", + "label": "오리불고기", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49740,75 +50692,65 @@ "comments": [] }, { - "id": "goodprice-5714", - "name": "늘고운 미용실", - "businessName": "늘고운 미용실", - "categorySlug": "beauty", - "address": "전라남도 여수시 서교 6길 5 (서교동)", - "district": "전라남도 여수시", - "latitude": 34.7423213814819, - "longitude": 127.728456280602, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트", + "id": "goodprice-1025", + "name": "할매김밥", + "businessName": "할매김밥", + "categorySlug": "korean", + "address": "서울특별시 중랑구 동일로163길 17", + "district": "서울특별시 중랑구", + "latitude": 37.6118077346557, + "longitude": 127.076327305169, + "representativePriceAmount": 5000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 18:00에18시0분에 금 07:30-18:00 토 07:30-18:00 일 정기휴무(매주일요일) 월 07:30-18:00 화 07:30-18:00 수 07:30-18:00 목 07:30-18:00 01/01새해첫날휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-979-6227 / 영업시간: 매일 08:00~24:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cd0feb0df9e1452ea3dc", - "label": "커트", - "amount": 7000, + "id": "5ad5d3fb30829893254d", + "label": "김치찌개", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "cd0feb0df9e1452ea3dc-history", - "label": "커트", - "amount": 7000, + "id": "6f99134eeb4c92080a86", + "label": "된장찌개", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5753", - "name": "대명한우소머리곰탕", - "businessName": "대명한우소머리곰탕", - "categorySlug": "korean", - "address": "전라남도 여수시 시청서5길 8 (학동)", - "district": "전라남도 여수시", - "latitude": 34.7567070697685, - "longitude": 127.657703549652, - "representativePriceAmount": 9000, - "representativePriceLabel": "한우설렁탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한우설렁탕 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-666-9988 / 영업시간: 10:00~21:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "2a8aa49d6587c41313e2", - "label": "한우설렁탕", - "amount": 9000, + "id": "e27c4889dc31f3aa365e", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2a8aa49d6587c41313e2-history", - "label": "한우설렁탕", - "amount": 9000, + "id": "5ad5d3fb30829893254d-history", + "label": "김치찌개", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6f99134eeb4c92080a86-history", + "label": "된장찌개", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e27c4889dc31f3aa365e-history", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49816,107 +50758,65 @@ "comments": [] }, { - "id": "goodprice-5754", - "name": "대성국밥", - "businessName": "대성국밥", + "id": "goodprice-14394", + "name": "대복갈비", + "businessName": "대복갈비", "categorySlug": "korean", - "address": "전라남도 여수시 좌수영로 42 (서교동)", - "district": "전라남도 여수시", - "latitude": 34.7440040528689, - "longitude": 127.728555791744, - "representativePriceAmount": 6000, - "representativePriceLabel": "소머리국밥", + "address": "경남 창원시 마산회원구 3.15성역로 131 대복갈비(구암동)", + "district": "경남 창원시", + "latitude": 35.2520164772151, + "longitude": 128.593762598517, + "representativePriceAmount": 7000, + "representativePriceLabel": "물냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소머리국밥 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 08:00~19:00 매주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물냉면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1351-3061", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "532178da123dec8897bd", - "label": "소머리국밥", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c1122319ee17609bfe65", - "label": "비빔밥", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a67e02e7769e727d54a5", - "label": "시래기국밥", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6fe4ef9d30223e1d98fa", - "label": "닭계장", - "amount": 5000, + "id": "420950f063159f2a6827", + "label": "물냉면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "76f5a3015f1106780992", - "label": "소고기국밥", - "amount": 7000, + "id": "2af70ac89fa6bb94466a", + "label": "비빔냉면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d878c3f7d4eacadaa246", - "label": "우거지국밥", - "amount": 3000, + "id": "2191567b3cd214345b6b", + "label": "김치(된장)찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "532178da123dec8897bd-history", - "label": "소머리국밥", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c1122319ee17609bfe65-history", - "label": "비빔밥", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a67e02e7769e727d54a5-history", - "label": "시래기국밥", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6fe4ef9d30223e1d98fa-history", - "label": "닭계장", - "amount": 5000, + "id": "420950f063159f2a6827-history", + "label": "물냉면", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "76f5a3015f1106780992-history", - "label": "소고기국밥", - "amount": 7000, + "id": "2af70ac89fa6bb94466a-history", + "label": "비빔냉면", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d878c3f7d4eacadaa246-history", - "label": "우거지국밥", - "amount": 3000, + "id": "2191567b3cd214345b6b-history", + "label": "김치(된장)찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49924,65 +50824,89 @@ "comments": [] }, { - "id": "goodprice-6328", - "name": "동진이용소", - "businessName": "동진이용소", - "categorySlug": "barber", - "address": "경상북도 포항시 남구 대해로 114", - "district": "경상북도 포항시", - "latitude": 36.0208157469306, - "longitude": 129.364260018145, + "id": "goodprice-15225", + "name": "행복한 한우돈", + "businessName": "행복한 한우돈", + "categorySlug": "korean", + "address": "서울특별시 중랑구 면목로 365 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.584782148814455, + "longitude": 127.08818041946849, "representativePriceAmount": 10000, - "representativePriceLabel": "성인조발", + "representativePriceLabel": "삼겹살(200g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 성인조발 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월~금", + "description": "국내산 고기를 저렴한 가격으로 푸짐하게 즐길 수 있는 맛집", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-7795-5903", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "731849e54355a34cd5ac", - "label": "성인조발", + "id": "77d0eec3708be1735f5e", + "label": "삼겹살(200g)", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "aef048105219e0d635b7", - "label": "염색", + "id": "77d0eec3708be1735f5e-history", + "label": "삼겹살(200g)", "amount": 10000, "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-17052", + "name": "오야꼬", + "businessName": "오야꼬", + "categorySlug": "japanese", + "address": "부산광역시 중구 중구로 68 (대청동4가) 1층", + "district": "부산광역시 중구", + "latitude": 35.10349395265852, + "longitude": 129.02867590895872, + "representativePriceAmount": 9000, + "representativePriceLabel": "모밀셋트", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 모밀셋트 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-462-8989", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "0d6c71d1226f4f504c9e", + "label": "모밀셋트", + "amount": 9000, + "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "15aaa3e0ab2b6b70c39c", - "label": "성인 조발", - "amount": 10000, + "id": "eb893cc8f310600b51a6", + "label": "우동셋트", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "731849e54355a34cd5ac-history", - "label": "성인조발", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "aef048105219e0d635b7-history", - "label": "염색", - "amount": 10000, + "id": "0d6c71d1226f4f504c9e-history", + "label": "모밀셋트", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "15aaa3e0ab2b6b70c39c-history", - "label": "성인 조발", - "amount": 10000, + "id": "eb893cc8f310600b51a6-history", + "label": "우동셋트", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -49990,37 +50914,37 @@ "comments": [] }, { - "id": "goodprice-18349", - "name": "두꺼비컷트", - "businessName": "두꺼비컷트", - "categorySlug": "beauty", - "address": "경상북도 포항시 북구 문화로13번길 4 (덕수동) 두꺼비컷트", - "district": "경상북도 포항시", - "latitude": 36.04313828411014, - "longitude": 129.36688103561735, - "representativePriceAmount": 10000, - "representativePriceLabel": "성인커트", + "id": "goodprice-17624", + "name": "현미숯불갈비", + "businessName": "현미숯불갈비", + "categorySlug": "korean", + "address": "서울특별시 중랑구 면목로48길 65 (면목동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.58207163110791, + "longitude": 127.09227715845628, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 성인커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4538-8845", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2209-5484", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cd32f2d10920a829b572", - "label": "성인커트", - "amount": 10000, + "id": "ccb8416eb29d1237445f", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "cd32f2d10920a829b572-history", - "label": "성인커트", - "amount": 10000, + "id": "ccb8416eb29d1237445f-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -50028,65 +50952,65 @@ "comments": [] }, { - "id": "goodprice-14090", - "name": "본가냉면", - "businessName": "본가냉면", + "id": "goodprice-1658", + "name": "일미기사식당", + "businessName": "일미기사식당", "categorySlug": "korean", - "address": "경상남도 창원시 진해구 이동로40번길 5 (이동) 1층, 이동 화이트광장 뒷골목", - "district": "경상남도 창원시", - "latitude": 35.150346456545456, - "longitude": 128.69686429984836, - "representativePriceAmount": 8000, - "representativePriceLabel": "물냉면", + "address": "부산광역시 중구 흑교로 16-1 (부평동)", + "district": "부산광역시 중구", + "latitude": 35.1008721419571, + "longitude": 129.02530342269, + "representativePriceAmount": 4500, + "representativePriceLabel": "시락국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "본가냉면 은 올바른 마음가짐으로 신선하고 정직한 재료만을 엄선하여 최상의 면발을 만듭니다 신선한 재료와 질 좋은 냉면으로 고집하여 정성껏 준비하고 있습니다. 최고가 되기 위해서 항상 최선을 다하며 찾아주시는 고객님들을 밝은 미소 맞이하여 친절함으로 더 가까이 다가가고 있습니다. 편안한 분위기, 본가냉면 만의 깊고 풍부한 맛! 품위 있는 만남 오셔서 직접 느껴보시기 바랍니다. 고객이 모두 만족하는 본가냉면 여러분이 기대하시는 그 이상이 되겠습니다. 감사합니다", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-6664-3402 / 영업시간: 매일 11:00 - 19:00 - 저녁시간 예약제를 시행중입니다 전화예약주세요", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 시락국밥 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-253-4440 / 영업시간: 24시간 매주 월요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "68db7da9df1e92a32bd2", - "label": "물냉면", - "amount": 8000, + "id": "bb43475fb649859bbcf0", + "label": "시락국밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fab2c5da0f2f4a45a788", - "label": "비빔냉면", - "amount": 9000, + "id": "1df15c9b9f1f257c038c", + "label": "선지국밥", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "cad59ef708f737ef9fad", - "label": "물비빔냉면", - "amount": 9000, + "id": "2c1984aeab4d63b75fb8", + "label": "우동", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "68db7da9df1e92a32bd2-history", - "label": "물냉면", - "amount": 8000, + "id": "bb43475fb649859bbcf0-history", + "label": "시락국밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fab2c5da0f2f4a45a788-history", - "label": "비빔냉면", - "amount": 9000, + "id": "1df15c9b9f1f257c038c-history", + "label": "선지국밥", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cad59ef708f737ef9fad-history", - "label": "물비빔냉면", - "amount": 9000, + "id": "2c1984aeab4d63b75fb8-history", + "label": "우동", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -50094,41 +51018,34 @@ "comments": [] }, { - "id": "goodprice-15394", - "name": "블랙맨", - "businessName": "블랙맨", - "categorySlug": "beauty", - "address": "경상남도 창원시 성산구 안민안길 17 (안민동) 103호, 블랙맨", - "district": "경상남도 창원시", - "latitude": 35.186564515371245, - "longitude": 128.69139110245138, - "representativePriceAmount": 9000, - "representativePriceLabel": "컷트", + "id": "goodprice-1018", + "name": "화성각", + "businessName": "화성각", + "categorySlug": "chinese", + "address": "서울특별시 중랑구 면목로48길 37", + "district": "서울특별시 중랑구", + "latitude": 37.5822683789334, + "longitude": 127.090720477178, + "representativePriceAmount": 4000, + "representativePriceLabel": "자장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-4065-4802", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-432-8301 / 영업시간: 월,수,목,금,토,일 / 10:30~21:00 화 / 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4981f2f4a745cb55aebb", - "label": "컷트", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d76fc4da6372b17cef88", - "label": "학생컷트", - "amount": 8000, + "id": "b12bedce5220df056cd4", + "label": "자장면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3cbd8f55de23b0e75cb7", - "label": "두피마사지", + "id": "d33f03b37313ff3aea46", + "label": "짬뽕", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -50136,22 +51053,15 @@ ], "history": [ { - "id": "4981f2f4a745cb55aebb-history", - "label": "컷트", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d76fc4da6372b17cef88-history", - "label": "학생컷트", - "amount": 8000, + "id": "b12bedce5220df056cd4-history", + "label": "자장면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3cbd8f55de23b0e75cb7-history", - "label": "두피마사지", + "id": "d33f03b37313ff3aea46-history", + "label": "짬뽕", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -50160,37 +51070,51 @@ "comments": [] }, { - "id": "goodprice-19281", - "name": "블루남성컷트", - "businessName": "블루남성컷트", - "categorySlug": "barber", - "address": "경상남도 창원시 성산구 창이대로901번길 4 (대방동) 상가 112동 109호", - "district": "경상남도 창원시", - "latitude": 35.2047363655845, - "longitude": 128.70762132136215, - "representativePriceAmount": 8000, - "representativePriceLabel": "컷트", + "id": "goodprice-14157", + "name": "재성밀면", + "businessName": "재성밀면", + "categorySlug": "korean", + "address": "부산광역시 중구 중앙대로41번길 14-1 (동광동3가) 1층", + "district": "부산광역시 중구", + "latitude": 35.1011509548915, + "longitude": 129.03476576507273, + "representativePriceAmount": 7500, + "representativePriceLabel": "물밀면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 컷트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4551-0848 / 영업시간: 11:00~19:00 매주 화요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물밀면 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-242-3836 / 영업시간: 10:00~16:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f0ee24078324a99370ee", - "label": "컷트", - "amount": 8000, + "id": "adfb245e85615664bd7d", + "label": "물밀면", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b317446981832cb962cf", + "label": "비빔밀면", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f0ee24078324a99370ee-history", - "label": "컷트", - "amount": 8000, + "id": "adfb245e85615664bd7d-history", + "label": "물밀면", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b317446981832cb962cf-history", + "label": "비빔밀면", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -50198,34 +51122,27 @@ "comments": [] }, { - "id": "goodprice-7046", - "name": "라영헤어숍", - "businessName": "라영헤어숍", - "categorySlug": "beauty", - "address": "제주특별자치도 제주시 다랑곶4길 18", - "district": "제주특별자치도 제주시", - "latitude": 33.4883543798046, - "longitude": 126.480241062992, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-19282", + "name": "황태식당", + "businessName": "황태식당", + "categorySlug": "korean", + "address": "서울특별시 중랑구 봉화산로30길 37 (중화동) 1층", + "district": "서울특별시 중랑구", + "latitude": 37.60059738843938, + "longitude": 127.08530772179701, + "representativePriceAmount": 7000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-744-3340", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b1e9360a2b1e5f97622a", - "label": "커트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f13f9f1ab28f71945020", - "label": "컷 커트", + "id": "0c58d96505ed1863e226", + "label": "백반", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -50233,15 +51150,8 @@ ], "history": [ { - "id": "b1e9360a2b1e5f97622a-history", - "label": "커트", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f13f9f1ab28f71945020-history", - "label": "컷 커트", + "id": "0c58d96505ed1863e226-history", + "label": "백반", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -50250,173 +51160,117 @@ "comments": [] }, { - "id": "goodprice-7135", - "name": "마라톤식당", - "businessName": "마라톤식당", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 서광로2길 15", - "district": "제주특별자치도 제주시", - "latitude": 33.498788985127, - "longitude": 126.512962697004, - "representativePriceAmount": 7000, - "representativePriceLabel": "김치찌개", + "id": "goodprice-2013", + "name": "장성루", + "businessName": "장성루", + "categorySlug": "chinese", + "address": "대구광역시 중구 국채보상로139길 10 (동인동4가) 장성루", + "district": "대구광역시 중구", + "latitude": 35.86951806204098, + "longitude": 128.606526645754, + "representativePriceAmount": 5000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-757-1945 / 영업시간: 영업시작 금 08:00-20:00 15:00-17:00브레이크타임 토 08:00-20:00 15:00-17:00브레이크타임 일 정기휴무(매주일요일) 월 08:00-20:00 15:00-17:00브레이크타임 화 08:00-20:00 15:00-17:00브레이크타임 수 08:00-20:00 15:00-17:00브레이크타임 목 08:00-20:00 15:00-17:00브레이크타임", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-425-4303 / 영업시간: 금 10:00-21:00 토 10:00-21:00 일 정기휴무(매주일요일) 월 10:00-21:00 화 10:00-21:00 수 10:00-21:00 목 10:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9b1e8bbd9a2def8e9cf5", - "label": "김치찌개", - "amount": 7000, + "id": "b52e031e6fa4c0bb03fe", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "261bd0170319bf21ec97", - "label": "된장찌개", - "amount": 7000, + "id": "8f5b635a5a80379ad958", + "label": "짬뽕", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c37942c7968b49419185", - "label": "만두국", + "id": "2ad0a04fecdcf9581065", + "label": "볶음밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "fe97a3ad0ef2613a2398", - "label": "고사리두루치기", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1af3539ffc380fa5446d", - "label": "음료", - "amount": 2000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "5d44e3a4dbbbcb0bb10b", - "label": "정식", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9b1e8bbd9a2def8e9cf5-history", - "label": "김치찌개", - "amount": 7000, + "id": "b52e031e6fa4c0bb03fe-history", + "label": "짜장면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "261bd0170319bf21ec97-history", - "label": "된장찌개", - "amount": 7000, + "id": "8f5b635a5a80379ad958-history", + "label": "짬뽕", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c37942c7968b49419185-history", - "label": "만두국", + "id": "2ad0a04fecdcf9581065-history", + "label": "볶음밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "fe97a3ad0ef2613a2398-history", - "label": "고사리두루치기", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1af3539ffc380fa5446d-history", - "label": "음료", - "amount": 2000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "5d44e3a4dbbbcb0bb10b-history", - "label": "정식", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-980", - "name": "광희식당", - "businessName": "광희식당", + "id": "goodprice-15352", + "name": "고향산천", + "businessName": "고향산천", "categorySlug": "korean", - "address": "서울특별시 중구 장충단로 212-2 (광희동2가)", - "district": "서울특별시 중구", - "latitude": 37.5636366550507, - "longitude": 127.007233814214, - "representativePriceAmount": 7000, - "representativePriceLabel": "된장찌개", + "address": "서울특별시 성북구 보국문로 154 (정릉동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.61669932643618, + "longitude": 127.0042059702094, + "representativePriceAmount": 6000, + "representativePriceLabel": "비빔국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-226-1555 / 영업시간: 매일 11:30-22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-909-2068", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "003174f9443bd51114c6", - "label": "된장찌개", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c007235afba35cf5bfbb", - "label": "비빔밥", - "amount": 7000, + "id": "0e53c63536b6869bafc4", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "21d557a84579ae051b2f", - "label": "갈비탕", - "amount": 9000, + "id": "59e00a3f7ec77cde78cf", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "003174f9443bd51114c6-history", - "label": "된장찌개", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c007235afba35cf5bfbb-history", - "label": "비빔밥", - "amount": 7000, + "id": "0e53c63536b6869bafc4-history", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "21d557a84579ae051b2f-history", - "label": "갈비탕", - "amount": 9000, + "id": "59e00a3f7ec77cde78cf-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -50424,86 +51278,55 @@ "comments": [] }, { - "id": "goodprice-16087", - "name": "뉴욕스넥", - "businessName": "뉴욕스넥", - "categorySlug": "korean", - "address": "서울특별시 중구 을지로 지하131 (을지로3가) 56호", - "district": "서울특별시 중구", - "latitude": 37.566442970950895, - "longitude": 126.99419916729464, - "representativePriceAmount": 3500, - "representativePriceLabel": "야채김밥", + "id": "goodprice-2025", + "name": "장셰프한식전통중화요리", + "businessName": "장셰프한식전통중화요리", + "categorySlug": "chinese", + "address": "대구광역시 중구 경상감영길 117-7 (향촌동)", + "district": "대구광역시 중구", + "latitude": 35.872626221362, + "longitude": 128.593626482761, + "representativePriceAmount": 6000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 야채김밥 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2274-1110", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-214-0706 / 영업시간: 10:00~20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "eb4c0effa1ffa2aea32a", - "label": "야채김밥", - "amount": 3500, + "id": "1c07e60235eb66ef2430", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "654701a3801a3618a738", - "label": "칼국수", + "id": "e139bb940cd0b51d94da", + "label": "짬뽕", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "eb4c0effa1ffa2aea32a-history", - "label": "야채김밥", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "654701a3801a3618a738-history", - "label": "칼국수", + "id": "9defbd8da25d44d2f6f8", + "label": "점심특선(매일변동)", "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15373", - "name": "대박물갈비", - "businessName": "대박물갈비", - "categorySlug": "korean", - "address": "서울특별시 중구 퇴계로4길 7 (남창동) 1층", - "district": "서울특별시 중구", - "latitude": 37.557537858746215, - "longitude": 126.97773067463572, - "representativePriceAmount": 9000, - "representativePriceLabel": "제육볶음", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육볶음 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-755-6974", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "52328f657e7990431b41", - "label": "제육볶음", - "amount": 9000, + "id": "d34617fc60371d13f54b", + "label": "누룽지 짜장면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "985949af92a56041ec23", - "label": "돼지불고기", + "id": "b38364fc4ca0e5527bfb", + "label": "누룽지 짬뽕", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -50511,15 +51334,36 @@ ], "history": [ { - "id": "52328f657e7990431b41-history", - "label": "제육볶음", - "amount": 9000, + "id": "1c07e60235eb66ef2430-history", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "985949af92a56041ec23-history", - "label": "돼지불고기", + "id": "e139bb940cd0b51d94da-history", + "label": "짬뽕", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "9defbd8da25d44d2f6f8-history", + "label": "점심특선(매일변동)", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d34617fc60371d13f54b-history", + "label": "누룽지 짜장면", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b38364fc4ca0e5527bfb-history", + "label": "누룽지 짬뽕", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -50528,51 +51372,37 @@ "comments": [] }, { - "id": "goodprice-981", - "name": "돈우가식당", - "businessName": "돈우가식당", + "id": "goodprice-18841", + "name": "꾸이꾸이 멱살", + "businessName": "꾸이꾸이 멱살", "categorySlug": "korean", - "address": "서울특별시 중구 남대문로 25-17 1층(북창동)", - "district": "서울특별시 중구", - "latitude": 37.5620306338518, - "longitude": 126.97816807023, - "representativePriceAmount": 7000, - "representativePriceLabel": "김치찌개", + "address": "서울특별시 성북구 동소문로22길 25-5 (동선동1가) 1층", + "district": "서울특별시 성북구", + "latitude": 37.59194473176575, + "longitude": 127.0182606797179, + "representativePriceAmount": 9900, + "representativePriceLabel": "멱살(120g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-378-1313 / 영업시간: 월~토 11:00-22:00 브레이크타임15:30~16:30 일 정기휴무(매주일요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 멱살(120g) 9,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-928-7999", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "615d745518199ef100c8", - "label": "김치찌개", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a65f350b9c6013011f97", - "label": "한우소머리국밥", - "amount": 8000, + "id": "ce3f72fa6c96e2d92b87", + "label": "멱살(120g)", + "amount": 9900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "615d745518199ef100c8-history", - "label": "김치찌개", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a65f350b9c6013011f97-history", - "label": "한우소머리국밥", - "amount": 8000, + "id": "ce3f72fa6c96e2d92b87-history", + "label": "멱살(120g)", + "amount": 9900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -50580,37 +51410,65 @@ "comments": [] }, { - "id": "goodprice-16515", - "name": "베이커리 루마카", - "businessName": "베이커리 루마카", - "categorySlug": "other-food", - "address": "부산광역시 서구 구덕로265번길 34 (서대신동1가) 1층", - "district": "부산광역시 서구", - "latitude": 35.10824564582161, - "longitude": 129.0177444252452, - "representativePriceAmount": 2200, - "representativePriceLabel": "소금빵", + "id": "goodprice-10078", + "name": "제일분식", + "businessName": "제일분식", + "categorySlug": "korean", + "address": "대구광역시 중구 남산로2길 26 (남산동)", + "district": "대구광역시 중구", + "latitude": 35.8569075638758, + "longitude": 128.584273183178, + "representativePriceAmount": 1500, + "representativePriceLabel": "떡볶이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "오픈주방으로 만드는 과정과 사용재료 공개로 신뢰 있는 빵을 만듭니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-243-4874 / 영업시간: 9:30~ 19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 1,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-256-6630", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3de91cbde302e367a282", - "label": "소금빵", - "amount": 2200, + "id": "7757f9a1894cf70510db", + "label": "떡볶이", + "amount": 1500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ac07f3ca5a35dac14d14", + "label": "김밥", + "amount": 2500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "3c904db5f7f4c6dc97f8", + "label": "순대", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3de91cbde302e367a282-history", - "label": "소금빵", - "amount": 2200, + "id": "7757f9a1894cf70510db-history", + "label": "떡볶이", + "amount": 1500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ac07f3ca5a35dac14d14-history", + "label": "김밥", + "amount": 2500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "3c904db5f7f4c6dc97f8-history", + "label": "순대", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -50618,37 +51476,37 @@ "comments": [] }, { - "id": "goodprice-1428", - "name": "별미집", - "businessName": "별미집", + "id": "goodprice-18844", + "name": "낙지사랑", + "businessName": "낙지사랑", "categorySlug": "korean", - "address": "부산광역시 서구 구덕로333번길 14 (서대신동3가)", - "district": "부산광역시 서구", - "latitude": 35.1133251923336, - "longitude": 129.015381162663, - "representativePriceAmount": 8000, - "representativePriceLabel": "추어탕", + "address": "서울특별시 성북구 종암로 129 (종암동) 2층", + "district": "서울특별시 성북구", + "latitude": 37.601432303407066, + "longitude": 127.03272344105156, + "representativePriceAmount": 9000, + "representativePriceLabel": "낙지덮밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-254-9891 / 영업시간: 09:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 낙지덮밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-986-6868", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "89113e9a2649c92cf9c0", - "label": "추어탕", - "amount": 8000, + "id": "88634301956c13e0366e", + "label": "낙지덮밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "89113e9a2649c92cf9c0-history", - "label": "추어탕", - "amount": 8000, + "id": "88634301956c13e0366e-history", + "label": "낙지덮밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -50656,48 +51514,34 @@ "comments": [] }, { - "id": "goodprice-15507", - "name": "보리정", - "businessName": "보리정", - "categorySlug": "korean", - "address": "부산광역시 서구 대영로74번길 27-7 (동대신동1가) 1층", - "district": "부산광역시 서구", - "latitude": 35.109533954678874, - "longitude": 129.02014367187397, - "representativePriceAmount": 7000, - "representativePriceLabel": "집밥정식", + "id": "goodprice-2014", + "name": "중해반점", + "businessName": "중해반점", + "categorySlug": "chinese", + "address": "대구광역시 중구 명륜로 63 (남산동)", + "district": "대구광역시 중구", + "latitude": 35.8617367040049, + "longitude": 128.591676584073, + "representativePriceAmount": 6000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 집밥정식 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-248-8703 / 영업시간: 11:00~20:00 (휴게시간: 14:00~17:00)", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-255-8555 / 영업시간: 금 11:00-21:00 토 11:00-21:00 일 정기휴무(매주일요일) 월 11:00-21:00 화 11:00-21:00 수 11:00-21:00 목 11:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "10160cab11319df5563b", - "label": "집밥정식", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e34a1119659b06bda20b", - "label": "낙지볶음", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c0773f0d499e34f94f63", - "label": "제육볶음", - "amount": 10000, + "id": "1889eda77a10238d3fe0", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5f546dc3316f94f6a193", - "label": "동래파전", + "id": "3a3fb336173a72573ff5", + "label": "원조야끼우동", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -50705,29 +51549,15 @@ ], "history": [ { - "id": "10160cab11319df5563b-history", - "label": "집밥정식", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e34a1119659b06bda20b-history", - "label": "낙지볶음", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c0773f0d499e34f94f63-history", - "label": "제육볶음", - "amount": 10000, + "id": "1889eda77a10238d3fe0-history", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5f546dc3316f94f6a193-history", - "label": "동래파전", + "id": "3a3fb336173a72573ff5-history", + "label": "원조야끼우동", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -50736,34 +51566,27 @@ "comments": [] }, { - "id": "goodprice-17744", - "name": "면만드는사람들 팔공산점", - "businessName": "면만드는사람들 팔공산점", + "id": "goodprice-15350", + "name": "대중식당", + "businessName": "대중식당", "categorySlug": "korean", - "address": "대구광역시 동구 팔공로197길 39 (백안동)", - "district": "대구광역시 동구", - "latitude": 35.955968687471895, - "longitude": 128.69084189551475, + "address": "서울특별시 성북구 정릉로29길 23 (정릉동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.60430955542665, + "longitude": 127.01530622798631, "representativePriceAmount": 8000, - "representativePriceLabel": "온메밀국수", + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 온메밀국수 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-982-3511 / 영업시간: 영업시간 : [동절기 11월~3월] 화~금 11:00 ~ 15:00 / 토~일 11:00 ~ 19:00 [하절기 4월~10월] 화~일 11:00 ~ 19:00 정기휴무 : 매주 월요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-943-4840", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c110f5fedf1f55d1a5f8", - "label": "온메밀국수", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e9fa3ac5d9f51ef1ef75", - "label": "냉메밀국수", + "id": "983a205d678699dd19e7", + "label": "백반", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -50771,15 +51594,8 @@ ], "history": [ { - "id": "c110f5fedf1f55d1a5f8-history", - "label": "온메밀국수", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e9fa3ac5d9f51ef1ef75-history", - "label": "냉메밀국수", + "id": "983a205d678699dd19e7-history", + "label": "백반", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -50788,309 +51604,145 @@ "comments": [] }, { - "id": "goodprice-1872", - "name": "면사랑칼국수", - "businessName": "면사랑칼국수", + "id": "goodprice-2224", + "name": "월미식당", + "businessName": "월미식당", "categorySlug": "korean", - "address": "대구광역시 동구 효동로 126 2층(효목동)", - "district": "대구광역시 동구", - "latitude": 35.8872864225781, - "longitude": 128.64111680973, + "address": "인천광역시 중구 월미로234번길 6 (북성동1가)", + "district": "인천광역시 중구", + "latitude": 37.4754721671142, + "longitude": 126.598889031169, "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-954-2001 / 영업시간: 11:50에영업시작 11시50분에영업시작 금 11:50-20:00 토 11:50-20:00 일 11:50-20:00 월 정기휴무(매주월요일) 화 11:50-20:00 수 11:50-20:00 목 11:50-20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 짜장면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-761-6800 / 영업시간: 월~금 : 10:00~22:30 토, 일 : 09:00~24:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0147aa4c48f84b61c109", - "label": "칼국수", + "id": "5a9729bb4a1a700f0650", + "label": "짜장면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8bf66bf45543632e913a", - "label": "얼큰이칼국수", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "33291b8a12eb93ad1002", - "label": "들깨칼국수", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e7974d2aa547dec7ca19", - "label": "메밀냉물막국수", + "id": "6f26ac36a6eb641a891d", + "label": "새우우동", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "02288f25bc953d0202e0", - "label": "메밀들깨칼국수", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3d1e59c843362ffbaeaa", - "label": "메밀비빔막국수", + "id": "f61365aa71a3965d1a50", + "label": "해물라면", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c4e916642bde3d400815", - "label": "메밀칼국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "aef407ce7d65d9f0a326", - "label": "면사랑 만두", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a7a5939a9bbe08043ada", - "label": "주꾸미 볶음(2인이상)", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ac5dba273e0ae4c9d2c7", - "label": "한우육계장", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "24da3403c51e42e22e39", - "label": "한우육계장 국수", + "id": "241ab5662a8e3a7cd7a4", + "label": "냉면", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "088753d495b4bf018167", - "label": "해물파전", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "0147aa4c48f84b61c109-history", - "label": "칼국수", + "id": "5a9729bb4a1a700f0650-history", + "label": "짜장면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8bf66bf45543632e913a-history", - "label": "얼큰이칼국수", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "33291b8a12eb93ad1002-history", - "label": "들깨칼국수", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e7974d2aa547dec7ca19-history", - "label": "메밀냉물막국수", + "id": "6f26ac36a6eb641a891d-history", + "label": "새우우동", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "02288f25bc953d0202e0-history", - "label": "메밀들깨칼국수", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3d1e59c843362ffbaeaa-history", - "label": "메밀비빔막국수", + "id": "f61365aa71a3965d1a50-history", + "label": "해물라면", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c4e916642bde3d400815-history", - "label": "메밀칼국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "aef407ce7d65d9f0a326-history", - "label": "면사랑 만두", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a7a5939a9bbe08043ada-history", - "label": "주꾸미 볶음(2인이상)", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ac5dba273e0ae4c9d2c7-history", - "label": "한우육계장", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "24da3403c51e42e22e39-history", - "label": "한우육계장 국수", + "id": "241ab5662a8e3a7cd7a4-history", + "label": "냉면", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "088753d495b4bf018167-history", - "label": "해물파전", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18130", - "name": "미도반점", - "businessName": "미도반점", - "categorySlug": "chinese", - "address": "대구광역시 동구 송라로12길 29 (신천동)", - "district": "대구광역시 동구", - "latitude": 35.874262579029114, - "longitude": 128.62137941519185, - "representativePriceAmount": 4000, - "representativePriceLabel": "짜장면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-755-7524 / 영업시간: 영업시간 : 11:00 ~ 19:00 정기휴무 : 매주 토요일, 일요일", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "0496dc573cf96dc3519f", - "label": "짜장면", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b2e890206a3ec1e673d5", - "label": "짬뽕", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "0496dc573cf96dc3519f-history", - "label": "짜장면", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b2e890206a3ec1e673d5-history", - "label": "짬뽕", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-1864", - "name": "미미미용실", - "businessName": "미미미용실", - "categorySlug": "beauty", - "address": "대구광역시 동구 동촌로346 백자맨션상가9동 103호(용계동)", - "district": "대구광역시 동구", - "latitude": 35.8767267035582, - "longitude": 128.677260687309, - "representativePriceAmount": 7000, - "representativePriceLabel": "컷(어린이)", + "id": "goodprice-756", + "name": "독일베이커리", + "businessName": "독일베이커리", + "categorySlug": "bakery", + "address": "서울특별시 성북구 삼양로50", + "district": "서울특별시 성북구", + "latitude": 37.6075962650866, + "longitude": 127.023820814466, + "representativePriceAmount": 700, + "representativePriceLabel": "단팥빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 컷(어린이) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-5689-8867 / 영업시간: 월 수 목 금 토 일 09:00-19:00 화 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵 700원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 매일 8:30~24:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9eb0c03a277cedda1121", - "label": "컷(어린이)", - "amount": 7000, + "id": "c5a67daf2e724a621bd7", + "label": "단팥빵", + "amount": 700, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "08937e25be7105b39306", - "label": "드라이", - "amount": 10000, + "id": "efc57fa495739d608549", + "label": "소보루빵", + "amount": 700, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0dbb41d5ad8d53ab699c", - "label": "헤어컷(어린이)", - "amount": 7000, + "id": "f85846ae098f657107cb", + "label": "크림빵, 앙금빵", + "amount": 700, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9eb0c03a277cedda1121-history", - "label": "컷(어린이)", - "amount": 7000, + "id": "c5a67daf2e724a621bd7-history", + "label": "단팥빵", + "amount": 700, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "08937e25be7105b39306-history", - "label": "드라이", - "amount": 10000, + "id": "efc57fa495739d608549-history", + "label": "소보루빵", + "amount": 700, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0dbb41d5ad8d53ab699c-history", - "label": "헤어컷(어린이)", - "amount": 7000, + "id": "f85846ae098f657107cb-history", + "label": "크림빵, 앙금빵", + "amount": 700, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -51098,51 +51750,51 @@ "comments": [] }, { - "id": "goodprice-2102", - "name": "아구군갈비양", - "businessName": "아구군갈비양", - "categorySlug": "korean", - "address": "인천광역시 동구 샛골로 117-1 (송림동)", - "district": "인천광역시 동구", - "latitude": 37.472961619829, - "longitude": 126.643853360434, + "id": "goodprice-13118", + "name": "일등짬뽕", + "businessName": "일등짬뽕", + "categorySlug": "chinese", + "address": "인천광역시 중구 운중로 28 (운남동) 1층", + "district": "인천광역시 중구", + "latitude": 37.493135983340906, + "longitude": 126.53660042079217, "representativePriceAmount": 6000, - "representativePriceLabel": "백반", + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-766-5002 / 영업시간: 월~토 08:00-20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-747-0660", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a19007a18b02d5a6ef04", - "label": "백반", + "id": "4afa38907d4861c19996", + "label": "짜장면", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8aac014a9a9033c3091f", - "label": "해물부대찌개", - "amount": 8000, + "id": "48bb5a461c32561eba42", + "label": "짬뽕", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a19007a18b02d5a6ef04-history", - "label": "백반", + "id": "4afa38907d4861c19996-history", + "label": "짜장면", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8aac014a9a9033c3091f-history", - "label": "해물부대찌개", - "amount": 8000, + "id": "48bb5a461c32561eba42-history", + "label": "짬뽕", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -51150,89 +51802,51 @@ "comments": [] }, { - "id": "goodprice-13021", - "name": "어도(魚島)", - "businessName": "어도(魚島)", + "id": "goodprice-777", + "name": "동네", + "businessName": "동네", "categorySlug": "korean", - "address": "인천광역시 동구 금곡로 56-1 (금곡동) 1층", - "district": "인천광역시 동구", - "latitude": 37.47325445087663, - "longitude": 126.6418035282525, - "representativePriceAmount": 8000, - "representativePriceLabel": "순두부", + "address": "서울특별시 성북구 개운사길 22-5 지하", + "district": "서울특별시 성북구", + "latitude": 37.5874944782335, + "longitude": 127.029586004467, + "representativePriceAmount": 7500, + "representativePriceLabel": "김치찌개 된장찌개 순두부찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-761-8887 / 영업시간: 월~토 10:30-20:00 (일) 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 된장찌개 순두부찌개 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 토요일휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "71feee44255b8150c2dd", - "label": "순두부", - "amount": 8000, + "id": "771376299ee05e931dde", + "label": "김치찌개 된장찌개 순두부찌개", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "25db6cbd23997eb808d1", - "label": "청국장", - "amount": 8000, + "id": "dbf4afb1caf73fb83119", + "label": "제육볶음", + "amount": 8500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "71feee44255b8150c2dd-history", - "label": "순두부", - "amount": 8000, + "id": "771376299ee05e931dde-history", + "label": "김치찌개 된장찌개 순두부찌개", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "25db6cbd23997eb808d1-history", - "label": "청국장", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13026", - "name": "에불바리 떡볶이", - "businessName": "에불바리 떡볶이", - "categorySlug": "other-food", - "address": "인천광역시 동구 중앙로 15 (금곡동) 1층", - "district": "인천광역시 동구", - "latitude": 37.4734332394039, - "longitude": 126.63504718718686, - "representativePriceAmount": 1500, - "representativePriceLabel": "아메리카노", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "7080의 분위기가 물씬 풍기는 이색카페", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-8818-1919 / 영업시간: 월~토 11:30-19:30 (일) 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "47e00cde06ff2d584cdb", - "label": "아메리카노", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "47e00cde06ff2d584cdb-history", - "label": "아메리카노", - "amount": 1500, + "id": "dbf4afb1caf73fb83119-history", + "label": "제육볶음", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -51240,34 +51854,34 @@ "comments": [] }, { - "id": "goodprice-14300", - "name": "와글와글 맛있는 국수집", - "businessName": "와글와글 맛있는 국수집", + "id": "goodprice-2270", + "name": "우리뷔페", + "businessName": "우리뷔페", "categorySlug": "korean", - "address": "인천광역시 동구 솔빛로 87-1 (송림동) 1층", - "district": "인천광역시 동구", - "latitude": 37.47626291093436, - "longitude": 126.64329789059067, - "representativePriceAmount": 5000, - "representativePriceLabel": "잔치국수", + "address": "광주광역시 동구 금남로 181 1층 102호(금남로5가)", + "district": "광주광역시 동구", + "latitude": 35.1519634025693, + "longitude": 126.913207209362, + "representativePriceAmount": 6000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 잔치국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-764-3959 / 영업시간: 월 ~ 일 10:00 ~ 17:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-364-3816 / 영업시간: 월~금 10:30-14:00 휴일 주말, 공휴일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6eb2131daecc27dea9a9", - "label": "잔치국수", - "amount": 5000, + "id": "016f9c8e114a5c9a4efb", + "label": "백반", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0f007c55eafc7e842f74", - "label": "수제비", + "id": "3970c190bc5bf32b4537", + "label": "백반 1인", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -51275,15 +51889,15 @@ ], "history": [ { - "id": "6eb2131daecc27dea9a9-history", - "label": "잔치국수", - "amount": 5000, + "id": "016f9c8e114a5c9a4efb-history", + "label": "백반", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0f007c55eafc7e842f74-history", - "label": "수제비", + "id": "3970c190bc5bf32b4537-history", + "label": "백반 1인", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -51292,27 +51906,27 @@ "comments": [] }, { - "id": "goodprice-2289", - "name": "럭키세탁소", - "businessName": "럭키세탁소", - "categorySlug": "laundry", - "address": "광주광역시 서구 염화로40번길 20 (화정동)", - "district": "광주광역시 서구", - "latitude": 35.1366373980231, - "longitude": 126.87488624762, + "id": "goodprice-16770", + "name": "또래끼리", + "businessName": "또래끼리", + "categorySlug": "korean", + "address": "서울특별시 성북구 개운사길 22-5 (안암동5가) 1층", + "district": "서울특별시 성북구", + "latitude": 37.58749447152897, + "longitude": 127.02958599079939, "representativePriceAmount": 7000, - "representativePriceLabel": "양복1벌드라이", + "representativePriceLabel": "김치볶음밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 양복1벌드라이 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-372-6901 / 영업시간: 월~토 09:00~21:00 ※ 정기휴무 : 매주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치볶음밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1424-6694", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7976ea4ee75e5fe78d6a", - "label": "양복1벌드라이", + "id": "f3df5e9c044c566d7418", + "label": "김치볶음밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -51320,8 +51934,8 @@ ], "history": [ { - "id": "7976ea4ee75e5fe78d6a-history", - "label": "양복1벌드라이", + "id": "f3df5e9c044c566d7418-history", + "label": "김치볶음밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -51330,103 +51944,103 @@ "comments": [] }, { - "id": "goodprice-2315", - "name": "모리화", - "businessName": "모리화", - "categorySlug": "chinese", - "address": "광주광역시 서구 풍금로 31-1 (풍암동)", - "district": "광주광역시 서구", - "latitude": 35.122275201315, - "longitude": 126.863800531773, + "id": "goodprice-14226", + "name": "이가진우동", + "businessName": "이가진우동", + "categorySlug": "korean", + "address": "광주광역시 동구 학소로 141 (학동) 1층", + "district": "광주광역시 동구", + "latitude": 35.13224809736366, + "longitude": 126.93196652792969, "representativePriceAmount": 5500, - "representativePriceLabel": "짜장면", + "representativePriceLabel": "우동", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-652-8552 / 영업시간: 월~금 10:00~21:00 토, 일 11:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우동 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-233-3488 / 영업시간: 월-금 09:00-20:00 토,일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f8c174a97121c15e2dcf", - "label": "짜장면", + "id": "fa33bd1d23b12e0fec90", + "label": "우동", "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "578bd1991d0f25b23adb", - "label": "짬뽕", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "f8c174a97121c15e2dcf-history", - "label": "짜장면", + "id": "fa33bd1d23b12e0fec90-history", + "label": "우동", "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "578bd1991d0f25b23adb-history", - "label": "짬뽕", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-2316", - "name": "무등회관", - "businessName": "무등회관", + "id": "goodprice-15252", + "name": "레드컵스떡볶이&컵닭", + "businessName": "레드컵스떡볶이&컵닭", "categorySlug": "korean", - "address": "광주광역시 서구 죽봉대로111번길 12 (광천동)", - "district": "광주광역시 서구", - "latitude": 35.1635482674685, - "longitude": 126.882202724351, - "representativePriceAmount": 9000, - "representativePriceLabel": "돌솥비빔밥", + "address": "서울특별시 성북구 고려대로24길 61 (안암동5가) 1층", + "district": "서울특별시 성북구", + "latitude": 37.583493745199604, + "longitude": 127.02960727857395, + "representativePriceAmount": 4000, + "representativePriceLabel": "떡볶이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비빔밥 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-364-2746 / 영업시간: 월~토 10시~22시 ※정기휴무 : 1, 3번쨰 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-922-9918", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dabe1dcab7f1803b0ad6", - "label": "돌솥비빔밥", - "amount": 9000, + "id": "609f86be96b2f8af7666", + "label": "떡볶이", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8a8540dd329737be9c93", - "label": "백반", - "amount": 7000, + "id": "ae21cc685a76135bbf1e", + "label": "닭강정(M)", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "46f012102539574043fb", + "label": "튀김3개", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dabe1dcab7f1803b0ad6-history", - "label": "돌솥비빔밥", - "amount": 9000, + "id": "609f86be96b2f8af7666-history", + "label": "떡볶이", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8a8540dd329737be9c93-history", - "label": "백반", - "amount": 7000, + "id": "ae21cc685a76135bbf1e-history", + "label": "닭강정(M)", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "46f012102539574043fb-history", + "label": "튀김3개", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -51434,41 +52048,41 @@ "comments": [] }, { - "id": "goodprice-2573", - "name": "평양숨두부", - "businessName": "평양숨두부", + "id": "goodprice-2565", + "name": "부림식당", + "businessName": "부림식당", "categorySlug": "korean", - "address": "대전광역시 동구 대전로 387 (가오동) (대성동)", + "address": "대전광역시 동구 중앙로 200번길 27 (중동)", "district": "대전광역시 동구", - "latitude": 36.30147395225034, - "longitude": 127.45595934984647, + "latitude": 36.329614784984, + "longitude": 127.43223119972, "representativePriceAmount": 7000, - "representativePriceLabel": "숨두부백반", + "representativePriceLabel": "된장찌개 백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "농림축산식품부가 인정한 안심식당", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-284-4141 / 영업시간: 11:00 ~ 22:00 / 매주 월요일 정기 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-226-8346 / 영업시간: 10:00 ~ 15:00 / 목요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "eb1485d6506a509e3d9a", - "label": "숨두부백반", + "id": "fb94d1443e4e3c642625", + "label": "된장찌개 백반", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3b634689295e788f7738", - "label": "닭곰탕", - "amount": 9000, + "id": "8dafd01b36769af31444", + "label": "김치찌개 백반", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bd909542243a44447b89", - "label": "숨두부 백반", + "id": "ce97efd1f47803d645f5", + "label": "시골밥상", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -51476,22 +52090,22 @@ ], "history": [ { - "id": "eb1485d6506a509e3d9a-history", - "label": "숨두부백반", + "id": "fb94d1443e4e3c642625-history", + "label": "된장찌개 백반", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3b634689295e788f7738-history", - "label": "닭곰탕", - "amount": 9000, + "id": "8dafd01b36769af31444-history", + "label": "김치찌개 백반", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bd909542243a44447b89-history", - "label": "숨두부 백반", + "id": "ce97efd1f47803d645f5-history", + "label": "시골밥상", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -51500,155 +52114,159 @@ "comments": [] }, { - "id": "goodprice-14917", - "name": "하늘이용원", - "businessName": "하늘이용원", - "categorySlug": "barber", - "address": "대전광역시 동구 비래서로42번길 89 (가양동) 가양동", - "district": "대전광역시 동구", - "latitude": 36.3502938694925, - "longitude": 127.44709305501448, - "representativePriceAmount": 6000, - "representativePriceLabel": "컷트", + "id": "goodprice-778", + "name": "명가추어탕보리밥", + "businessName": "명가추어탕보리밥", + "categorySlug": "korean", + "address": "서울특별시 성북구 오패산로 6-9", + "district": "서울특별시 성북구", + "latitude": 37.6034088294682, + "longitude": 127.037922566416, + "representativePriceAmount": 8000, + "representativePriceLabel": "추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 컷트 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 09:00 ~ 18:00 / 휴무일(수요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-916-4443 / 영업시간: 금 09:30-22:00 21:00라스트오더 토 정기휴무(매주토요일) 일 09:30-22:00 21:00라스트오더 월 09:30-22:00 21:00라스트오더 화 09:30-22:00 21:00라스트오더 수 09:30-22:00 21:00라스트오더 목 09:30-22:00 21:00라스트오더", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f1dfe472da2642336369", - "label": "컷트", - "amount": 6000, + "id": "cac906a40c4d6b8781f9", + "label": "추어탕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "f1dfe472da2642336369-history", - "label": "컷트", - "amount": 6000, + "id": "269e4dbe6d72cb89b88b", + "label": "보리밥", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2578", - "name": "한성짜장", - "businessName": "한성짜장", - "categorySlug": "chinese", - "address": "대전광역시 동구 흥룡로74 (가양동)", - "district": "대전광역시 동구", - "latitude": 36.3505650431666, - "longitude": 127.45145602789, - "representativePriceAmount": 8500, - "representativePriceLabel": "갈비탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 갈비탕 8,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-635-2160 / 영업시간: 10:00 ~ 20:20", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "93df1adba0aff662eb02", - "label": "갈비탕", - "amount": 8500, + "id": "1c928140823a5af1bfe0", + "label": "떡국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bc7b8390114bc2523a8b", - "label": "짜장면", - "amount": 6500, + "id": "ab024cffaa60aa68d075", + "label": "얼큰수제비", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6eab722577684bfb25ba", - "label": "짬뽕", + "id": "5d825fd74b7dbe2e2a5e", + "label": "칼국수", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "8cf7169c771a92f99977", + "label": "한우설렁탕", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "93df1adba0aff662eb02-history", - "label": "갈비탕", - "amount": 8500, + "id": "cac906a40c4d6b8781f9-history", + "label": "추어탕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bc7b8390114bc2523a8b-history", - "label": "짜장면", - "amount": 6500, + "id": "269e4dbe6d72cb89b88b-history", + "label": "보리밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6eab722577684bfb25ba-history", - "label": "짬뽕", + "id": "1c928140823a5af1bfe0-history", + "label": "떡국", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" + }, + { + "id": "ab024cffaa60aa68d075-history", + "label": "얼큰수제비", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "5d825fd74b7dbe2e2a5e-history", + "label": "칼국수", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8cf7169c771a92f99977-history", + "label": "한우설렁탕", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-16814", - "name": "삼산국수전문점", - "businessName": "삼산국수전문점", + "id": "goodprice-17349", + "name": "좋은고기팜", + "businessName": "좋은고기팜", "categorySlug": "korean", - "address": "울산광역시 남구 돋질로251번길 14-1 (삼산동) 1층", - "district": "울산광역시 남구", - "latitude": 35.544723940575366, - "longitude": 129.3321969935939, - "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "address": "울산광역시 중구 유곡로 58 (유곡동) 1층", + "district": "울산광역시 중구", + "latitude": 35.557166607144175, + "longitude": 129.3034434213232, + "representativePriceAmount": 6000, + "representativePriceLabel": "생 삼겹살(100g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-258-3998", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생 삼겹살(100g) 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1342-5431 / 영업시간: 매일 09:00~23:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "7f275edfea622ebea7e0", - "label": "칼국수", - "amount": 7000, + "id": "8fe30b159961f4024e6c", + "label": "생 삼겹살(100g)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3c0e2147e6d2dced706f", - "label": "수제비", - "amount": 7000, + "id": "cbee7a7e072de3c9f530", + "label": "생 목살(100g)", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "7f275edfea622ebea7e0-history", - "label": "칼국수", - "amount": 7000, + "id": "8fe30b159961f4024e6c-history", + "label": "생 삼겹살(100g)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3c0e2147e6d2dced706f-history", - "label": "수제비", - "amount": 7000, + "id": "cbee7a7e072de3c9f530-history", + "label": "생 목살(100g)", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -51656,155 +52274,107 @@ "comments": [] }, { - "id": "goodprice-11682", - "name": "삼시세끼만포장", - "businessName": "삼시세끼만포장", + "id": "goodprice-770", + "name": "미락(우성)", + "businessName": "미락(우성)", "categorySlug": "korean", - "address": "울산광역시 남구 대학로 145번길 25", - "district": "울산광역시 남구", - "latitude": 35.5491127108744, - "longitude": 129.25926425639, - "representativePriceAmount": 9000, - "representativePriceLabel": "정식", + "address": "서울특별시 성북구 화랑로25길 13", + "district": "서울특별시 성북구", + "latitude": 37.6091619740138, + "longitude": 127.052177910553, + "representativePriceAmount": 8000, + "representativePriceLabel": "돼지갈비(200g)국내산", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-223-7847", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지갈비(200g)국내산 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-915-3334", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2347fb82a226748cdb46", - "label": "정식", - "amount": 9000, + "id": "bb45cd95ebd85fbb9035", + "label": "돼지갈비(200g)국내산", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1226d37f01776511ebe8", - "label": "된장김치순두부찌개", + "id": "0ada03a32f3d8519a6f5", + "label": "삼겹살(200g)국내산", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "2347fb82a226748cdb46-history", - "label": "정식", + "id": "7b9d8d348a9bf51a9d45", + "label": "갈매기살", "amount": 9000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "1226d37f01776511ebe8-history", - "label": "된장김치순두부찌개", - "amount": 9000, + "id": "88631071c0d5b25e0a9a", + "label": "도가니탕", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15101", - "name": "삼호밀면", - "businessName": "삼호밀면", - "categorySlug": "korean", - "address": "울산광역시 남구 삼호로37번길 13 (무거동) 1층", - "district": "울산광역시 남구", - "latitude": 35.551037197714315, - "longitude": 129.26826664991606, - "representativePriceAmount": 7000, - "representativePriceLabel": "밀면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 밀면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-277-6933", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "aa9727813d97d47b93b9", - "label": "밀면", - "amount": 7000, + "id": "d151703ac5235ba4eead", + "label": "돼지갈비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b4f3e08d44f009c05994", - "label": "비빔밀면", - "amount": 7000, + "id": "cd67fbbed4e61e797826", + "label": "삼겹살", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "aa9727813d97d47b93b9-history", - "label": "밀면", - "amount": 7000, + "id": "bb45cd95ebd85fbb9035-history", + "label": "돼지갈비(200g)국내산", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b4f3e08d44f009c05994-history", - "label": "비빔밀면", - "amount": 7000, + "id": "0ada03a32f3d8519a6f5-history", + "label": "삼겹살(200g)국내산", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18124", - "name": "블럭앤키즈 화서점", - "businessName": "블럭앤키즈 화서점", - "categorySlug": "other-service", - "address": "경기도 수원시 팔달구 일월로22번길 22-5 (화서동) 301호", - "district": "경기도 수원시", - "latitude": 37.28583154659394, - "longitude": 126.98139721057959, - "representativePriceAmount": 7000, - "representativePriceLabel": "블럭방(1시간)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 블럭방(1시간) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-292-9265 / 영업시간: 평일 14:00~19:00 주말 12:00~19:00 휴무 : 월요일, 화요일", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "d3947f5e96a5597b4f9c", - "label": "블럭방(1시간)", - "amount": 7000, + "id": "7b9d8d348a9bf51a9d45-history", + "label": "갈매기살", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "b3c5f1dcc19115a5142e", - "label": "비즈1개", - "amount": 0, + "id": "88631071c0d5b25e0a9a-history", + "label": "도가니탕", + "amount": 10000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "d3947f5e96a5597b4f9c-history", - "label": "블럭방(1시간)", - "amount": 7000, + "id": "d151703ac5235ba4eead-history", + "label": "돼지갈비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b3c5f1dcc19115a5142e-history", - "label": "비즈1개", - "amount": 0, + "id": "cd67fbbed4e61e797826-history", + "label": "삼겹살", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -51812,79 +52382,51 @@ "comments": [] }, { - "id": "goodprice-14527", - "name": "빵마루", - "businessName": "빵마루", - "categorySlug": "bakery", - "address": "경기도 수원시 팔달구 세지로174번길 33 (인계동) 1층", - "district": "경기도 수원시", - "latitude": 37.26651280121945, - "longitude": 127.02379082579587, - "representativePriceAmount": 1700, - "representativePriceLabel": "팥빵", + "id": "goodprice-11315", + "name": "탕짜", + "businessName": "탕짜", + "categorySlug": "chinese", + "address": "울산광역시 중구 시계탑거리 6 (성남동)", + "district": "울산광역시 중구", + "latitude": 35.5550431249539, + "longitude": 129.321593713924, + "representativePriceAmount": 6500, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 팥빵 1,700원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-225-4507 / 영업시간: 06:00~22:00(첫째주, 셋째주 화요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-246-5566", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "5b78958e565155c9f977", - "label": "팥빵", - "amount": 1700, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ae3cfd4ab6679bd921d3", - "label": "찹쌀도너츠", - "amount": 1000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "016e3bd82ad949f53734", - "label": "소금빵", - "amount": 2000, + "id": "7751369f534fd84d5e66", + "label": "짜장면", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8d612eb21ef787e33099", - "label": "핫도그", - "amount": 1700, + "id": "24d62bebfe53b1a3a4f1", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "5b78958e565155c9f977-history", - "label": "팥빵", - "amount": 1700, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ae3cfd4ab6679bd921d3-history", - "label": "찹쌀도너츠", - "amount": 1000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "016e3bd82ad949f53734-history", - "label": "소금빵", - "amount": 2000, + "id": "7751369f534fd84d5e66-history", + "label": "짜장면", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8d612eb21ef787e33099-history", - "label": "핫도그", - "amount": 1700, + "id": "24d62bebfe53b1a3a4f1-history", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -51892,65 +52434,65 @@ "comments": [] }, { - "id": "goodprice-15307", - "name": "사랑이네 베트남쌀국수", - "businessName": "사랑이네 베트남쌀국수", - "categorySlug": "other-food", - "address": "경기도 수원시 장안구 조원로89번길 44-2 (조원동) 1층", - "district": "경기도 수원시", - "latitude": 37.29972174575287, - "longitude": 127.0138643281873, - "representativePriceAmount": 5000, - "representativePriceLabel": "쌀국수", + "id": "goodprice-11572", + "name": "밀밭손칼국수", + "businessName": "밀밭손칼국수", + "categorySlug": "korean", + "address": "서울특별시 성북구 보문로 156-3 1층", + "district": "서울특별시 성북구", + "latitude": 37.588841121152, + "longitude": 127.017218298384, + "representativePriceAmount": 8000, + "representativePriceLabel": "육개장", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 쌀국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-3122-7457 / 영업시간: 11:00~재료소진시", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 육개장 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-953-8894 / 영업시간: 10시~21시", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c924b083fd779157ca28", - "label": "쌀국수", - "amount": 5000, + "id": "19bd0173871175d27fb9", + "label": "육개장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "466a2ce49438edc00edb", - "label": "돼지구이밥", - "amount": 5000, + "id": "6481ab3ccc75fb1471a4", + "label": "떡국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e532a7ae4a034c6d75a4", - "label": "새우볶음밥", - "amount": 6000, + "id": "4b907e2ad6645b2b2bb2", + "label": "설렁탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c924b083fd779157ca28-history", - "label": "쌀국수", - "amount": 5000, + "id": "19bd0173871175d27fb9-history", + "label": "육개장", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "466a2ce49438edc00edb-history", - "label": "돼지구이밥", - "amount": 5000, + "id": "6481ab3ccc75fb1471a4-history", + "label": "떡국", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e532a7ae4a034c6d75a4-history", - "label": "새우볶음밥", - "amount": 6000, + "id": "4b907e2ad6645b2b2bb2-history", + "label": "설렁탕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -51958,37 +52500,37 @@ "comments": [] }, { - "id": "goodprice-4347", - "name": "왕언니네미장원", - "businessName": "왕언니네미장원", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 중앙로 77-2 (중앙로2가)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8786098574848, - "longitude": 127.72562344249, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트", + "id": "goodprice-3001", + "name": "태화식육식당", + "businessName": "태화식육식당", + "categorySlug": "korean", + "address": "울산광역시 중구 중앙시장길 21-3 (성남동)", + "district": "울산광역시 중구", + "latitude": 35.5552643330267, + "longitude": 129.323407871925, + "representativePriceAmount": 4700, + "representativePriceLabel": "삼겹살(100g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살(100g) 4,700원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-244-7968 / 영업시간: 10:00~21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "403680d5f1c75c477f35", - "label": "커트", - "amount": 8000, + "id": "bb8386c22a424db015a9", + "label": "삼겹살(100g)", + "amount": 4700, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "403680d5f1c75c477f35-history", - "label": "커트", - "amount": 8000, + "id": "bb8386c22a424db015a9-history", + "label": "삼겹살(100g)", + "amount": 4700, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -51996,51 +52538,37 @@ "comments": [] }, { - "id": "goodprice-13804", - "name": "왕짱구", - "businessName": "왕짱구", + "id": "goodprice-15351", + "name": "산마을", + "businessName": "산마을", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 춘천로 195 (효자동) 1층", - "district": "강원특별자치도 춘천시", - "latitude": 37.87691958683272, - "longitude": 127.7358144650472, - "representativePriceAmount": 3500, - "representativePriceLabel": "꼬마김밥(8줄)", + "address": "서울특별시 성북구 솔샘로6길 36-15 (정릉동) 지1층 제비03호", + "district": "서울특별시 성북구", + "latitude": 37.60875069253795, + "longitude": 127.00733671926129, + "representativePriceAmount": 7000, + "representativePriceLabel": "비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 꼬마김밥(8줄) 3,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-254-4862 / 영업시간: 08:00 - 19:30 매주 월요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-911-0456", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1231a4c3a0da55b7b4fe", - "label": "꼬마김밥(8줄)", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "171ae5d915d32ac7d9cb", - "label": "만두(10개)", - "amount": 3500, + "id": "78676e3f5d67612ec0e7", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1231a4c3a0da55b7b4fe-history", - "label": "꼬마김밥(8줄)", - "amount": 3500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "171ae5d915d32ac7d9cb-history", - "label": "만두(10개)", - "amount": 3500, + "id": "78676e3f5d67612ec0e7-history", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52048,37 +52576,51 @@ "comments": [] }, { - "id": "goodprice-10311", - "name": "우두동밥집", - "businessName": "우두동밥집", + "id": "goodprice-10178", + "name": "옛날통닭", + "businessName": "옛날통닭", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 벌말길 54-1 (석사동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.859382765949, - "longitude": 127.742351389083, - "representativePriceAmount": 8000, - "representativePriceLabel": "한식뷔페", + "address": "세종특별자치시 조치원읍 조치원6길 16 조치원읍", + "district": "세종특별자치시 조치원읍", + "latitude": 36.6009257081913, + "longitude": 127.299491553093, + "representativePriceAmount": 7500, + "representativePriceLabel": "옛날통닭", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-5999", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 옛날통닭 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8de7d04c25c3e7c35e7e", - "label": "한식뷔페", - "amount": 8000, + "id": "fc162fc42b5fe2a0fdb0", + "label": "옛날통닭", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "26b6b84a7a7f0839c32f", + "label": "수제핫도그", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8de7d04c25c3e7c35e7e-history", - "label": "한식뷔페", - "amount": 8000, + "id": "fc162fc42b5fe2a0fdb0-history", + "label": "옛날통닭", + "amount": 7500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "26b6b84a7a7f0839c32f-history", + "label": "수제핫도그", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52086,65 +52628,51 @@ "comments": [] }, { - "id": "goodprice-4397", - "name": "우리순대국", - "businessName": "우리순대국", + "id": "goodprice-15923", + "name": "소풍가는날 김밥", + "businessName": "소풍가는날 김밥", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 후석로45번길 15 (석사동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8593067249022, - "longitude": 127.740549073063, - "representativePriceAmount": 8000, - "representativePriceLabel": "순대국", + "address": "서울특별시 성북구 보국문로11길 8 (정릉동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.608587636101056, + "longitude": 127.00954325591464, + "representativePriceAmount": 10000, + "representativePriceLabel": "제육볶음", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-252-9545", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육볶음 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8335-5432", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "055b2ee2975977389ac0", - "label": "순대국", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c851aea7b79554be1671", - "label": "육개장", - "amount": 8000, + "id": "109fe8ce913902d4c885", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5c47bf8540f5db9d37bb", - "label": "순대", - "amount": 10000, + "id": "3728dd52a70373f0b134", + "label": "콩국수", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "055b2ee2975977389ac0-history", - "label": "순대국", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c851aea7b79554be1671-history", - "label": "육개장", - "amount": 8000, + "id": "109fe8ce913902d4c885-history", + "label": "제육볶음", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5c47bf8540f5db9d37bb-history", - "label": "순대", - "amount": 10000, + "id": "3728dd52a70373f0b134-history", + "label": "콩국수", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52152,51 +52680,51 @@ "comments": [] }, { - "id": "goodprice-4710", - "name": "미소국밥", - "businessName": "미소국밥", - "categorySlug": "korean", - "address": "충청북도 청주시 상당구 상당로 135 (북문로2가)", - "district": "충청북도 청주시", - "latitude": 36.6403948654709, - "longitude": 127.48970770266, - "representativePriceAmount": 7000, - "representativePriceLabel": "바지락순두부", + "id": "goodprice-19180", + "name": "오가네빵굼터", + "businessName": "오가네빵굼터", + "categorySlug": "other-food", + "address": "세종특별자치시 조치원읍 조치원6길 27 1층", + "district": "세종특별자치시 조치원읍", + "latitude": 36.600210807134104, + "longitude": 127.2997884074273, + "representativePriceAmount": 800, + "representativePriceLabel": "단팥빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 바지락순두부 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-223-8848 / 영업시간: 매일 09:00~20:00 ※ 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 단팥빵 800원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-0261", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1d4a7a61fdf25c355c1b", - "label": "바지락순두부", - "amount": 7000, + "id": "ed839a09fa371232d114", + "label": "단팥빵", + "amount": 800, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9b6c6451c6b04377b769", - "label": "황태콩나물밥", - "amount": 7000, + "id": "2d7e832b46f55db65934", + "label": "슈크림빵", + "amount": 800, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1d4a7a61fdf25c355c1b-history", - "label": "바지락순두부", - "amount": 7000, + "id": "ed839a09fa371232d114-history", + "label": "단팥빵", + "amount": 800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9b6c6451c6b04377b769-history", - "label": "황태콩나물밥", - "amount": 7000, + "id": "2d7e832b46f55db65934-history", + "label": "슈크림빵", + "amount": 800, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52204,273 +52732,177 @@ "comments": [] }, { - "id": "goodprice-15848", - "name": "미소수제돈까스", - "businessName": "미소수제돈까스", - "categorySlug": "western", - "address": "충청북도 청주시 흥덕구 강내면 태성탑연로 441", - "district": "충청북도 청주시", - "latitude": 36.62173390753512, - "longitude": 127.35834796838594, - "representativePriceAmount": 9500, - "representativePriceLabel": "등심돈까스", + "id": "goodprice-780", + "name": "아리랑 수미감자탕", + "businessName": "아리랑 수미감자탕", + "categorySlug": "korean", + "address": "서울특별시 성북구 아리랑로54 1층(동선동5가)", + "district": "서울특별시 성북구", + "latitude": 37.5975515072035, + "longitude": 127.014883204875, + "representativePriceAmount": 8000, + "representativePriceLabel": "뼈해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 등심돈까스 9,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-234-5789", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1386-9255 / 영업시간: 11:00~20:00 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9aad7efe6c9924a834f6", - "label": "등심돈까스", - "amount": 9500, + "id": "0c6455bcdcfe34714f2c", + "label": "뼈해장국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "59e6d9c0b5951b30cd47", - "label": "생선까스", - "amount": 9000, + "id": "808d13d2d72fc00744c7", + "label": "김치라면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "beffcafc9a66ec9ce87e", - "label": "토마토파스타", - "amount": 10000, + "id": "5afa733db1cce2d6320b", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "9aad7efe6c9924a834f6-history", - "label": "등심돈까스", - "amount": 9500, + "id": "6349490e3bd6aa3b915b", + "label": "떡라면", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "59e6d9c0b5951b30cd47-history", - "label": "생선까스", - "amount": 9000, + "id": "349b5ff9fd30af62ed9d", + "label": "뚝배기불고기", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "beffcafc9a66ec9ce87e-history", - "label": "토마토파스타", - "amount": 10000, + "id": "d77f71081ee33999e283", + "label": "순두부", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4917", - "name": "소망미용실", - "businessName": "소망미용실", - "categorySlug": "beauty", - "address": "충청남도 천안시 동남구 구성5길 31 (구성동)", - "district": "충청남도 천안시", - "latitude": 36.7972975969191, - "longitude": 127.162734320004, - "representativePriceAmount": 6000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-556-8816 / 영업시간: 09:00~19:00 정기휴무(매주 일요일)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "38a51653e7da5729f89a", - "label": "커트", + "id": "8e9547dd6934e309912d", + "label": "순두부찌개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "38a51653e7da5729f89a-history", - "label": "커트", - "amount": 6000, + "id": "138fc480132a3b48c47d", + "label": "오징어볶음", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13652", - "name": "송원떡집", - "businessName": "송원떡집", - "categorySlug": "korean", - "address": "충청남도 천안시 서북구 봉서5길 10 (쌍용동)", - "district": "충청남도 천안시", - "latitude": 36.80825811514656, - "longitude": 127.13224341449542, - "representativePriceAmount": 2500, - "representativePriceLabel": "인절미 1팩", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 인절미 1팩 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-578-6753 / 영업시간: 05:00~18:00 정기휴무 매주 일요일", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "1115fbef6bdbbb63f8ff", - "label": "인절미 1팩", - "amount": 2500, + "id": "09d7436a967eb176bae2", + "label": "제육볶음", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6c221654a6be6ced8673", - "label": "시루떡 1팩", - "amount": 2500, + "id": "159acab1ce7decb4ac31", + "label": "차돌된장찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "62b71a8ddf57ca2c31bd", - "label": "모시송편 1팩", - "amount": 2500, + "id": "2de71af296a334383ea4", + "label": "치즈라면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "1115fbef6bdbbb63f8ff-history", - "label": "인절미 1팩", - "amount": 2500, + "id": "0c6455bcdcfe34714f2c-history", + "label": "뼈해장국", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6c221654a6be6ced8673-history", - "label": "시루떡 1팩", - "amount": 2500, + "id": "808d13d2d72fc00744c7-history", + "label": "김치라면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "62b71a8ddf57ca2c31bd-history", - "label": "모시송편 1팩", - "amount": 2500, + "id": "5afa733db1cce2d6320b-history", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4918", - "name": "스타미용실", - "businessName": "스타미용실", - "categorySlug": "beauty", - "address": "충청남도 천안시 동남구 대흥로 271 (대흥동)", - "district": "충청남도 천안시", - "latitude": 36.8123236063302, - "longitude": 127.148852869095, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트(어르신)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(어르신) 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-562-0155 / 영업시간: 09:00~19:00 정기휴무(1, 3째주 화요일)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "fd960d19c9898dfcff55", - "label": "커트(어르신)", - "amount": 5000, + "id": "6349490e3bd6aa3b915b-history", + "label": "떡라면", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "fd960d19c9898dfcff55-history", - "label": "커트(어르신)", - "amount": 5000, + "id": "349b5ff9fd30af62ed9d-history", + "label": "뚝배기불고기", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5176", - "name": "두꺼비탕", - "businessName": "두꺼비탕", - "categorySlug": "bath", - "address": "전북특별자치도 군산시 동팔마길 31 장재동", - "district": "전북특별자치도 군산시", - "latitude": 35.9769871090007, - "longitude": 126.721038103437, - "representativePriceAmount": 8000, - "representativePriceLabel": "성인", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 성인 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-442-8985 / 영업시간: 월~일(매주 화요일 휴무) 03:00~17:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "a9f00341e83cd5b9a4cc", - "label": "성인", - "amount": 8000, + "id": "d77f71081ee33999e283-history", + "label": "순두부", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "e7abbac13b67dfe0ab48", - "label": "소인(7세미만)", + "id": "8e9547dd6934e309912d-history", + "label": "순두부찌개", "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "feae502e6733851e93fa", - "label": "소인(7세 미만)", - "amount": 5000, + "id": "138fc480132a3b48c47d-history", + "label": "오징어볶음", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "a9f00341e83cd5b9a4cc-history", - "label": "성인", - "amount": 8000, + "id": "09d7436a967eb176bae2-history", + "label": "제육볶음", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e7abbac13b67dfe0ab48-history", - "label": "소인(7세미만)", + "id": "159acab1ce7decb4ac31-history", + "label": "차돌된장찌개", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "feae502e6733851e93fa-history", - "label": "소인(7세 미만)", - "amount": 5000, + "id": "2de71af296a334383ea4-history", + "label": "치즈라면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52478,40 +52910,40 @@ "comments": [] }, { - "id": "goodprice-14778", - "name": "두리식당", - "businessName": "두리식당", + "id": "goodprice-10191", + "name": "유정칼국수", + "businessName": "유정칼국수", "categorySlug": "korean", - "address": "전북특별자치도 군산시 미원안길 8 (미원동) 미원동", - "district": "전북특별자치도 군산시", - "latitude": 35.98047012095301, - "longitude": 126.71553829446381, + "address": "세종특별자치시 장군면 장척로 417-1", + "district": "세종특별자치시 장군면", + "latitude": 36.4980690848686, + "longitude": 127.206482661374, "representativePriceAmount": 8000, - "representativePriceLabel": "청국장", + "representativePriceLabel": "돌솥비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-445-3417 / 영업시간: 오전영업 : 11시~14시 브레이크 타임 : 14~17시 오후영업 : 17시~19시 (매달 1, 3째주 일요일 휴무)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥비빔밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-857-5999", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "8443e79b9c9c85b4d471", - "label": "청국장", + "id": "198fd293e1edb0ec5392", + "label": "돌솥비빔밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "76c7dba27ac38c49bc47", - "label": "김치찌개", - "amount": 8000, + "id": "774e9fc03c0546bd8873", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7ebe9c1221beffb26300", + "id": "33c1c8eb7790fafbdc5d", "label": "순두부찌개", "amount": 7000, "verificationStatus": "verified", @@ -52520,21 +52952,21 @@ ], "history": [ { - "id": "8443e79b9c9c85b4d471-history", - "label": "청국장", + "id": "198fd293e1edb0ec5392-history", + "label": "돌솥비빔밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "76c7dba27ac38c49bc47-history", - "label": "김치찌개", - "amount": 8000, + "id": "774e9fc03c0546bd8873-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7ebe9c1221beffb26300-history", + "id": "33c1c8eb7790fafbdc5d-history", "label": "순두부찌개", "amount": 7000, "verificationStatus": "verified", @@ -52544,37 +52976,37 @@ "comments": [] }, { - "id": "goodprice-15533", - "name": "디어왁싱", - "businessName": "디어왁싱", - "categorySlug": "beauty", - "address": "전북특별자치도 군산시 궁포1로 24-3 (조촌동) 1층, 109호", - "district": "전북특별자치도 군산시", - "latitude": 35.9768524162065, - "longitude": 126.74059066427611, - "representativePriceAmount": 6000, - "representativePriceLabel": "왁싱(인중)", + "id": "goodprice-14465", + "name": "언니네김밥", + "businessName": "언니네김밥", + "categorySlug": "korean", + "address": "서울특별시 성북구 보국문로11길 23 (정릉동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.608563671981614, + "longitude": 127.0087712499381, + "representativePriceAmount": 3500, + "representativePriceLabel": "언니네김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 왁싱(인중) 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1437-1061 / 영업시간: 월~금(10:00~20:00) 토(10:00~18:00) 매주 일요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 언니네김밥 3,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-6402-2727 / 영업시간: 10:00~19:00 매주 화요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b1e549cd8df066aa982b", - "label": "왁싱(인중)", - "amount": 6000, + "id": "48107a8a291e852ad397", + "label": "언니네김밥", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b1e549cd8df066aa982b-history", - "label": "왁싱(인중)", - "amount": 6000, + "id": "48107a8a291e852ad397-history", + "label": "언니네김밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52582,51 +53014,51 @@ "comments": [] }, { - "id": "goodprice-5756", - "name": "대수식당", - "businessName": "대수식당", + "id": "goodprice-16805", + "name": "대왕칼국수", + "businessName": "대왕칼국수", "categorySlug": "korean", - "address": "전라남도 여수시 성산6길 32 (화장동)", - "district": "전라남도 여수시", - "latitude": 34.7724434221449, - "longitude": 127.641942601437, + "address": "경기도 수원시 팔달구 창룡대로7번길 11 (북수동) 1층", + "district": "경기도 수원시", + "latitude": 37.28246168863594, + "longitude": 127.01757013330725, "representativePriceAmount": 6000, - "representativePriceLabel": "백반", + "representativePriceLabel": "칼국수 보통", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-681-2292 / 영업시간: 평일오전6시~20시 브레이크타임:14시~16시 휴무:일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 보통 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-252-2820 / 영업시간: 10:00~19:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ec93c69f5c9f2d005333", - "label": "백반", + "id": "a5b4d5b723247de7ae39", + "label": "칼국수 보통", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "617a5412cd47a60099d8", - "label": "소머리국밥", - "amount": 10000, + "id": "8d721627df886cba9325", + "label": "칼국수 중특", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ec93c69f5c9f2d005333-history", - "label": "백반", + "id": "a5b4d5b723247de7ae39-history", + "label": "칼국수 보통", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "617a5412cd47a60099d8-history", - "label": "소머리국밥", - "amount": 10000, + "id": "8d721627df886cba9325-history", + "label": "칼국수 중특", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52634,51 +53066,51 @@ "comments": [] }, { - "id": "goodprice-11801", - "name": "덕충식당", - "businessName": "덕충식당", + "id": "goodprice-10657", + "name": "옐로치킨7&바로돈까스", + "businessName": "옐로치킨7&바로돈까스", "categorySlug": "korean", - "address": "전라남도 여수시 공화남3길 9 (공화동)", - "district": "전라남도 여수시", - "latitude": 34.7468001047787, - "longitude": 127.744235818224, + "address": "서울특별시 성북구 아리랑로19길 48 (정릉동)", + "district": "서울특별시 성북구", + "latitude": 37.6025403837257, + "longitude": 127.010728685897, "representativePriceAmount": 7000, - "representativePriceLabel": "백반", + "representativePriceLabel": "수제돈까스", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-664-7838", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 수제돈까스 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-913-2360", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4f59c2414668ff3dde95", - "label": "백반", + "id": "04fe9a247692d8b7292f", + "label": "수제돈까스", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a5f3df02a776851fcdf3", - "label": "서대회", - "amount": 10000, + "id": "1afe991f2dfbe88a2bc4", + "label": "수제생선까스", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4f59c2414668ff3dde95-history", - "label": "백반", + "id": "04fe9a247692d8b7292f-history", + "label": "수제돈까스", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a5f3df02a776851fcdf3-history", - "label": "서대회", - "amount": 10000, + "id": "1afe991f2dfbe88a2bc4-history", + "label": "수제생선까스", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52686,79 +53118,89 @@ "comments": [] }, { - "id": "goodprice-5759", - "name": "도담식당", - "businessName": "도담식당", - "categorySlug": "korean", - "address": "전라남도 여수시 충무로 54-9 (충무동)", - "district": "전라남도 여수시", - "latitude": 34.7414865862163, - "longitude": 127.731736351422, - "representativePriceAmount": 9000, - "representativePriceLabel": "백반", + "id": "goodprice-19003", + "name": "데일리샌듀(DailySandew)", + "businessName": "데일리샌듀(DailySandew)", + "categorySlug": "bakery", + "address": "경기도 수원시 영통구 광교중앙로248번길 95-1 (하동) 102호", + "district": "경기도 수원시", + "latitude": 37.291532557494804, + "longitude": 127.06836414210785, + "representativePriceAmount": 7000, + "representativePriceLabel": "단호박샌드위치", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 08:00~22:00 21:00에라스트오더", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단호박샌드위치 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 08:00~19:00(브레이크타임 14:00~16:00) 토요일, 공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "53322198873c75f77e92", - "label": "백반", - "amount": 9000, + "id": "f3d408a08c97c508d291", + "label": "단호박샌드위치", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "be54e17c87d1cc2f73e4", - "label": "동태탕", - "amount": 10000, + "id": "f3d408a08c97c508d291-history", + "label": "단호박샌드위치", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-10656", + "name": "옛날중국집", + "businessName": "옛날중국집", + "categorySlug": "chinese", + "address": "서울특별시 성북구 성북로8길 8 (성북동)", + "district": "서울특별시 성북구", + "latitude": 37.5908227672503, + "longitude": 127.004375540476, + "representativePriceAmount": 6000, + "representativePriceLabel": "짜장면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-764-0094", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "281817f17ccf3e98de64", - "label": "점심백반", - "amount": 8000, + "id": "b75026d73a4db5a21a9b", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ff3623ea14956fc58d4f", - "label": "제육볶음", - "amount": 10000, + "id": "45a8203dbb9043cb717a", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "53322198873c75f77e92-history", - "label": "백반", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "be54e17c87d1cc2f73e4-history", - "label": "동태탕", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "281817f17ccf3e98de64-history", - "label": "점심백반", - "amount": 8000, + "id": "b75026d73a4db5a21a9b-history", + "label": "짜장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ff3623ea14956fc58d4f-history", - "label": "제육볶음", - "amount": 10000, + "id": "45a8203dbb9043cb717a-history", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52766,65 +53208,65 @@ "comments": [] }, { - "id": "goodprice-14725", - "name": "또또분식", - "businessName": "또또분식", + "id": "goodprice-14336", + "name": "도담칡냉면", + "businessName": "도담칡냉면", "categorySlug": "korean", - "address": "경상북도 포항시 남구 장기면 양포항길 21-1 -", - "district": "경상북도 포항시", - "latitude": 35.87917402242877, - "longitude": 129.51773492819117, - "representativePriceAmount": 6000, - "representativePriceLabel": "손칼국수", + "address": "경기도 수원시 장안구 수성로382번길 32-3 (영화동) .", + "district": "경기도 수원시", + "latitude": 37.29270733638951, + "longitude": 127.01452356573881, + "representativePriceAmount": 7000, + "representativePriceLabel": "냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-276-1052", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-247-0925 / 영업시간: 10:00~15:00 / 매주 일요일 휴무(하절기 정상영업)", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c6f0d7a0b2add3fa7abf", - "label": "손칼국수", - "amount": 6000, + "id": "7673753a575dcd223146", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "92f09397bf9b8446eb7d", + "id": "a0a6ac029b4f8d656c4e", "label": "잔치국수", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "589442e9967af495d6bc", - "label": "김밥", - "amount": 3000, + "id": "b8fb0dbaff9640718dba", + "label": "칼제비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c6f0d7a0b2add3fa7abf-history", - "label": "손칼국수", - "amount": 6000, + "id": "7673753a575dcd223146-history", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "92f09397bf9b8446eb7d-history", + "id": "a0a6ac029b4f8d656c4e-history", "label": "잔치국수", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "589442e9967af495d6bc-history", - "label": "김밥", - "amount": 3000, + "id": "b8fb0dbaff9640718dba-history", + "label": "칼제비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -52832,144 +53274,218 @@ "comments": [] }, { - "id": "goodprice-6795", - "name": "빅보이분식", - "businessName": "빅보이분식", + "id": "goodprice-784", + "name": "오늘김밥", + "businessName": "오늘김밥", "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 봉암북4길 58 (봉암동)", - "district": "경상남도 창원시", - "latitude": 35.2232485628643, - "longitude": 128.597549978846, + "address": "서울특별시 성북구 보문로 157-1 1층", + "district": "서울특별시 성북구", + "latitude": 37.5885975549306, + "longitude": 127.016786747397, "representativePriceAmount": 6000, - "representativePriceLabel": "김치찌개", + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-297-9292", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-925-8558 / 영업시간: 매일 11:00-21:30 14:30-16:30브레이크타임 20:50라스트오더", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4be5c53d7aecd977ba05", - "label": "김치찌개", + "id": "098b6b067393b6304f7e", + "label": "된장찌개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b86034d0fef28b4c28e3", - "label": "된장찌개", + "id": "c1bccae6d7f3dcd57c51", + "label": "김치찌개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1dc2d107f1f7973e1e59", - "label": "순두부", + "id": "e0ce2a7cf96ad47ebb41", + "label": "순두부찌개", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + }, + { + "id": "1dc81b43d4203afcca99", + "label": "간장불고기", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "9c3ce0ad6a187e370cd3", + "label": "간장오불(간장오징어+간장돼지불고기) (2인분이상)", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4a06b392b18d6390e77b", + "label": "공기밥", + "amount": 1000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ea1a4f17e9a3affe77f8", + "label": "맥주", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "ca4a97c06b4f6361770f", + "label": "소주", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "f7c058acd4cf3d02265e", + "label": "오제볶음(오징어+제육) (2인분이상)", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5c1f512ba849e2d553c0", + "label": "음료수", + "amount": 2000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "db630fcdfd5b323c81e5", + "label": "제육볶음", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d980d8f0c7fbebf85c66", + "label": "직화오징어볶음(2인이상)", + "amount": 9500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8f0b43a798402ce9c09c", + "label": "직화쭈꾸미볶음(2인이상)", + "amount": 9500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "db733c3daf5252441468", + "label": "쭈제볶음(쭈꾸미+제육) (2인분이상)", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4be5c53d7aecd977ba05-history", - "label": "김치찌개", + "id": "098b6b067393b6304f7e-history", + "label": "된장찌개", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b86034d0fef28b4c28e3-history", - "label": "된장찌개", + "id": "c1bccae6d7f3dcd57c51-history", + "label": "김치찌개", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1dc2d107f1f7973e1e59-history", - "label": "순두부", + "id": "e0ce2a7cf96ad47ebb41-history", + "label": "순두부찌개", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14351", - "name": "사철밀면", - "businessName": "사철밀면", - "categorySlug": "korean", - "address": "경상남도 창원시 의창구 사림로130번길 5-5 (사림동) 주택 1층", - "district": "경상남도 창원시", - "latitude": 35.24312887541039, - "longitude": 128.68505183829419, - "representativePriceAmount": 7000, - "representativePriceLabel": "물밀면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물밀면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-287-8307 / 영업시간: 10시 30분에 영업 시작 화 10:30 - 15:40 15:30 라스트오더 수 10:30 - 15:40 15:30 라스트오더 목 10:30 - 15:40 15:30 라스트오더 금 10:30 - 15:40 15:30 라스트오더 토 10:30 - 15:40 15:30 라스트오더 일(9/1) 정기휴무 (매달 1, 3, 5번째 일요일) 월 10:30 - 15:40 15:30 라스트오더 매달 1, 3, 5번째 일요일 정기 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "799345f0e89132b1e2eb", - "label": "물밀면", - "amount": 7000, + "id": "1dc81b43d4203afcca99-history", + "label": "간장불고기", + "amount": 8500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "678f63d71130afb68517", - "label": "비빔밀면", - "amount": 8000, + "id": "9c3ce0ad6a187e370cd3-history", + "label": "간장오불(간장오징어+간장돼지불고기) (2인분이상)", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "cb36e32253cfff14cc7e", - "label": "물밀면(곱)", - "amount": 8000, + "id": "4a06b392b18d6390e77b-history", + "label": "공기밥", + "amount": 1000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "450282e1c5b587a1d555", - "label": "비빔밀면(곱)", + "id": "ea1a4f17e9a3affe77f8-history", + "label": "맥주", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "ca4a97c06b4f6361770f-history", + "label": "소주", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "f7c058acd4cf3d02265e-history", + "label": "오제볶음(오징어+제육) (2인분이상)", "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "799345f0e89132b1e2eb-history", - "label": "물밀면", - "amount": 7000, + "id": "5c1f512ba849e2d553c0-history", + "label": "음료수", + "amount": 2000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "678f63d71130afb68517-history", - "label": "비빔밀면", - "amount": 8000, + "id": "db630fcdfd5b323c81e5-history", + "label": "제육볶음", + "amount": 8500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cb36e32253cfff14cc7e-history", - "label": "물밀면(곱)", - "amount": 8000, + "id": "d980d8f0c7fbebf85c66-history", + "label": "직화오징어볶음(2인이상)", + "amount": 9500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8f0b43a798402ce9c09c-history", + "label": "직화쭈꾸미볶음(2인이상)", + "amount": 9500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "450282e1c5b587a1d555-history", - "label": "비빔밀면(곱)", + "id": "db733c3daf5252441468-history", + "label": "쭈제볶음(쭈꾸미+제육) (2인분이상)", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -52978,65 +53494,65 @@ "comments": [] }, { - "id": "goodprice-13735", - "name": "산장국수", - "businessName": "산장국수", - "categorySlug": "korean", - "address": "경상남도 창원시 마산합포구 고운로 22 (평화동, 평화아파트) 12호", - "district": "경상남도 창원시", - "latitude": 35.186161057327695, - "longitude": 128.55869543926426, - "representativePriceAmount": 4000, - "representativePriceLabel": "잔치국수", + "id": "goodprice-4328", + "name": "메이카드", + "businessName": "메이카드", + "categorySlug": "other-food", + "address": "강원특별자치도 춘천시 복골길6번길 21 1층(후평동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8743681928941, + "longitude": 127.755540944248, + "representativePriceAmount": 3500, + "representativePriceLabel": "아메리카노", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "육수맛이 좋은 착한가격의 잔치국수 푸짐한 국수 한 그릇 4,000원 입니다^^ 많이 드시러 오세요^^", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-5550-2460 / 영업시간: 수 11:00 - 20:00 15:30 - 17:00 브레이크타임 19:30 라스트오더 목 11:00 - 20:00 15:30 - 17:00 브레이크타임 19:30 라스트오더 금 11:00 - 20:00 15:30 - 17:00 브레이크타임 19:30 라스트오더 토 11:00 - 17:00 16:30 라스트오더 일 정기휴무 (매주 일요일) 월 11:00 - 20:00 15:30 - 17:00 브레이크타임 19:30 라스트오더 화 11:00 - 20:00 15:30 - 17:00 브레이크타임 19:30 라스트오더", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1391-1402 / 영업시간: 10:00 - 22:00 매주 월요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d1287099d3389b487e15", - "label": "잔치국수", - "amount": 4000, + "id": "1f164b31103c657d4a92", + "label": "아메리카노", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d9e9b8a114fbd0080425", - "label": "숙주잔치국수", + "id": "b14bda9a2d7575828278", + "label": "에이드", "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b2712f910343cb622121", - "label": "어린이국수", - "amount": 2500, + "id": "23b52bec28cca0100b13", + "label": "콤부차", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "d1287099d3389b487e15-history", - "label": "잔치국수", - "amount": 4000, + "id": "1f164b31103c657d4a92-history", + "label": "아메리카노", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d9e9b8a114fbd0080425-history", - "label": "숙주잔치국수", + "id": "b14bda9a2d7575828278-history", + "label": "에이드", "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b2712f910343cb622121-history", - "label": "어린이국수", - "amount": 2500, + "id": "23b52bec28cca0100b13-history", + "label": "콤부차", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -53044,397 +53560,475 @@ "comments": [] }, { - "id": "goodprice-6816", - "name": "삼구반점", - "businessName": "삼구반점", - "categorySlug": "chinese", - "address": "경상남도 창원시 의창구 대산면 유등로 170-15", - "district": "경상남도 창원시", - "latitude": 35.3363515087417, - "longitude": 128.726725367192, + "id": "goodprice-18842", + "name": "웅이네 손칼국수", + "businessName": "웅이네 손칼국수", + "categorySlug": "korean", + "address": "서울특별시 성북구 돌곶이로27길 42 (장위동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.61136426044229, + "longitude": 127.05327848462039, "representativePriceAmount": 7000, - "representativePriceLabel": "짬뽕", + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짬뽕 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-291-4373", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-943-0378", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e3cfbcc2c5afde152299", - "label": "짬뽕", + "id": "5f1e583a06abb7d41f70", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "6c8451095e3bfbc5b1fc", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e3cfbcc2c5afde152299-history", - "label": "짬뽕", + "id": "5f1e583a06abb7d41f70-history", + "label": "칼국수", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "6c8451095e3bfbc5b1fc-history", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-7136", - "name": "마모루", - "businessName": "마모루", - "categorySlug": "japanese", - "address": "제주특별자치도 제주시 광양13길 10-1 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.4988561334146, - "longitude": 126.531499520634, - "representativePriceAmount": 8500, - "representativePriceLabel": "돈코츠라멘", + "id": "goodprice-4382", + "name": "바탕골분식", + "businessName": "바탕골분식", + "categorySlug": "korean", + "address": "강원특별자치도 춘천시 서부대성로44번길 19 (요선동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.88168933514, + "longitude": 127.727315490081, + "representativePriceAmount": 8000, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 돈코츠라멘 8,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1404-4303 / 영업시간: 21:30에라스트오더 21시30분에라스트오더 목 11:00-22:30 21:30라스트오더 금 11:00-22:30 21:30라스트오더 토 11:00-22:30 21:30라스트오더 일 11:00-22:30 21:30라스트오더 월 11:00-22:30 21:30라스트오더 화 11:00-22:30 21:30라스트오더 수 정기휴무(매주수요일) -9월27일(수)정상영업하고29일(금)쉬어갑니다!", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-254-3564 / 영업시간: 매일 10:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "43102d5c736b51cd77c4", - "label": "돈코츠라멘", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "016e85f6ac942fff2f1d", - "label": "부타동", + "id": "536425aed5930eece8da", + "label": "김치찌개", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "66c0d68720e1172e537d", - "label": "규동", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "41810a6695ccc10fc7d4", - "label": "가츠동", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "011851227857722fd587", - "label": "카라이라멘", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9058de9297b41874e908", - "label": "고로케 카레라이스", - "amount": 8500, + "id": "9f8339f06bd675f41ec5", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "528fbf09d4431d2e2a76", - "label": "나가사키 짬뽕", - "amount": 10000, + "id": "729605784c506f688a3f", + "label": "숝두부찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "fa8f5518e3474a336122", - "label": "돈가츠 카레라이스", - "amount": 8500, + "id": "536425aed5930eece8da-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "7e431369aa72a6872d9a", - "label": "돈코츠 라멘", + "id": "9f8339f06bd675f41ec5-history", + "label": "된장찌개", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "24ead952ae3afbb244ee", - "label": "라무네", - "amount": 3500, + "id": "729605784c506f688a3f-history", + "label": "숝두부찌개", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-759", + "name": "원도넛", + "businessName": "원도넛", + "categorySlug": "other-food", + "address": "서울특별시 성북구 돌곶이로 29 1층(석관동)", + "district": "서울특별시 성북구", + "latitude": 37.6069130944963, + "longitude": 127.060852972811, + "representativePriceAmount": 1400, + "representativePriceLabel": "글레이즈/꽈배기", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 글레이즈/꽈배기 1,400원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-695-0707 / 영업시간: 12:00~22:40 (일요일 휴무)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "ab93a75619df92a2cd44", - "label": "매운부타동", - "amount": 8000, + "id": "4c32dbc11144988e3a77", + "label": "글레이즈/꽈배기", + "amount": 1400, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d6ca5a0b11ed4d32e0fe", - "label": "모둠 고로케", - "amount": 4500, + "id": "9c16a11972dfc4ad5e6e", + "label": "초코링", + "amount": 1500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fcdcee01952e361ae0df", - "label": "미소 라멘", - "amount": 9000, + "id": "53fad7aaf931aeb54da7", + "label": "딸기쉘", + "amount": 1600, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "939083902ed7a3c99f21", - "label": "사케동(한정판매)", - "amount": 10000, + "id": "4c32dbc11144988e3a77-history", + "label": "글레이즈/꽈배기", + "amount": 1400, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "f64c035216f365f0a972", - "label": "스프라이트", - "amount": 2000, + "id": "9c16a11972dfc4ad5e6e-history", + "label": "초코링", + "amount": 1500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "493dae11e126caaeddc7", - "label": "스프라이트(제로)", - "amount": 2000, + "id": "53fad7aaf931aeb54da7-history", + "label": "딸기쉘", + "amount": 1600, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-4759", + "name": "내고향맛집", + "businessName": "내고향맛집", + "categorySlug": "korean", + "address": "충청북도 청주시 흥덕구 운천로3번길 2 (운천동)", + "district": "충청북도 청주시", + "latitude": 36.6506697774039, + "longitude": 127.474773448765, + "representativePriceAmount": 7000, + "representativePriceLabel": "청국장", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-276-4414 / 영업시간: 매일 09:00-21:00 매주 일요일 정기휴무", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "f1c05e69075ce018515e", - "label": "야끼교자(5개)", - "amount": 4500, + "id": "ebe25566c25218ee4a76", + "label": "청국장", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "cbd91df2dd1692afbc16", - "label": "에비 카레라이스", - "amount": 8500, + "id": "b777d1158f9c2a62665c", + "label": "비지장", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "348153fb4d629128fdea", - "label": "에비후라이", - "amount": 6000, + "id": "9db2ef4c0296f59bc07c", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c86848a3e6d4966a34ed", - "label": "카라이 라멘", + "id": "15862eb2aed14bda3fd7", + "label": "양푼이동태탕", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "d46cacea2954d17ece98", - "label": "코카콜라", - "amount": 2000, + "id": "ebe25566c25218ee4a76-history", + "label": "청국장", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "45266b725a9f056481a4", - "label": "코카콜라(제로)", - "amount": 2000, + "id": "b777d1158f9c2a62665c-history", + "label": "비지장", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "3da548df0e18a8c343ed", - "label": "히야시 라멘", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "43102d5c736b51cd77c4-history", - "label": "돈코츠라멘", - "amount": 8500, + "id": "9db2ef4c0296f59bc07c-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "016e85f6ac942fff2f1d-history", - "label": "부타동", + "id": "15862eb2aed14bda3fd7-history", + "label": "양푼이동태탕", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-767", + "name": "원준식당", + "businessName": "원준식당", + "categorySlug": "korean", + "address": "서울특별시 성북구 장위로38길 67", + "district": "서울특별시 성북구", + "latitude": 37.6103803919803, + "longitude": 127.051539541872, + "representativePriceAmount": 6500, + "representativePriceLabel": "물냉면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물냉면 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-915-0820 / 영업시간: 매일 10:30-22:00", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "66c0d68720e1172e537d-history", - "label": "규동", - "amount": 8500, + "id": "f1dedd30874fc947e793", + "label": "물냉면", + "amount": 6500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "41810a6695ccc10fc7d4-history", - "label": "가츠동", - "amount": 8500, + "id": "f182891bb6b94b5093ee", + "label": "비빔냉면", + "amount": 6500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "011851227857722fd587-history", - "label": "카라이라멘", - "amount": 8500, + "id": "ef4bf6ee0385c7f6d584", + "label": "떡국", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "9058de9297b41874e908-history", - "label": "고로케 카레라이스", - "amount": 8500, + "id": "6a7882866818d1be426c", + "label": "찐만두", + "amount": 3500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "528fbf09d4431d2e2a76-history", - "label": "나가사키 짬뽕", - "amount": 10000, + "id": "86a7b6690d9edc325c28", + "label": "콩국수", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "f1dedd30874fc947e793-history", + "label": "물냉면", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fa8f5518e3474a336122-history", - "label": "돈가츠 카레라이스", - "amount": 8500, + "id": "f182891bb6b94b5093ee-history", + "label": "비빔냉면", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7e431369aa72a6872d9a-history", - "label": "돈코츠 라멘", - "amount": 8000, + "id": "ef4bf6ee0385c7f6d584-history", + "label": "떡국", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "24ead952ae3afbb244ee-history", - "label": "라무네", + "id": "6a7882866818d1be426c-history", + "label": "찐만두", "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ab93a75619df92a2cd44-history", - "label": "매운부타동", - "amount": 8000, + "id": "86a7b6690d9edc325c28-history", + "label": "콩국수", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-13536", + "name": "네모샘밥집", + "businessName": "네모샘밥집", + "categorySlug": "korean", + "address": "충청북도 청주시 청원구 상당로232번길 34 (우암동)", + "district": "충청북도 청주시", + "latitude": 36.64906312692569, + "longitude": 127.49115091042215, + "representativePriceAmount": 6000, + "representativePriceLabel": "보리밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 보리밥 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "d6ca5a0b11ed4d32e0fe-history", - "label": "모둠 고로케", - "amount": 4500, + "id": "8b9f8b46c9d7ab6cfe78", + "label": "보리밥", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "fcdcee01952e361ae0df-history", - "label": "미소 라멘", - "amount": 9000, + "id": "1556f13c522998cf133b", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "939083902ed7a3c99f21-history", - "label": "사케동(한정판매)", - "amount": 10000, + "id": "0c0903492988cc2a6baf", + "label": "제육덮밥", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "f64c035216f365f0a972-history", - "label": "스프라이트", - "amount": 2000, + "id": "8b9f8b46c9d7ab6cfe78-history", + "label": "보리밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "493dae11e126caaeddc7-history", - "label": "스프라이트(제로)", - "amount": 2000, + "id": "1556f13c522998cf133b-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f1c05e69075ce018515e-history", - "label": "야끼교자(5개)", - "amount": 4500, + "id": "0c0903492988cc2a6baf-history", + "label": "제육덮밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-16768", + "name": "월곡동 할매떡볶이", + "businessName": "월곡동 할매떡볶이", + "categorySlug": "korean", + "address": "서울특별시 성북구 오패산로19길 46 (하월곡동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.60924928905219, + "longitude": 127.03331820363316, + "representativePriceAmount": 3000, + "representativePriceLabel": "떡볶이", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-7537-1454", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "cbd91df2dd1692afbc16-history", - "label": "에비 카레라이스", - "amount": 8500, + "id": "f65c854383634c9e3adc", + "label": "떡볶이", + "amount": 3000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "348153fb4d629128fdea-history", - "label": "에비후라이", - "amount": 6000, + "id": "8fe4747fd969a065043e", + "label": "김밥 및 계란", + "amount": 500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "c86848a3e6d4966a34ed-history", - "label": "카라이 라멘", - "amount": 8000, + "id": "f120a21ea6cb1b8a0ab2", + "label": "튀김", + "amount": 700, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "d46cacea2954d17ece98-history", - "label": "코카콜라", - "amount": 2000, + "id": "f65c854383634c9e3adc-history", + "label": "떡볶이", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "45266b725a9f056481a4-history", - "label": "코카콜라(제로)", - "amount": 2000, + "id": "8fe4747fd969a065043e-history", + "label": "김밥 및 계란", + "amount": 500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3da548df0e18a8c343ed-history", - "label": "히야시 라멘", - "amount": 8500, + "id": "f120a21ea6cb1b8a0ab2-history", + "label": "튀김", + "amount": 700, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -53442,37 +54036,51 @@ "comments": [] }, { - "id": "goodprice-18751", - "name": "마시쭈", - "businessName": "마시쭈", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 서사로 97 (삼도일동, 레미안빌) 마시쭈", - "district": "제주특별자치도 제주시", - "latitude": 33.503675132111844, - "longitude": 126.52012010252068, - "representativePriceAmount": 10000, - "representativePriceLabel": "쭈꾸미 덮밥", + "id": "goodprice-15580", + "name": "더드림빵", + "businessName": "더드림빵", + "categorySlug": "bakery", + "address": "충청남도 천안시 동남구 차돌고개5길 15 (다가동) 1동 102호", + "district": "충청남도 천안시", + "latitude": 36.79908109750335, + "longitude": 127.13558280814556, + "representativePriceAmount": 1500, + "representativePriceLabel": "단팥빵/소보로빵/슈크림빵/생크림빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 쭈꾸미 덮밥 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-702-3544", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵/소보로빵/슈크림빵/생크림빵 1,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-577-4473 / 영업시간: 07:00~20:00 정기휴무 매주 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "09bf7fe17635fa4ae135", - "label": "쭈꾸미 덮밥", - "amount": 10000, + "id": "0e1ff7170d31401abc06", + "label": "단팥빵/소보로빵/슈크림빵/생크림빵", + "amount": 1500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d85a86502ad518c0fd5d", + "label": "카스테라", + "amount": 1900, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "09bf7fe17635fa4ae135-history", - "label": "쭈꾸미 덮밥", - "amount": 10000, + "id": "0e1ff7170d31401abc06-history", + "label": "단팥빵/소보로빵/슈크림빵/생크림빵", + "amount": 1500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d85a86502ad518c0fd5d-history", + "label": "카스테라", + "amount": 1900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -53480,65 +54088,51 @@ "comments": [] }, { - "id": "goodprice-10623", - "name": "만강촌옛날칼국수", - "businessName": "만강촌옛날칼국수", + "id": "goodprice-15451", + "name": "유정식당", + "businessName": "유정식당", "categorySlug": "korean", - "address": "제주특별자치도 제주시 월랑로 42 (노형동)", - "district": "제주특별자치도 제주시", - "latitude": 33.4893502595565, - "longitude": 126.476040481369, - "representativePriceAmount": 7900, - "representativePriceLabel": "닭칼국수", + "address": "서울특별시 성북구 북악산로29길 21 (종암동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.593294236172554, + "longitude": 127.0346377045632, + "representativePriceAmount": 9000, + "representativePriceLabel": "뚝배기불고기", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 닭칼국수 7,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-744-4780", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뚝배기불고기 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-928-6256", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "33d0aa1afc14312e974e", - "label": "닭칼국수", - "amount": 7900, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2cca3567533d37aa1982", - "label": "닭곰탕", - "amount": 7900, + "id": "505dc2a6d959c79a9da4", + "label": "뚝배기불고기", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f4c65a6adb58c352f16c", - "label": "왕만두 한접시", - "amount": 7900, + "id": "21dade6fd169d0175c2a", + "label": "부대찌개 김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "33d0aa1afc14312e974e-history", - "label": "닭칼국수", - "amount": 7900, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2cca3567533d37aa1982-history", - "label": "닭곰탕", - "amount": 7900, + "id": "505dc2a6d959c79a9da4-history", + "label": "뚝배기불고기", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f4c65a6adb58c352f16c-history", - "label": "왕만두 한접시", - "amount": 7900, + "id": "21dade6fd169d0175c2a-history", + "label": "부대찌개 김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -53546,79 +54140,79 @@ "comments": [] }, { - "id": "goodprice-18573", - "name": "동경우동(2호점)", - "businessName": "동경우동(2호점)", - "categorySlug": "korean", - "address": "서울특별시 중구 퇴계로27길 16 (필동1가) 1층 105호", - "district": "서울특별시 중구", - "latitude": 37.56195219030635, - "longitude": 126.99184490399296, - "representativePriceAmount": 5000, - "representativePriceLabel": "우동", + "id": "goodprice-15798", + "name": "동화당만두찐빵", + "businessName": "동화당만두찐빵", + "categorySlug": "bakery", + "address": "충청남도 천안시 서북구 미라8길 15 (쌍용동) 101호", + "district": "충청남도 천안시", + "latitude": 36.80331426026365, + "longitude": 127.12911330329518, + "representativePriceAmount": 5500, + "representativePriceLabel": "고기/김치만두(10개)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우동 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2277-3223", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 고기/김치만두(10개) 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-577-7238 / 영업시간: 매일 10:00~23:00 정기휴무 1, 3번째 일요일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c186654dd7ec7e66b6ab", - "label": "우동", - "amount": 5000, + "id": "04d01d8567b67bc92854", + "label": "고기/김치만두(10개)", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d0bb5b1b65ec635e4d6d", - "label": "유부초밥", - "amount": 5000, + "id": "981fe42ab31a0501329a", + "label": "고기/김치왕만두(5개)", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ea288e576441869038c0", - "label": "오뎅우동", - "amount": 6000, + "id": "771b8decfae022583858", + "label": "찐빵(5개)", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e8993c38fbd585c34114", - "label": "케라레아스", - "amount": 6500, + "id": "041e502a06a9d51b25f9", + "label": "방문포장 시", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c186654dd7ec7e66b6ab-history", - "label": "우동", - "amount": 5000, + "id": "04d01d8567b67bc92854-history", + "label": "고기/김치만두(10개)", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d0bb5b1b65ec635e4d6d-history", - "label": "유부초밥", - "amount": 5000, + "id": "981fe42ab31a0501329a-history", + "label": "고기/김치왕만두(5개)", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ea288e576441869038c0-history", - "label": "오뎅우동", - "amount": 6000, + "id": "771b8decfae022583858-history", + "label": "찐빵(5개)", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e8993c38fbd585c34114-history", - "label": "케라레아스", - "amount": 6500, + "id": "041e502a06a9d51b25f9-history", + "label": "방문포장 시", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -53626,79 +54220,79 @@ "comments": [] }, { - "id": "goodprice-18572", - "name": "동경우동집", - "businessName": "동경우동집", + "id": "goodprice-785", + "name": "이모네식당", + "businessName": "이모네식당", "categorySlug": "korean", - "address": "서울특별시 중구 충무로 48 (초동) 1층 1호", - "district": "서울특별시 중구", - "latitude": 37.56537537416687, - "longitude": 126.99296134367208, - "representativePriceAmount": 5000, - "representativePriceLabel": "우동", + "address": "서울특별시 성북구 안암로73-3", + "district": "서울특별시 성북구", + "latitude": 37.5830526568282, + "longitude": 127.028922504119, + "representativePriceAmount": 7000, + "representativePriceLabel": "제육덮밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우동 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2274-3440", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육덮밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 목 11:00-21:00 14:30-17:00브레이크타임 금 11:00-21:00 14:30-17:00브레이크타임 토 11:00-21:00 14:30-17:00브레이크타임 일 정기휴무(매주일요일) 월(12/25) 성탄절휴무 화 11:00-21:00 14:30-17:00브레이크타임 수 11:00-21:00 14:30-17:00브레이크타임 01/01새해첫날휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "466df7c17ff07370aa09", - "label": "우동", - "amount": 5000, + "id": "6f4638c00177863c070f", + "label": "제육덮밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0d08f6b399c3af24c9c5", - "label": "유부초밥", - "amount": 5000, + "id": "1881554ac640aa47e645", + "label": "김치찌개, 된장찌개", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f9a9760ebabafea10058", - "label": "카레라이스", - "amount": 6500, + "id": "19a679d06b0bb9a2955d", + "label": "오징어볶음", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b19583a603fc3c8d397e", - "label": "우동 카레 세트", - "amount": 7500, + "id": "085144ec91e6e7e8ab9d", + "label": "김치찌개 1인분", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "466df7c17ff07370aa09-history", - "label": "우동", - "amount": 5000, + "id": "6f4638c00177863c070f-history", + "label": "제육덮밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0d08f6b399c3af24c9c5-history", - "label": "유부초밥", - "amount": 5000, + "id": "1881554ac640aa47e645-history", + "label": "김치찌개, 된장찌개", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f9a9760ebabafea10058-history", - "label": "카레라이스", - "amount": 6500, + "id": "19a679d06b0bb9a2955d-history", + "label": "오징어볶음", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b19583a603fc3c8d397e-history", - "label": "우동 카레 세트", - "amount": 7500, + "id": "085144ec91e6e7e8ab9d-history", + "label": "김치찌개 1인분", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -53706,65 +54300,113 @@ "comments": [] }, { - "id": "goodprice-10673", - "name": "명동얼큰수제비", - "businessName": "명동얼큰수제비", + "id": "goodprice-5411", + "name": "아리랑하우스", + "businessName": "아리랑하우스", "categorySlug": "korean", - "address": "서울특별시 중구 남대문로 64 1층", - "district": "서울특별시 중구", - "latitude": 37.5627658956023, - "longitude": 126.982216802182, - "representativePriceAmount": 8000, - "representativePriceLabel": "김치찌개", + "address": "전북특별자치도 전주시 덕진구 한배미1길 29", + "district": "전북특별자치도 전주시", + "latitude": 35.8236184860742, + "longitude": 127.165468633315, + "representativePriceAmount": 9000, + "representativePriceLabel": "한우탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-752-7649", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한우탕 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-241-9300", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3b2cac8645b9c6d08758", - "label": "김치찌개", - "amount": 8000, + "id": "0f51deb75739214e8671", + "label": "한우탕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "490a72828d303753d2a1", - "label": "된장찌개", - "amount": 8000, + "id": "0f51deb75739214e8671-history", + "label": "한우탕", + "amount": 9000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-18847", + "name": "이자카야준", + "businessName": "이자카야준", + "categorySlug": "japanese", + "address": "서울특별시 성북구 장월로 96 (장위동) 2층", + "district": "서울특별시 성북구", + "latitude": 37.61432990805818, + "longitude": 127.04878241310507, + "representativePriceAmount": 8000, + "representativePriceLabel": "회덮밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 회덮밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-917-3452", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "91e13ae3cdd10f4e88fb", - "label": "소고기김밥", - "amount": 4500, + "id": "a93ccba8b4894776a00a", + "label": "회덮밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3b2cac8645b9c6d08758-history", - "label": "김치찌개", + "id": "a93ccba8b4894776a00a-history", + "label": "회덮밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-5403", + "name": "야미전북대점", + "businessName": "야미전북대점", + "categorySlug": "western", + "address": "전북특별자치도 전주시 덕진구 명륜4길 21-5 2층", + "district": "전북특별자치도 전주시", + "latitude": 35.843953906049, + "longitude": 127.126451107898, + "representativePriceAmount": 6900, + "representativePriceLabel": "수제 생돈가스", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 수제 생돈가스 6,900원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-277-6678 / 영업시간: 매일 10:00-20:30 15:00-17:00브레이크타임", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "490a72828d303753d2a1-history", - "label": "된장찌개", - "amount": 8000, + "id": "5a3b0803f6cf47537f82", + "label": "수제 생돈가스", + "amount": 6900, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "91e13ae3cdd10f4e88fb-history", - "label": "소고기김밥", - "amount": 4500, + "id": "5a3b0803f6cf47537f82-history", + "label": "수제 생돈가스", + "amount": 6900, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -53772,37 +54414,65 @@ "comments": [] }, { - "id": "goodprice-1405", - "name": "부산밀면", - "businessName": "부산밀면", + "id": "goodprice-18200", + "name": "정이든김밥", + "businessName": "정이든김밥", "categorySlug": "korean", - "address": "부산광역시 서구 대영로 18번길 13 (서대신동2가)", - "district": "부산광역시 서구", - "latitude": 35.1094771001795, - "longitude": 129.013487853455, - "representativePriceAmount": 7000, - "representativePriceLabel": "물밀면", + "address": "서울특별시 성북구 보국문로 19-8 (정릉동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.606427686488104, + "longitude": 127.01047902556422, + "representativePriceAmount": 4000, + "representativePriceLabel": "땡초김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물밀면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4017-4082", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 땡초김밥 4,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-909-3382", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "23f4f38e457756d72790", - "label": "물밀면", - "amount": 7000, + "id": "8936c635c8db348a0897", + "label": "땡초김밥", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e880889404ce07483ab2", + "label": "계란김밥", + "amount": 4500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d40b39b111b5d2951732", + "label": "고기김밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "23f4f38e457756d72790-history", - "label": "물밀면", - "amount": 7000, + "id": "8936c635c8db348a0897-history", + "label": "땡초김밥", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e880889404ce07483ab2-history", + "label": "계란김밥", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d40b39b111b5d2951732-history", + "label": "고기김밥", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -53810,27 +54480,27 @@ "comments": [] }, { - "id": "goodprice-18715", - "name": "부산식당", - "businessName": "부산식당", + "id": "goodprice-15996", + "name": "영아네밥상", + "businessName": "영아네밥상", "categorySlug": "korean", - "address": "부산광역시 서구 대청로6번길 43 (토성동3가) 부산식당", - "district": "부산광역시 서구", - "latitude": 35.101316967405765, - "longitude": 129.02048922780577, + "address": "전북특별자치도 전주시 덕진구 송천로 35-4 (송천동1가)", + "district": "전북특별자치도 전주시", + "latitude": 35.856686667251026, + "longitude": 127.1180991261228, "representativePriceAmount": 8000, - "representativePriceLabel": "명태탕", + "representativePriceLabel": "한식뷔페(점심)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 명태탕 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-241-5080", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페(점심) 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-274-6598 / 영업시간: 평일 : 11:00 ~ 22:00(브레이크 타임 14 : 30 ~ 17 : 00) 토요일 : 17:00 ~ 22:00 일요일 : 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "cbfe4b929b5c1c3b074f", - "label": "명태탕", + "id": "4b496e6ce95515933faa", + "label": "한식뷔페(점심)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -53838,8 +54508,8 @@ ], "history": [ { - "id": "cbfe4b929b5c1c3b074f-history", - "label": "명태탕", + "id": "4b496e6ce95515933faa-history", + "label": "한식뷔페(점심)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -53848,401 +54518,357 @@ "comments": [] }, { - "id": "goodprice-1861", - "name": "미소띤하루", - "businessName": "미소띤하루", - "categorySlug": "bakery", - "address": "대구광역시 동구 이노밸리로 168 103호(각산동, 안심빌딩)", - "district": "대구광역시 동구", - "latitude": 35.8784451966479, - "longitude": 128.715684288524, - "representativePriceAmount": 1500, - "representativePriceLabel": "소보로빵", + "id": "goodprice-766", + "name": "착한짬뽕더착한탕수육", + "businessName": "착한짬뽕더착한탕수육", + "categorySlug": "chinese", + "address": "서울특별시 성북구 월곡로18길 4 2층(하월곡동)", + "district": "서울특별시 성북구", + "latitude": 37.6015932065234, + "longitude": 127.041768969884, + "representativePriceAmount": 4500, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 소보로빵 1,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-965-9794 / 영업시간: 목 08:30-22:30 금 08:30-22:30 토 08:30-22:30 일 08:30-22:30 월 08:30-22:30 화 08:30-22:30 수 08:30-22:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 4,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-601-3559 / 영업시간: 금 11:00-20:30 14:30-17:00브레이크타임 20:00라스트오더 토 11:00-20:30 14:30-17:00브레이크타임 20:00라스트오더 일 정기휴무(매주일요일) 월 11:00-20:30 14:30-17:00브레이크타임 20:00라스트오더 화 11:00-20:30 14:30-17:00브레이크타임 20:00라스트오더 수 11:00-20:30 14:30-17:00브레이크타임 20:00라스트오더 목 11:00-20:30 14:30-17:00브레이크타임 20:00라스트오더", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "db0d2da865d0f07e6ef8", - "label": "소보로빵", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0d5bf73b8f53df823c80", - "label": "단팥빵", - "amount": 1800, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c2669cf4f854aa54faf5", - "label": "BELT 샌드위치", - "amount": 6500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "860178af8d011cd0d8fa", - "label": "감자 핫도그", - "amount": 4800, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bd159cb3467a1dbad0b4", - "label": "단호박 식빵", + "id": "4e0df0df72a95a4cde97", + "label": "짜장면", "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3722375dd2253153fa58", - "label": "단호박 카스테라(한조각)", - "amount": 3500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "cf84eda85c6aab314282", - "label": "레몬 롤 케익", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "92655b7a9dac04876728", - "label": "레몬 몽블랑", - "amount": 5200, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a668ee905c904d6d55e0", - "label": "레몬 파운드", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e5bfa656910c48fd4ee4", - "label": "레오파드", - "amount": 5500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0dfe7143fe9c827eafd2", - "label": "롱 소시지 프레첼", - "amount": 4800, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bd0e0da49ca220b982ee", - "label": "소금빵", - "amount": 2400, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d3378eb030240badf88f", - "label": "수제 초코파이(1개)", - "amount": 2500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e6bdbcbe6633aca56700", - "label": "쌀 바게트 샌드위치", - "amount": 6500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "20855af063a6c4904b1e", - "label": "아메리카노(hot)", - "amount": 1000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9bf636a34aebe6944d6c", - "label": "아메리카노(ice)", - "amount": 1300, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2aeea40ca4fb662d413d", - "label": "아이스티", - "amount": 1300, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "40b189b5d6b5f3f528bf", - "label": "오트밀 쿠키(6개)", - "amount": 2800, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e5401f9e1dbf5ae635c7", - "label": "옥수수 식빵", - "amount": 4500, + "id": "933833fa7fb4ea328422", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e085ff24dc0fa6552323", - "label": "우유 식빵", - "amount": 4500, + "id": "000b3f4984eb925a4f05", + "label": "고기짬뽕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d41a35933ea4b7f7a2da", - "label": "유기농 참깨 쿠키", - "amount": 2800, + "id": "31c36a73cf8afa59fd64", + "label": "돈까스짬뽕밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "537b44e0c15662142e1f", - "label": "유기농 카스테라(6개)", - "amount": 4500, + "id": "53dd4fea8a882ba57d3a", + "label": "마라짬뽕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2a0c2cbb3b5d7e28d760", - "label": "쨈 맛있는 쨈 니가 사준 쨈(딸기)", + "id": "81d35e5005b67b7142d4", + "label": "새우볶음밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b07993fa7a35b08b97e0", - "label": "쨈 맛있는 쨈 니가 사준 쨈(사과)", - "amount": 8000, + "id": "d5e000ccbed257698247", + "label": "소고기짜장면", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3d7f749c5640f2545c8d", - "label": "찹쌀떡(2개)", - "amount": 1200, + "id": "cfc8f1935a993d8e6cc2", + "label": "크림짬뽕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4481d71704d5034826bf", - "label": "초코 바삭 쿠키", - "amount": 1200, + "id": "76674072376c8f2e0b1f", + "label": "토마토짬뽕", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1018994b7e3ecbb809c1", - "label": "치즈 범벅 호떡", - "amount": 3800, + "id": "d84a0169098471c5d47e", + "label": "해물짬뽕", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "db0d2da865d0f07e6ef8-history", - "label": "소보로빵", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0d5bf73b8f53df823c80-history", - "label": "단팥빵", - "amount": 1800, + "id": "4e0df0df72a95a4cde97-history", + "label": "짜장면", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c2669cf4f854aa54faf5-history", - "label": "BELT 샌드위치", - "amount": 6500, + "id": "933833fa7fb4ea328422-history", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "860178af8d011cd0d8fa-history", - "label": "감자 핫도그", - "amount": 4800, + "id": "000b3f4984eb925a4f05-history", + "label": "고기짬뽕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bd159cb3467a1dbad0b4-history", - "label": "단호박 식빵", - "amount": 4500, + "id": "31c36a73cf8afa59fd64-history", + "label": "돈까스짬뽕밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3722375dd2253153fa58-history", - "label": "단호박 카스테라(한조각)", - "amount": 3500, + "id": "53dd4fea8a882ba57d3a-history", + "label": "마라짬뽕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "cf84eda85c6aab314282-history", - "label": "레몬 롤 케익", - "amount": 5500, + "id": "81d35e5005b67b7142d4-history", + "label": "새우볶음밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "92655b7a9dac04876728-history", - "label": "레몬 몽블랑", - "amount": 5200, + "id": "d5e000ccbed257698247-history", + "label": "소고기짜장면", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a668ee905c904d6d55e0-history", - "label": "레몬 파운드", - "amount": 3000, + "id": "cfc8f1935a993d8e6cc2-history", + "label": "크림짬뽕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e5bfa656910c48fd4ee4-history", - "label": "레오파드", - "amount": 5500, + "id": "76674072376c8f2e0b1f-history", + "label": "토마토짬뽕", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0dfe7143fe9c827eafd2-history", - "label": "롱 소시지 프레첼", - "amount": 4800, + "id": "d84a0169098471c5d47e-history", + "label": "해물짬뽕", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-5622", + "name": "예향밥상", + "businessName": "예향밥상", + "categorySlug": "korean", + "address": "전라남도 목포시 수문로20번길 7-3 1층(남교동)", + "district": "전라남도 목포시", + "latitude": 34.7925532071234, + "longitude": 126.383301637162, + "representativePriceAmount": 7000, + "representativePriceLabel": "한식뷔페", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-247-8989 / 영업시간: 11:30~20:00 정기휴무(매주 일요일)", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "bd0e0da49ca220b982ee-history", - "label": "소금빵", - "amount": 2400, + "id": "69b28fb837efe2ba10a4", + "label": "한식뷔페", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "d3378eb030240badf88f-history", - "label": "수제 초코파이(1개)", - "amount": 2500, + "id": "69b28fb837efe2ba10a4-history", + "label": "한식뷔페", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-787", + "name": "청년밥상 문간", + "businessName": "청년밥상 문간", + "categorySlug": "korean", + "address": "서울특별시 성북구 보국문로11길 18-2 2층", + "district": "서울특별시 성북구", + "latitude": 37.6088609651749, + "longitude": 127.009098506123, + "representativePriceAmount": 3000, + "representativePriceLabel": "김치찌개", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-743-6031 / 영업시간: 매일 12:00~23:00 22:00라스트오더", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "e6bdbcbe6633aca56700-history", - "label": "쌀 바게트 샌드위치", - "amount": 6500, + "id": "a974e2775442836f1dee", + "label": "김치찌개", + "amount": 3000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "20855af063a6c4904b1e-history", - "label": "아메리카노(hot)", + "id": "521331a44ecac28ad3c4", + "label": "사리", "amount": 1000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9bf636a34aebe6944d6c-history", - "label": "아메리카노(ice)", - "amount": 1300, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2aeea40ca4fb662d413d-history", - "label": "아이스티", - "amount": 1300, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "40b189b5d6b5f3f528bf-history", - "label": "오트밀 쿠키(6개)", - "amount": 2800, + "id": "f7c9c59aabe5ac82fd16", + "label": "두부추가", + "amount": 1000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "e5401f9e1dbf5ae635c7-history", - "label": "옥수수 식빵", - "amount": 4500, + "id": "a974e2775442836f1dee-history", + "label": "김치찌개", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e085ff24dc0fa6552323-history", - "label": "우유 식빵", - "amount": 4500, + "id": "521331a44ecac28ad3c4-history", + "label": "사리", + "amount": 1000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d41a35933ea4b7f7a2da-history", - "label": "유기농 참깨 쿠키", - "amount": 2800, + "id": "f7c9c59aabe5ac82fd16-history", + "label": "두부추가", + "amount": 1000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-10496", + "name": "옛날짜장", + "businessName": "옛날짜장", + "categorySlug": "korean", + "address": "전라남도 목포시 산정로 120-1 (산정동)", + "district": "전라남도 목포시", + "latitude": 34.7992827458212, + "longitude": 126.393162428108, + "representativePriceAmount": 6000, + "representativePriceLabel": "옛날짜장", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 옛날짜장 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-272-1872", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "537b44e0c15662142e1f-history", - "label": "유기농 카스테라(6개)", - "amount": 4500, + "id": "4569c03b51c1283b489f", + "label": "옛날짜장", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "2a0c2cbb3b5d7e28d760-history", - "label": "쨈 맛있는 쨈 니가 사준 쨈(딸기)", - "amount": 8000, + "id": "c09e84a4def102210157", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "b07993fa7a35b08b97e0-history", - "label": "쨈 맛있는 쨈 니가 사준 쨈(사과)", - "amount": 8000, + "id": "4569c03b51c1283b489f-history", + "label": "옛날짜장", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3d7f749c5640f2545c8d-history", - "label": "찹쌀떡(2개)", - "amount": 1200, + "id": "c09e84a4def102210157-history", + "label": "잔치국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-15325", + "name": "카페플라워", + "businessName": "카페플라워", + "categorySlug": "other-food", + "address": "서울특별시 성북구 성북로4길 52 (돈암동, 한신한진아파트) 104호", + "district": "서울특별시 성북구", + "latitude": 37.59109173463164, + "longitude": 127.00704694290194, + "representativePriceAmount": 1500, + "representativePriceLabel": "아메리카노", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 1,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-4897-4144", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "4481d71704d5034826bf-history", - "label": "초코 바삭 쿠키", - "amount": 1200, + "id": "63fee565c5b952f43b0c", + "label": "아메리카노", + "amount": 1500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "1018994b7e3ecbb809c1-history", - "label": "치즈 범벅 호떡", - "amount": 3800, + "id": "63fee565c5b952f43b0c-history", + "label": "아메리카노", + "amount": 1500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54250,37 +54876,51 @@ "comments": [] }, { - "id": "goodprice-1873", - "name": "미진손칼국수", - "businessName": "미진손칼국수", + "id": "goodprice-10502", + "name": "용일식육식당", + "businessName": "용일식육식당", "categorySlug": "korean", - "address": "대구광역시 동구 아양로50길 119-1 (효목동)", - "district": "대구광역시 동구", - "latitude": 35.8824649802755, - "longitude": 128.642824663592, - "representativePriceAmount": 6000, - "representativePriceLabel": "손칼국수", + "address": "전라남도 목포시 양을로196번길 7 (용당동, 용일아파트)", + "district": "전라남도 목포시", + "latitude": 34.8104772153102, + "longitude": 126.391872175823, + "representativePriceAmount": 9000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-941-4664 / 영업시간: 21:30에21시30분에 금 10:30-21:30 토 10:30-21:30 일 정기휴무(매주일요일) 월 10:30-21:30 화 10:30-21:30 수 10:30-21:30 목 10:30-21:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-272-0184", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9f677ce0055a1f5e9ab6", - "label": "손칼국수", - "amount": 6000, + "id": "8c17f8a3bac87f3437b9", + "label": "백반", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d64f84e1c73fb523e970", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9f677ce0055a1f5e9ab6-history", - "label": "손칼국수", - "amount": 6000, + "id": "8c17f8a3bac87f3437b9-history", + "label": "백반", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d64f84e1c73fb523e970-history", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54288,37 +54928,51 @@ "comments": [] }, { - "id": "goodprice-14952", - "name": "불로회 수산", - "businessName": "불로회 수산", - "categorySlug": "japanese", - "address": "대구광역시 동구 팔공로30길 9 (불로동)", - "district": "대구광역시 동구", - "latitude": 35.91179442743553, - "longitude": 128.64211388427978, - "representativePriceAmount": 8000, - "representativePriceLabel": "회덮밥", + "id": "goodprice-18126", + "name": "한선생부엌", + "businessName": "한선생부엌", + "categorySlug": "korean", + "address": "서울특별시 성북구 돌곶이로18길 3-3 (석관동) 1층", + "district": "서울특별시 성북구", + "latitude": 37.60927410853928, + "longitude": 127.05923324386661, + "representativePriceAmount": 3000, + "representativePriceLabel": "한식반찬(150g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 회덮밥 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-983-8070 / 영업시간: **AM 11:00 부터 PM 15:00까지 회덮밥 6.000원 월~일 11:00~22:30 / 정기휴무(매주 화요일) 브레이크타임 15:30~16:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식반찬(150g) 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-960-7306", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4b44a389e75d2cb887ad", - "label": "회덮밥", - "amount": 8000, + "id": "82bcfc886da98517607c", + "label": "한식반찬(150g)", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b05baaa883b02aaffb2d", + "label": "국찌개(1.4kg)", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4b44a389e75d2cb887ad-history", - "label": "회덮밥", - "amount": 8000, + "id": "82bcfc886da98517607c-history", + "label": "한식반찬(150g)", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b05baaa883b02aaffb2d-history", + "label": "국찌개(1.4kg)", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54326,37 +54980,37 @@ "comments": [] }, { - "id": "goodprice-13032", - "name": "유풍반점", - "businessName": "유풍반점", + "id": "goodprice-11261", + "name": "기계반점", + "businessName": "기계반점", "categorySlug": "chinese", - "address": "인천광역시 동구 샛골로194번길 16 (송림동) 1층", - "district": "인천광역시 동구", - "latitude": 37.47926076663097, - "longitude": 126.64636358766377, - "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "address": "경상북도 포항시 북구 기계면 자조길 15 1층", + "district": "경상북도 포항시", + "latitude": 36.070902333521, + "longitude": 129.211627068839, + "representativePriceAmount": 8000, + "representativePriceLabel": "짬뽕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-772-5119 / 영업시간: 월~일 11:00-21:00 (일) 첫째, 셋째주 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짬뽕 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-246-4244", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bc9510ef834e58c75486", - "label": "짜장면", - "amount": 5000, + "id": "c609584069ad06057cb0", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "bc9510ef834e58c75486-history", - "label": "짜장면", - "amount": 5000, + "id": "c609584069ad06057cb0-history", + "label": "짬뽕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54364,51 +55018,79 @@ "comments": [] }, { - "id": "goodprice-17608", - "name": "잘된정", - "businessName": "잘된정", - "categorySlug": "chinese", - "address": "인천광역시 동구 샛골로171번길 5 (송림동) 1층(송림동)", - "district": "인천광역시 동구", - "latitude": 37.477691922823226, - "longitude": 126.64454299959506, + "id": "goodprice-768", + "name": "홍두깨손칼국수", + "businessName": "홍두깨손칼국수", + "categorySlug": "korean", + "address": "서울특별시 성북구 보문로40길 5", + "district": "서울특별시 성북구", + "latitude": 37.5917381701651, + "longitude": 127.013802528612, "representativePriceAmount": 5000, - "representativePriceLabel": "짜장면", + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-761-0038 / 영업시간: 월 ~ 일 11:00 ~ 21:00 휴무 : 필요시", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-953-5595 / 영업시간: 매일 10:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4cfa1d77d67495758306", - "label": "짜장면", + "id": "ae592c681b73c7648cd3", + "label": "칼국수", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "289c1f6451bebc0bcc61", - "label": "짬뽕", - "amount": 6000, + "id": "eca136064e2f56b6f650", + "label": "수제비", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "91abff34bd8234675156", + "label": "잔치국수", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "bc3766d28be14273f3e3", + "label": "콩국수 (계절메뉴)", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "4cfa1d77d67495758306-history", - "label": "짜장면", + "id": "ae592c681b73c7648cd3-history", + "label": "칼국수", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "289c1f6451bebc0bcc61-history", - "label": "짬뽕", - "amount": 6000, + "id": "eca136064e2f56b6f650-history", + "label": "수제비", + "amount": 5000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "91abff34bd8234675156-history", + "label": "잔치국수", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "bc3766d28be14273f3e3-history", + "label": "콩국수 (계절메뉴)", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54416,27 +55098,41 @@ "comments": [] }, { - "id": "goodprice-2105", - "name": "청해물텀벙", - "businessName": "청해물텀벙", + "id": "goodprice-6831", + "name": "대봉막창", + "businessName": "대봉막창", "categorySlug": "korean", - "address": "인천광역시 동구 수문통로 5-1 (화평동) 1층", - "district": "인천광역시 동구", - "latitude": 37.477346435473336, - "longitude": 126.63159719785347, - "representativePriceAmount": 10000, - "representativePriceLabel": "점심아구뚝배기", + "address": "경상남도 창원시 진해구 벚꽃로60번길 25 1층 1025호(화천동, 중앙시장)", + "district": "경상남도 창원시", + "latitude": 35.1510678992756, + "longitude": 128.665642625987, + "representativePriceAmount": 9000, + "representativePriceLabel": "돼지막창", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "식사 후 주차권 도장 꼭~ 받아가세요.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-761-4140 / 영업시간: 월~일 11:00-21:30 (수) 첫째, 셋째 주 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지막창 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-545-7292", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "130a9e94d79d04054883", - "label": "점심아구뚝배기", + "id": "49b78999cd1e2d745c4e", + "label": "돼지막창", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a41b62330d0d6581e063", + "label": "양념막창", + "amount": 10000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6cc00b980e1aa4aefa30", + "label": "생삼겹", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -54444,8 +55140,22 @@ ], "history": [ { - "id": "130a9e94d79d04054883-history", - "label": "점심아구뚝배기", + "id": "49b78999cd1e2d745c4e-history", + "label": "돼지막창", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "a41b62330d0d6581e063-history", + "label": "양념막창", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "6cc00b980e1aa4aefa30-history", + "label": "생삼겹", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -54454,37 +55164,37 @@ "comments": [] }, { - "id": "goodprice-17602", - "name": "친친", - "businessName": "친친", - "categorySlug": "chinese", - "address": "인천 동구 샛골로210번길 9 1층 107호(송림동)", - "district": "인천 동구", - "latitude": 37.4809530287519, - "longitude": 126.646384617566, - "representativePriceAmount": 10000, - "representativePriceLabel": "중화제육덮밥", + "id": "goodprice-11575", + "name": "홍두깨손칼국수", + "businessName": "홍두깨손칼국수", + "categorySlug": "korean", + "address": "서울특별시 성북구 오패산로3길 119 1층(하월곡동)", + "district": "서울특별시 성북구", + "latitude": 37.6082944944716, + "longitude": 127.033285848664, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 중화제육덮밥 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-766-5533 / 영업시간: 월 ~ 토 10:30 ~ 19:00 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-942-1235", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "86dd3e2d8fe2883e30d8", - "label": "중화제육덮밥", - "amount": 10000, + "id": "bc4937a2f0cfc55b3058", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "86dd3e2d8fe2883e30d8-history", - "label": "중화제육덮밥", - "amount": 10000, + "id": "bc4937a2f0cfc55b3058-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54492,51 +55202,37 @@ "comments": [] }, { - "id": "goodprice-13665", - "name": "별천지", - "businessName": "별천지", + "id": "goodprice-14220", + "name": "대패3000냥삼겹살", + "businessName": "대패3000냥삼겹살", "categorySlug": "korean", - "address": "광주광역시 서구 상무대로695번길 8 (마륵동) 1층", - "district": "광주광역시 서구", - "latitude": 35.143450019964995, - "longitude": 126.84034418110387, - "representativePriceAmount": 9500, - "representativePriceLabel": "생선구이백반", + "address": "경상남도 창원시 마산합포구 산호남로 11 (산호동) 1층", + "district": "경상남도 창원시", + "latitude": 35.21758679106357, + "longitude": 128.58131775121527, + "representativePriceAmount": 3000, + "representativePriceLabel": "대패삼겹살(1인분_기본5인)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생선구이백반 9,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-375-2795", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 대패삼겹살(1인분_기본5인) 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-223-3538 / 영업시간: 영업시간 영업 중21:30에 라스트오더21시 30분에 라스트오더 매일 10:00 - 22:00 21:30 라스트오더 - 명절 당일", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dbde993b836ced59f8d3", - "label": "생선구이백반", - "amount": 9500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "d9d3de786dbed30a25b0", - "label": "제육볶음", - "amount": 9500, + "id": "fc543510becaf8645c68", + "label": "대패삼겹살(1인분_기본5인)", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dbde993b836ced59f8d3-history", - "label": "생선구이백반", - "amount": 9500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "d9d3de786dbed30a25b0-history", - "label": "제육볶음", - "amount": 9500, + "id": "fc543510becaf8645c68-history", + "label": "대패삼겹살(1인분_기본5인)", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54544,51 +55240,51 @@ "comments": [] }, { - "id": "goodprice-2574", - "name": "한우농장30년", - "businessName": "한우농장30년", + "id": "goodprice-16769", + "name": "홍칼국수", + "businessName": "홍칼국수", "categorySlug": "korean", - "address": "대전광역시 동구 동부로 13 (판암동)", - "district": "대전광역시 동구", - "latitude": 36.3182694180623, - "longitude": 127.456048288873, - "representativePriceAmount": 7000, - "representativePriceLabel": "냉면", + "address": "서울특별시 성북구 아리랑로 33 (동소문동7가) 1층", + "district": "서울특별시 성북구", + "latitude": 37.595735767616475, + "longitude": 127.01555314993159, + "representativePriceAmount": 5000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-274-9393 / 영업시간: 11:00 ~ 22:00 / 매주 화요일 정기휴무 / 브레이크타임 15:00 ~ 17:00/ 라스트오더 21:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-923-9402", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "304459230b557d679d92", - "label": "냉면", - "amount": 7000, + "id": "8713f82050381b68f461", + "label": "칼국수", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "639ad51b1c418e35d6a4", - "label": "설렁탕(곰탕)", - "amount": 8000, + "id": "93463639461e1320ffdf", + "label": "칼짜장면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "304459230b557d679d92-history", - "label": "냉면", - "amount": 7000, + "id": "8713f82050381b68f461-history", + "label": "칼국수", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "639ad51b1c418e35d6a4-history", - "label": "설렁탕(곰탕)", - "amount": 8000, + "id": "93463639461e1320ffdf-history", + "label": "칼짜장면", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54596,65 +55292,65 @@ "comments": [] }, { - "id": "goodprice-2550", - "name": "행복칼국수", - "businessName": "행복칼국수", + "id": "goodprice-15973", + "name": "돌솥밥 수", + "businessName": "돌솥밥 수", "categorySlug": "korean", - "address": "대전광역시 동구 대전로 815번길 15 (정동)", - "district": "대전광역시 동구", - "latitude": 36.3326785842423, - "longitude": 127.43143840488, - "representativePriceAmount": 7000, - "representativePriceLabel": "칼국수", + "address": "경상남도 창원시 의창구 용지로293번길 21 (사림동) 돌솥밥 수", + "district": "경상남도 창원시", + "latitude": 35.240281774923226, + "longitude": 128.68795184702972, + "representativePriceAmount": 10000, + "representativePriceLabel": "돌솥밥 정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-222-9632 / 영업시간: 11:00 ~ 21:00 / 매주 토요일, 일요일 정기 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥밥 정식 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-261-2905", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "85826c93b518dcb13680", - "label": "칼국수", - "amount": 7000, + "id": "a6ec06a067ff7bcaadc7", + "label": "돌솥밥 정식", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7551a073af7bcc0e91b4", - "label": "비빔국수", - "amount": 7000, + "id": "9a98f1d599567ecafdd7", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5df7ddf22383b2f4fb35", - "label": "콩국수", - "amount": 7000, + "id": "6471886fc4c35ee3cb41", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "85826c93b518dcb13680-history", - "label": "칼국수", - "amount": 7000, + "id": "a6ec06a067ff7bcaadc7-history", + "label": "돌솥밥 정식", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7551a073af7bcc0e91b4-history", - "label": "비빔국수", - "amount": 7000, + "id": "9a98f1d599567ecafdd7-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5df7ddf22383b2f4fb35-history", - "label": "콩국수", - "amount": 7000, + "id": "6471886fc4c35ee3cb41-history", + "label": "순두부찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54662,51 +55358,37 @@ "comments": [] }, { - "id": "goodprice-2538", - "name": "헤어코리아미용실", - "businessName": "헤어코리아미용실", - "categorySlug": "beauty", - "address": "대전광역시 동구 한남로 7번길 87 (홍도동)", - "district": "대전광역시 동구", - "latitude": 36.3477117403251, - "longitude": 127.429378780645, - "representativePriceAmount": 9000, - "representativePriceLabel": "미용료(커트)", + "id": "goodprice-19376", + "name": "금복이네", + "businessName": "금복이네", + "categorySlug": "korean", + "address": "서울특별시 강북구 인수봉로 195 (수유동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.63716551521585, + "longitude": 127.01277501851514, + "representativePriceAmount": 7000, + "representativePriceLabel": "백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1376-0694 / 영업시간: 09:00 ~ 19:00 매주 수요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e16480b97b402592f8a5", - "label": "미용료(커트)", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3bbc188fcc70bfd1247e", - "label": "커트(성인 일반)", - "amount": 9000, + "id": "9f312edba9eff7cdab80", + "label": "백반", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e16480b97b402592f8a5-history", - "label": "미용료(커트)", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3bbc188fcc70bfd1247e-history", - "label": "커트(성인 일반)", - "amount": 9000, + "id": "9f312edba9eff7cdab80-history", + "label": "백반", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54714,41 +55396,41 @@ "comments": [] }, { - "id": "goodprice-13383", - "name": "헤어코리아착한나눔", - "businessName": "헤어코리아착한나눔", - "categorySlug": "beauty", - "address": "대전광역시 동구 대전로797번길 38 (중동) 중동 27-33", - "district": "대전광역시 동구", - "latitude": 36.33006491325828, - "longitude": 127.43082686518471, - "representativePriceAmount": 6000, - "representativePriceLabel": "미용료(커트)", + "id": "goodprice-7121", + "name": "김희선제주몸국", + "businessName": "김희선제주몸국", + "categorySlug": "korean", + "address": "제주특별자치도 제주시 어영길 45-6 1층(용담삼동)", + "district": "제주특별자치도 제주시", + "latitude": 33.5185567991117, + "longitude": 126.49807778062, + "representativePriceAmount": 9000, + "representativePriceLabel": "몸국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 미용료(커트) 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-274-2221 / 영업시간: 10:00~18:00 / 일요일 휴무 / 수요일은 봉사활동으로 인해 13:00부터 시작", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 몸국 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-745-0047 / 영업시간: 목 07:00-16:00 15:40라스트오더 금 07:00-16:00 15:40라스트오더 토 07:00-15:00 14:40라스트오더 일 정기휴무(매주일요일) 월 07:00-16:00 15:40라스트오더 화 07:00-16:00 15:40라스트오더 수 07:00-16:00 15:40라스트오더", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3f63e1697ea83a2d8c6a", - "label": "미용료(커트)", - "amount": 6000, + "id": "8c8ace33d8347cae2949", + "label": "몸국", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7ef211ae4292a7655c4c", - "label": "미용료(커트 65세 이상)", - "amount": 3000, + "id": "a0afc4424070607b609e", + "label": "고사리육개장", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b107723ba1db52deee7a", - "label": "염색(성인 일반)", + "id": "8f394ca05bd3322806ae", + "label": "고등어구이", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -54756,22 +55438,22 @@ ], "history": [ { - "id": "3f63e1697ea83a2d8c6a-history", - "label": "미용료(커트)", - "amount": 6000, + "id": "8c8ace33d8347cae2949-history", + "label": "몸국", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7ef211ae4292a7655c4c-history", - "label": "미용료(커트 65세 이상)", - "amount": 3000, + "id": "a0afc4424070607b609e-history", + "label": "고사리육개장", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b107723ba1db52deee7a-history", - "label": "염색(성인 일반)", + "id": "8f394ca05bd3322806ae-history", + "label": "고등어구이", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -54780,51 +55462,37 @@ "comments": [] }, { - "id": "goodprice-17496", - "name": "샤브리브", - "businessName": "샤브리브", - "categorySlug": "japanese", - "address": "울산광역시 남구 대공원입구로21번길 27 (옥동) 1층", - "district": "울산광역시 남구", - "latitude": 35.5341764411374, - "longitude": 129.29127740367105, - "representativePriceAmount": 9000, - "representativePriceLabel": "얼큰육수샤브", + "id": "goodprice-17927", + "name": "다온한식", + "businessName": "다온한식", + "categorySlug": "korean", + "address": "서울특별시 강북구 솔매로 84 (미아동) 지하1층", + "district": "서울특별시 강북구", + "latitude": 37.624988231653774, + "longitude": 127.02161847748827, + "representativePriceAmount": 7500, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 일식 업소입니다. 대표 항목은 얼큰육수샤브 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1377-2688 / 영업시간: 11:00~20:30 (14:30~15:30 브레이크타임, 19:50 라스트오더)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1421-0747", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a1c314783c0c59c98953", - "label": "얼큰육수샤브", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ae77cdea71bd69641d5d", - "label": "맑은육수샤브", - "amount": 8500, + "id": "443d514b13842ab9c10c", + "label": "한식뷔페", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a1c314783c0c59c98953-history", - "label": "얼큰육수샤브", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ae77cdea71bd69641d5d-history", - "label": "맑은육수샤브", - "amount": 8500, + "id": "443d514b13842ab9c10c-history", + "label": "한식뷔페", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54832,93 +55500,51 @@ "comments": [] }, { - "id": "goodprice-2905", - "name": "서울식당", - "businessName": "서울식당", + "id": "goodprice-14247", + "name": "꽃가마식당", + "businessName": "꽃가마식당", "categorySlug": "korean", - "address": "울산광역시 남구 중앙로258번길 7", - "district": "울산광역시 남구", - "latitude": 35.5440882982423, - "longitude": 129.311623070929, - "representativePriceAmount": 7000, - "representativePriceLabel": "김치,된장,순두부찌개", + "address": "제주특별자치도 제주시 신산로 97 (일도이동) 1층", + "district": "제주특별자치도 제주시", + "latitude": 33.50533987098967, + "longitude": 126.53587722621165, + "representativePriceAmount": 10000, + "representativePriceLabel": "갈비탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치,된장,순두부찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-271-5103 / 영업시간: 10:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 갈비탕 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-755-6454", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c2dfb438d6f573cb1bfe", - "label": "김치,된장,순두부찌개", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a4b8560a655f283647b1", - "label": "부대찌개", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bcf790a3b2dcb33c7dda", - "label": "추어탕", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "b7b332bbbd3388fffb1d", - "label": "김치,된장찌", - "amount": 7000, + "id": "2842c9b78ad0a6f496a7", + "label": "갈비탕", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8965c7d9fc82cea9a119", - "label": "산채비빔밥", - "amount": 7000, + "id": "0a0de8bdbeba3d67a2f1", + "label": "성게국", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c2dfb438d6f573cb1bfe-history", - "label": "김치,된장,순두부찌개", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a4b8560a655f283647b1-history", - "label": "부대찌개", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bcf790a3b2dcb33c7dda-history", - "label": "추어탕", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b7b332bbbd3388fffb1d-history", - "label": "김치,된장찌", - "amount": 7000, + "id": "2842c9b78ad0a6f496a7-history", + "label": "갈비탕", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8965c7d9fc82cea9a119-history", - "label": "산채비빔밥", - "amount": 7000, + "id": "0a0de8bdbeba3d67a2f1-history", + "label": "성게국", + "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -54926,27 +55552,27 @@ "comments": [] }, { - "id": "goodprice-18787", - "name": "선경기사식당", - "businessName": "선경기사식당", + "id": "goodprice-17923", + "name": "대중집", + "businessName": "대중집", "categorySlug": "korean", - "address": "울산광역시 남구 삼산로402번길 31 (삼산동) 1층", - "district": "울산광역시 남구", - "latitude": 35.53656890072942, - "longitude": 129.35102283113696, + "address": "서울특별시 강북구 도봉로 259 (수유동) 1층 14호", + "district": "서울특별시 강북구", + "latitude": 37.63153785991017, + "longitude": 127.02386424656332, "representativePriceAmount": 9000, - "representativePriceLabel": "순두부", + "representativePriceLabel": "순대국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-267-8487 / 영업시간: 07:00~22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-980-1565", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "53cd2c17dbd3e0ce226b", - "label": "순두부", + "id": "cb51592e190245ede56c", + "label": "순대국", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -54954,8 +55580,8 @@ ], "history": [ { - "id": "53cd2c17dbd3e0ce226b-history", - "label": "순두부", + "id": "cb51592e190245ede56c-history", + "label": "순대국", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -54964,37 +55590,65 @@ "comments": [] }, { - "id": "goodprice-14532", - "name": "샐러디치오도씨 수원성대점", - "businessName": "샐러디치오도씨 수원성대점", - "categorySlug": "western", - "address": "경기도 수원시 장안구 서부로2106번길 21 (율전동) 1층 4호", - "district": "경기도 수원시", - "latitude": 37.29725954060872, - "longitude": 126.97136033632337, - "representativePriceAmount": 6200, - "representativePriceLabel": "햄치즈샌드위치", + "id": "goodprice-1659", + "name": "전주식당", + "businessName": "전주식당", + "categorySlug": "korean", + "address": "부산광역시 중구 대청로 137번길9-1 (중앙동)", + "district": "부산광역시 중구", + "latitude": 35.1036816954121, + "longitude": 129.034881739077, + "representativePriceAmount": 9000, + "representativePriceLabel": "돌솥밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 햄치즈샌드위치 6,200원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-205-5636 / 영업시간: 10:00~20:00(토 10:00~15:00), 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돌솥밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-469-0771 / 영업시간: 월~금 : 10:00 - 22:00 영업 (토요일 09:00 - 20:00) 매주 일요일, 공휴일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "677bddde7f45624112c8", - "label": "햄치즈샌드위치", - "amount": 6200, + "id": "6380d09504c638ac270c", + "label": "돌솥밥", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8e1c0819cd6701320216", + "label": "돌솥비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2703c820694b1f08bfd9", + "label": "치즈밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "677bddde7f45624112c8-history", - "label": "햄치즈샌드위치", - "amount": 6200, + "id": "6380d09504c638ac270c-history", + "label": "돌솥밥", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8e1c0819cd6701320216-history", + "label": "돌솥비빔밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2703c820694b1f08bfd9-history", + "label": "치즈밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -55002,51 +55656,51 @@ "comments": [] }, { - "id": "goodprice-17115", - "name": "서서김밥", - "businessName": "서서김밥", + "id": "goodprice-126", + "name": "만미정 식당", + "businessName": "만미정 식당", "categorySlug": "korean", - "address": "경기도 수원시 영통구 매영로 33 (매탄동) 1층", - "district": "경기도 수원시", - "latitude": 37.26960250984764, - "longitude": 127.04648154679711, - "representativePriceAmount": 3000, - "representativePriceLabel": "야채김밥", + "address": "서울특별시 강북구 솔매로43길 96 1층", + "district": "서울특별시 강북구", + "latitude": 37.629930418149, + "longitude": 127.022840651737, + "representativePriceAmount": 7000, + "representativePriceLabel": "김치찌개백반", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 야채김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-214-6330 / 영업시간: 08:00~19:00 / 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개백반 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-983-8884", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3223e24f5271beaa9229", - "label": "야채김밥", - "amount": 3000, + "id": "a5a6bcdb852c8327a151", + "label": "김치찌개백반", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bfcdcce62c6f53fe5258", - "label": "라면", - "amount": 3000, + "id": "152128f3c93e83091cfd", + "label": "제육덮밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3223e24f5271beaa9229-history", - "label": "야채김밥", - "amount": 3000, + "id": "a5a6bcdb852c8327a151-history", + "label": "김치찌개백반", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bfcdcce62c6f53fe5258-history", - "label": "라면", - "amount": 3000, + "id": "152128f3c93e83091cfd-history", + "label": "제육덮밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -55054,116 +55708,92 @@ "comments": [] }, { - "id": "goodprice-16798", - "name": "서울한우 홈플러스 북수원점", - "businessName": "서울한우 홈플러스 북수원점", + "id": "goodprice-19098", + "name": "정가는집밥", + "businessName": "정가는집밥", "categorySlug": "korean", - "address": "경기도 수원시 장안구 경수대로 930 (조원동) 1층 X3YC호", - "district": "경기도 수원시", - "latitude": 37.30276736285418, - "longitude": 127.00880909013584, - "representativePriceAmount": 9900, - "representativePriceLabel": "얼큰한우국밥", + "address": "부산광역시 중구 동광길 28 (중앙동4가) 정가는집밥", + "district": "부산광역시 중구", + "latitude": 35.10397220382151, + "longitude": 129.03454710183587, + "representativePriceAmount": 8000, + "representativePriceLabel": "정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 얼큰한우국밥 9,900원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-241-9680 / 영업시간: 11:00~21:00 둘째주, 넷째주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 정식 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-240-1138 / 영업시간: 11:00~20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a8d42b1590012df1ff22", - "label": "얼큰한우국밥", - "amount": 9900, + "id": "e1cf6ea7dd56d76455e4", + "label": "정식", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4423a2c0f116eab17353", - "label": "맑은한우국밥", - "amount": 9900, + "id": "6ac87f3e7db63b89301d", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "39a0c28cf712adea8e34", - "label": "황태해장국", - "amount": 9900, + "id": "e84e2b10eec7bbe6248f", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "333a9d2a7b3d8dc65c26", - "label": "콩나물해장국", - "amount": 6900, + "id": "d2811fc177220df59686", + "label": "김치찌개", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8fedfddef91a71595301", + "label": "불고기백반", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a8d42b1590012df1ff22-history", - "label": "얼큰한우국밥", - "amount": 9900, + "id": "e1cf6ea7dd56d76455e4-history", + "label": "정식", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4423a2c0f116eab17353-history", - "label": "맑은한우국밥", - "amount": 9900, + "id": "6ac87f3e7db63b89301d-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "39a0c28cf712adea8e34-history", - "label": "황태해장국", - "amount": 9900, + "id": "e84e2b10eec7bbe6248f-history", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "333a9d2a7b3d8dc65c26-history", - "label": "콩나물해장국", - "amount": 6900, + "id": "d2811fc177220df59686-history", + "label": "김치찌개", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-3368", - "name": "서현대미용실", - "businessName": "서현대미용실", - "categorySlug": "beauty", - "address": "경기도 수원시 권선구 정조로576번길 3 (세류동)", - "district": "경기도 수원시", - "latitude": 37.2604055446764, - "longitude": 127.013461026266, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-232-6686 / 영업시간: 09:00~18:00 (화, 일요일 휴무)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "c68637fd9eff38156556", - "label": "커트", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "c68637fd9eff38156556-history", - "label": "커트", + "id": "8fedfddef91a71595301-history", + "label": "불고기백반", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -55172,51 +55802,51 @@ "comments": [] }, { - "id": "goodprice-13805", - "name": "원식이네손칼국수", - "businessName": "원식이네손칼국수", + "id": "goodprice-14614", + "name": "매일만나", + "businessName": "매일만나", "categorySlug": "korean", - "address": "강원특별자치도 춘천시 후석로 591 (소양로1가) 원식이네손칼국수", - "district": "강원특별자치도 춘천시", - "latitude": 37.89357805500181, - "longitude": 127.7279325507315, + "address": "서울특별시 강북구 삼양로117길 58 (수유동) 1층, 101호", + "district": "서울특별시 강북구", + "latitude": 37.64433983244436, + "longitude": 127.01324475206988, "representativePriceAmount": 8000, - "representativePriceLabel": "해물칼국수", + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 해물칼국수 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-257-5652", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-8234-0431", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ca98d1564b0a134dc5d8", - "label": "해물칼국수", + "id": "cbdab638fffecdabe87b", + "label": "칼국수", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6ff21def3ddc21e56364", - "label": "콩나물밥", - "amount": 7000, + "id": "a50282c1b632249fb3ea", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ca98d1564b0a134dc5d8-history", - "label": "해물칼국수", + "id": "cbdab638fffecdabe87b-history", + "label": "칼국수", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6ff21def3ddc21e56364-history", - "label": "콩나물밥", - "amount": 7000, + "id": "a50282c1b632249fb3ea-history", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -55224,37 +55854,37 @@ "comments": [] }, { - "id": "goodprice-16647", - "name": "이레미용실", - "businessName": "이레미용실", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 효석로67번길 18-1 (석사동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.86191645758754, - "longitude": 127.73930830005943, - "representativePriceAmount": 8000, - "representativePriceLabel": "커트", + "id": "goodprice-17980", + "name": "지정식당", + "businessName": "지정식당", + "categorySlug": "korean", + "address": "대구광역시 중구 중앙대로58길 10 (남산동) 남산동", + "district": "대구광역시 중구", + "latitude": 35.85740112997052, + "longitude": 128.59163907520352, + "representativePriceAmount": 6000, + "representativePriceLabel": "순두부", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-427-8322 / 영업시간: 월~토 10:00~21:00 매주 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e30690a1a3b340c63140", - "label": "커트", - "amount": 8000, + "id": "2f9467ebc816cc3b1d5c", + "label": "순두부", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e30690a1a3b340c63140-history", - "label": "커트", - "amount": 8000, + "id": "2f9467ebc816cc3b1d5c-history", + "label": "순두부", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -55262,113 +55892,51 @@ "comments": [] }, { - "id": "goodprice-15518", - "name": "민들레식당", - "businessName": "민들레식당", + "id": "goodprice-130", + "name": "박가네생고기전문점", + "businessName": "박가네생고기전문점", "categorySlug": "korean", - "address": "충청북도 청주시 상당구 대성로 57 (서운동) (민들레식당)", - "district": "충청북도 청주시", - "latitude": 36.63047211931871, - "longitude": 127.49290793289809, - "representativePriceAmount": 7000, - "representativePriceLabel": "된장찌개(백반)", + "address": "서울특별시 강북구 덕릉로28길 63 1층", + "district": "서울특별시 강북구", + "latitude": 37.6319258777596, + "longitude": 127.024843649663, + "representativePriceAmount": 9000, + "representativePriceLabel": "소고기비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개(백반) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-255-3028", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소고기비빔밥 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-982-2929 / 영업시간: 매일 10:30-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "38423196e8e9dddac625", - "label": "된장찌개(백반)", - "amount": 7000, + "id": "ac9729447fab55986cbf", + "label": "소고기비빔밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "38423196e8e9dddac625-history", - "label": "된장찌개(백반)", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4733", - "name": "박현순헤어", - "businessName": "박현순헤어", - "categorySlug": "beauty", - "address": "충청북도 청주시 청원구 율봉로159번길 48-20 1층(율량동)", - "district": "충청북도 청주시", - "latitude": 36.6705031580318, - "longitude": 127.486655068416, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-211-7623 / 영업시간: 매일 09:00-21:00 매주 화요일 정기휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "072781778af915729c5f", - "label": "커트", - "amount": 10000, + "id": "0d233f5da547bc987478", + "label": "청국장", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "072781778af915729c5f-history", - "label": "커트", - "amount": 10000, + "id": "ac9729447fab55986cbf-history", + "label": "소고기비빔밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14743", - "name": "백합미용실", - "businessName": "백합미용실", - "categorySlug": "beauty", - "address": "충청북도 청주시 상당구 당산로 10-1 (대성동)", - "district": "충청북도 청주시", - "latitude": 36.6330216282411, - "longitude": 127.4969961822045, - "representativePriceAmount": 7000, - "representativePriceLabel": "커트(남성)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(남성) 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-224-8890 / 영업시간: 매일09:00-19:00 ※매주 일요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "e3f19f5bcb6ed9237676", - "label": "커트(남성)", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "e3f19f5bcb6ed9237676-history", - "label": "커트(남성)", - "amount": 7000, + "id": "0d233f5da547bc987478-history", + "label": "청국장", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -55376,51 +55944,51 @@ "comments": [] }, { - "id": "goodprice-15577", - "name": "스탠바이커피", - "businessName": "스탠바이커피", - "categorySlug": "other-food", - "address": "충청남도 천안시 서북구 불당21로 67-18 (불당동) 114호", - "district": "충청남도 천안시", - "latitude": 36.81404962232316, - "longitude": 127.10850447130197, - "representativePriceAmount": 2000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-2015", + "name": "천선루", + "businessName": "천선루", + "categorySlug": "chinese", + "address": "대구광역시 중구 대봉로 261-1 (봉산동)", + "district": "대구광역시 중구", + "latitude": 35.8618460883915, + "longitude": 128.600047477155, + "representativePriceAmount": 5500, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1384-6480 / 영업시간: 평일 08:00~22:00 주말 09:00~22:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-422-4222 / 영업시간: 매일 11:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "dfd248376453e106db7c", - "label": "아메리카노", - "amount": 2000, + "id": "de8080a658c318a727c9", + "label": "짜장면", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2957feec50ef46735b6c", - "label": "카페라떼", - "amount": 3300, + "id": "14820699c3c0b28f88f8", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "dfd248376453e106db7c-history", - "label": "아메리카노", - "amount": 2000, + "id": "de8080a658c318a727c9-history", + "label": "짜장면", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "2957feec50ef46735b6c-history", - "label": "카페라떼", - "amount": 3300, + "id": "14820699c3c0b28f88f8-history", + "label": "짬뽕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -55428,27 +55996,27 @@ "comments": [] }, { - "id": "goodprice-18725", - "name": "시골손칼국수", - "businessName": "시골손칼국수", - "categorySlug": "korean", - "address": "충청남도 천안시 동남구 사직로 28-1 (사직동) 시골손칼국수", - "district": "충청남도 천안시", - "latitude": 36.802628752680896, - "longitude": 127.14939807826286, + "id": "goodprice-19037", + "name": "방가네 해물짬뽕", + "businessName": "방가네 해물짬뽕", + "categorySlug": "chinese", + "address": "서울특별시 강북구 오패산로 135 (미아동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.61391220980939, + "longitude": 127.0337605934294, "representativePriceAmount": 5000, - "representativePriceLabel": "칼국수", + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-556-6181", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-988-4005", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "817284cd7e2f457f647f", - "label": "칼국수", + "id": "2e85300012c7c3f9ba37", + "label": "짜장면", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -55456,8 +56024,8 @@ ], "history": [ { - "id": "817284cd7e2f457f647f-history", - "label": "칼국수", + "id": "2e85300012c7c3f9ba37-history", + "label": "짜장면", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -55466,65 +56034,51 @@ "comments": [] }, { - "id": "goodprice-4954", - "name": "쌍용동사진관", - "businessName": "쌍용동사진관", - "categorySlug": "other-service", - "address": "충청남도 천안시 서북구 미라3길 27 (쌍용동)", - "district": "충청남도 천안시", - "latitude": 36.8021171826636, - "longitude": 127.130754046358, - "representativePriceAmount": 10000, - "representativePriceLabel": "반명함", + "id": "goodprice-10070", + "name": "춘사김밥", + "businessName": "춘사김밥", + "categorySlug": "korean", + "address": "대구광역시 중구 중앙대로 282 (남산동)", + "district": "대구광역시 중구", + "latitude": 35.8583288163274, + "longitude": 128.591617516822, + "representativePriceAmount": 3000, + "representativePriceLabel": "참치김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 반명함 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-571-9182 / 영업시간: 09:00~20:00 설명절 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 참치김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-423-7827", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "54659a3def3dbed4bb9c", - "label": "반명함", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e6525b594c56f2a3c29e", - "label": "증명사진", - "amount": 10000, + "id": "f6f6ceae52993a1da95d", + "label": "참치김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f2ee2b1e150a2d8c2189", - "label": "반명함(메일전송포함)", - "amount": 10000, + "id": "ba3409f5bb110e88b6cf", + "label": "진미김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "54659a3def3dbed4bb9c-history", - "label": "반명함", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e6525b594c56f2a3c29e-history", - "label": "증명사진", - "amount": 10000, + "id": "f6f6ceae52993a1da95d-history", + "label": "참치김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f2ee2b1e150a2d8c2189-history", - "label": "반명함(메일전송포함)", - "amount": 10000, + "id": "ba3409f5bb110e88b6cf-history", + "label": "진미김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -55532,37 +56086,37 @@ "comments": [] }, { - "id": "goodprice-5177", - "name": "머리박사", - "businessName": "머리박사", - "categorySlug": "beauty", - "address": "전북특별자치도 군산시 문화로36 203호", - "district": "전북특별자치도 군산시", - "latitude": 35.9694641851937, - "longitude": 126.709955551767, - "representativePriceAmount": 9000, - "representativePriceLabel": "남성커트", + "id": "goodprice-131", + "name": "번동식당", + "businessName": "번동식당", + "categorySlug": "korean", + "address": "서울특별시 강북구 덕릉로40길 11 (번동)", + "district": "서울특별시 강북구", + "latitude": 37.634609946891, + "longitude": 127.030469782574, + "representativePriceAmount": 5000, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성커트 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-462-9680 / 영업시간: 월~토(매주 일요일 휴무) 09:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-985-0370", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3d4c56471cff8aa53502", - "label": "남성커트", - "amount": 9000, + "id": "c8bb7beb01c69aa4aaaf", + "label": "한식뷔페", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3d4c56471cff8aa53502-history", - "label": "남성커트", - "amount": 9000, + "id": "c8bb7beb01c69aa4aaaf-history", + "label": "한식뷔페", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -55570,187 +56124,117 @@ "comments": [] }, { - "id": "goodprice-5191", - "name": "명산칼국수", - "businessName": "명산칼국수", + "id": "goodprice-17981", + "name": "콩나물과시래기밥맛집", + "businessName": "콩나물과시래기밥맛집", "categorySlug": "korean", - "address": "전북특별자치도 군산시 오룡로 57-2 명산동", - "district": "전북특별자치도 군산시", - "latitude": 35.9825246812404, - "longitude": 126.709954003925, - "representativePriceAmount": 6000, - "representativePriceLabel": "바지락칼국수", + "address": "대구광역시 중구 약령길 58-7 (장관동) 1층", + "district": "대구광역시 중구", + "latitude": 35.86881460101817, + "longitude": 128.5898667124599, + "representativePriceAmount": 7000, + "representativePriceLabel": "콩나물국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 바지락칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-468-1470 / 영업시간: 월~토(매주 일요일 휴무) 10:30~15:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1342-9756 / 영업시간: 월~토 11:00~21:00 매주 일요일 정기휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "37598debeab1d4735673", - "label": "바지락칼국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "af2f50198cfba0009b7f", - "label": "팥칼국수", + "id": "9c4fbf16da3528bc8ea0", + "label": "콩나물국밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "934639f7a475aa5dd3be", - "label": "검은콩국수", + "id": "d4d18bee457d5874d5a3", + "label": "콩나물비빔밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "39f70c86af2b759664c2", - "label": "새알팥죽", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "93dad04f8bc986f19ae2", - "label": "왕만두(3개)", - "amount": 5000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "37598debeab1d4735673-history", - "label": "바지락칼국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "af2f50198cfba0009b7f-history", - "label": "팥칼국수", + "id": "9c4fbf16da3528bc8ea0-history", + "label": "콩나물국밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "934639f7a475aa5dd3be-history", - "label": "검은콩국수", + "id": "d4d18bee457d5874d5a3-history", + "label": "콩나물비빔밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "39f70c86af2b759664c2-history", - "label": "새알팥죽", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "93dad04f8bc986f19ae2-history", - "label": "왕만두(3개)", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-5707", - "name": "돈까스천국", - "businessName": "돈까스천국", - "categorySlug": "western", - "address": "전라남도 여수시 통제영3길 14 (교동)", - "district": "전라남도 여수시", - "latitude": 34.7413896058147, - "longitude": 127.734325663512, - "representativePriceAmount": 10000, - "representativePriceLabel": "돈까스", + "id": "goodprice-15948", + "name": "빵과함께", + "businessName": "빵과함께", + "categorySlug": "bakery", + "address": "서울특별시 강북구 인수봉로77길 15 (수유동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.64433520421588, + "longitude": 127.0098808230791, + "representativePriceAmount": 700, + "representativePriceLabel": "단팥빵", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 돈까스 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-662-0239 / 영업시간: 11시 - 20시", + "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 단팥빵 700원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-900-8503", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "de52dfd423decf62b66a", - "label": "돈까스", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "10d5e78261f13944274e", - "label": "오므라이스", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f3f3a0a7ed068bc732d7", - "label": "등심돈가스", - "amount": 10000, + "id": "a15de91a7fb0385f4822", + "label": "단팥빵", + "amount": 700, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "831272d9ff483cc1084e", - "label": "스파게티", - "amount": 8000, + "id": "c2d2ad651bac69aa97ca", + "label": "슈크림빵", + "amount": 700, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1e0e93be8f248f37a070", - "label": "치즈스파게티", - "amount": 9000, + "id": "d81b8901000d811bdb00", + "label": "소보로빵", + "amount": 700, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "de52dfd423decf62b66a-history", - "label": "돈까스", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "10d5e78261f13944274e-history", - "label": "오므라이스", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f3f3a0a7ed068bc732d7-history", - "label": "등심돈가스", - "amount": 10000, + "id": "a15de91a7fb0385f4822-history", + "label": "단팥빵", + "amount": 700, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "831272d9ff483cc1084e-history", - "label": "스파게티", - "amount": 8000, + "id": "c2d2ad651bac69aa97ca-history", + "label": "슈크림빵", + "amount": 700, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1e0e93be8f248f37a070-history", - "label": "치즈스파게티", - "amount": 9000, + "id": "d81b8901000d811bdb00-history", + "label": "소보로빵", + "amount": 700, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -55758,341 +56242,89 @@ "comments": [] }, { - "id": "goodprice-5708", - "name": "돈뗄", - "businessName": "돈뗄", - "categorySlug": "western", - "address": "전라남도 여수시 양지1길 30 1층(미평동)", - "district": "전라남도 여수시", - "latitude": 34.7727185677749, - "longitude": 127.702281894777, - "representativePriceAmount": 9000, - "representativePriceLabel": "수제돈가스", + "id": "goodprice-2227", + "name": "장터삼겹살(신흥)", + "businessName": "장터삼겹살(신흥)", + "categorySlug": "korean", + "address": "인천광역시 중구 서해대로454번길 11-3 (선화동)", + "district": "인천광역시 중구", + "latitude": 37.466061476741, + "longitude": 126.635998763313, + "representativePriceAmount": 10000, + "representativePriceLabel": "삼겹살(200g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 수제돈가스 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-652-2760 / 영업시간: 매일 10:30-21:30 14:30-15:30브레이크타임", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살(200g) 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-887-5355 / 영업시간: 16:00~24:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fae05591f5d7da2fb96a", - "label": "수제돈가스", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6e1d3180181aa9b7a5c7", - "label": "치즈돈까스", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "c9501d2cc2dd39376973", - "label": "돈까스덮밥", - "amount": 9500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f061207d26e649f84bbe", - "label": "감자튀김", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "bb8bfc6c84ccd85e8bcb", - "label": "고구마치즈스틱(2p)", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "f905a9567c653df27eae", - "label": "공기밥", - "amount": 1000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ab61931c4f827e604c16", - "label": "로제파스타", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "9bc6c374f44841648ede", - "label": "새우볶음밥", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "7637809a073c8a57cd87", - "label": "새우크림파스타", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "a0cda05c0fa895ec348b", - "label": "새우토마토파스타", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "09f6a88a3d29223f67c0", - "label": "새우튀김(2p)", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "1d714964742b0ec1913c", - "label": "수제돈까스", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "90ad407af8b7ef4dde6c", - "label": "에비동(새우튀김덮밥)", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0d70e3e8b95261bb814a", - "label": "제육덮밥", - "amount": 8500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "021fe8e8e546c2042c9b", - "label": "치즈에비동(치즈새우튀김덮밥)", + "id": "8a312be1a55ed7b9af67", + "label": "삼겹살(200g)", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "86afb104a3acb34a72e4", - "label": "치킨까스", - "amount": 9500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "2f7f18f68038dd250455", - "label": "치킨팝콘(15p)", - "amount": 1500, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "271633af5f62c6fee41d", - "label": "크림파스타", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "e8a6d85a789b3c58a50d", - "label": "토마토파스타", + "id": "b643b8c17fd6e7672bd8", + "label": "냉면", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, - { - "id": "c5374b98c0f7afda2e62", - "label": "토핑돈까스", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" } ], "history": [ { - "id": "fae05591f5d7da2fb96a-history", - "label": "수제돈가스", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6e1d3180181aa9b7a5c7-history", - "label": "치즈돈까스", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "c9501d2cc2dd39376973-history", - "label": "돈까스덮밥", - "amount": 9500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f061207d26e649f84bbe-history", - "label": "감자튀김", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "bb8bfc6c84ccd85e8bcb-history", - "label": "고구마치즈스틱(2p)", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "f905a9567c653df27eae-history", - "label": "공기밥", - "amount": 1000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ab61931c4f827e604c16-history", - "label": "로제파스타", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "9bc6c374f44841648ede-history", - "label": "새우볶음밥", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "7637809a073c8a57cd87-history", - "label": "새우크림파스타", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "a0cda05c0fa895ec348b-history", - "label": "새우토마토파스타", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "09f6a88a3d29223f67c0-history", - "label": "새우튀김(2p)", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "1d714964742b0ec1913c-history", - "label": "수제돈까스", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "90ad407af8b7ef4dde6c-history", - "label": "에비동(새우튀김덮밥)", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "0d70e3e8b95261bb814a-history", - "label": "제육덮밥", - "amount": 8500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "021fe8e8e546c2042c9b-history", - "label": "치즈에비동(치즈새우튀김덮밥)", + "id": "8a312be1a55ed7b9af67-history", + "label": "삼겹살(200g)", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "86afb104a3acb34a72e4-history", - "label": "치킨까스", - "amount": 9500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "2f7f18f68038dd250455-history", - "label": "치킨팝콘(15p)", - "amount": 1500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "271633af5f62c6fee41d-history", - "label": "크림파스타", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "e8a6d85a789b3c58a50d-history", - "label": "토마토파스타", + "id": "b643b8c17fd6e7672bd8-history", + "label": "냉면", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "c5374b98c0f7afda2e62-history", - "label": "토핑돈까스", - "amount": 10000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-5760", - "name": "돈사랑", - "businessName": "돈사랑", + "id": "goodprice-128", + "name": "음밥협동조합", + "businessName": "음밥협동조합", "categorySlug": "korean", - "address": "전라남도 여수시 중앙로 93-2 (중앙동)", - "district": "전라남도 여수시", - "latitude": 34.7393455980908, - "longitude": 127.737831078851, - "representativePriceAmount": 10000, - "representativePriceLabel": "백반", + "address": "서울특별시 강북구 솔매로50길 78 1층(미아동)", + "district": "서울특별시 강북구", + "latitude": 37.6230889892574, + "longitude": 127.02810939564, + "representativePriceAmount": 8000, + "representativePriceLabel": "오늘의 메뉴", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-663-0866 / 영업시간: 월-토 04:00-10:00 일요일휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 오늘의 메뉴 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-992-2048 / 영업시간: 레디투잇 10:00 ~ 17:00 해피밀 11:00 ~ 15:00 토/일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "3c4a2d75c0c9f95c47fe", - "label": "백반", - "amount": 10000, + "id": "9193d7bc867b8fcadaf9", + "label": "오늘의 메뉴", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "3c4a2d75c0c9f95c47fe-history", - "label": "백반", - "amount": 10000, + "id": "9193d7bc867b8fcadaf9-history", + "label": "오늘의 메뉴", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -56100,41 +56332,34 @@ "comments": [] }, { - "id": "goodprice-6439", - "name": "롯데이용소", - "businessName": "롯데이용소", - "categorySlug": "barber", - "address": "경상북도 포항시 북구 두호로 19-11", - "district": "경상북도 포항시", - "latitude": 36.0594247293204, - "longitude": 129.376181188119, - "representativePriceAmount": 8000, - "representativePriceLabel": "남자커트", + "id": "goodprice-2228", + "name": "장터삼겹살(연안)", + "businessName": "장터삼겹살(연안)", + "categorySlug": "korean", + "address": "인천광역시 중구 연안부두로53번길 31 (항동7가)", + "district": "인천광역시 중구", + "latitude": 37.4534364723169, + "longitude": 126.604052571574, + "representativePriceAmount": 9000, + "representativePriceLabel": "삼겹살 (180g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 이용업 업소입니다. 대표 항목은 남자커트 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-247-8775 / 영업시간: 9시~19시 매주 일요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 삼겹살 (180g) 9,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-882-6880 / 영업시간: 15:00~23:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ac970527b40239978a5d", - "label": "남자커트", - "amount": 8000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "36f713163b2b92a7e30a", - "label": "염색", - "amount": 10000, + "id": "bcd88fde243b5377c6dd", + "label": "삼겹살 (180g)", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "841a34430ffa843185f0", - "label": "기타 성인조발", + "id": "de2afa9a2eb156f749e8", + "label": "냉면", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -56142,22 +56367,15 @@ ], "history": [ { - "id": "ac970527b40239978a5d-history", - "label": "남자커트", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "36f713163b2b92a7e30a-history", - "label": "염색", - "amount": 10000, + "id": "bcd88fde243b5377c6dd-history", + "label": "삼겹살 (180g)", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "841a34430ffa843185f0-history", - "label": "기타 성인조발", + "id": "de2afa9a2eb156f749e8-history", + "label": "냉면", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -56166,1227 +56384,793 @@ "comments": [] }, { - "id": "goodprice-6311", - "name": "루머팡", - "businessName": "루머팡", + "id": "goodprice-111", + "name": "카페스타", + "businessName": "카페스타", "categorySlug": "other-food", - "address": "경상북도 포항시 남구 오천읍 장기로1690번길 5 다동 5호", - "district": "경상북도 포항시", - "latitude": 35.9660455313984, - "longitude": 129.417540251313, - "representativePriceAmount": 3000, - "representativePriceLabel": "아메리카노", + "address": "서울특별시 강북구 삼각산로 71 1층", + "district": "서울특별시 강북구", + "latitude": 37.6401225859536, + "longitude": 127.012279522984, + "representativePriceAmount": 2500, + "representativePriceLabel": "원두커피", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 평일 09시~18시", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 원두커피 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 금 08:00-21:00 토 09:00-21:00 일 정기휴무(매주일요일) 월 08:00-21:00 화 08:00-21:00 수 08:00-21:00 목 08:00-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "09cc97a096674fc3c3c2", - "label": "아메리카노", + "id": "7e2000f23c2bb54a64ae", + "label": "원두커피", + "amount": 2500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fcb41ee6190101afe927", + "label": "유기농캐모마일", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "5d129d7c7026b6cbc611", + "label": "구운계란 (3ea)", + "amount": 2000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b8102d08425e08c476f8", + "label": "녹차라떼", + "amount": 4300, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "625b2c9e899edc46340d", + "label": "녹차프라푸치노", + "amount": 4800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "8810766e59d0faa48414", + "label": "달고나 카페라떼", + "amount": 4800, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "983add8f8134cb689dc1", + "label": "달콤한 츄러스", "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e5d9a5027eb130ab7803", - "label": "카페라떼", - "amount": 4500, + "id": "8a99221301441db9889e", + "label": "디카페인콜드브루", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "09cc97a096674fc3c3c2-history", - "label": "아메리카노", - "amount": 3000, + "id": "bae15128621d1e9fb8b9", + "label": "디카페인콜드브루라떼", + "amount": 4300, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "e5d9a5027eb130ab7803-history", - "label": "카페라떼", - "amount": 4500, + "id": "bbe061a3925ee9cf0bd8", + "label": "딸기스무디", + "amount": 4300, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-6803", - "name": "삼포복집", - "businessName": "삼포복집", - "categorySlug": "korean", - "address": "경상남도 창원시 성산구 용지로 78 2층 5호(중앙동,남선상가)", - "district": "경상남도 창원시", - "latitude": 35.2227526441192, - "longitude": 128.676906326096, - "representativePriceAmount": 9000, - "representativePriceLabel": "지리", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 지리 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-281-3535", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "f6f7db28aa02876f40db", - "label": "지리", - "amount": 9000, + "id": "e2992209b65f4c5ae03c", + "label": "딸기요거트스무디", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "eb399955ef83af63a06e", - "label": "매운탕", - "amount": 9000, + "id": "44bd1da96d0f55ad9d3c", + "label": "레드자몽차", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8d7a51c23d0535d980c6", - "label": "불고기", - "amount": 10000, + "id": "71cfa2978a88871c59a0", + "label": "레몬생강차", + "amount": 4800, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "f6f7db28aa02876f40db-history", - "label": "지리", - "amount": 9000, + "id": "11a34ab895e5c76e7af6", + "label": "레몬아이스티", + "amount": 3000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "eb399955ef83af63a06e-history", - "label": "매운탕", - "amount": 9000, + "id": "766d7399585b5b50c232", + "label": "레몬에이드", + "amount": 4500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "8d7a51c23d0535d980c6-history", - "label": "불고기", - "amount": 10000, + "id": "601dbda6eab9438d4e28", + "label": "레몬차", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-10582", - "name": "새마을찌개나라", - "businessName": "새마을찌개나라", - "categorySlug": "korean", - "address": "경상남도 창원시 진해구 중원로85번길 13 103호(화천동, 평화빌라)", - "district": "경상남도 창원시", - "latitude": 35.1518273238499, - "longitude": 128.658677263667, - "representativePriceAmount": 10000, - "representativePriceLabel": "불고기정식", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 불고기정식 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-545-1134 / 영업시간: - 05:30 ~ 20:30 - 2, 4번째 금요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "0df45c5aa491c6b70cee", - "label": "불고기정식", - "amount": 10000, + "id": "8be06c8b319bc7941a83", + "label": "망고스무디", + "amount": 4300, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a7d8c0587b526cb3c289", - "label": "김치찌개", - "amount": 8000, + "id": "38aa546fded2dc930510", + "label": "모카프라프치노", + "amount": 4800, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "0df45c5aa491c6b70cee-history", - "label": "불고기정식", - "amount": 10000, + "id": "a3d849ea2c58a3fb109c", + "label": "밀크티라떼", + "amount": 4300, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "a7d8c0587b526cb3c289-history", - "label": "김치찌개", - "amount": 8000, + "id": "e22be7dbf4a1a8c129e7", + "label": "바나나주스", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18613", - "name": "새맛정 한식뷔페", - "businessName": "새맛정 한식뷔페", - "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 봉암공단로 26 (봉암동) 1층", - "district": "경상남도 창원시", - "latitude": 35.21671451783592, - "longitude": 128.60004187399605, - "representativePriceAmount": 6500, - "representativePriceLabel": "한식뷔페", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 6,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1459-0857 / 영업시간: 월~토 11:00 - 13:30 일 정기휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "e99add376a170c9ef2f5", - "label": "한식뷔페", - "amount": 6500, + "id": "86772825f3329e560136", + "label": "백향과(패션후루츠)에이드", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "e99add376a170c9ef2f5-history", - "label": "한식뷔페", - "amount": 6500, + "id": "c0f7d26eff3deca7d1d6", + "label": "백향과차(패션후루츠)", + "amount": 4500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16569", - "name": "서민갈비", - "businessName": "서민갈비", - "categorySlug": "korean", - "address": "경상남도 창원시 마산합포구 산호북18길 21 (산호동) 서민갈비", - "district": "경상남도 창원시", - "latitude": 35.220823467615624, - "longitude": 128.58465602110726, - "representativePriceAmount": 10000, - "representativePriceLabel": "돼지갈비(200g)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지갈비(200g) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-243-7171", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "293659120babf5364f96", - "label": "돼지갈비(200g)", - "amount": 10000, + "id": "422ded8802e20a8251d5", + "label": "복숭아아이스티", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3a31c9edf3b36d05ddf9", - "label": "생오겹살(130g)", - "amount": 9000, + "id": "fd798fd2798a0437c1d0", + "label": "블루베리+바나나주스", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "66894454b65d4278aa93", - "label": "우삼겹(100g)", + "id": "75177ab1cb078dc59735", + "label": "블루베리레몬에이드", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "293659120babf5364f96-history", - "label": "돼지갈비(200g)", - "amount": 10000, + "id": "196b3e12d03ee3f5ba4a", + "label": "블루베리요거트스무디", + "amount": 5500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "3a31c9edf3b36d05ddf9-history", - "label": "생오겹살(130g)", - "amount": 9000, + "id": "14077fdf72b92b0ef54b", + "label": "블루베리주스", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "66894454b65d4278aa93-history", - "label": "우삼겹(100g)", + "id": "01d528564c551beb42f8", + "label": "석류레몬에이드", "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14242", - "name": "만나빵집", - "businessName": "만나빵집", - "categorySlug": "bakery", - "address": "제주특별자치도 제주시 구좌읍 종달로5길 5-1 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.49324369426974, - "longitude": 126.89703211799348, - "representativePriceAmount": 2500, - "representativePriceLabel": "반미바게트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 베이커리 업소입니다. 대표 항목은 반미바게트 2,500원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-6701-1885", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "c314b2129be86861b317", - "label": "반미바게트", - "amount": 2500, + "id": "2ac5537de2b2cae1e783", + "label": "석류레몬차", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ba52f86cd7b8b44056c3", - "label": "소세지빵", - "amount": 3500, + "id": "c2ea97bfc6af42ba8af8", + "label": "에스프레소", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "c314b2129be86861b317-history", - "label": "반미바게트", - "amount": 2500, + "id": "026f6d43e68f61378444", + "label": "연유라떼", + "amount": 4300, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "ba52f86cd7b8b44056c3-history", - "label": "소세지빵", - "amount": 3500, + "id": "8544238834565fcbcd0f", + "label": "요거트스무디", + "amount": 4300, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-7139", - "name": "맛소", - "businessName": "맛소", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 원노형5길 5 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.4882010292329, - "longitude": 126.484560727674, - "representativePriceAmount": 9000, - "representativePriceLabel": "콩국수", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩국수 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-742-0455", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "0a6762de80010578ffc7", - "label": "콩국수", - "amount": 9000, + "id": "9b4a4d6a7fa504369136", + "label": "유기농 민트", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "883c848ccafce0ec59ca", - "label": "냉모밀", - "amount": 8000, + "id": "a1af38f296a0c84e73b1", + "label": "유기농 얼그레이", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "42b3ca0447ec856142b9", - "label": "어묵국밥", - "amount": 6000, + "id": "b2896a251e67d9515e0d", + "label": "유기농 캐모마일", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "1a98a58538527b0baf63", - "label": "우동", - "amount": 6000, + "id": "e79f6a316c8665a6308c", + "label": "유자모과차", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "0a6762de80010578ffc7-history", - "label": "콩국수", - "amount": 9000, + "id": "06eb1781b08657de9c81", + "label": "유자차", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "883c848ccafce0ec59ca-history", - "label": "냉모밀", - "amount": 8000, + "id": "1b212f7fcd8d4a47af4b", + "label": "유자쿨러", + "amount": 4300, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "42b3ca0447ec856142b9-history", - "label": "어묵국밥", - "amount": 6000, + "id": "6ab504a92068ccb32321", + "label": "자몽에이드", + "amount": 4500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "1a98a58538527b0baf63-history", - "label": "우동", - "amount": 6000, + "id": "c2860a1f2b1255b105ff", + "label": "자색고구마라떼", + "amount": 4300, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11266", - "name": "맠(makk)", - "businessName": "맠(makk)", - "categorySlug": "other-food", - "address": "제주특별자치도 제주시 진남로 6길 3 (주소변경)", - "district": "제주특별자치도 제주시", - "latitude": 33.5192267759866, - "longitude": 126.565536590436, - "representativePriceAmount": 2000, - "representativePriceLabel": "마카롱", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 마카롱 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "617802e965237a5d52a1", - "label": "마카롱", - "amount": 2000, + "id": "a499d9b4089363f795bd", + "label": "정통수제 와플", + "amount": 3800, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3d7ef8903d894ce0b871", - "label": "마카롱6구", - "amount": 10000, + "id": "12d15c6c5096d4c43647", + "label": "체리콕", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "617802e965237a5d52a1-history", - "label": "마카롱", - "amount": 2000, + "id": "86761b82af5e96da9d93", + "label": "초코", + "amount": 3800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "3d7ef8903d894ce0b871-history", - "label": "마카롱6구", - "amount": 10000, + "id": "5801f05cead4d082cc8e", + "label": "초코민트", + "amount": 4800, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-7140", - "name": "매콤명태촌", - "businessName": "매콤명태촌", - "categorySlug": "korean", - "address": "제주특별자치도 제주시 절물3길 7 1층", - "district": "제주특별자치도 제주시", - "latitude": 33.4918593353103, - "longitude": 126.433805337832, - "representativePriceAmount": 8000, - "representativePriceLabel": "황태해장국", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 황태해장국 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-743-6868 / 영업시간: 목 11:00-21:00 15:00-17:00브레이크타임 금 11:00-21:00 15:00-17:00브레이크타임 토 11:00-21:00 15:00-17:00브레이크타임 일 11:00-21:00 15:00-17:00브레이크타임 월 정기휴무(매주월요일) 화 11:00-21:00 15:00-17:00브레이크타임 수 11:00-21:00 15:00-17:00브레이크타임", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "cf1a38497c19df0d1ebb", - "label": "황태해장국", - "amount": 8000, + "id": "b9dcce95463e1e5c1ba3", + "label": "초코프라푸치노", + "amount": 4800, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "33b7d4bf17f8c8d629c9", - "label": "동태탕", - "amount": 9000, + "id": "2ba92b67fb87478989dd", + "label": "카라멜라떼", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "43f8c6a31ff4f4ff875e", - "label": "물 막국수", - "amount": 7000, + "id": "76c3679bd469ae23db2d", + "label": "카페모카", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "98ef67a8b0f7af68afbb", - "label": "계란찜", - "amount": 5000, + "id": "83c628e3234fcd494f00", + "label": "카페인콜드브루", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4982369892f088a6e9e6", - "label": "명태 비빔 막국수", - "amount": 8000, + "id": "4c1fb2d88bab1500c3ff", + "label": "카푸치노", + "amount": 3300, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "cf1a38497c19df0d1ebb-history", - "label": "황태해장국", - "amount": 8000, + "id": "ab70241a68c6eb0f74b1", + "label": "키위주스", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "33b7d4bf17f8c8d629c9-history", - "label": "동태탕", - "amount": 9000, + "id": "8047245a0a57dbb8b382", + "label": "풋귤에이드", + "amount": 4500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "43f8c6a31ff4f4ff875e-history", - "label": "물 막국수", - "amount": 7000, + "id": "91bc5ee8729c84c31dc0", + "label": "풋귤차", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "98ef67a8b0f7af68afbb-history", - "label": "계란찜", - "amount": 5000, + "id": "550bbd3c793387cd3c9f", + "label": "헤이즐넛라떼", + "amount": 3500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "4982369892f088a6e9e6-history", - "label": "명태 비빔 막국수", - "amount": 8000, + "id": "c8f5f526205835ff1295", + "label": "화이트모카", + "amount": 3500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-983", - "name": "민정이네", - "businessName": "민정이네", - "categorySlug": "korean", - "address": "서울특별시 중구 만리재로 37길 21 (만리동1가)", - "district": "서울특별시 중구", - "latitude": 37.5565915616197, - "longitude": 126.967168586088, - "representativePriceAmount": 7000, - "representativePriceLabel": "점심백반", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 점심백반 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-312-1420 / 영업시간: 월~금 08:00~14:00 토,일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "b72e3494a9f58c29ee29", - "label": "점심백반", - "amount": 7000, + "id": "e53d28e6d24a418f6320", + "label": "화이트초코", + "amount": 3800, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "b72e3494a9f58c29ee29-history", - "label": "점심백반", - "amount": 7000, + "id": "7e2000f23c2bb54a64ae-history", + "label": "원두커피", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-16086", - "name": "바재커피", - "businessName": "바재커피", - "categorySlug": "other-food", - "address": "서울특별시 중구 남대문시장8길 25 (남창동) 1층", - "district": "서울특별시 중구", - "latitude": 37.55934272418682, - "longitude": 126.97870933285441, - "representativePriceAmount": 2000, - "representativePriceLabel": "아메리카노(핫)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노(핫) 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-776-5577", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "ab8b361475e8dbbc2ce1", - "label": "아메리카노(핫)", - "amount": 2000, + "id": "fcb41ee6190101afe927-history", + "label": "유기농캐모마일", + "amount": 3000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "211e9752595ee7742041", - "label": "아메리카노(아이스)", - "amount": 2500, + "id": "5d129d7c7026b6cbc611-history", + "label": "구운계란 (3ea)", + "amount": 2000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "a9225f3ad913c374ab27", - "label": "카페라떼(핫)", - "amount": 3000, + "id": "b8102d08425e08c476f8-history", + "label": "녹차라떼", + "amount": 4300, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "ab8b361475e8dbbc2ce1-history", - "label": "아메리카노(핫)", - "amount": 2000, + "id": "625b2c9e899edc46340d-history", + "label": "녹차프라푸치노", + "amount": 4800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "211e9752595ee7742041-history", - "label": "아메리카노(아이스)", - "amount": 2500, + "id": "8810766e59d0faa48414-history", + "label": "달고나 카페라떼", + "amount": 4800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a9225f3ad913c374ab27-history", - "label": "카페라떼(핫)", + "id": "983add8f8134cb689dc1-history", + "label": "달콤한 츄러스", "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15377", - "name": "산과들그리고바다", - "businessName": "산과들그리고바다", - "categorySlug": "korean", - "address": "서울특별시 중구 을지로14길 22 (을지로3가) 1층", - "district": "서울특별시 중구", - "latitude": 37.56523732282778, - "longitude": 126.99202506646904, - "representativePriceAmount": 10000, - "representativePriceLabel": "모듬돌솥비빔밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 모듬돌솥비빔밥 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-2277-7887", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "15865c8ac17abc91e31c", - "label": "모듬돌솥비빔밥", - "amount": 10000, + "id": "8a99221301441db9889e-history", + "label": "디카페인콜드브루", + "amount": 3500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "15865c8ac17abc91e31c-history", - "label": "모듬돌솥비빔밥", - "amount": 10000, + "id": "bae15128621d1e9fb8b9-history", + "label": "디카페인콜드브루라떼", + "amount": 4300, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1402", - "name": "부원", - "businessName": "부원", - "categorySlug": "chinese", - "address": "부산광역시 서구 구덕로157번길 6 (토성동3가)", - "district": "부산광역시 서구", - "latitude": 35.0987972600376, - "longitude": 129.01970425062, - "representativePriceAmount": 4000, - "representativePriceLabel": "짜장면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-256-0061 / 영업시간: 11:00~19:00 매달 셋째주 금요일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "3fce4be961edd65cb4b5", - "label": "짜장면", - "amount": 4000, + "id": "bbe061a3925ee9cf0bd8-history", + "label": "딸기스무디", + "amount": 4300, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "da5b9552f3e8435cbd1c", - "label": "짬뽕", - "amount": 6000, + "id": "e2992209b65f4c5ae03c-history", + "label": "딸기요거트스무디", + "amount": 5500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "3fce4be961edd65cb4b5-history", - "label": "짜장면", + "id": "44bd1da96d0f55ad9d3c-history", + "label": "레드자몽차", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "da5b9552f3e8435cbd1c-history", - "label": "짬뽕", - "amount": 6000, + "id": "71cfa2978a88871c59a0-history", + "label": "레몬생강차", + "amount": 4800, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18716", - "name": "북경반점", - "businessName": "북경반점", - "categorySlug": "chinese", - "address": "부산광역시 서구 충무대로 64 (암남동, 송도삼정비치) 북경반점", - "district": "부산광역시 서구", - "latitude": 35.07836072507977, - "longitude": 129.01969618711593, - "representativePriceAmount": 7000, - "representativePriceLabel": "간짜장", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 간짜장 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-244-8454", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "3d2fe3b32e87a2cdffeb", - "label": "간짜장", - "amount": 7000, + "id": "11a34ab895e5c76e7af6-history", + "label": "레몬아이스티", + "amount": 3000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "fdabdf8070b0ec28639b", - "label": "짬뽕", - "amount": 7000, + "id": "766d7399585b5b50c232-history", + "label": "레몬에이드", + "amount": 4500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, + { + "id": "601dbda6eab9438d4e28-history", + "label": "레몬차", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "8be06c8b319bc7941a83-history", + "label": "망고스무디", + "amount": 4300, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, { - "id": "3d2fe3b32e87a2cdffeb-history", - "label": "간짜장", - "amount": 7000, + "id": "38aa546fded2dc930510-history", + "label": "모카프라프치노", + "amount": 4800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fdabdf8070b0ec28639b-history", - "label": "짬뽕", - "amount": 7000, + "id": "a3d849ea2c58a3fb109c-history", + "label": "밀크티라떼", + "amount": 4300, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1429", - "name": "뷔페청", - "businessName": "뷔페청", - "categorySlug": "korean", - "address": "부산광역시 서구 흑교로109번길 43 (부용동1가)", - "district": "부산광역시 서구", - "latitude": 35.1056136879459, - "longitude": 129.02082234077, - "representativePriceAmount": 8000, - "representativePriceLabel": "성인", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 성인 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-242-4311 / 영업시간: 11:30~21:30", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "140d3b7b55cb7ee1f940", - "label": "성인", - "amount": 8000, + "id": "e22be7dbf4a1a8c129e7-history", + "label": "바나나주스", + "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "7ae2ec194d1faa5ce8ce", - "label": "초등", + "id": "86772825f3329e560136-history", + "label": "백향과(패션후루츠)에이드", "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "6cfd60925fa689323af6", - "label": "소인", + "id": "c0f7d26eff3deca7d1d6-history", + "label": "백향과차(패션후루츠)", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "422ded8802e20a8251d5-history", + "label": "복숭아아이스티", "amount": 3000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "140d3b7b55cb7ee1f940-history", - "label": "성인", - "amount": 8000, + "id": "fd798fd2798a0437c1d0-history", + "label": "블루베리+바나나주스", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7ae2ec194d1faa5ce8ce-history", - "label": "초등", + "id": "75177ab1cb078dc59735-history", + "label": "블루베리레몬에이드", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6cfd60925fa689323af6-history", - "label": "소인", - "amount": 3000, + "id": "196b3e12d03ee3f5ba4a-history", + "label": "블루베리요거트스무디", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1394", - "name": "사랑방미용실", - "businessName": "사랑방미용실", - "categorySlug": "beauty", - "address": "부산광역시 서구 대티로 131 (서대신동3가)", - "district": "부산광역시 서구", - "latitude": 35.1109554946482, - "longitude": 129.009654362478, - "representativePriceAmount": 5000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-242-8977 / 영업시간: 10:00~20:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "21e8dd272fd769f9e18b", - "label": "커트", + "id": "14077fdf72b92b0ef54b-history", + "label": "블루베리주스", "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "21e8dd272fd769f9e18b-history", - "label": "커트", + "id": "01d528564c551beb42f8-history", + "label": "석류레몬에이드", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-17766", - "name": "삼보식당", - "businessName": "삼보식당", - "categorySlug": "korean", - "address": "대구광역시 동구 큰고개로 33 (신암동)", - "district": "대구광역시 동구", - "latitude": 35.88761259935702, - "longitude": 128.6247276701282, - "representativePriceAmount": 7000, - "representativePriceLabel": "한식뷔페", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-3530-0133 / 영업시간: 영업시간 : 05:00 ~ 18:00 정기휴무 : 매주 일요일", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "cd5c5a19dda5d7635bd7", - "label": "한식뷔페", - "amount": 7000, + "id": "2ac5537de2b2cae1e783-history", + "label": "석류레몬차", + "amount": 4500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "cd5c5a19dda5d7635bd7-history", - "label": "한식뷔페", - "amount": 7000, + "id": "c2ea97bfc6af42ba8af8-history", + "label": "에스프레소", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1862", - "name": "삼일라사세탁소", - "businessName": "삼일라사세탁소", - "categorySlug": "laundry", - "address": "대구광역시 동구 효목로5길 7 (효목동)", - "district": "대구광역시 동구", - "latitude": 35.8750480007903, - "longitude": 128.63888107243, - "representativePriceAmount": 4000, - "representativePriceLabel": "티셔츠드라이", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 세탁업 업소입니다. 대표 항목은 티셔츠드라이 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-755-1276 / 영업시간: 월-토 09:00-20:30 일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "c321f62c9a2b2e6136fc", - "label": "티셔츠드라이", - "amount": 4000, + "id": "026f6d43e68f61378444-history", + "label": "연유라떼", + "amount": 4300, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "a765711bf4e69bb35663", - "label": "반코트드라이", - "amount": 7000, + "id": "8544238834565fcbcd0f-history", + "label": "요거트스무디", + "amount": 4300, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "17ca84cf87f8d0d2a2a8", - "label": "양복드라이", - "amount": 8000, + "id": "9b4a4d6a7fa504369136-history", + "label": "유기농 민트", + "amount": 3000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "931deb669afd849e545b", - "label": "양복1벌드라이", - "amount": 7000, + "id": "a1af38f296a0c84e73b1-history", + "label": "유기농 얼그레이", + "amount": 3000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "0f3e9313372ced0eea7c", - "label": "오버코트드라이", - "amount": 7000, + "id": "b2896a251e67d9515e0d-history", + "label": "유기농 캐모마일", + "amount": 3000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "c321f62c9a2b2e6136fc-history", - "label": "티셔츠드라이", + "id": "e79f6a316c8665a6308c-history", + "label": "유자모과차", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a765711bf4e69bb35663-history", - "label": "반코트드라이", - "amount": 7000, + "id": "06eb1781b08657de9c81-history", + "label": "유자차", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "17ca84cf87f8d0d2a2a8-history", - "label": "양복드라이", - "amount": 8000, + "id": "1b212f7fcd8d4a47af4b-history", + "label": "유자쿨러", + "amount": 4300, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "931deb669afd849e545b-history", - "label": "양복1벌드라이", - "amount": 7000, + "id": "6ab504a92068ccb32321-history", + "label": "자몽에이드", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0f3e9313372ced0eea7c-history", - "label": "오버코트드라이", - "amount": 7000, + "id": "c2860a1f2b1255b105ff-history", + "label": "자색고구마라떼", + "amount": 4300, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-17703", - "name": "생선엔밥", - "businessName": "생선엔밥", - "categorySlug": "korean", - "address": "대구광역시 동구 경대로 48 (신암동)", - "district": "대구광역시 동구", - "latitude": 35.88509005641053, - "longitude": 128.6149836033377, - "representativePriceAmount": 8000, - "representativePriceLabel": "생선구이정식", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생선구이정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-262-4197 / 영업시간: 영업시간 : 11:30~20:00 정기휴무 : 매주 일요일", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "920f76956cf8c663c30e", - "label": "생선구이정식", - "amount": 8000, + "id": "a499d9b4089363f795bd-history", + "label": "정통수제 와플", + "amount": 3800, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "142c7d5a50fb0c860cfa", - "label": "갈치찌개", - "amount": 10000, + "id": "12d15c6c5096d4c43647-history", + "label": "체리콕", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "920f76956cf8c663c30e-history", - "label": "생선구이정식", - "amount": 8000, + "id": "86761b82af5e96da9d93-history", + "label": "초코", + "amount": 3800, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "142c7d5a50fb0c860cfa-history", - "label": "갈치찌개", - "amount": 10000, + "id": "5801f05cead4d082cc8e-history", + "label": "초코민트", + "amount": 4800, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-17604", - "name": "카페립", - "businessName": "카페립", - "categorySlug": "other-food", - "address": "인천 동구 박문로 1 교구청, 청소년센터3층(송림동)", - "district": "인천 동구", - "latitude": 37.4706891169897, - "longitude": 126.651839572554, - "representativePriceAmount": 2000, - "representativePriceLabel": "휘낭시에 플레인", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 휘낭시에 플레인 2,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 070-4443-1726 / 영업시간: 월 ~ 금 09:00 ~ 18:00 토, 일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "c25ec6e0d95a281ec9ad", - "label": "휘낭시에 플레인", - "amount": 2000, + "id": "b9dcce95463e1e5c1ba3-history", + "label": "초코프라푸치노", + "amount": 4800, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "7afeb734cf9239db9aba", - "label": "르뱅쿠키오리지널", - "amount": 3000, + "id": "2ba92b67fb87478989dd-history", + "label": "카라멜라떼", + "amount": 3500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "c25ec6e0d95a281ec9ad-history", - "label": "휘낭시에 플레인", - "amount": 2000, + "id": "76c3679bd469ae23db2d-history", + "label": "카페모카", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "7afeb734cf9239db9aba-history", - "label": "르뱅쿠키오리지널", - "amount": 3000, + "id": "83c628e3234fcd494f00-history", + "label": "카페인콜드브루", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-14301", - "name": "하루도넛", - "businessName": "하루도넛", - "categorySlug": "other-food", - "address": "인천광역시 동구 송림로 106-1 (송림동) 1,2층", - "district": "인천광역시 동구", - "latitude": 37.47620674347315, - "longitude": 126.64651702408199, - "representativePriceAmount": 800, - "representativePriceLabel": "꽈배기", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 꽈배기 800원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-777-1648 / 영업시간: 매일 08:00 - 20:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "5c1affedacb8d41c64cd", - "label": "꽈배기", - "amount": 800, + "id": "4c1fb2d88bab1500c3ff-history", + "label": "카푸치노", + "amount": 3300, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "5c1affedacb8d41c64cd-history", - "label": "꽈배기", - "amount": 800, + "id": "ab70241a68c6eb0f74b1-history", + "label": "키위주스", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2106", - "name": "한울타리", - "businessName": "한울타리", - "categorySlug": "korean", - "address": "인천광역시 동구 석수로 47-1 (만석동)", - "district": "인천광역시 동구", - "latitude": 37.4812201279796, - "longitude": 126.626544029841, - "representativePriceAmount": 8000, - "representativePriceLabel": "청국장", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 청국장 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-221-8887 / 영업시간: 월~토 10:00-22:00 (브레이크 타임) 14:00-16:00 (일) 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "f067694742d88f6ac139", - "label": "청국장", - "amount": 8000, + "id": "8047245a0a57dbb8b382-history", + "label": "풋귤에이드", + "amount": 4500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "1362dcc995b15f50bb33", - "label": "된장찌개", - "amount": 8000, + "id": "91bc5ee8729c84c31dc0-history", + "label": "풋귤차", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "f067694742d88f6ac139-history", - "label": "청국장", - "amount": 8000, + "id": "550bbd3c793387cd3c9f-history", + "label": "헤이즐넛라떼", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1362dcc995b15f50bb33-history", - "label": "된장찌개", - "amount": 8000, + "id": "c8f5f526205835ff1295-history", + "label": "화이트모카", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e53d28e6d24a418f6320-history", + "label": "화이트초코", + "amount": 3800, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -57394,65 +57178,41 @@ "comments": [] }, { - "id": "goodprice-2107", - "name": "해주식당", - "businessName": "해주식당", + "id": "goodprice-15362", + "name": "인촌", + "businessName": "인촌", "categorySlug": "korean", - "address": "인천광역시 동구 화도진로44번길 3 (송현동) 1층 송현시장 내", - "district": "인천광역시 동구", - "latitude": 37.47650336140443, - "longitude": 126.6339042004762, - "representativePriceAmount": 8000, - "representativePriceLabel": "백반", + "address": "광주광역시 동구 구성로194번길 20-1 (금남로4가) 1-2층", + "district": "광주광역시 동구", + "latitude": 35.151739719004304, + "longitude": 126.91559598810717, + "representativePriceAmount": 10000, + "representativePriceLabel": "고등어구이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-888-4009 / 영업시간: 월~일 06:00-20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 고등어구이 10,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-234-3389 / 영업시간: 매일 11:30-21:00 브레이크타임 14:30~17:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "fdbb5f463f5b4b95114e", - "label": "백반", - "amount": 8000, + "id": "6797a39547b1f483a94d", + "label": "고등어구이", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "fdbb5f463f5b4b95114e-history", - "label": "백반", - "amount": 8000, + "id": "34110c983869b3e3ed91", + "label": "숯불주물럭구이", + "amount": 10000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13670", - "name": "상무본가장어", - "businessName": "상무본가장어", - "categorySlug": "korean", - "address": "광주광역시 서구 시청서편로4번길 16-1 (치평동) 1층", - "district": "광주광역시 서구", - "latitude": 35.15909682794521, - "longitude": 126.84738486591091, - "representativePriceAmount": 10000, - "representativePriceLabel": "장어탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 장어탕 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-372-9293", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "5f255e5ddcebba84f36a", - "label": "장어탕", + "id": "853f0355990e0d469cb7", + "label": "콩나물불고기", "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -57460,8 +57220,22 @@ ], "history": [ { - "id": "5f255e5ddcebba84f36a-history", - "label": "장어탕", + "id": "6797a39547b1f483a94d-history", + "label": "고등어구이", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "34110c983869b3e3ed91-history", + "label": "숯불주물럭구이", + "amount": 10000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "853f0355990e0d469cb7-history", + "label": "콩나물불고기", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -57470,51 +57244,51 @@ "comments": [] }, { - "id": "goodprice-18043", - "name": "서울족발보쌈", - "businessName": "서울족발보쌈", + "id": "goodprice-15946", + "name": "해물칼국수수제비", + "businessName": "해물칼국수수제비", "categorySlug": "korean", - "address": "광주광역시 서구 상무화원로32번길 13-18 (치평동) 1층", - "district": "광주광역시 서구", - "latitude": 35.14598060035197, - "longitude": 126.84439065995004, - "representativePriceAmount": 10000, - "representativePriceLabel": "족발정식", + "address": "서울특별시 강북구 수유로 24 (수유동) 1층", + "district": "서울특별시 강북구", + "latitude": 37.63296345004117, + "longitude": 127.0191440214576, + "representativePriceAmount": 6000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 족발정식 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-373-7211 / 영업시간: 11:00 ~ 22:00 / 정기휴무 (매주 일요일) (15:00~17:00 브레이크타임)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-988-3381", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "791c5e80cf6f863d5754", - "label": "족발정식", - "amount": 10000, + "id": "988c320785e836d98c72", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "c7c53338c92ce070f2b4", - "label": "보쌈정식", - "amount": 10000, + "id": "a86dd3c62642c7b4bf75", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "791c5e80cf6f863d5754-history", - "label": "족발정식", - "amount": 10000, + "id": "988c320785e836d98c72-history", + "label": "칼국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "c7c53338c92ce070f2b4-history", - "label": "보쌈정식", - "amount": 10000, + "id": "a86dd3c62642c7b4bf75-history", + "label": "수제비", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -57522,37 +57296,37 @@ "comments": [] }, { - "id": "goodprice-2285", - "name": "세븐노래연습장", - "businessName": "세븐노래연습장", - "categorySlug": "other-service", - "address": "광주광역시 서구 시청로56번길 8 지하1층(치평동)", - "district": "광주광역시 서구", - "latitude": 35.1532792040005, - "longitude": 126.852731376864, - "representativePriceAmount": 4000, - "representativePriceLabel": "30분", + "id": "goodprice-13190", + "name": "전지적돼지시점", + "businessName": "전지적돼지시점", + "categorySlug": "korean", + "address": "광주광역시 동구 지산로 40 (지산동) 1층", + "district": "광주광역시 동구", + "latitude": 35.147333475396294, + "longitude": 126.93215202959168, + "representativePriceAmount": 7500, + "representativePriceLabel": "김치찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타비요식업 업소입니다. 대표 항목은 30분 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-372-8331 / 영업시간: 월~일 11:00~05:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1354-1656 / 영업시간: (월~금) 11:30~20:30 (토) 18:00~20:30 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a77caa9287a4df6b593e", - "label": "30분", - "amount": 4000, + "id": "7e9a772806d5ad5058e3", + "label": "김치찌개", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a77caa9287a4df6b593e-history", - "label": "30분", - "amount": 4000, + "id": "7e9a772806d5ad5058e3-history", + "label": "김치찌개", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -57560,295 +57334,177 @@ "comments": [] }, { - "id": "goodprice-2551", - "name": "홍가네칼국수", - "businessName": "홍가네칼국수", + "id": "goodprice-463", + "name": "김가네국수집", + "businessName": "김가네국수집", "categorySlug": "korean", - "address": "대전광역시 동구 대전로 807번길 40 (중동)", - "district": "대전광역시 동구", - "latitude": 36.3309478641562, - "longitude": 127.430241597664, - "representativePriceAmount": 7000, + "address": "서울특별시 도봉구 도봉로153길 51", + "district": "서울특별시 도봉구", + "latitude": 37.6698653658525, + "longitude": 127.0404813856, + "representativePriceAmount": 6500, "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-254-5945 / 영업시간: 11:00 ~ 20:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-955-1357 / 영업시간: 목 11:30-20:00 금 11:30-20:00 토 11:30-19:00 일 정기휴무(매주일요일) 월(12/25) 성탄절11:30-19:00 화 11:30-20:00 수 11:30-20:00 -매월첫째주월요일/매주일요일휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ee279da5b935c98ac23b", + "id": "9b3b3c1a4b32090e8b72", "label": "칼국수", - "amount": 7000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "3dae421b1df043fffa8e", - "label": "콩국수(여름)", - "amount": 8000, + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ad102646a45cdf57fb11", - "label": "비빔국수", - "amount": 8000, + "id": "f5c96fc269a2de785993", + "label": "떡만두국", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "ee279da5b935c98ac23b-history", - "label": "칼국수", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3dae421b1df043fffa8e-history", - "label": "콩국수(여름)", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "ad102646a45cdf57fb11-history", + "id": "b794c4a058cbca40239b", "label": "비빔국수", - "amount": 8000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2543", - "name": "홍가짜장", - "businessName": "홍가짜장", - "categorySlug": "chinese", - "address": "대전광역시 동구 동대전로 278 (가양동)", - "district": "대전광역시 동구", - "latitude": 36.3459230781175, - "longitude": 127.445797225616, - "representativePriceAmount": 4000, - "representativePriceLabel": "홍가짜장", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 홍가짜장 4,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-365-3323 / 영업시간: 11:00 ~ 20:30 / 매주 화요일, 수요일 정기 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "3484d499c98967ab4088", - "label": "홍가짜장", - "amount": 4000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "0469b9e4a1210c0e518d", - "label": "홍가짬뽕", "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "08078c6fd6a5a45d58ab", - "label": "짬짜면", - "amount": 6500, + "id": "7410c287343e4ec6146e", + "label": "소고기김밥", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b8ecd1662799721b84fc", - "label": "새우볶음밥", - "amount": 6500, + "id": "7a4dff297eb7fe82c992", + "label": "야채김밥", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "607e24798c13d5738f2b", - "label": "탕수육 (소)", - "amount": 7000, + "id": "1436255fae7cdbe7c786", + "label": "열무냉국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3b61e7cfda7c71e18fe9", - "label": "군만두", - "amount": 4000, + "id": "7c86bc42a17c88f4f5ef", + "label": "열무비빔국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "3484d499c98967ab4088-history", - "label": "홍가짜장", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "0469b9e4a1210c0e518d-history", - "label": "홍가짬뽕", + "id": "600159bb36b66c4bbd1f", + "label": "잔치국수", "amount": 5500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "08078c6fd6a5a45d58ab-history", - "label": "짬짜면", - "amount": 6500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "b8ecd1662799721b84fc-history", - "label": "새우볶음밥", - "amount": 6500, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "607e24798c13d5738f2b-history", - "label": "탕수육 (소)", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "3b61e7cfda7c71e18fe9-history", - "label": "군만두", - "amount": 4000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-2558", - "name": "희원숯불갈비식당", - "businessName": "희원숯불갈비식당", - "categorySlug": "korean", - "address": "대전광역시 동구 가양로 56번길 19 (가양동)", - "district": "대전광역시 동구", - "latitude": 36.3418094483622, - "longitude": 127.443094601499, - "representativePriceAmount": 10000, - "representativePriceLabel": "돼지갈비(250g)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "안심식당(농림축산부 지정)", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-627-5329 / 영업시간: 17:00 ~ 22:00 / 매월 넷째 주 화요일 정기 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "caea7a2976d8e292dae5", - "label": "돼지갈비(250g)", - "amount": 10000, - "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4e7a13a606fb573756a9", - "label": "삼겹살(150g)", - "amount": 10000, + "id": "a537dc355114a9dc3133", + "label": "참치김밥", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3fce4918f4974c674f99", - "label": "김치칼국수", - "amount": 3000, + "id": "d468564c16d26dab4c46", + "label": "치즈김밥", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ce48ba803ae17450c5c3", - "label": "냉면", - "amount": 4000, + "id": "75145c9de186450e2a31", + "label": "콩국수", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "9b3b3c1a4b32090e8b72-history", + "label": "칼국수", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" }, { - "id": "d89b9f2a06b49e4b5d43", - "label": "비빔냉면", - "amount": 4000, + "id": "f5c96fc269a2de785993-history", + "label": "떡만두국", + "amount": 5500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "603e16bcbe8393bb4865", - "label": "항정살(100g)", - "amount": 9000, + "id": "b794c4a058cbca40239b-history", + "label": "비빔국수", + "amount": 5500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "1f948927fcb3bbb1f7e7", - "label": "누룽지", - "amount": 3000, + "id": "7410c287343e4ec6146e-history", + "label": "소고기김밥", + "amount": 3500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "caea7a2976d8e292dae5-history", - "label": "돼지갈비(250g)", - "amount": 10000, + "id": "7a4dff297eb7fe82c992-history", + "label": "야채김밥", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4e7a13a606fb573756a9-history", - "label": "삼겹살(150g)", - "amount": 10000, + "id": "1436255fae7cdbe7c786-history", + "label": "열무냉국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3fce4918f4974c674f99-history", - "label": "김치칼국수", - "amount": 3000, + "id": "7c86bc42a17c88f4f5ef-history", + "label": "열무비빔국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ce48ba803ae17450c5c3-history", - "label": "냉면", - "amount": 4000, + "id": "600159bb36b66c4bbd1f-history", + "label": "잔치국수", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d89b9f2a06b49e4b5d43-history", - "label": "비빔냉면", - "amount": 4000, + "id": "a537dc355114a9dc3133-history", + "label": "참치김밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "603e16bcbe8393bb4865-history", - "label": "항정살(100g)", - "amount": 9000, + "id": "d468564c16d26dab4c46-history", + "label": "치즈김밥", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1f948927fcb3bbb1f7e7-history", - "label": "누룽지", - "amount": 3000, + "id": "75145c9de186450e2a31-history", + "label": "콩국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -57856,34 +57512,41 @@ "comments": [] }, { - "id": "goodprice-2857", - "name": "0시50분", - "businessName": "0시50분", + "id": "goodprice-11652", + "name": "종합분식", + "businessName": "종합분식", "categorySlug": "korean", - "address": "대전광역시 중구 대종로 504 1층(은행동)", - "district": "대전광역시 중구", - "latitude": 36.3293358176833, - "longitude": 127.425489899251, - "representativePriceAmount": 7000, - "representativePriceLabel": "우거지해장국", + "address": "광주광역시 동구 장동로 23-3 (장동)", + "district": "광주광역시 동구", + "latitude": 35.1482844984997, + "longitude": 126.924369524217, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 우거지해장국 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-524-5816 / 영업시간: 매일 09:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 062-225-4928 / 영업시간: 10:00-17:00 휴무일 일요일, 공휴일, 명절", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a842ace40763fe08f58a", - "label": "우거지해장국", + "id": "0e825b169ec2a5a1b1db", + "label": "김밥", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2818eb473f6d625f12e9", + "label": "볶음밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d89268660dc27a195d4a", - "label": "콩나물해장국", + "id": "25fb1003a2dcdb593a95", + "label": "찌개(김치참치순두부부대)", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -57891,15 +57554,22 @@ ], "history": [ { - "id": "a842ace40763fe08f58a-history", - "label": "우거지해장국", + "id": "0e825b169ec2a5a1b1db-history", + "label": "김밥", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2818eb473f6d625f12e9-history", + "label": "볶음밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d89268660dc27a195d4a-history", - "label": "콩나물해장국", + "id": "25fb1003a2dcdb593a95-history", + "label": "찌개(김치참치순두부부대)", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -57908,118 +57578,132 @@ "comments": [] }, { - "id": "goodprice-2906", - "name": "소문난 고추장불고기 국밥", - "businessName": "소문난 고추장불고기 국밥", + "id": "goodprice-470", + "name": "김밥타운", + "businessName": "김밥타운", "categorySlug": "korean", - "address": "울산광역시 남구 월평로37번길 3", - "district": "울산광역시 남구", - "latitude": 35.5416195196528, - "longitude": 129.309458628481, - "representativePriceAmount": 7000, - "representativePriceLabel": "돼지,섞어,순대,선지국밥", + "address": "서울특별시 도봉구 도당로15길 3 (방학동)", + "district": "서울특별시 도봉구", + "latitude": 37.6657622273039, + "longitude": 127.036859170423, + "representativePriceAmount": 2500, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 돼지,섞어,순대,선지국밥 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-273-6661 / 영업시간: 금 11:00-21:00 토 11:00-21:00 일 11:00-21:00 월 11:00-21:00 화 11:00-21:00 수 11:00-21:00 목 11:00-21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-956-2001 / 영업시간: 17:00에17시0분에 금 05:00-17:00 토 05:00-17:00 일 05:00-09:00 월 05:00-17:00 화 05:00-17:00 수 05:00-09:00 목 05:00-17:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "1948a2c6bbbed88ccb30", - "label": "돼지,섞어,순대,선지국밥", - "amount": 7000, + "id": "dbceadbab34da65522a1", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ab2f511e56431a1ece36", + "id": "0a652538362eb3754ec5", "label": "된장찌개", - "amount": 5000, + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bdc04bea4c81859b854e", - "label": "쭉삼불고기", - "amount": 7000, + "id": "a55ea839481af41f3125", + "label": "김치찌게", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "448fb77c116dea7d2d8b", - "label": "가오리무침", - "amount": 10000, + "id": "5a56ee767ed84cff874b", + "label": "김치콩나물", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ca962ba931f48193c5a1", - "label": "고추장불고기(술안주)", - "amount": 4000, + "id": "143ef36184301643bf02", + "label": "라면정식", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b5e20ff027403f5e1a40", - "label": "고추장불고기정식(2인상)", - "amount": 10000, + "id": "86b0b6c087a711c8726f", + "label": "수제돈까스", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "172d1ad2b70bdc11370c", - "label": "내장국밥", - "amount": 7000, + "id": "50df3c95d01c5af4e991", + "label": "수제돈까스정식", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bd81abe65abebfc5db3c", - "label": "돼지국밥", - "amount": 7000, + "id": "347dea67deae332886ec", + "label": "순두부찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "737cdb1df50bffb5a0ac", - "label": "돼지수육 (소)", - "amount": 10000, + "id": "5dba6c61de0cce4706f4", + "label": "오뎅백반", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0a9e9fb8b69c5a59e6ff", - "label": "섞어국밥", - "amount": 7000, + "id": "fb970912f23122f6f64c", + "label": "오뎅정식", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6da649223139cb54aa0a", - "label": "선지국밥", + "id": "a7cb3568466a9177b080", + "label": "오므라이스", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "fb914bdafd4b0222dbd4", - "label": "수육국밥", + "id": "b0b5bca6770895a8649b", + "label": "우동정식", "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "813d166226046d383f3e", - "label": "순대국밥", + "id": "afb93e40d8572341f3ad", + "label": "조김밥", + "amount": 2500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "fb8c5e6af5fe79503804", + "label": "쫄면정식", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "32efdcd830fd3a8d8b2e", + "label": "참치 김치찌개", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "272b4c6a28e278d5b961", - "label": "하동 재첩국", + "id": "f75bf36f2752d74b74b0", + "label": "황태해장국", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -58027,99 +57711,113 @@ ], "history": [ { - "id": "1948a2c6bbbed88ccb30-history", - "label": "돼지,섞어,순대,선지국밥", - "amount": 7000, + "id": "dbceadbab34da65522a1-history", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ab2f511e56431a1ece36-history", + "id": "0a652538362eb3754ec5-history", "label": "된장찌개", - "amount": 5000, + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bdc04bea4c81859b854e-history", - "label": "쭉삼불고기", - "amount": 7000, + "id": "a55ea839481af41f3125-history", + "label": "김치찌게", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "448fb77c116dea7d2d8b-history", - "label": "가오리무침", - "amount": 10000, + "id": "5a56ee767ed84cff874b-history", + "label": "김치콩나물", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ca962ba931f48193c5a1-history", - "label": "고추장불고기(술안주)", - "amount": 4000, + "id": "143ef36184301643bf02-history", + "label": "라면정식", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b5e20ff027403f5e1a40-history", - "label": "고추장불고기정식(2인상)", - "amount": 10000, + "id": "86b0b6c087a711c8726f-history", + "label": "수제돈까스", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "172d1ad2b70bdc11370c-history", - "label": "내장국밥", - "amount": 7000, + "id": "50df3c95d01c5af4e991-history", + "label": "수제돈까스정식", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bd81abe65abebfc5db3c-history", - "label": "돼지국밥", - "amount": 7000, + "id": "347dea67deae332886ec-history", + "label": "순두부찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "737cdb1df50bffb5a0ac-history", - "label": "돼지수육 (소)", - "amount": 10000, + "id": "5dba6c61de0cce4706f4-history", + "label": "오뎅백반", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0a9e9fb8b69c5a59e6ff-history", - "label": "섞어국밥", - "amount": 7000, + "id": "fb970912f23122f6f64c-history", + "label": "오뎅정식", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6da649223139cb54aa0a-history", - "label": "선지국밥", + "id": "a7cb3568466a9177b080-history", + "label": "오므라이스", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fb914bdafd4b0222dbd4-history", - "label": "수육국밥", + "id": "b0b5bca6770895a8649b-history", + "label": "우동정식", "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "813d166226046d383f3e-history", - "label": "순대국밥", + "id": "afb93e40d8572341f3ad-history", + "label": "조김밥", + "amount": 2500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "fb8c5e6af5fe79503804-history", + "label": "쫄면정식", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "32efdcd830fd3a8d8b2e-history", + "label": "참치 김치찌개", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "272b4c6a28e278d5b961-history", - "label": "하동 재첩국", + "id": "f75bf36f2752d74b74b0-history", + "label": "황태해장국", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -58128,55 +57826,41 @@ "comments": [] }, { - "id": "goodprice-2908", - "name": "솟대", - "businessName": "솟대", + "id": "goodprice-2546", + "name": "삼대째전통칼국수", + "businessName": "삼대째전통칼국수", "categorySlug": "korean", - "address": "울산광역시 남구 대학로47번길 10 1층", - "district": "울산광역시 남구", - "latitude": 35.5407837447282, - "longitude": 129.255862186774, - "representativePriceAmount": 9000, - "representativePriceLabel": "순두부찌개", + "address": "대전광역시 동구 대전로 825번길 13 (정동)", + "district": "대전광역시 동구", + "latitude": 36.3325533506759, + "longitude": 127.430855541848, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순두부찌개 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-223-4346 / 영업시간: 10:00~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-257-5432 / 영업시간: 09:30 ~ 20:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "b190e85347ea17d2eb2c", - "label": "순두부찌개", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "fc0c6e2f76b022cb8f43", - "label": "부대찌개", - "amount": 9000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "6cf821cba62ee006b86f", - "label": "두루치기정식", - "amount": 9000, + "id": "1911b6d1a1f052258302", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a9e76762fff2dab77dd9", - "label": "김치찌개", + "id": "beb82e09c717cd9f8ad2", + "label": "콩국수(여름)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "12fa4383baaf728aafb1", - "label": "부대찌개 (2인이상)", + "id": "b1f4e4f0b29ce136b60b", + "label": "칼국수(곱빼기)", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -58184,36 +57868,22 @@ ], "history": [ { - "id": "b190e85347ea17d2eb2c-history", - "label": "순두부찌개", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "fc0c6e2f76b022cb8f43-history", - "label": "부대찌개", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "6cf821cba62ee006b86f-history", - "label": "두루치기정식", - "amount": 9000, + "id": "1911b6d1a1f052258302-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a9e76762fff2dab77dd9-history", - "label": "김치찌개", + "id": "beb82e09c717cd9f8ad2-history", + "label": "콩국수(여름)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "12fa4383baaf728aafb1-history", - "label": "부대찌개 (2인이상)", + "id": "b1f4e4f0b29ce136b60b-history", + "label": "칼국수(곱빼기)", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -58222,37 +57892,51 @@ "comments": [] }, { - "id": "goodprice-17504", - "name": "수지미용실", - "businessName": "수지미용실", - "categorySlug": "beauty", - "address": "울산광역시 남구 번영로107번길 17 (달동) 205호", - "district": "울산광역시 남구", - "latitude": 35.53427924703676, - "longitude": 129.32685098572432, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", + "id": "goodprice-15311", + "name": "김밥하우스", + "businessName": "김밥하우스", + "categorySlug": "korean", + "address": "서울특별시 도봉구 우이천로4길 9 (창동) 1층", + "district": "서울특별시 도봉구", + "latitude": 37.63356423695464, + "longitude": 127.03996870341436, + "representativePriceAmount": 2000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-269-3868", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-994-3632", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "80a7a6543c72eb54f849", - "label": "커트", - "amount": 10000, + "id": "f16041674d40b5083bba", + "label": "김밥", + "amount": 2000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b3f21a06adf2bda30a42", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "80a7a6543c72eb54f849-history", - "label": "커트", - "amount": 10000, + "id": "f16041674d40b5083bba-history", + "label": "김밥", + "amount": 2000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b3f21a06adf2bda30a42-history", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -58260,51 +57944,65 @@ "comments": [] }, { - "id": "goodprice-18785", - "name": "순복식당", - "businessName": "순복식당", + "id": "goodprice-13385", + "name": "생일집", + "businessName": "생일집", "categorySlug": "korean", - "address": "울산광역시 남구 월평로85번길 20 (신정동) 1층", - "district": "울산광역시 남구", - "latitude": 35.54457488092627, - "longitude": 129.3142706641577, + "address": "대전광역시 동구 대전로791번길 45 (중동) (중동)", + "district": "대전광역시 동구", + "latitude": 36.32931900162008, + "longitude": 127.43084985672475, "representativePriceAmount": 8000, - "representativePriceLabel": "김치찌개", + "representativePriceLabel": "순대국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-266-9347", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-226-5254 / 영업시간: 09:00~21:00 / 매주 목요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "ade30dd5a19628754d08", - "label": "김치찌개", + "id": "fe2e03543223f4b6d3f4", + "label": "순대국밥", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "337674f633a696c1e40b", - "label": "된장찌개", - "amount": 8000, + "id": "fe3f449d61855b490c21", + "label": "설렁탕", + "amount": 9000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2d41d1f601d941de9487", + "label": "소머리국밥", + "amount": 9000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "ade30dd5a19628754d08-history", - "label": "김치찌개", + "id": "fe2e03543223f4b6d3f4-history", + "label": "순대국밥", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "337674f633a696c1e40b-history", - "label": "된장찌개", - "amount": 8000, + "id": "fe3f449d61855b490c21-history", + "label": "설렁탕", + "amount": 9000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "2d41d1f601d941de9487-history", + "label": "소머리국밥", + "amount": 9000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -58312,34 +58010,34 @@ "comments": [] }, { - "id": "goodprice-3399", - "name": "성일사우나", - "businessName": "성일사우나", - "categorySlug": "bath", - "address": "경기도 수원시 장안구 경수대로973번길 13-20 (송죽동)", - "district": "경기도 수원시", - "latitude": 37.3031115091404, - "longitude": 127.005025091289, - "representativePriceAmount": 9000, - "representativePriceLabel": "대인", + "id": "goodprice-471", + "name": "남원추어탕", + "businessName": "남원추어탕", + "categorySlug": "korean", + "address": "서울특별시 도봉구 해등로 83 (창동)", + "district": "서울특별시 도봉구", + "latitude": 37.6510272412012, + "longitude": 127.041383482955, + "representativePriceAmount": 8000, + "representativePriceLabel": "추어탕", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 대인 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-246-6489 / 영업시간: 5:30~19:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 추어탕 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-902-0056 / 영업시간: 금 11:00-19:00 토 11:00-19:00 일 정보없음 월 11:00-19:00 화 11:00-19:00 수 11:00-19:00 목 11:00-19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "bd55e1952297378ee6a5", - "label": "대인", - "amount": 9000, + "id": "4a09443bcbba7d903253", + "label": "추어탕", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "01bd0a4e04057434e5c5", - "label": "소인", + "id": "415d6f28375308934f7c", + "label": "추어탕(경로우대)", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -58347,15 +58045,15 @@ ], "history": [ { - "id": "bd55e1952297378ee6a5-history", - "label": "대인", - "amount": 9000, + "id": "4a09443bcbba7d903253-history", + "label": "추어탕", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "01bd0a4e04057434e5c5-history", - "label": "소인", + "id": "415d6f28375308934f7c-history", + "label": "추어탕(경로우대)", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -58364,404 +58062,274 @@ "comments": [] }, { - "id": "goodprice-16205", - "name": "세븐힐여성사우나", - "businessName": "세븐힐여성사우나", - "categorySlug": "bath", - "address": "경기도 수원시 팔달구 중부대로 47 (지동) 지하1층", - "district": "경기도 수원시", - "latitude": 37.27569315113086, - "longitude": 127.0220900432593, - "representativePriceAmount": 9000, - "representativePriceLabel": "일반", + "id": "goodprice-2540", + "name": "성심관", + "businessName": "성심관", + "categorySlug": "chinese", + "address": "대전광역시 동구 동대전로 208 (자양동)", + "district": "대전광역시 동구", + "latitude": 36.3401647426563, + "longitude": 127.449098715918, + "representativePriceAmount": 3000, + "representativePriceLabel": "짜장면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 일반 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-244-0071 / 영업시간: 06:30~19:00 매주 수요일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 짜장면 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 042-637-2822 / 영업시간: 10:00~19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "4b80cb5f2e6b8cd7a0b9", - "label": "일반", - "amount": 9000, + "id": "977b62686594381835f6", + "label": "짜장면", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "333d2c3091b17400927f", - "label": "소인", - "amount": 7000, + "id": "d694d53bf0fbd89fe3cc", + "label": "짬뽕", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "4b80cb5f2e6b8cd7a0b9-history", - "label": "일반", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "333d2c3091b17400927f-history", - "label": "소인", - "amount": 7000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13806", - "name": "이미경헤어클릭", - "businessName": "이미경헤어클릭", - "categorySlug": "beauty", - "address": "강원특별자치도 춘천시 충열로 10-5 (우두동) 이미경헤어클릭", - "district": "강원특별자치도 춘천시", - "latitude": 37.900210305145734, - "longitude": 127.72949847551419, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-253-0028", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "706d3189dab646157cb6", - "label": "커트", - "amount": 10000, + "id": "b941a41347bb287ba773", + "label": "탕수육(中)", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "706d3189dab646157cb6-history", - "label": "커트", - "amount": 10000, + "id": "8559e8126020cea8f7f3", + "label": "우동", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-13807", - "name": "이서냉면", - "businessName": "이서냉면", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 우석로 14-1 (석사동) 1층", - "district": "강원특별자치도 춘천시", - "latitude": 37.86193728705492, - "longitude": 127.74766638895937, - "representativePriceAmount": 7000, - "representativePriceLabel": "냉면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1487-4040 / 영업시간: 10:00 - 20:00 라스트오더 19:30", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "c78c889ec682874117da", - "label": "냉면", - "amount": 7000, + "id": "7e900dc1a2d6eced0202", + "label": "간짜장", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "17816ff57cfef526dd78", - "label": "왕만두", + "id": "f690c3e46c20689a9dc1", + "label": "울면", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "c78c889ec682874117da-history", - "label": "냉면", - "amount": 7000, + "id": "9fb2710f75d429d2e76e", + "label": "군만두", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "17816ff57cfef526dd78-history", - "label": "왕만두", - "amount": 5000, + "id": "c4b07d809ff792f14c39", + "label": "볶음밥", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15475", - "name": "일리터", - "businessName": "일리터", - "categorySlug": "other-food", - "address": "강원특별자치도 춘천시 중앙로68번길 3 (중앙로2가) 1, 2층(중앙로2가)", - "district": "강원특별자치도 춘천시", - "latitude": 37.87936544046061, - "longitude": 127.72610245830614, - "representativePriceAmount": 1000, - "representativePriceLabel": "아메리카노", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 1,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-241-7778 / 영업시간: 매일 08:40~21:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "8892911ec2f5385ad8ae", - "label": "아메리카노", - "amount": 1000, + "id": "15d5f0d4ee825328443d", + "label": "짜장밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5146a9fa9eedbdd455ab", - "label": "바나나주스", - "amount": 1500, + "id": "9bdccac1be7483edc3d0", + "label": "짬뽕밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "3a5434a11fe7ab2984bc", - "label": "초코라떼", - "amount": 2800, + "id": "7f155dfd58302c2bea7a", + "label": "육개장", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "8892911ec2f5385ad8ae-history", - "label": "아메리카노", - "amount": 1000, + "id": "04e411fda35338dff7dd", + "label": "오므라이스", + "amount": 4500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "5146a9fa9eedbdd455ab-history", - "label": "바나나주스", - "amount": 1500, + "id": "0f9f2d6b0a9ac441eb40", + "label": "김치볶음밥", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "3a5434a11fe7ab2984bc-history", - "label": "초코라떼", - "amount": 2800, + "id": "f38ef6a5e8086b401504", + "label": "잡채밥", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-10309", - "name": "임가네", - "businessName": "임가네", - "categorySlug": "korean", - "address": "강원특별자치도 춘천시 새롬공원길 25 (석사동)", - "district": "강원특별자치도 춘천시", - "latitude": 37.8544088335552, - "longitude": 127.747076544582, - "representativePriceAmount": 8000, - "representativePriceLabel": "소고기뭇국", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소고기뭇국 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-262-5245", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, + { + "id": "84b4197e31d352031433", + "label": "콩국수", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "35fb45c01a30e4416629", + "label": "새우볶음밥", + "amount": 7000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, { - "id": "8f3c78d041b54a49e455", - "label": "소고기뭇국", + "id": "d8393c6cfdc1f0696558", + "label": "삼선짬뽕", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5bf388377b6212e37113", - "label": "매운소고기뭇국", - "amount": 9000, + "id": "5a1e132c0754975be4cc", + "label": "양념탕수육", + "amount": 10000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8f3c78d041b54a49e455-history", - "label": "소고기뭇국", - "amount": 8000, + "id": "977b62686594381835f6-history", + "label": "짜장면", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5bf388377b6212e37113-history", - "label": "매운소고기뭇국", - "amount": 9000, + "id": "d694d53bf0fbd89fe3cc-history", + "label": "짬뽕", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-4712", - "name": "보글보글식당", - "businessName": "보글보글식당", - "categorySlug": "korean", - "address": "충청북도 청주시 상당구 영운로11번길 23 (영운동)", - "district": "충청북도 청주시", - "latitude": 36.6166130893195, - "longitude": 127.497059927318, - "representativePriceAmount": 6000, - "representativePriceLabel": "가정식백반", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 가정식백반 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-250-0012 / 영업시간: 매일 10:00-22:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "1c20b873d456c0c00d41", - "label": "가정식백반", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" }, { - "id": "74cd0f16087701c691e4", - "label": "갈비탕", + "id": "b941a41347bb287ba773-history", + "label": "탕수육(中)", "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "613abeb66f6c8008a99e", - "label": "육개장(해장국)", - "amount": 8000, + "id": "8559e8126020cea8f7f3-history", + "label": "우동", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "fe1cbe472ae69e2158b9", - "label": "바지락칼국수", - "amount": 5000, + "id": "7e900dc1a2d6eced0202-history", + "label": "간짜장", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "dce807a0e5ab579d7cab", - "label": "비빔국수", + "id": "f690c3e46c20689a9dc1-history", + "label": "울면", "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "62514af72ede9f11558c", - "label": "장터칼국수", + "id": "9fb2710f75d429d2e76e-history", + "label": "군만두", "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "1c20b873d456c0c00d41-history", - "label": "가정식백반", - "amount": 6000, + "id": "c4b07d809ff792f14c39-history", + "label": "볶음밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "74cd0f16087701c691e4-history", - "label": "갈비탕", - "amount": 8000, + "id": "15d5f0d4ee825328443d-history", + "label": "짜장밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "613abeb66f6c8008a99e-history", - "label": "육개장(해장국)", - "amount": 8000, + "id": "9bdccac1be7483edc3d0-history", + "label": "짬뽕밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "fe1cbe472ae69e2158b9-history", - "label": "바지락칼국수", + "id": "7f155dfd58302c2bea7a-history", + "label": "육개장", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "dce807a0e5ab579d7cab-history", - "label": "비빔국수", - "amount": 5000, + "id": "04e411fda35338dff7dd-history", + "label": "오므라이스", + "amount": 4500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "62514af72ede9f11558c-history", - "label": "장터칼국수", + "id": "0f9f2d6b0a9ac441eb40-history", + "label": "김치볶음밥", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15838", - "name": "보라매 미용타운", - "businessName": "보라매 미용타운", - "categorySlug": "beauty", - "address": "충청북도 청주시 청원구 1순환로342번길 16-1 (내덕동)", - "district": "충청북도 청주시", - "latitude": 36.65914920998362, - "longitude": 127.47618218928218, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-223-3044", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "7cc50ae79088452eaaa2", - "label": "커트", - "amount": 10000, + "id": "f38ef6a5e8086b401504-history", + "label": "잡채밥", + "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "7cc50ae79088452eaaa2-history", - "label": "커트", + "id": "84b4197e31d352031433-history", + "label": "콩국수", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "35fb45c01a30e4416629-history", + "label": "새우볶음밥", + "amount": 7000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d8393c6cfdc1f0696558-history", + "label": "삼선짬뽕", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "5a1e132c0754975be4cc-history", + "label": "양념탕수육", "amount": 10000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -58770,41 +58338,41 @@ "comments": [] }, { - "id": "goodprice-15772", - "name": "복실이 식당", - "businessName": "복실이 식당", + "id": "goodprice-10339", + "name": "다온", + "businessName": "다온", "categorySlug": "korean", - "address": "충청북도 청주시 서원구 매봉로2번길 40 (분평동) 1층", - "district": "충청북도 청주시", - "latitude": 36.61043494588689, - "longitude": 127.47990007377227, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "address": "서울특별시 도봉구 도당로13길34-21 (방학동)", + "district": "서울특별시 도봉구", + "latitude": 37.666885045002, + "longitude": 127.035635514997, + "representativePriceAmount": 8000, + "representativePriceLabel": "비빔밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-294-3667", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 비빔밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "f39ca2e5b5aa380c200f", - "label": "칼국수", - "amount": 6000, + "id": "d1dd662a4b6f2650fe87", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bd2107c0071093ec8cb4", - "label": "보리밥", - "amount": 7000, + "id": "a77012ae42207fd3e372", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "a45aa6b72a3a690e4646", - "label": "김치찌개", + "id": "e80ff3398e594c78eeff", + "label": "된장찌개", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -58812,22 +58380,22 @@ ], "history": [ { - "id": "f39ca2e5b5aa380c200f-history", - "label": "칼국수", - "amount": 6000, + "id": "d1dd662a4b6f2650fe87-history", + "label": "비빔밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bd2107c0071093ec8cb4-history", - "label": "보리밥", - "amount": 7000, + "id": "a77012ae42207fd3e372-history", + "label": "김치찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "a45aa6b72a3a690e4646-history", - "label": "김치찌개", + "id": "e80ff3398e594c78eeff-history", + "label": "된장찌개", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -58836,37 +58404,51 @@ "comments": [] }, { - "id": "goodprice-16876", - "name": "안골식당", - "businessName": "안골식당", + "id": "goodprice-11390", + "name": "태화장터칼국수", + "businessName": "태화장터칼국수", "categorySlug": "korean", - "address": "충청남도 천안시 동남구 먹거리2길 6-1 (신부동) 2층", - "district": "충청남도 천안시", - "latitude": 36.81768377259163, - "longitude": 127.15402963313205, - "representativePriceAmount": 10000, - "representativePriceLabel": "만두전골", + "address": "울산광역시 중구 화진길 11-4 (태화동)", + "district": "울산광역시 중구", + "latitude": 35.5552335681624, + "longitude": 129.308547033364, + "representativePriceAmount": 8000, + "representativePriceLabel": "들깨칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 만두전골 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1348-2664 / 영업시간: 영업시간 11:30~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 들깨칼국수 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 052-244-6569", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "61bcd2e948e2dddcac79", - "label": "만두전골", - "amount": 10000, + "id": "330a321735bdbb9bd496", + "label": "들깨칼국수", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "96397dbe4ff058829cac", + "label": "수제비", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "61bcd2e948e2dddcac79-history", - "label": "만두전골", - "amount": 10000, + "id": "330a321735bdbb9bd496-history", + "label": "들깨칼국수", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "96397dbe4ff058829cac-history", + "label": "수제비", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -58874,37 +58456,51 @@ "comments": [] }, { - "id": "goodprice-17020", - "name": "엄마밥상 한식뷔페", - "businessName": "엄마밥상 한식뷔페", + "id": "goodprice-16478", + "name": "도봉산콩나물국밥", + "businessName": "도봉산콩나물국밥", "categorySlug": "korean", - "address": "충청남도 천안시 서북구 오성9길 5 (두정동) 1층", - "district": "충청남도 천안시", - "latitude": 36.833566400988474, - "longitude": 127.12808573112298, - "representativePriceAmount": 9000, - "representativePriceLabel": "한식뷔페", + "address": "서울특별시 도봉구 도봉로181길 53 (도봉동) 1층", + "district": "서울특별시 도봉구", + "latitude": 37.68461597970264, + "longitude": 127.0429656928568, + "representativePriceAmount": 6000, + "representativePriceLabel": "콩나물국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-554-8335 / 영업시간: 영업시간 07:00 ~ 21:00 휴무일 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-955-9335", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a942d5eed62a0649d1aa", - "label": "한식뷔페", - "amount": 9000, + "id": "18d96b409bc0a8f1165d", + "label": "콩나물국밥", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "74bee475b16389a6af21", + "label": "비빕밥", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a942d5eed62a0649d1aa-history", - "label": "한식뷔페", - "amount": 9000, + "id": "18d96b409bc0a8f1165d-history", + "label": "콩나물국밥", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "74bee475b16389a6af21-history", + "label": "비빕밥", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -58912,65 +58508,51 @@ "comments": [] }, { - "id": "goodprice-11410", - "name": "옛김포식당", - "businessName": "옛김포식당", + "id": "goodprice-13648", + "name": "텃밭의반찬&분식", + "businessName": "텃밭의반찬&분식", "categorySlug": "korean", - "address": "충청남도 천안시 동남구 영성로 25-19 (사직동)", - "district": "충청남도 천안시", - "latitude": 36.8004524284923, - "longitude": 127.150097319368, - "representativePriceAmount": 6000, - "representativePriceLabel": "칼국수", + "address": "울산광역시 중구 계변고개 11 (복산동) .", + "district": "울산광역시 중구", + "latitude": 35.560346871362604, + "longitude": 129.328562284427, + "representativePriceAmount": 5000, + "representativePriceLabel": "된장찌개", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 041-554-3029 / 영업시간: 10:15~19:30 정기휴무(매주 2, 4째주 화요일)", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: -", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "9ac9ba71e5776c2f3ffb", - "label": "칼국수", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "ff650865e3a51dea2b38", - "label": "냉면", - "amount": 7000, + "id": "339e09172f62a1451b79", + "label": "된장찌개", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "f6f8f02901468734593c", - "label": "콩국수", - "amount": 7000, + "id": "8a8bb0a40a7946ab37e5", + "label": "비빔밥", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "9ac9ba71e5776c2f3ffb-history", - "label": "칼국수", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "ff650865e3a51dea2b38-history", - "label": "냉면", - "amount": 7000, + "id": "339e09172f62a1451b79-history", + "label": "된장찌개", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "f6f8f02901468734593c-history", - "label": "콩국수", - "amount": 7000, + "id": "8a8bb0a40a7946ab37e5-history", + "label": "비빔밥", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -58978,51 +58560,51 @@ "comments": [] }, { - "id": "goodprice-17041", - "name": "모정식당", - "businessName": "모정식당", + "id": "goodprice-17008", + "name": "동치냉면쌍문점", + "businessName": "동치냉면쌍문점", "categorySlug": "korean", - "address": "전북특별자치도 군산시 조촌4길 34-4 (조촌동) 1층", - "district": "전북특별자치도 군산시", - "latitude": 35.96943678402732, - "longitude": 126.73620476668584, - "representativePriceAmount": 9000, - "representativePriceLabel": "김치찌개", + "address": "서울특별시 도봉구 우이천로 335 (쌍문동) 1층", + "district": "서울특별시 도봉구", + "latitude": 37.64664430942057, + "longitude": 127.0262088247343, + "representativePriceAmount": 8000, + "representativePriceLabel": "물냉면", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-461-0102 / 영업시간: 월~토(10:30~21:00) * 14:30~16:00 브레이크타임 * 매주 일요일 정기 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물냉면 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-999-2109", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "c97f8c73e14a8daf3226", - "label": "김치찌개", - "amount": 9000, + "id": "a268e7d9868b0c561aab", + "label": "물냉면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "e956fe9cd04bd9a97c99", - "label": "부대찌개", - "amount": 9000, + "id": "e07e3fec5f94e8b0335e", + "label": "돈까스", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c97f8c73e14a8daf3226-history", - "label": "김치찌개", - "amount": 9000, + "id": "a268e7d9868b0c561aab-history", + "label": "물냉면", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e956fe9cd04bd9a97c99-history", - "label": "부대찌개", - "amount": 9000, + "id": "e07e3fec5f94e8b0335e-history", + "label": "돈까스", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -59030,37 +58612,51 @@ "comments": [] }, { - "id": "goodprice-15532", - "name": "묵은지삼겹살", - "businessName": "묵은지삼겹살", + "id": "goodprice-18450", + "name": "파송송분식", + "businessName": "파송송분식", "categorySlug": "korean", - "address": "전북특별자치도 군산시 경암로 56 (경암동) 묵은지삼겹살", - "district": "전북특별자치도 군산시", - "latitude": 35.97555034978496, - "longitude": 126.73025962030721, - "representativePriceAmount": 7000, - "representativePriceLabel": "된장찌개", + "address": "울산광역시 중구 종가4길 5 (유곡동) 101호", + "district": "울산광역시 중구", + "latitude": 35.56051072842763, + "longitude": 129.29590608898556, + "representativePriceAmount": 3500, + "representativePriceLabel": "떡볶이", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-442-3055 / 영업시간: 화~일(15:00~22:00) 21:00 라스트 오더 매주 월요일 정기휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 떡볶이 3,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1342-4911 / 영업시간: 월~금 08:30~20:00 토요일 08:30~18:00 일요일 08:30~15:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2c6202c5684b01a808f5", - "label": "된장찌개", - "amount": 7000, + "id": "6cc4ca0bc9e0597d093f", + "label": "떡볶이", + "amount": 3500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "0c535fc9e7aac3aed06e", + "label": "순대", + "amount": 3500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "2c6202c5684b01a808f5-history", - "label": "된장찌개", - "amount": 7000, + "id": "6cc4ca0bc9e0597d093f-history", + "label": "떡볶이", + "amount": 3500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0c535fc9e7aac3aed06e-history", + "label": "순대", + "amount": 3500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -59068,107 +58664,125 @@ "comments": [] }, { - "id": "goodprice-5192", - "name": "미주옥", - "businessName": "미주옥", + "id": "goodprice-473", + "name": "멸치국수", + "businessName": "멸치국수", "categorySlug": "korean", - "address": "전북특별자치도 군산시 구영7길 133-4 영화동", - "district": "전북특별자치도 군산시", - "latitude": 35.9893754831364, - "longitude": 126.712272232213, - "representativePriceAmount": 8000, - "representativePriceLabel": "아욱국", + "address": "서울특별시 도봉구 해등로16길 12", + "district": "서울특별시 도봉구", + "latitude": 37.6562348415638, + "longitude": 127.040572917949, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 아욱국 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-442-5505 / 영업시간: 월~일 06:00~14:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-994-8233 / 영업시간: 매일 10:30-21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "180ade9e741df60418d2", - "label": "아욱국", - "amount": 8000, + "id": "3f1eed0de6b10712e709", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "618ea379408c27e91dc5", - "label": "김치찌개", - "amount": 8000, + "id": "65ca38fe1c1e14cbd219", + "label": "냉면", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "41bde5ef649c09c8d678", - "label": "닭곰탕", - "amount": 8000, + "id": "fb429d0fee258fa7bfee", + "label": "김치덮밥", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "868d6562ab4260197bc7", - "label": "소고기무우국", + "id": "500c94778d51b636b007", + "label": "돈까스", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "180ade9e741df60418d2-history", - "label": "아욱국", - "amount": 8000, + "id": "88651d735671234fa4f0", + "label": "떡라면", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "618ea379408c27e91dc5-history", - "label": "김치찌개", - "amount": 8000, + "id": "e399bd186bd0f09c7ff3", + "label": "떡만두국", + "amount": 6500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "41bde5ef649c09c8d678-history", - "label": "닭곰탕", - "amount": 8000, + "id": "0d6ac94a0f96be00dc03", + "label": "라면", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "868d6562ab4260197bc7-history", - "label": "소고기무우국", - "amount": 8000, + "id": "b06afd9327fbc2179596", + "label": "멸추김밥", + "amount": 4000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15530", - "name": "베테랑돈까스", - "businessName": "베테랑돈까스", - "categorySlug": "western", - "address": "전북특별자치도 군산시 양안로 103-1 (조촌동) 조촌동", - "district": "전북특별자치도 군산시", - "latitude": 35.971740241807225, - "longitude": 126.74345325965865, - "representativePriceAmount": 6000, - "representativePriceLabel": "베테랑 생돈까스", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 양식 업소입니다. 대표 항목은 베테랑 생돈까스 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 063-452-5582 / 영업시간: 월~금(11:30~20:30) 토~일(11:30~19:30)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, + { + "id": "221d39e91b6b2e25844d", + "label": "멸치국수", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "63e8313dac8aac81de68", + "label": "비빔국수", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "b9b0cad5eab0a02d58ea", + "label": "야채김밥", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e8a49396364c0139f3f0", + "label": "참치김밥", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "6d9ecfcf53eb2e058f0b", + "label": "치즈돈까스", + "amount": 8500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, { - "id": "afee2c021e414b97fef7", - "label": "베테랑 생돈까스", + "id": "4b7a9d2c9976e4fcd82f", + "label": "치즈라면", + "amount": 5000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e33a89d64ae4255f5679", + "label": "콩국수", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -59176,151 +58790,107 @@ ], "history": [ { - "id": "afee2c021e414b97fef7-history", - "label": "베테랑 생돈까스", + "id": "3f1eed0de6b10712e709-history", + "label": "김밥", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "65ca38fe1c1e14cbd219-history", + "label": "냉면", "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5705", - "name": "동광탕", - "businessName": "동광탕", - "categorySlug": "bath", - "address": "전라남도 여수시 동문로 101 2층(공화동)", - "district": "전라남도 여수시", - "latitude": 34.7456605198534, - "longitude": 127.742352326201, - "representativePriceAmount": 8000, - "representativePriceLabel": "목욕비", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 목욕업 업소입니다. 대표 항목은 목욕비 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-662-4272 / 영업시간: 5시 - 17시", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "c8d0b7f894c4fb67f068", - "label": "목욕비", - "amount": 8000, + "id": "fb429d0fee258fa7bfee-history", + "label": "김치덮밥", + "amount": 6500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "c8d0b7f894c4fb67f068-history", - "label": "목욕비", + "id": "500c94778d51b636b007-history", + "label": "돈까스", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-5762", - "name": "두레", - "businessName": "두레", - "categorySlug": "korean", - "address": "전라남도 여수시 학동1길 12-7 (학동) 1층", - "district": "전라남도 여수시", - "latitude": 34.76449978425705, - "longitude": 127.66474470490957, - "representativePriceAmount": 7000, - "representativePriceLabel": "백반", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 백반 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 061-684-1808 / 영업시간: 09:00~19:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "e74632333d3e631e15f7", - "label": "백반", - "amount": 7000, + "id": "88651d735671234fa4f0-history", + "label": "떡라면", + "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" + }, + { + "id": "e399bd186bd0f09c7ff3-history", + "label": "떡만두국", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "0d6ac94a0f96be00dc03-history", + "label": "라면", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "b06afd9327fbc2179596-history", + "label": "멸추김밥", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" }, { - "id": "880acca28a8559587d34", - "label": "장어탕", - "amount": 10000, + "id": "221d39e91b6b2e25844d-history", + "label": "멸치국수", + "amount": 5000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "e74632333d3e631e15f7-history", - "label": "백반", - "amount": 7000, + "id": "63e8313dac8aac81de68-history", + "label": "비빔국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "880acca28a8559587d34-history", - "label": "장어탕", - "amount": 10000, + "id": "b9b0cad5eab0a02d58ea-history", + "label": "야채김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-6412", - "name": "리클라스", - "businessName": "리클라스", - "categorySlug": "other-food", - "address": "경상북도 포항시 북구 대신로7번길 7 리클라스", - "district": "경상북도 포항시", - "latitude": 36.0448115361729, - "longitude": 129.367277819827, - "representativePriceAmount": 4800, - "representativePriceLabel": "카페라떼", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 카페라떼 4,800원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 054-248-3742 / 영업시간: 목 09:00-22:00 금 09:00-22:00 토 10:00-22:00 일 10:00-22:00 월 09:00-22:00 화 09:00-22:00 수 09:00-22:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "81d9191f2d987a84ad81", - "label": "카페라떼", - "amount": 4800, + "id": "e8a49396364c0139f3f0-history", + "label": "참치김밥", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "d1a6cb1d9d5c4fc8edb4", - "label": "오늘의커피(원두커피)", - "amount": 3000, + "id": "6d9ecfcf53eb2e058f0b-history", + "label": "치즈돈까스", + "amount": 8500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "81d9191f2d987a84ad81-history", - "label": "카페라떼", - "amount": 4800, + "id": "4b7a9d2c9976e4fcd82f-history", + "label": "치즈라면", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d1a6cb1d9d5c4fc8edb4-history", - "label": "오늘의커피(원두커피)", - "amount": 3000, + "id": "e33a89d64ae4255f5679-history", + "label": "콩국수", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -59328,41 +58898,34 @@ "comments": [] }, { - "id": "goodprice-6312", - "name": "마실카페", - "businessName": "마실카페", - "categorySlug": "other-food", - "address": "경상북도 포항시 남구 동해면 일월로81번길 9 마실카페", - "district": "경상북도 포항시", - "latitude": 35.989400103331, - "longitude": 129.44204186305, - "representativePriceAmount": 3000, - "representativePriceLabel": "아메리카노", + "id": "goodprice-19178", + "name": "전주미담콩나물국바바", + "businessName": "전주미담콩나물국바바", + "categorySlug": "korean", + "address": "세종특별자치시 아름서1길 27 (아름동) 101호", + "district": "세종특별자치시 아름서1길", + "latitude": 36.51128159316062, + "longitude": 127.24363527534015, + "representativePriceAmount": 5000, + "representativePriceLabel": "콩나물국밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 10시30분~23시", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 콩나물국밥 5,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1440-1549", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "48a49620be9397d09eef", - "label": "아메리카노", - "amount": 3000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "488366be40ebfee13a73", - "label": "카페라떼", - "amount": 4000, + "id": "57f35dba9f77b83d232e", + "label": "콩나물국밥", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "bd17001ca3bf89a0a590", - "label": "바닐라라떼", + "id": "ba61691b390963fbcac7", + "label": "만두", "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -59370,22 +58933,15 @@ ], "history": [ { - "id": "48a49620be9397d09eef-history", - "label": "아메리카노", - "amount": 3000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "488366be40ebfee13a73-history", - "label": "카페라떼", - "amount": 4000, + "id": "57f35dba9f77b83d232e-history", + "label": "콩나물국밥", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "bd17001ca3bf89a0a590-history", - "label": "바닐라라떼", + "id": "ba61691b390963fbcac7-history", + "label": "만두", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" @@ -59394,471 +58950,275 @@ "comments": [] }, { - "id": "goodprice-14603", - "name": "선백면옥", - "businessName": "선백면옥", + "id": "goodprice-474", + "name": "명동분식", + "businessName": "명동분식", "categorySlug": "korean", - "address": "경상남도 창원시 진해구 자은로28번길 8 (자은동) 선백면옥", - "district": "경상남도 창원시", - "latitude": 35.14906570208649, - "longitude": 128.7052270170308, - "representativePriceAmount": 7000, - "representativePriceLabel": "물밀면", + "address": "서울특별시 도봉구 도당로13가길 6 (방학동)", + "district": "서울특별시 도봉구", + "latitude": 37.6654827924061, + "longitude": 127.035821742602, + "representativePriceAmount": 2500, + "representativePriceLabel": "깁밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 물밀면 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-542-9969", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 깁밥 2,500원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-349-6553 / 영업시간: 금 06:00-22:00 토 06:00-22:00 일 정기휴무(매주일요일) 월 06:00-22:00 화 06:00-22:00 수 06:00-22:00 목 06:00-22:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "d47e85d8c1293281494f", - "label": "물밀면", - "amount": 7000, + "id": "064af5a9914e9794fa98", + "label": "깁밥", + "amount": 2500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8eccfc30ab723cbbf8e7", - "label": "물냉면", - "amount": 8000, + "id": "8b002f3a7c0516dd71b1", + "label": "떡만둣국", + "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7afef849eb5277f73ceb", - "label": "숯불갈비(200g)", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "d47e85d8c1293281494f-history", - "label": "물밀면", + "id": "18027c4416c8d4d143d7", + "label": "갈비탕", "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "8eccfc30ab723cbbf8e7-history", - "label": "물냉면", - "amount": 8000, + "id": "9125ca24ae9e851f0b0c", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "7afef849eb5277f73ceb-history", - "label": "숯불갈비(200g)", - "amount": 10000, + "id": "bac81cd996d117c7ab2f", + "label": "김치볶음밥", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11516", - "name": "성안식당", - "businessName": "성안식당", - "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 합성서5길 18 (합성동)", - "district": "경상남도 창원시", - "latitude": 35.2412291831889, - "longitude": 128.583488769265, - "representativePriceAmount": 8000, - "representativePriceLabel": "갈비탕", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 갈비탕 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-256-6696", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "54edacab10e9a44f4e40", - "label": "갈비탕", - "amount": 8000, + "id": "97c6163b9c83789436b5", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "40450c8edfceb33f6f0a", - "label": "삼겹살", - "amount": 8000, + "id": "750e1df522af3f3a842a", + "label": "돈까스", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "2c066ffd416445f6bf17", - "label": "돼지갈비", + "id": "f8ae17cc4844592416c5", + "label": "돌솥비빔밥", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "54edacab10e9a44f4e40-history", - "label": "갈비탕", - "amount": 8000, + "id": "fa9dcd0c1f975f10cf30", + "label": "된장백반", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "40450c8edfceb33f6f0a-history", - "label": "삼겹살", - "amount": 8000, + "id": "05bb3ba9a7824eeb885e", + "label": "떡만두국", + "amount": 5000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "2c066ffd416445f6bf17-history", - "label": "돼지갈비", + "id": "97bed657945899e64d92", + "label": "뚝배기불고기", "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-15415", - "name": "소금깎이 창원진해본점", - "businessName": "소금깎이 창원진해본점", - "categorySlug": "korean", - "address": "경상남도 창원시 진해구 동진로61번길 6 (석동) 소금깎이 창원진해본점", - "district": "경상남도 창원시", - "latitude": 35.15181122430042, - "longitude": 128.70271441863437, - "representativePriceAmount": 9000, - "representativePriceLabel": "토마호크(100g)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 토마호크(100g) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-547-0062", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "1472f774d6562b08e733", - "label": "토마호크(100g)", - "amount": 9000, - "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "293011c0ac273cbaaa60", - "label": "우대갈비(100g)", - "amount": 10000, + "id": "bf5b62e792beacbb530b", + "label": "볶음밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "7a513bbdb576a49edd36", - "label": "삼겹살(100g)", + "id": "9887c95031373253be3a", + "label": "비빔밥", "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ - { - "id": "1472f774d6562b08e733-history", - "label": "토마호크(100g)", - "amount": 9000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" }, { - "id": "293011c0ac273cbaaa60-history", - "label": "우대갈비(100g)", - "amount": 10000, + "id": "b4ef5fe811ecaaf6192e", + "label": "순두부백반", + "amount": 6000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "7a513bbdb576a49edd36-history", - "label": "삼겹살(100g)", - "amount": 6000, + "id": "4449a1159a40c56c4d6d", + "label": "오므라이스", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18615", - "name": "소문난김밥", - "businessName": "소문난김밥", - "categorySlug": "korean", - "address": "경상남도 창원시 마산회원구 내서읍 중리상곡로 129 소문난김밥", - "district": "경상남도 창원시", - "latitude": 35.25181139457977, - "longitude": 128.51144426255615, - "representativePriceAmount": 3000, - "representativePriceLabel": "소문난김밥", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 소문난김밥 3,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 055-231-4893", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "c0e9777a9a898347706f", - "label": "소문난김밥", - "amount": 3000, + "id": "d59948e0972c9a1c7276", + "label": "오징어덮밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d2f6297603d9532e4d72", - "label": "물국수", - "amount": 5000, + "id": "ba17f5453037d97e540d", + "label": "육개장", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "eefc229e78e46efca916", - "label": "우동", - "amount": 5000, + "id": "7c7dda7c5bf32542a9ee", + "label": "제육덮밥", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "c0e9777a9a898347706f-history", - "label": "소문난김밥", - "amount": 3000, + "id": "064af5a9914e9794fa98-history", + "label": "깁밥", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d2f6297603d9532e4d72-history", - "label": "물국수", + "id": "8b002f3a7c0516dd71b1-history", + "label": "떡만둣국", "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "eefc229e78e46efca916-history", - "label": "우동", - "amount": 5000, + "id": "18027c4416c8d4d143d7-history", + "label": "갈비탕", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-11154", - "name": "머리하기좋은날", - "businessName": "머리하기좋은날", - "categorySlug": "beauty", - "address": "제주특별자치도 제주시 신대로6길 11 ()", - "district": "제주특별자치도 제주시", - "latitude": 33.4922364704893, - "longitude": 126.495273237818, - "representativePriceAmount": 10000, - "representativePriceLabel": "커트(샴푸 미포함)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 커트(샴푸 미포함) 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 064-713-6667", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ - { - "id": "1ff8ebc2146a3dc8f370", - "label": "커트(샴푸 미포함)", - "amount": 10000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "1ff8ebc2146a3dc8f370-history", - "label": "커트(샴푸 미포함)", - "amount": 10000, + "id": "9125ca24ae9e851f0b0c-history", + "label": "김밥", + "amount": 2500, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-18570", - "name": "신라미용실", - "businessName": "신라미용실", - "categorySlug": "beauty", - "address": "서울특별시 중구 퇴계로 217 (충무로4가, 진양상가, 진양아파트) 1층 36호, 37호", - "district": "서울특별시 중구", - "latitude": 37.562423982135904, - "longitude": 126.99593553115459, - "representativePriceAmount": 10000, - "representativePriceLabel": "남성컷", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 남성컷 10,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 010-9264-3072", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "8c0637355b74f0520c01", - "label": "남성컷", - "amount": 10000, + "id": "bac81cd996d117c7ab2f-history", + "label": "김치볶음밥", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "8c0637355b74f0520c01-history", - "label": "남성컷", - "amount": 10000, + "id": "97c6163b9c83789436b5-history", + "label": "김치찌개", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-967", - "name": "신빙고", - "businessName": "신빙고", - "categorySlug": "other-food", - "address": "서울특별시 중구 동호로12길 93 1층(신당동)", - "district": "서울특별시 중구", - "latitude": 37.559329134852, - "longitude": 127.012071243923, - "representativePriceAmount": 2300, - "representativePriceLabel": "아메리카노", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 아메리카노 2,300원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-8819 / 영업시간: 월~금 10:00-20:30 토~일 11:00-19:00 (하절기에 변동가능)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "c5dfcaa7d9aa39644d84", - "label": "아메리카노", - "amount": 2300, + "id": "750e1df522af3f3a842a-history", + "label": "돈까스", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "3f6c65eaf9b0e847b415", - "label": "복숭아아이스티", - "amount": 2300, + "id": "f8ae17cc4844592416c5-history", + "label": "돌솥비빔밥", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "6d41043b245a04ad6fb7", - "label": "플레인크로플", - "amount": 2800, + "id": "fa9dcd0c1f975f10cf30-history", + "label": "된장백반", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "c5dfcaa7d9aa39644d84-history", - "label": "아메리카노", - "amount": 2300, + "id": "05bb3ba9a7824eeb885e-history", + "label": "떡만두국", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3f6c65eaf9b0e847b415-history", - "label": "복숭아아이스티", - "amount": 2300, + "id": "97bed657945899e64d92-history", + "label": "뚝배기불고기", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6d41043b245a04ad6fb7-history", - "label": "플레인크로플", - "amount": 2800, + "id": "bf5b62e792beacbb530b-history", + "label": "볶음밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-984", - "name": "영자씨우동김밥", - "businessName": "영자씨우동김밥", - "categorySlug": "korean", - "address": "서울특별시 중구 마른내로 15-1 (저동2가)", - "district": "서울특별시 중구", - "latitude": 37.5649541262687, - "longitude": 126.989606762221, - "representativePriceAmount": 7000, - "representativePriceLabel": "김치찌개", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김치찌개 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-227-9791 / 영업시간: 월~금 07:00~20:00 토,일 휴무", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "f1304235cd33c728e951", - "label": "김치찌개", - "amount": 7000, + "id": "9887c95031373253be3a-history", + "label": "비빔밥", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "1ad1a44a63016a968470", - "label": "김밥 (야채)", - "amount": 3500, + "id": "b4ef5fe811ecaaf6192e-history", + "label": "순두부백반", + "amount": 6000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "0eb9264027c0a9816e63", - "label": "카레덮밥", - "amount": 8000, + "id": "4449a1159a40c56c4d6d-history", + "label": "오므라이스", + "amount": 7000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "f1304235cd33c728e951-history", - "label": "김치찌개", + "id": "d59948e0972c9a1c7276-history", + "label": "오징어덮밥", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1ad1a44a63016a968470-history", - "label": "김밥 (야채)", - "amount": 3500, + "id": "ba17f5453037d97e540d-history", + "label": "육개장", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0eb9264027c0a9816e63-history", - "label": "카레덮밥", - "amount": 8000, + "id": "7c7dda7c5bf32542a9ee-history", + "label": "제육덮밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -59866,65 +59226,51 @@ "comments": [] }, { - "id": "goodprice-969", - "name": "옛날홍두깨손칼국수", - "businessName": "옛날홍두깨손칼국수", - "categorySlug": "korean", - "address": "서울특별시 중구 동호로7길 32 1층", - "district": "서울특별시 중구", - "latitude": 37.5525136777809, - "longitude": 127.010624637953, - "representativePriceAmount": 6000, - "representativePriceLabel": "손수제비", + "id": "goodprice-15901", + "name": "정브레드", + "businessName": "정브레드", + "categorySlug": "other-food", + "address": "세종특별자치시 새롬중앙1로 13 (새롬동, 새뜸마을6단지) 상가", + "district": "세종특별자치시 새롬중앙1로", + "latitude": 36.48442826252241, + "longitude": 127.25083904576256, + "representativePriceAmount": 1000, + "representativePriceLabel": "찹쌀 도너츠", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 손수제비 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-223-1458 / 영업시간: 월~일 09:00~20:00 명절 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 찹쌀 도너츠 1,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 044-864-3311", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "217840a02dae9b806388", - "label": "손수제비", - "amount": 6000, - "verificationStatus": "verified", - "reportedAt": "2026-04-02" - }, - { - "id": "93a81d9fe454a534e253", - "label": "잔치국수", - "amount": 4000, + "id": "d77e5866677bbbc598b0", + "label": "찹쌀 도너츠", + "amount": 1000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "ed658c755f7a782fc227", - "label": "야채비빔밥", - "amount": 6000, + "id": "6e1fb8e6a1113f981e13", + "label": "마들렌(레몬)", + "amount": 1200, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "217840a02dae9b806388-history", - "label": "손수제비", - "amount": 6000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, - { - "id": "93a81d9fe454a534e253-history", - "label": "잔치국수", - "amount": 4000, + "id": "d77e5866677bbbc598b0-history", + "label": "찹쌀 도너츠", + "amount": 1000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "ed658c755f7a782fc227-history", - "label": "야채비빔밥", - "amount": 6000, + "id": "6e1fb8e6a1113f981e13-history", + "label": "마들렌(레몬)", + "amount": 1200, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -59932,51 +59278,51 @@ "comments": [] }, { - "id": "goodprice-1430", - "name": "산바다", - "businessName": "산바다", + "id": "goodprice-464", + "name": "미락칼국수", + "businessName": "미락칼국수", "categorySlug": "korean", - "address": "부산광역시 서구 엄광산로 6 (서대신동3가)", - "district": "부산광역시 서구", - "latitude": 35.1277404417829, - "longitude": 129.007513285213, - "representativePriceAmount": 8000, - "representativePriceLabel": "메기매운탕", + "address": "서울특별시 도봉구 도봉로110길 68 (창동)", + "district": "서울특별시 도봉구", + "latitude": 37.6461159676582, + "longitude": 127.037374768708, + "representativePriceAmount": 7000, + "representativePriceLabel": "칼국수", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 메기매운탕 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-241-2976 / 영업시간: 07:00~19:30", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-908-7017 / 영업시간: 매일 11:00 ~ 19:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "906f30181c834d399a6c", - "label": "메기매운탕", - "amount": 8000, + "id": "11e00b8f8c707792323e", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "0c909d4188710e329430", - "label": "빙어튀김", - "amount": 10000, + "id": "5aebeff9f73e05cf301d", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "906f30181c834d399a6c-history", - "label": "메기매운탕", - "amount": 8000, + "id": "11e00b8f8c707792323e-history", + "label": "칼국수", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "0c909d4188710e329430-history", - "label": "빙어튀김", - "amount": 10000, + "id": "5aebeff9f73e05cf301d-history", + "label": "김치찌개", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -59984,37 +59330,37 @@ "comments": [] }, { - "id": "goodprice-1431", - "name": "삼원두루치기", - "businessName": "삼원두루치기", + "id": "goodprice-15900", + "name": "집밥한식뷔페", + "businessName": "집밥한식뷔페", "categorySlug": "korean", - "address": "부산광역시 서구 구덕로193번길 12-17 (부민동2가)", - "district": "부산광역시 서구", - "latitude": 35.1024534581686, - "longitude": 129.019112839039, - "representativePriceAmount": 8000, - "representativePriceLabel": "두루치기", + "address": "세종특별자치시 부강면 부강외천로 139 집밥한식뷔페", + "district": "세종특별자치시 부강면", + "latitude": 36.52811606536304, + "longitude": 127.3824825445357, + "representativePriceAmount": 6000, + "representativePriceLabel": "한식뷔페", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 두루치기 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-231-5452 / 영업시간: 10:00~21:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 한식뷔페 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1411-3828 / 영업시간: 월~토, 10:30~15:30", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "6fad44f2a12e02f4bf3c", - "label": "두루치기", - "amount": 8000, + "id": "e7d1602f1f9229f5c74e", + "label": "한식뷔페", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "6fad44f2a12e02f4bf3c-history", - "label": "두루치기", - "amount": 8000, + "id": "e7d1602f1f9229f5c74e-history", + "label": "한식뷔페", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -60022,295 +59368,345 @@ "comments": [] }, { - "id": "goodprice-1406", - "name": "성일칼국수", - "businessName": "성일칼국수", + "id": "goodprice-475", + "name": "박리김밥", + "businessName": "박리김밥", "categorySlug": "korean", - "address": "부산광역시 서구 해안새벽시장길 8 (충무동1가)", - "district": "부산광역시 서구", - "latitude": 35.0958892269302, - "longitude": 129.025392096138, - "representativePriceAmount": 5000, - "representativePriceLabel": "칼국수", + "address": "서울특별시 도봉구 덕릉로57길 22 (창동)", + "district": "서울특별시 도봉구", + "latitude": 37.6396869947247, + "longitude": 127.037375060198, + "representativePriceAmount": 3000, + "representativePriceLabel": "김밥", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 칼국수 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 051-244-1547 / 영업시간: 아침 7:00-7:30or 8:00 휴무 매달 2번째 주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 김밥 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-907-7002 / 영업시간: 매일 6:00~ 21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "0d35217d236fd69c21ef", - "label": "칼국수", - "amount": 5000, + "id": "45c6c391288290ea117c", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4bf1663a4c83a279e6f5", - "label": "짜장면", - "amount": 5000, + "id": "31dc1cddfa3111e68c14", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - } - ], - "history": [ + }, { - "id": "0d35217d236fd69c21ef-history", - "label": "칼국수", - "amount": 5000, + "id": "c0600ad8878fddd61749", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "4bf1663a4c83a279e6f5-history", - "label": "짜장면", - "amount": 5000, + "id": "60662e38ba5511aa90b5", + "label": "계란후라이", + "amount": 1000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1874", - "name": "시장냉면", - "businessName": "시장냉면", - "categorySlug": "korean", - "address": "대구광역시 동구 팔공로30길 10-3 (불로동)", - "district": "대구광역시 동구", - "latitude": 35.9113533839705, - "longitude": 128.642338260752, - "representativePriceAmount": 6000, - "representativePriceLabel": "얼큰냉면", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 얼큰냉면 6,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-981-4044 / 영업시간: 매일 11:00-20:00", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + "reportedAt": "2026-04-02" + }, { - "id": "8b8f7498b6ce02fee7b5", - "label": "얼큰냉면", - "amount": 6000, + "id": "9bfaa9fecfae16d391df", + "label": "고추김밥", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b045603ce16bdcfaa931", - "label": "(겨울)가락국수", - "amount": 6000, + "id": "6307e30be7f220f59384", + "label": "공기밥", + "amount": 1000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e3ac7cbdf63dcbeb82a1", + "label": "김치김밥", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "c6949f9afc37c3edc0b2", + "label": "김치볶음밥", + "amount": 7500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "86551a1f6faef1e057a6", + "label": "김치주먹밥", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "e0810c4685a43303f500", + "label": "땡초김밥", + "amount": 4000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4067615b63788df8522d", + "label": "떡볶이", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "2648c64617468e91ba08", + "label": "라볶이", + "amount": 5500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "a39aa8bf8b4aa360085e", + "label": "믹스주먹밥", + "amount": 4500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "42e559140bc195bb093a", + "label": "박리김밥", + "amount": 2500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "96c3e6375fac4b5d691f", + "label": "새우볶음밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "9b692f1638f05e7f727f", - "label": "가락국수", + "id": "d878a0a51e13dd7c9eb0", + "label": "소고기주먹밥", "amount": 5000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8abc549ab8e3712f8a40", - "label": "매운비빔냉면", - "amount": 6000, + "id": "54ba6688becf350d764f", + "label": "오므라이스", + "amount": 7500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "403fd6618326e29e7aea", - "label": "물냉면", - "amount": 6000, + "id": "1b284272a64b9fde1445", + "label": "쫄볶이", + "amount": 5500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "8ef6fce44001aaf95691", - "label": "물만두", + "id": "e3fa39d585a94eb63dcc", + "label": "참치볶음밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "54953074d3c2612002c7", + "label": "참치주먹밥", "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "689700f495e093084f0f", - "label": "비빔냉면", - "amount": 6000, + "id": "14e056581a29f539f5d8", + "label": "치즈김밥", + "amount": 4500, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "17ff1c706775fc79b580", - "label": "얼큰가락국수", - "amount": 6000, + "id": "65cb10866343b9b14d13", + "label": "치즈떡볶이", + "amount": 6500, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "4b1ec9d139187881783b", + "label": "치즈라볶이", + "amount": 6500, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "8b8f7498b6ce02fee7b5-history", - "label": "얼큰냉면", - "amount": 6000, + "id": "45c6c391288290ea117c-history", + "label": "김밥", + "amount": 3000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "b045603ce16bdcfaa931-history", - "label": "(겨울)가락국수", - "amount": 6000, + "id": "31dc1cddfa3111e68c14-history", + "label": "된장찌개", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "9b692f1638f05e7f727f-history", - "label": "가락국수", - "amount": 5000, + "id": "c0600ad8878fddd61749-history", + "label": "비빔밥", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8abc549ab8e3712f8a40-history", - "label": "매운비빔냉면", - "amount": 6000, + "id": "60662e38ba5511aa90b5-history", + "label": "계란후라이", + "amount": 1000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "403fd6618326e29e7aea-history", - "label": "물냉면", - "amount": 6000, + "id": "9bfaa9fecfae16d391df-history", + "label": "고추김밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "8ef6fce44001aaf95691-history", - "label": "물만두", + "id": "6307e30be7f220f59384-history", + "label": "공기밥", + "amount": 1000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "e3ac7cbdf63dcbeb82a1-history", + "label": "김치김밥", "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "689700f495e093084f0f-history", - "label": "비빔냉면", - "amount": 6000, + "id": "c6949f9afc37c3edc0b2-history", + "label": "김치볶음밥", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "17ff1c706775fc79b580-history", - "label": "얼큰가락국수", - "amount": 6000, + "id": "86551a1f6faef1e057a6-history", + "label": "김치주먹밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - } - ], - "comments": [] - }, - { - "id": "goodprice-1885", - "name": "신산홍", - "businessName": "신산홍", - "categorySlug": "korean", - "address": "대구광역시 동구 아양로7길 12 가상가동 지하1층 108호(신암동, 신암뜨란채)", - "district": "대구광역시 동구", - "latitude": 35.8823321773353, - "longitude": 128.61768521709, - "representativePriceAmount": 9000, - "representativePriceLabel": "양념닭목살(130g)", - "verificationStatus": "verified", - "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 양념닭목살(130g) 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-944-5650 / 영업시간: 목 17:00-23:00 22:20라스트오더 금 17:00-23:00 22:20라스트오더 토 17:00-23:00 22:20라스트오더 일 17:00-23:00 22:20라스트오더 월 17:00-23:00 22:20라스트오더 화 17:00-23:00 22:20라스트오더 수 정기휴무(매주수요일)", - "likeCount": 0, - "dislikeCount": 0, - "viewerReaction": null, - "priceItems": [ + }, { - "id": "6f7a2952794c8d5fa8e0", - "label": "양념닭목살(130g)", - "amount": 9000, + "id": "e0810c4685a43303f500-history", + "label": "땡초김밥", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "1b2a9338283d8cf1d13c", - "label": "갈비양념닭목살(130g)", - "amount": 10000, + "id": "4067615b63788df8522d-history", + "label": "떡볶이", + "amount": 5500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "72af0c43f205a04b4e35", - "label": "갈비맛닭목살", - "amount": 10000, + "id": "2648c64617468e91ba08-history", + "label": "라볶이", + "amount": 5500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "51cf0ac9ccb91a0dacb6", - "label": "양념곰장어", - "amount": 10000, + "id": "a39aa8bf8b4aa360085e-history", + "label": "믹스주먹밥", + "amount": 4500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "00a56221d6a9cd010072", - "label": "양념닭목살", - "amount": 9000, + "id": "42e559140bc195bb093a-history", + "label": "박리김밥", + "amount": 2500, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "e5f3f1fdd86e0f8da10f", - "label": "양념닭발", - "amount": 9000, + "id": "96c3e6375fac4b5d691f-history", + "label": "새우볶음밥", + "amount": 8000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" - } - ], - "history": [ + "recordedAt": "2026-04-02" + }, { - "id": "6f7a2952794c8d5fa8e0-history", - "label": "양념닭목살(130g)", - "amount": 9000, + "id": "d878a0a51e13dd7c9eb0-history", + "label": "소고기주먹밥", + "amount": 5000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "1b2a9338283d8cf1d13c-history", - "label": "갈비양념닭목살(130g)", - "amount": 10000, + "id": "54ba6688becf350d764f-history", + "label": "오므라이스", + "amount": 7500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "72af0c43f205a04b4e35-history", - "label": "갈비맛닭목살", - "amount": 10000, + "id": "1b284272a64b9fde1445-history", + "label": "쫄볶이", + "amount": 5500, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "51cf0ac9ccb91a0dacb6-history", - "label": "양념곰장어", - "amount": 10000, + "id": "e3fa39d585a94eb63dcc-history", + "label": "참치볶음밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "00a56221d6a9cd010072-history", - "label": "양념닭목살", - "amount": 9000, + "id": "54953074d3c2612002c7-history", + "label": "참치주먹밥", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "e5f3f1fdd86e0f8da10f-history", - "label": "양념닭발", - "amount": 9000, + "id": "14e056581a29f539f5d8-history", + "label": "치즈김밥", + "amount": 4500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "65cb10866343b9b14d13-history", + "label": "치즈떡볶이", + "amount": 6500, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "4b1ec9d139187881783b-history", + "label": "치즈라볶이", + "amount": 6500, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -60318,51 +59714,65 @@ "comments": [] }, { - "id": "goodprice-17768", - "name": "엄마솥밥상", - "businessName": "엄마솥밥상", + "id": "goodprice-11391", + "name": "똘똘이네M카페", + "businessName": "똘똘이네M카페", "categorySlug": "korean", - "address": "대구광역시 동구 동대구로 423 (신천동)", - "district": "대구광역시 동구", - "latitude": 35.86819851346647, - "longitude": 128.6259527502153, - "representativePriceAmount": 8000, - "representativePriceLabel": "된장정식", + "address": "경기도 수원시 권선구 고색로 54번길66 (고색동)", + "district": "경기도 수원시", + "latitude": 37.2474159314554, + "longitude": 126.983768254338, + "representativePriceAmount": 3000, + "representativePriceLabel": "생삼겹(100g)", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 된장정식 8,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-753-2030 / 영업시간: 영업시간 : 월~금 10:00 ~ 21:00 토요일 10:00 ~ 15:00 정기휴무 : 매주 일요일", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 생삼겹(100g) 3,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 031-278-5081", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "a4279d0da8efdbe3592b", - "label": "된장정식", + "id": "fb2e0777ca23c579a3f2", + "label": "생삼겹(100g)", + "amount": 3000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "d4928b2e2aa9cd5bcb16", + "label": "비빔냉면", "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "5679c2b0a7a92dbcec2e", - "label": "순두부정식", - "amount": 9000, + "id": "b64d55807afac44b1e7c", + "label": "물냉면", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "a4279d0da8efdbe3592b-history", - "label": "된장정식", + "id": "fb2e0777ca23c579a3f2-history", + "label": "생삼겹(100g)", + "amount": 3000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "d4928b2e2aa9cd5bcb16-history", + "label": "비빔냉면", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "5679c2b0a7a92dbcec2e-history", - "label": "순두부정식", - "amount": 9000, + "id": "b64d55807afac44b1e7c-history", + "label": "물냉면", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -60370,173 +59780,235 @@ "comments": [] }, { - "id": "goodprice-1868", - "name": "영남루반점", - "businessName": "영남루반점", - "categorySlug": "chinese", - "address": "대구광역시 동구 해동로 18 (지저동)", - "district": "대구광역시 동구", - "latitude": 35.896627045467, - "longitude": 128.637690520629, - "representativePriceAmount": 5000, - "representativePriceLabel": "자장면", + "id": "goodprice-16476", + "name": "박은선닭꼬치", + "businessName": "박은선닭꼬치", + "categorySlug": "other-food", + "address": "서울특별시 도봉구 도봉로145길 65 (방학동) 상가 나동 104호", + "district": "서울특별시 도봉구", + "latitude": 37.664535863595034, + "longitude": 127.03890403254496, + "representativePriceAmount": 2000, + "representativePriceLabel": "떡꼬치", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 중식 업소입니다. 대표 항목은 자장면 5,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 053-981-9881 / 영업시간: 월~수 10:40~20:00 목 휴무 금~일 10:40~20:00", + "description": "행정안전부 착한가격업소 목록에서 수집한 기타요식업 업소입니다. 대표 항목은 떡꼬치 2,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3494-0369", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "e1dc14f067c17745d60f", - "label": "자장면", - "amount": 5000, + "id": "254c62c2e5f7f7b36300", + "label": "떡꼬치", + "amount": 2000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "59fccdc6328f7fe6d35f", - "label": "우동", - "amount": 6000, + "id": "842df571a55572f1d822", + "label": "파닭꼬치", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "86b6e0686793b65bfd7f", - "label": "짬뽕", - "amount": 6000, + "id": "bd464bdbca63fe4be626", + "label": "순살닭꼬치", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" - }, + } + ], + "history": [ { - "id": "45a557faaffdade774dd", - "label": "간짜장", - "amount": 6000, + "id": "254c62c2e5f7f7b36300-history", + "label": "떡꼬치", + "amount": 2000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "07475a48905aaa290a08", - "label": "볶음밥,짬뽕밥", - "amount": 7000, + "id": "842df571a55572f1d822-history", + "label": "파닭꼬치", + "amount": 4000, "verificationStatus": "verified", - "reportedAt": "2026-04-02" + "recordedAt": "2026-04-02" }, { - "id": "3ba2ef1b675aa9eb1a95", - "label": "야끼우동", - "amount": 8000, + "id": "bd464bdbca63fe4be626-history", + "label": "순살닭꼬치", + "amount": 4000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] + }, + { + "id": "goodprice-13795", + "name": "박사로냉면", + "businessName": "박사로냉면", + "categorySlug": "korean", + "address": "강원특별자치도 춘천시 서면 박사로 839 박사로냉면", + "district": "강원특별자치도 춘천시", + "latitude": 37.8919570462785, + "longitude": 127.68961561665465, + "representativePriceAmount": 7000, + "representativePriceLabel": "냉면", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 냉면 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 0507-1399-2411 / 영업시간: 10:00 - 18:50 라스트오더 18:45 매주 월요일 정기휴무 동절기에는 19시까지 운영", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "1cd68a57dcf7082ef4dc", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "b9f12c32e8fe7d3db9ca", - "label": "짜장면", - "amount": 5000, + "id": "b813102efdce95fcb76f", + "label": "갈비만두", + "amount": 4000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "e1dc14f067c17745d60f-history", - "label": "자장면", - "amount": 5000, + "id": "1cd68a57dcf7082ef4dc-history", + "label": "냉면", + "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "59fccdc6328f7fe6d35f-history", - "label": "우동", - "amount": 6000, + "id": "b813102efdce95fcb76f-history", + "label": "갈비만두", + "amount": 4000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, + } + ], + "comments": [] + }, + { + "id": "goodprice-16475", + "name": "백송순두부", + "businessName": "백송순두부", + "categorySlug": "korean", + "address": "서울특별시 도봉구 도당로27길 43 (방학동) 1층", + "district": "서울특별시 도봉구", + "latitude": 37.66930988407001, + "longitude": 127.04081603332443, + "representativePriceAmount": 7000, + "representativePriceLabel": "얼큰순두부", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 얼큰순두부 7,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 02-3494-1616", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ { - "id": "86b6e0686793b65bfd7f-history", - "label": "짬뽕", - "amount": 6000, + "id": "4e68adb4dd3def6f5e86", + "label": "얼큰순두부", + "amount": 7000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" + "reportedAt": "2026-04-02" }, { - "id": "45a557faaffdade774dd-history", - "label": "간짜장", - "amount": 6000, + "id": "9930030aff06ba7ec57c", + "label": "차돌순두부", + "amount": 8000, "verificationStatus": "verified", - "recordedAt": "2026-04-02" - }, + "reportedAt": "2026-04-02" + } + ], + "history": [ { - "id": "07475a48905aaa290a08-history", - "label": "볶음밥,짬뽕밥", + "id": "4e68adb4dd3def6f5e86-history", + "label": "얼큰순두부", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "3ba2ef1b675aa9eb1a95-history", - "label": "야끼우동", + "id": "9930030aff06ba7ec57c-history", + "label": "차돌순두부", "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" - }, - { - "id": "b9f12c32e8fe7d3db9ca-history", - "label": "짜장면", - "amount": 5000, - "verificationStatus": "verified", - "recordedAt": "2026-04-02" } ], "comments": [] }, { - "id": "goodprice-2108", - "name": "화도진순대국", - "businessName": "화도진순대국", + "id": "goodprice-4383", + "name": "밥보네집", + "businessName": "밥보네집", "categorySlug": "korean", - "address": "인천 동구 화도진로 101 1층(화평동)", - "district": "인천 동구", - "latitude": 37.4801807743095, - "longitude": 126.628989131469, - "representativePriceAmount": 9000, - "representativePriceLabel": "순대국", + "address": "강원특별자치도 춘천시 서부대성로 239번길 4 (효자동)", + "district": "강원특별자치도 춘천시", + "latitude": 37.8730237470997, + "longitude": 127.744950136894, + "representativePriceAmount": 6000, + "representativePriceLabel": "제육볶음정식", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국 9,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 032-777-1289 / 영업시간: 월~일 11:00-20:00 (화) 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 제육볶음정식 6,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 033-255-2123 / 영업시간: 10:00 - 21:00", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "46f85ee637f5a4a61658", - "label": "순대국", - "amount": 9000, + "id": "2c55b3f6e2c31807a34f", + "label": "제육볶음정식", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6e5be46d5e8792099f47", - "label": "설렁탕", - "amount": 9000, + "id": "cb94c264dd00a9085c9e", + "label": "닭볶음정식", + "amount": 6000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + }, + { + "id": "14d230bd3eeaf1bab585", + "label": "오징어볶음정식", + "amount": 6000, "verificationStatus": "verified", "reportedAt": "2026-04-02" } ], "history": [ { - "id": "46f85ee637f5a4a61658-history", - "label": "순대국", - "amount": 9000, + "id": "2c55b3f6e2c31807a34f-history", + "label": "제육볶음정식", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6e5be46d5e8792099f47-history", - "label": "설렁탕", - "amount": 9000, + "id": "cb94c264dd00a9085c9e-history", + "label": "닭볶음정식", + "amount": 6000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + }, + { + "id": "14d230bd3eeaf1bab585-history", + "label": "오징어볶음정식", + "amount": 6000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } @@ -60544,48 +60016,48 @@ "comments": [] }, { - "id": "goodprice-17895", - "name": "가족이발관", - "businessName": "가족이발관", - "categorySlug": "beauty", - "address": "인천광역시 미추홀구 석정로 372 (주안동) 1층", - "district": "인천광역시 미추홀구", - "latitude": 37.467045636101226, - "longitude": 126.67678399359703, - "representativePriceAmount": 7000, - "representativePriceLabel": "염색", + "id": "goodprice-477", + "name": "북부식당", + "businessName": "북부식당", + "categorySlug": "korean", + "address": "서울특별시 도봉구 도봉로152가길 102 (도봉동)", + "district": "서울특별시 도봉구", + "latitude": 37.6740728644657, + "longitude": 127.044924059183, + "representativePriceAmount": 8000, + "representativePriceLabel": "뼈해장국", "verificationStatus": "verified", "lastPriceUpdatedAt": "2026-04-02", - "description": "행정안전부 착한가격업소 목록에서 수집한 미용업 업소입니다. 대표 항목은 염색 7,000원입니다.", - "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: - 영업시간: 09:30 ~ 19:30 - 휴무일: 명절 당일 휴무", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 뼈해장국 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: - / 영업시간: 월~토 : 4:00 ~ 19:00 일요일 휴무", "likeCount": 0, "dislikeCount": 0, "viewerReaction": null, "priceItems": [ { - "id": "2f96d2276329fca3a9a8", - "label": "염색", - "amount": 7000, + "id": "29fb434b2ef7ddf61ae2", + "label": "뼈해장국", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "6d8a44ed8278812ed721", - "label": "샴푸", - "amount": 3000, + "id": "2690df35efd976b99dc0", + "label": "백반", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "d5e8edea065170eb421d", - "label": "컷트(남)", - "amount": 5000, + "id": "9f41dc91e90a3e165321", + "label": "소고기우거지국밥", + "amount": 8000, "verificationStatus": "verified", "reportedAt": "2026-04-02" }, { - "id": "4be5434a50575e82714e", - "label": "컷트(여)", + "id": "b708b62554af1619a415", + "label": "떡국", "amount": 7000, "verificationStatus": "verified", "reportedAt": "2026-04-02" @@ -60593,34 +60065,72 @@ ], "history": [ { - "id": "2f96d2276329fca3a9a8-history", - "label": "염색", - "amount": 7000, + "id": "29fb434b2ef7ddf61ae2-history", + "label": "뼈해장국", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "6d8a44ed8278812ed721-history", - "label": "샴푸", - "amount": 3000, + "id": "2690df35efd976b99dc0-history", + "label": "백반", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "d5e8edea065170eb421d-history", - "label": "컷트(남)", - "amount": 5000, + "id": "9f41dc91e90a3e165321-history", + "label": "소고기우거지국밥", + "amount": 8000, "verificationStatus": "verified", "recordedAt": "2026-04-02" }, { - "id": "4be5434a50575e82714e-history", - "label": "컷트(여)", + "id": "b708b62554af1619a415-history", + "label": "떡국", "amount": 7000, "verificationStatus": "verified", "recordedAt": "2026-04-02" } ], "comments": [] + }, + { + "id": "goodprice-15845", + "name": "다정순대국", + "businessName": "다정순대국", + "categorySlug": "korean", + "address": "충청북도 청주시 청원구 직지대로 844-2 (우암동)", + "district": "충청북도 청주시", + "latitude": 36.64864564378414, + "longitude": 127.48481810685502, + "representativePriceAmount": 8000, + "representativePriceLabel": "순대국밥", + "verificationStatus": "verified", + "lastPriceUpdatedAt": "2026-04-02", + "description": "행정안전부 착한가격업소 목록에서 수집한 한식 업소입니다. 대표 항목은 순대국밥 8,000원입니다.", + "note": "출처: 행정안전부 착한가격업소 / 수집일: 2026-04-02 / 전화: 043-274-1954", + "likeCount": 0, + "dislikeCount": 0, + "viewerReaction": null, + "priceItems": [ + { + "id": "c148af6519e95c97cfb2", + "label": "순대국밥", + "amount": 8000, + "verificationStatus": "verified", + "reportedAt": "2026-04-02" + } + ], + "history": [ + { + "id": "c148af6519e95c97cfb2-history", + "label": "순대국밥", + "amount": 8000, + "verificationStatus": "verified", + "recordedAt": "2026-04-02" + } + ], + "comments": [] } ] diff --git a/src/features/places/map-explorer.tsx b/src/features/places/map-explorer.tsx index 2612b43..5b5c776 100644 --- a/src/features/places/map-explorer.tsx +++ b/src/features/places/map-explorer.tsx @@ -16,18 +16,24 @@ import type { PlaceReactionUpdate } from "@/features/places/place-reaction-butto import { formatKrw } from "@/features/places/queries"; import type { PlaceBounds, - PlaceRecord, + PlaceMapMarkerRecord, + PlacePreviewRecord, PlaceSearchScope, } from "@/features/places/types"; +const PLACE_LIST_RENDER_LIMIT = 120; + type MapExplorerProps = { bookmarkedPlaceIds: string[]; bookmarkLoginHref: string; category: string | null; currentMapHref: string; initialBounds: PlaceBounds; + initialCount: number; maxPrice: number | null; - places: PlaceRecord[]; + mapMarkers: PlaceMapMarkerRecord[]; + prefetchedOnServer: boolean; + places: PlacePreviewRecord[]; query: string | null; searchScope: PlaceSearchScope; selectedCategoryLabel: string | null; @@ -43,16 +49,21 @@ type MapPlacesResponse = { query: string | null; searchScope: PlaceSearchScope; }; - items: PlaceRecord[]; + items: PlacePreviewRecord[]; + mapMarkers: PlaceMapMarkerRecord[]; + mapMarkerCount: number; + returnedCount: number; + truncated: boolean; }; type PlaceListProps = { bookmarkedPlaceIds: string[]; bookmarkLoginHref: string; + isLoading?: boolean; itemTestIdPrefix?: string; likeCountTestIdPrefix?: string; listTestId?: string; - places: PlaceRecord[]; + places: PlacePreviewRecord[]; query: string | null; searchScope: PlaceSearchScope; compact?: boolean; @@ -81,6 +92,7 @@ function getListDescription(params: { function PlaceList({ bookmarkedPlaceIds, bookmarkLoginHref, + isLoading = false, itemTestIdPrefix = "place-list-item", likeCountTestIdPrefix = "place-list-like-count", listTestId = "place-list", @@ -91,6 +103,19 @@ function PlaceList({ selectedPlaceId, onSelectPlace, }: PlaceListProps) { + if (isLoading && places.length === 0) { + return ( +
+

+ 현재 지도 영역의 장소를 불러오는 중입니다. +

+

+ 첫 화면에서는 필요한 범위만 가져오고 있습니다. 잠시만 기다려 주세요. +

+
+ ); + } + if (places.length === 0) { return (
@@ -164,6 +189,7 @@ function PlaceList({
(null); + const [selectedPlacePreview, setSelectedPlacePreview] = + useState(null); const [viewport, setViewport] = useState(null); - const [isFetchingPlaces, setIsFetchingPlaces] = useState(false); + const [isFetchingPlaces, setIsFetchingPlaces] = useState( + searchScope === "viewport" && !prefetchedOnServer, + ); const [fetchError, setFetchError] = useState(null); const [isMobileListOpen, setIsMobileListOpen] = useState(false); - const hasSkippedInitialViewportFetchRef = useRef(false); - const activeBounds = searchScope === "viewport" ? viewport?.bounds ?? null : null; - const boundsKey = serializeBounds(activeBounds); - const resolvedSelectedPlaceId = visiblePlaces.some( - (place) => place.id === selectedPlaceId, - ) - ? selectedPlaceId - : null; + const shouldSkipInitialFetchRef = useRef(prefetchedOnServer); + const activeBounds = + searchScope === "viewport" ? roundBounds(viewport?.bounds ?? null) : null; + const hasViewportBounds = activeBounds !== null; + const requestSearch = buildMapQuery({ + bounds: activeBounds, + category, + maxPrice, + query, + searchScope, + zoom: searchScope === "viewport" ? viewport?.zoom ?? null : null, + }); + const resolvedSelectedPlaceId = selectedPlaceId; + const displayPlaces = visiblePlaces.slice(0, PLACE_LIST_RENDER_LIMIT); + const isServerTrimmed = visiblePlaces.length < totalPlaceCount; + const isListTrimmed = displayPlaces.length < visiblePlaces.length; const selectedPlace = - visiblePlaces.find((place) => place.id === resolvedSelectedPlaceId) ?? null; + (selectedPlacePreview?.id === resolvedSelectedPlaceId + ? selectedPlacePreview + : null) ?? + visiblePlaces.find((place) => place.id === resolvedSelectedPlaceId) ?? + visibleMapMarkers.find( + (marker): marker is Extract => + marker.kind === "place" && marker.id === resolvedSelectedPlaceId, + ) ?? + null; const listDescription = getListDescription({ query, searchScope, @@ -285,78 +341,75 @@ export function MapExplorer({ }); useEffect(() => { - setVisiblePlaces(places); - }, [places]); - - useEffect(() => { - if (searchScope === "viewport" && !activeBounds) { + if (searchScope === "viewport" && !hasViewportBounds) { return; } - if ( - searchScope === "viewport" && - !hasSkippedInitialViewportFetchRef.current - ) { - hasSkippedInitialViewportFetchRef.current = true; + if (shouldSkipInitialFetchRef.current) { + shouldSkipInitialFetchRef.current = false; return; } const controller = new AbortController(); - const search = buildMapQuery({ - bounds: activeBounds, - category, - maxPrice, - query, - searchScope, - }); - - fetch(`/api/places/map?${search}`, { - cache: "no-store", - signal: controller.signal, - }) - .then(async (response) => { - if (!response.ok) { - throw new Error("지도 영역의 장소를 불러오지 못했습니다."); - } + const fetchTimeoutId = window.setTimeout(() => { + setIsFetchingPlaces(true); + setFetchError(null); - return (await response.json()) as MapPlacesResponse; + fetch(`/api/places/map?${requestSearch}`, { + cache: "no-store", + signal: controller.signal, }) - .then((result) => { - startTransition(() => { - setVisiblePlaces(result.items); + .then(async (response) => { + if (!response.ok) { + throw new Error("지도 영역의 장소를 불러오지 못했습니다."); + } + + return (await response.json()) as MapPlacesResponse; + }) + .then((result) => { + startTransition(() => { + setVisiblePlaces(result.items); + setVisibleMapMarkers(result.mapMarkers); + setTotalPlaceCount(result.count); + setIsFetchingPlaces(false); + }); + }) + .catch((error: unknown) => { + if (controller.signal.aborted) { + return; + } + + setFetchError( + error instanceof Error + ? error.message + : "지도 영역의 장소를 불러오지 못했습니다.", + ); setIsFetchingPlaces(false); }); - }) - .catch((error: unknown) => { - if (controller.signal.aborted) { - return; - } - - setFetchError( - error instanceof Error - ? error.message - : "지도 영역의 장소를 불러오지 못했습니다.", - ); - setIsFetchingPlaces(false); - }); + }, 180); return () => { + window.clearTimeout(fetchTimeoutId); controller.abort(); }; - }, [activeBounds, boundsKey, category, maxPrice, query, searchScope]); + }, [hasViewportBounds, requestSearch, searchScope]); const handlePlaceSelect = (placeId: string) => { setSelectedPlaceId(placeId); + setSelectedPlacePreview( + visiblePlaces.find((place) => place.id === placeId) ?? null, + ); + setIsMobileListOpen(false); + }; + + const handleMapPlaceSelect = (place: PlacePreviewRecord) => { + setSelectedPlaceId(place.id); + setSelectedPlacePreview(place); setIsMobileListOpen(false); }; const handleViewportChange = (nextViewport: MapViewport) => { setViewport(nextViewport); - - if (searchScope === "viewport" && hasSkippedInitialViewportFetchRef.current) { - setIsFetchingPlaces(true); - setFetchError(null); - } }; const handlePlaceReactionChange = (nextState: PlaceReactionUpdate) => { @@ -372,15 +425,41 @@ export function MapExplorer({ : place, ), ); + setVisibleMapMarkers((currentMarkers) => + currentMarkers.map((marker) => { + if (marker.kind !== "place" || marker.id !== nextState.placeId) { + return marker; + } + + return { + ...marker, + likeCount: nextState.likeCount, + dislikeCount: nextState.dislikeCount, + viewerReaction: nextState.viewerReaction, + }; + }), + ); + setSelectedPlacePreview((currentPlace) => + currentPlace && currentPlace.id === nextState.placeId + ? { + ...currentPlace, + likeCount: nextState.likeCount, + dislikeCount: nextState.dislikeCount, + viewerReaction: nextState.viewerReaction, + } + : currentPlace, + ); }; return (
-
+
@@ -403,7 +482,7 @@ export function MapExplorer({ 목록 보기 - {visiblePlaces.length}곳 + {totalPlaceCount}곳
@@ -417,7 +496,7 @@ export function MapExplorer({

- {visiblePlaces.length}곳 + {totalPlaceCount}곳

@@ -427,15 +506,26 @@ export function MapExplorer({ {fetchError}
) : null} + {isServerTrimmed ? ( +
+ 현재 조건에 맞는 장소는 총 {totalPlaceCount}곳이고, 성능을 위해 {visiblePlaces.length}곳만 먼저 불러왔습니다. 지도를 더 확대하거나 검색 조건을 좁히면 더 자세히 볼 수 있습니다. +
+ ) : null} {isFetchingPlaces ? (
현재 지도 영역의 장소를 불러오는 중입니다.
) : null} + {isListTrimmed ? ( +
+ 목록은 현재 {displayPlaces.length}곳만 먼저 표시합니다. 지도를 더 확대하면 범위를 좁혀 볼 수 있습니다. +
+ ) : null}

- {visiblePlaces.length}곳 + {totalPlaceCount}곳

diff --git a/src/features/places/place-comments-section.tsx b/src/features/places/place-comments-section.tsx index 8eb82a6..7920458 100644 --- a/src/features/places/place-comments-section.tsx +++ b/src/features/places/place-comments-section.tsx @@ -86,22 +86,19 @@ export function PlaceCommentsSection({