This searches Daangn (Karrot) job postings by keyword and region using their public Remix data routes. You pass in a Korean region name like "합정동" and it resolves the internal region ID, then queries the jobs endpoint without authentication. The Python helper handles both list searches and detail lookups, falling back to HTML meta when the data route goes empty. It's read-only, no login or application automation. Useful if you're building a Korean part-time job aggregator or want to scrape Daangn listings without dealing with their region ID system yourself. The region resolver is the clever bit here, it picks Seoul district-level matches when names overlap across cities.
npx -y skills add nomadamas/k-skill --skill daangn-jobs-search --agent claude-codeInstalls into .claude/skills of the current project.
당근알바 공개 Remix _data JSON route로 채용/알바 공고 목록과 상세 정보를 읽기 전용으로 조회한다.
최종 사용자는 자연어로 요청해도 되고, 필요하면 아래의 Python helper를 직접 실행한다. 외부 패키지나 k-skill-proxy 없이 Python 표준 라이브러리만 사용한다.
https://www.daangn.com/kr/api/v1/regions/keyword?keyword=<지역명>_data: /kr/jobs/?in=<지역명>-<id>&search=<keyword>&_data=routes/kr.jobs._index<job-url> redirects to jobs.daangn.com/job-posts/<id> and exposes public HTML title/meta/JSON-LD. The helper first tries the legacy _data route and falls back to HTML meta when that route returns an empty response._data route를 호출한다.python3 daangn-jobs-search/scripts/daangn_jobs.py search "카페" --region "합정동" --limit 5
python3 daangn-jobs-search/scripts/daangn_jobs.py detail "https://www.daangn.com/kr/jobs/.../"
jobPost 원문 if the _data route is available; otherwise public page title, meta, and json_ld지역 필터가 있으면 먼저 당근 지역 검색 API로 내부 지역 id를 해석한다.
https://www.daangn.com/kr/api/v1/regions/keyword?keyword=합정동
→ 서울특별시 마포구 합정동, id=231
→ in=합정동-231
동일한 지명이 여러 지역에 있으면 다음 우선순위로 선택한다.
name, name1, name2, name3 중 하나와 정확히 맞는 후보depth=3 동 단위 후보응답에는 항상 effective_region 또는 실제 적용된 지역명을 포함한다. 사용자의 의도와 다른 지역으로 보이면 결과를 단정하지 말고 후보 확인을 요청한다. IP/쿠키 기본 위치에 의존하지 않는다.
_data 조회가 실패할 수 있다.juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills