# 제주 여행 카페 게시글 수집

**Use case:** 

네이버 카페에서 `제주 여행`을 관련도순으로 검색해 최대 50개 게시글을 댓글(작성자·내용·날짜)과 함께 수집하며, 전문·이미지·장소 태그도 가져옵니다. `searchType`을 blog 또는 both로 바꾸면 네이버 블로그 결과도 포함됩니다.

## Input

```json
{
  "searchKeywords": [
    "제주 여행"
  ],
  "directUrls": [],
  "searchType": "cafe",
  "maxResults": 50,
  "sortBy": "sim",
  "scrapeContent": true,
  "scrapeComments": true,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "유형",
    "format": "text"
  },
  "title": {
    "label": "제목",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "author": {
    "label": "작성자",
    "format": "text"
  },
  "date": {
    "label": "날짜",
    "format": "text"
  },
  "category": {
    "label": "카테고리",
    "format": "text"
  },
  "likeCount": {
    "label": "공감수",
    "format": "number"
  },
  "commentCount": {
    "label": "댓글수",
    "format": "number"
  },
  "hasVideo": {
    "label": "동영상 포함",
    "format": "boolean"
  },
  "cafeName": {
    "label": "카페",
    "format": "text"
  },
  "searchKeyword": {
    "label": "검색 키워드",
    "format": "text"
  },
  "scrapedAt": {
    "label": "수집 시각",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Naver Blog & Cafe Scraper (한국어)](https://apify.com/parsebird/naver-blog-cafe-scraper-korean.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/naver-blog-cafe-scraper-korean.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/parsebird/naver-blog-cafe-scraper-korean.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
