daangn-wide-search

Searches Daangn Market listings across wide regions by iterating region IDs.

366|90|Updated Aug 22, 2026
One-click install
npx skills add https://github.com/bam-bam-2/solo-skills --skill daangn-wide-search-bam-bam-2
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: daangn-wide-search
Source: https://github.com/bam-bam-2/solo-skills/tree/main/skills/daangn-search
Command: npx skills add https://github.com/bam-bam-2/solo-skills --skill daangn-wide-search-bam-bam-2

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Daangn Market's web search only shows listings from a single selected neighborhood, with no nationwide search option. This Skill solves that by iterating region IDs so you can find rare items like large appliances or laptops that never appear in just one neighborhood. ## Core Features & Use Cases - Wide-Area Crawling: Iterates administrative region IDs (Seoul districts mapped to ID ranges, plus other provinces) to search entire cities or the whole country. - Listing Parsing: Extracts title, price, neighborhood, and time from server-rendered search result HTML using fetch only, no browser required. - Rate-Limit Handling: Applies safe concurrency (2-3 parallel, 250-450ms intervals) with 403 backoff guards to avoid CloudFront blocking. - Use Case: You want a used washer-dryer combo. Run searches for "콤보", "세탁건조기", and "워시타워" across hundreds of Seoul neighborhoods, deduplicate by URL, filter noise, and sort by price to see the market distribution. ## Quick Start Search Daangn Market across all of Seoul for washer-dryer combo listings and summarize the price distribution.

Frequently Asked Questions about daangn-wide-search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search Daangn Market across multiple regions?

Daangn web search only covers one neighborhood at a time, so you iterate region IDs in the URL parameter 'in=x-<regionID>'. Seoul districts map to known ID ranges (e.g., Gangnam 381-403), and you fetch each region's search results sequentially.

How to scrape Daangn Market listings without a browser?

Daangn search pages are server-side rendered, so plain fetch requests return full listing HTML. Parse anchors with data-gtm="search_article" to extract links, titles, prices, and neighborhoods without launching a headless browser.

Why does Daangn Market scraping return 403 errors?

CloudFront rate-limits aggressive crawling, blocking around 120 requests at 10 parallel connections. Stay at 2-3 parallel requests with 250-450ms intervals, and pause 15-20 seconds if more than 8 consecutive 403 responses occur.

What are the limitations of Daangn Market wide-area search?

Region ID boundaries are approximate and need verification via the search filter label. Single-keyword searches miss listings, so 2-3 query variants are needed, and common words like 'combo' produce heavy noise requiring post-filtering.

How do I filter out sold items in Daangn search results?

Append only_on_sale=true to the search URL to exclude completed transactions. Without this parameter, most results are already-sold listings, which skews price analysis.