This pulls used car prices from SK Rent-a-Car's public inventory page in Korea by scraping the __NEXT_DATA__ JSON blob. It checks SK, Lotte, and Redcap rental companies and picks SK because the others either return 404s or hide their inventory behind business portals. You get both purchase price and monthly lease rates for models like Avante or K3, filtered by keyword. It's read-only and conservative: no VIN lookups, no multi-provider comparison, just a snapshot of what's publicly listed right now. Works without login and tested for at least ten repeat queries, but the inventory refreshes on their schedule, not yours.
npx -y skills add nomadamas/k-skill --skill used-car-price-search --agent claude-codeInstalls into .claude/skills of the current project.
한국의 대표 렌터카 업체를 먼저 비교하고, 현재는 가장 기술적으로 구현이 쉬운 공급자로 확인된 SK렌터카 다이렉트 타고BUY를 사용해 중고차 가격을 조회한다.
SK렌터카, 롯데렌탈(롯데오토옥션), 레드캡렌터카를 먼저 확인한다.https://www.skdirect.co.kr/tb 이다.__NEXT_DATA__ 에 현재 inventory snapshot 이 들어 있어 반복 조회가 쉽다.| 업체 | 점검 결과 | v1 채택 여부 |
|---|---|---|
SK렌터카 다이렉트 타고BUY | https://www.skdirect.co.kr/tb 공개 HTML 에 __NEXT_DATA__ inventory snapshot 포함. 로그인/세션 없이 반복 조회 가능. 별도 공개 API 문서는 못 찾았지만 SSR 데이터 추출이 가장 단순함. | 채택 |
| 롯데렌탈 / 롯데오토옥션 | https://www.lotteautoauction.net/hp/pub/cmm/viewMain.do 공개 진입점은 열리지만, 일반 매물 검색은 legacy .do 흐름 중심이고 공개 목록 계약이 불명확했다. 추정 목록 URL은 404/에러 페이지가 섞여 v1 공급자로는 불안정했다. | 미채택 |
| 레드캡렌터카 | 공식 진입점이 https://biz.redcap.co.kr/rent/ business portal 로 이어졌고, 공개 중고차 inventory 검색 표면이나 직접 API를 확인하지 못했다. | 미채택 |
node 18+used-car-price-search package 또는 동일 로직차종 키워드가 없으면 먼저 물어본다.
어떤 차종을 찾을까요? 예: 아반떼, K3, 캐스퍼제조사나 차종을 조금 더 구체적으로 알려주세요. 예: 현대 아반떼, 기아 K3https://www.skdirect.co.kr/tbSK렌터카, 롯데렌탈, 레드캡렌터카 비교 결과를 짧게 기억하고, 현재 공급자는 SK렌터카 다이렉트 타고BUY 임을 유지한다.https://www.skdirect.co.kr/tb HTML 을 가져온다.__NEXT_DATA__ JSON 에서 carListProd inventory snapshot 을 읽는다.인수가, 월 렌트료, 연식, 주행거리, 연료, 변속기를 정리한다.const { lookupUsedCarPrices } = require("used-car-price-search")
async function main() {
const result = await lookupUsedCarPrices("아반떼", { limit: 5 })
console.log({
provider: result.provider,
matchedCount: result.matchedCount,
summary: result.summary,
items: result.items
})
}
main().catch((error) => {
console.error(error)
process.exitCode = 1
})
응답은 아래 순서로 짧게 정리한다.
SK렌터카 다이렉트 타고BUY공개 inventory snapshot 기준이라 실시간 재고/가격은 바뀔 수 있다는 안내인수가 와 월 렌트료 를 함께 담았다.__NEXT_DATA__ 의 안정성에 의존한다.juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills