@clawhub-novb1492-7aa36d23da
Provides core analysis of apartment real estate transactions by region, type, and period using data from the 모든집 site within OpenClaw.
모든집-아파트실거래가를 한눈에!
사이트에 있는 기능을 일부 오픈클로에서 쓸수 있는 플러그인입니다
이플러그인은 단순히 그냥 실거래 정보를 제공한는게 아닌 대한민국 서울/경기등 다양한 지역과 아파트의 실거래
데이터를 국토교통부 api에서 가져와 다양항 테마로(층별,면적별,최고가,평균값등) 분석을 제공하는 패키지입니다
자세한 사항은 npm 사이트를 확인하세요
https://www.npmjs.com/package/@brokimyeah/openclaw-eho
This package does not simply provide raw real estate transaction data.
It delivers analyzed insights based on apartment transaction data across various regions in South
Korea, including Seoul and Gyeonggi, sourced from the Ministry of Land, Infrastructure and
Transport (MOLIT) API.
The data is processed and presented through multiple perspectives such as floor level, unit size,
highest price, average value, and more.
download files and
openclaw plugins install "folderlocation"
or download openclaw plugins install @brokimyeah/openclaw-eho
check c\user\.openclaw\extensions\openclaw-eho If the folder exists, the plugin is installed successfully.
and just ask
require sido value and period and typeDetail
ex)서울시(sido) 매매(typeDetail) 최근3개월(period)조회해줘
If OpenClaw cannot find the eho plugin, please try saying:
"Please use the installed plugin 'eho'."
While it does not include all features of the original website, it provides core functionality for
analyzing real estate transactions by region and apartment.
check more here
https://www.npmjs.com/package/@brokimyeah/openclaw-eho
FILE:index.js
const { version } = require('./package.json');
console.log(`🔥 모든집(eho) plugin version: version`);
module.exports = function (api) {
api.registerTool({
name: "eho",
description: "모든집 대한민국 부동산(아파트) 실거래 조회 분석. 기본적으로 시/도(sido), 거래유형(typeDetail), 기간(start, end)만 있으면 조회 가능하며, gu/dong/apt는 상세 조회가 필요할 때만 선택적으로 전달한다.",
parameters: {
type: "object",
additionalProperties: false,
properties: {
sido: {
type: "string",
description: "시/도. 예: 서울"
},
gu: {
type: "string",
description: "구. 예: 동작구"
},
dong: {
type: "string",
description: "동. 예: 흑석동"
},
apt: {
type: "string",
description: "아파트명. 예: 흑석자이"
},
typeDetail: {
type: "string",
description: "거래유형. 예: 매매, 전세, 월세"
},
start: {
type: "string",
description: "조회 시작일 또는 시작월. 예: 2025-01 또는 2025-01-01"
},
end: {
type: "string",
description: "조회 종료일 또는 종료월. 예: 2025-03 또는 2025-03-31"
}
},
required: ["sido", "typeDetail", "start", "end"]
},
async execute(_id, params) {
const {
sido,
gu,
dong,
apt,
typeDetail,
start,
end
} = params;
try {
const query = new URLSearchParams();
query.append("sido", sido);
query.append("typeDetail", typeDetail);
query.append("start", start);
query.append("end", end);
if (gu) query.append("gu", gu);
if (dong) query.append("dong", dong);
if (apt) query.append("apt", apt);
const url = `https://www.everyhouse-real-payment.com/api/insight/openclaw?query.toString()`;
console.log("📡 모든집(eho) 요청 url:", url);
const res = await fetch(url);
if (!res.ok) {
const errorText = await res.text();
throw new Error(`HTTP res.status - errorText`);
}
const contentType = res.headers.get("content-type") || "";
let data;
if (contentType.includes("application/json")) {
data = await res.json();
} else {
data = await res.text();
}
return {
content: [
{
type: "text",
text:
`eho(모든집) 호출 성공\n` +
`sido=sido\n` +
`gu=gu || ""\n` +
`dong=dong || ""\n` +
`apt=apt || ""\n` +
`typeDetail=typeDetail\n` +
`start=start\n` +
`end=end\n\n` +
`응답:\nJSON.stringify(data, null, 2)`
}
]
};
} catch (err) {
console.log(`모든집(eho)조회실패(select-fail): err`);
return {
content: [
{
type: "text",
text: `eho(모든집) 호출 실패: err.message`
}
]
};
}
}
});
};
FILE:openclaw.plugin.json
{
"id": "openclaw-eho",
"name": "eho",
"version": "1.0.0",
"configSchema": {}
}
FILE:package.json
{
"name": "@brokimyeah/openclaw-eho",
"license": "MIT",
"private": false,
"version": "1.1.6",
"main": "index.js",
"type": "commonjs",
"openclaw": {
"extensions": [
"./index.js"
]
},
"keywords": [
"openclaw",
"plugin",
"real-estate",
"korea",
"apartment",
"부동산",
"아파트",
"실거래",
"서울",
"전세",
"매매",
"월세"
]
}
FILE:README.md
오픈 클로에서 모든집-아파트실거래를 한눈에! 사이트를 직접 연동해서 쓸 수 있는 패키지 입니다.
<br/>
해당 패기지는 단순히 그냥 실거래 정보를 제공한느게 아닌 대한민국 서울/경기등 다양한 지역과 아파트의 실거래
<br/>
데이터를 국토교통부 api에서 가져와 다양항 테마로(층별,면적별,최고가,평균값등) 분석을 하는 사이트입니다
<br/>
해당사이트의 모든기능을 조회할순 없으나 기본적인 지역/아파트 실거래 분석 조회가능!
<br/>
<br/>
현재 서비스지역
<br/>
-서울,경기,인천,대전,광주,대구
<br/>
<br/>
설치법
<br/>
1.openclaw 설치
<br/>
2.openclaw plugins install @brokimyeah/openclaw-eho 입력으로 다운로드
<br/>
3.openclaw.json(.openclaw폴더안에 존재)에 "plugins" 안에 "allow": ["openclaw-eho"], 추가
<br/>
(allow배열([])이 이미 있다면 기존 배열에 넣기)
<br/>
<br/>
사용법
<br/>
1.eho 사용해 원하는 지역 기간 거래형식(매매,전세,월세)조회 요청
<br/>
-tip.되도록 명확히 명령 ex)서울 서초구 서초동 00아파트 매매 정보가 궁금해 기간은 최근 3개월로
<br/>
2.필수정보는 시도와 조회기간입니다.
<br/>
3.eho 못찾을시 eho 플러그인 이용해서 조회해줘 요청
<br/>
<br/>
기존사이트에서는 더다양한 정보를 볼 수있습니다
<br/>
https://www.everyhouse-real-payment.com/?si=%EC%84%9C%EC%9A%B8&sn=0
<br/>
계속 개선해 나가겠습니다
<br/>
<br/>
<br/>
OpenClaw – Korean Apartment Real Transaction Data at a Glance!
This package connects directly to a Korea-based real estate analytics platform.
<br/>
This package does not simply provide raw real estate transaction data.
<br/>
It delivers analyzed insights based on apartment transaction data across various regions in South
<br/>
Korea, including Seoul and Gyeonggi, sourced from the Ministry of Land, Infrastructure and
<br/>
Transport (MOLIT) API.
<br/>
The data is processed and presented through multiple perspectives such as floor level, unit size,
<br/>
highest price, average value, and more.
<br/>
<br/>
Supported Regions
<br/>
Seoul, Gyeonggi, Incheon, Daejeon, Gwangju, Daegu
<br/>
<br/>
Installation
<br/>
Install OpenClaw
<br/>
Run openclaw plugins install @brokimyeah/openclaw-eho
<br/>
In openclaw.json (inside the .openclaw folder), add:
"allow": ["openclaw-eho"] under "plugins"
<br/>
(If the allow array already exists, simply append it)
<br/>
<br/>
Usage
<br/>
Use eho to request data by specifying region, time period, and transaction type (sale, jeonse, monthly rent)
<br/>
Tip: Be as specific as possible
Example:
“Show me sales data for XX apartment in Seocho-dong, Seocho-gu, Seoul for the last 3 months”
<br/>
Required inputs: region (at least city/province) and time period
<br/>
If the tool is not recognized, try:
“Use the eho plugin to fetch the data”
<br/>
<br/>
For full features and more detailed insights, visit:
<br/>
https://www.everyhouse-real-payment.com/?si=%EC%84%9C%EC%9A%B8&sn=0
<br/>
This service will continue to be improved over time.Provides core functionality to analyze Korean apartment real estate transactions by region, type, and period using OpenClaw plugin commands.
모든집-아파트실거래가를 한눈에!
사이트에 있는 기능을 일부 오픈클로에서 쓸수 있는 플러그인입니다
자세한 사항은 npm 사이트를 확인하세요
https://www.npmjs.com/package/@brokimyeah/openclaw-eho
download files and
openclaw plugins install "folderlocation"
or download openclaw plugins install @brokimyeah/openclaw-eho
check c\user\.openclaw\extensions\openclaw-eho If the folder exists, the plugin is installed successfully.
and just ask
require sido value and period and typeDetail
ex)서울시(sido) 매매(typeDetail) 최근3개월(period)조회해줘
If OpenClaw cannot find the eho plugin, please try saying:
"Please use the installed plugin 'eho'."
While it does not include all features of the original website, it provides core functionality for
analyzing real estate transactions by region and apartment.
check more here
https://www.npmjs.com/package/@brokimyeah/openclaw-eho
FILE:index.js
const { version } = require('./package.json');
console.log(`🔥 모든집(eho) plugin version: version`);
module.exports = function (api) {
api.registerTool({
name: "eho",
description: "모든집 대한민국 부동산(아파트) 실거래 조회 분석. 기본적으로 시/도(sido), 거래유형(typeDetail), 기간(start, end)만 있으면 조회 가능하며, gu/dong/apt는 상세 조회가 필요할 때만 선택적으로 전달한다.",
parameters: {
type: "object",
additionalProperties: false,
properties: {
sido: {
type: "string",
description: "시/도. 예: 서울"
},
gu: {
type: "string",
description: "구. 예: 동작구"
},
dong: {
type: "string",
description: "동. 예: 흑석동"
},
apt: {
type: "string",
description: "아파트명. 예: 흑석자이"
},
typeDetail: {
type: "string",
description: "거래유형. 예: 매매, 전세, 월세"
},
start: {
type: "string",
description: "조회 시작일 또는 시작월. 예: 2025-01 또는 2025-01-01"
},
end: {
type: "string",
description: "조회 종료일 또는 종료월. 예: 2025-03 또는 2025-03-31"
}
},
required: ["sido", "typeDetail", "start", "end"]
},
async execute(_id, params) {
const {
sido,
gu,
dong,
apt,
typeDetail,
start,
end
} = params;
try {
const query = new URLSearchParams();
query.append("sido", sido);
query.append("typeDetail", typeDetail);
query.append("start", start);
query.append("end", end);
if (gu) query.append("gu", gu);
if (dong) query.append("dong", dong);
if (apt) query.append("apt", apt);
const url = `https://www.everyhouse-real-payment.com/api/insight/openclaw?query.toString()`;
console.log("📡 모든집(eho) 요청 url:", url);
const res = await fetch(url);
if (!res.ok) {
const errorText = await res.text();
throw new Error(`HTTP res.status - errorText`);
}
const contentType = res.headers.get("content-type") || "";
let data;
if (contentType.includes("application/json")) {
data = await res.json();
} else {
data = await res.text();
}
return {
content: [
{
type: "text",
text:
`eho(모든집) 호출 성공\n` +
`sido=sido\n` +
`gu=gu || ""\n` +
`dong=dong || ""\n` +
`apt=apt || ""\n` +
`typeDetail=typeDetail\n` +
`start=start\n` +
`end=end\n\n` +
`응답:\nJSON.stringify(data, null, 2)`
}
]
};
} catch (err) {
console.log(`모든집(eho)조회실패(select-fail): err`);
return {
content: [
{
type: "text",
text: `eho(모든집) 호출 실패: err.message`
}
]
};
}
}
});
};
FILE:openclaw.plugin.json
{
"id": "openclaw-eho",
"name": "eho",
"version": "1.0.0",
"configSchema": {}
}
FILE:package.json
{
"name": "@brokimyeah/openclaw-eho",
"license": "MIT",
"private": false,
"version": "1.1.5",
"main": "index.js",
"type": "commonjs",
"openclaw": {
"extensions": [
"./index.js"
]
},
"keywords": [
"openclaw",
"plugin",
"real-estate",
"korea",
"apartment",
"부동산",
"아파트",
"실거래",
"서울",
"전세",
"매매",
"월세"
]
}
FILE:README.md
오픈 클로에서 모든집-아파트실거래를 한눈에! 사이트를 직접 연동해서 쓸 수 있는 패키지 입니다.
<br/>
해당 사이트는 대한민국 서울/경기등 다양한 지역과 아파트의 실거래동향 데이터와 분석을 하는 사이트입니다
<br/>
해당사이트의 모든기능을 조회할순 없으나 기본적인 지역/아파트 실거래 분석 조회가능!
<br/>
<br/>
현재 서비스지역
<br/>
-서울,경기,인천,대전,광주,대구
<br/>
<br/>
설치법
<br/>
1.openclaw 설치
<br/>
2.openclaw plugins install @brokimyeah/openclaw-eho 입력으로 다운로드
<br/>
3.openclaw.json(.openclaw폴더안에 존재)에 "plugins" 안에 "allow": ["openclaw-eho"], 추가
<br/>
(allow배열([])이 이미 있다면 기존 배열에 넣기)
<br/>
<br/>
사용법
<br/>
1.eho 사용해 원하는 지역 기간 거래형식(매매,전세,월세)조회 요청
<br/>
-tip.되도록 명확히 명령 ex)서울 서초구 서초동 00아파트 매매 정보가 궁금해 기간은 최근 3개월로
<br/>
2.필수정보는 시도와 조회기간입니다.
<br/>
3.eho 못찾을시 eho 플러그인 이용해서 조회해줘 요청
<br/>
<br/>
기존사이트에서는 더다양한 정보를 볼 수있습니다
<br/>
https://www.everyhouse-real-payment.com/?si=%EC%84%9C%EC%9A%B8&sn=0
<br/>
계속 개선해 나가겠습니다
<br/>
<br/>
<br/>
OpenClaw – Korean Apartment Real Transaction Data at a Glance!
This package connects directly to a Korea-based real estate analytics platform.
<br/>
This service is built on Korean real estate data and provides transaction trends and analysis for
<br/>
apartments across major regions in South Korea, including Seoul and the surrounding metropolitan areas.
<br/>
While not all features of the original website are available, you can access essential transaction analysis by region and apartment.
<br/>
<br/>
Supported Regions
<br/>
Seoul, Gyeonggi, Incheon, Daejeon, Gwangju, Daegu
<br/>
<br/>
Installation
<br/>
Install OpenClaw
<br/>
Run openclaw plugins install @brokimyeah/openclaw-eho
<br/>
In openclaw.json (inside the .openclaw folder), add:
"allow": ["openclaw-eho"] under "plugins"
<br/>
(If the allow array already exists, simply append it)
<br/>
<br/>
Usage
<br/>
Use eho to request data by specifying region, time period, and transaction type (sale, jeonse, monthly rent)
<br/>
Tip: Be as specific as possible
Example:
“Show me sales data for XX apartment in Seocho-dong, Seocho-gu, Seoul for the last 3 months”
<br/>
Required inputs: region (at least city/province) and time period
<br/>
If the tool is not recognized, try:
“Use the eho plugin to fetch the data”
<br/>
<br/>
For full features and more detailed insights, visit:
<br/>
https://www.everyhouse-real-payment.com/?si=%EC%84%9C%EC%9A%B8&sn=0
<br/>
This service will continue to be improved over time.