# Naver Blog post content extractor

**Use case:** 

Extract structured content, author metadata, dates, images, hashtags, comments, and canonical IDs from public Naver Blog URLs.

## Input

```json
{
  "queries": [],
  "startUrls": [
    {
      "url": "https://blog.naver.com/daniuni/223602726394"
    }
  ],
  "maxItems": 1,
  "sort": "relevance",
  "includeContent": true,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "query": {
    "label": "Keyword",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "contentText": {
    "label": "Full text",
    "format": "text"
  },
  "imageUrls": {
    "label": "Images",
    "format": "array"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "array"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "url": {
    "label": "Post URL",
    "format": "link"
  },
  "blogId": {
    "label": "Blog ID",
    "format": "text"
  },
  "logNo": {
    "label": "Post ID",
    "format": "text"
  },
  "extractionStatus": {
    "label": "Status",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Naver Blog Search Scraper](https://apify.com/automation-lab/naver-blog-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/naver-blog-search-scraper) to learn more, explore other use cases, and run it yourself.