naver-newsSearch Korean news articles using Naver Search API. Use when searching for Korean news, getting latest news updates, finding news about specific topics, or preparing daily news summaries. Supports relevance and date-based sorting.
Install via ClawdBot CLI:
clawdbot install steamb23/naver-newsSearch Korean news articles using the Naver Search API.
Use the provided script to search news:
```bash
python scripts/search_news.py "๊ฒ์์ด" --display 10 --sort date
```
Options:
--display N: Number of results per page (1-100, default: 10)--start N: Start position for pagination (1-1000, default: 1)--sort sim|date: Sort by relevance (sim) or date (date, default: date)--after DATETIME: Only show news published after this time (ISO 8601 format, e.g., 2026-01-29T09:00:00+09:00)--min-results N: Minimum number of results to fetch (enables auto-pagination)--max-pages N: Maximum number of pages to try when auto-paginating (default: 5)--json: Output raw JSON instead of formatted textRequired credentials from https://developers.naver.com/:
```bash
NAVER_CLIENT_ID=your_client_id
NAVER_CLIENT_SECRET=your_client_secret
```
Configuration locations:
agents.defaults.sandbox.docker.env in OpenClaw configenv.vars in OpenClaw config```bash
python scripts/search_news.py "AI ์ธ๊ณต์ง๋ฅ" --display 20 --sort date
```
```bash
python scripts/search_news.py "์ผ์ฑ์ ์" --sort sim
```
```bash
python scripts/search_news.py "๊ฒฝ์ " --display 50 --sort sim --after "2026-01-29T09:00:00+09:00"
python scripts/search_news.py "์๋ณด" --after "$(date -u -d '1 hour ago' '+%Y-%m-%dT%H:%M:%S%z')"
```
```bash
python scripts/search_news.py "AI" --sort sim --after "2026-01-29T09:00:00+09:00" --min-results 30 --display 50
python scripts/search_news.py "๊ฒ์" --min-results 50 --max-pages 3
```
How auto-pagination works:
--min-results, automatically fetches next page--max-pages limit hit```bash
python scripts/search_news.py "๊ฒฝ์ " --display 10 --start 1
python scripts/search_news.py "๊ฒฝ์ " --display 10 --start 11
```
Import and use the search function directly:
```python
from scripts.search_news import search_news
result = search_news(
query="๊ฒฝ์ ๋ด์ค",
display=10,
sort="date"
)
for item in result["items"]:
print(item["title"])
print(item["description"])
print(item["link"])
```
For complete API reference including response structure, error codes, and rate limits, see:
tags around search term matches (strip them for clean text)link field may point to Naver News or original source depending on availabilityGenerated Mar 1, 2026
A business intelligence platform uses this skill to aggregate Korean news on competitors, market trends, and regulatory changes. It automatically fetches latest articles daily, filters by date, and applies relevance sorting to generate concise reports for analysts.
A mobile app integrates this skill to provide users with personalized Korean news feeds. It searches for topics like politics, entertainment, or sports, uses auto-pagination to ensure minimum article counts, and formats results cleanly by stripping HTML tags for display.
Researchers use this skill to collect Korean news articles for studies on social trends or media analysis. They filter by specific timeframes using the --after option, sort by date for chronological analysis, and export raw JSON for data processing in tools like Python.
A company monitors its brand reputation in Korea by setting up automated searches for its name and related keywords. The system uses the skill with date sorting and time filters to track negative news in real-time, triggering alerts for PR teams.
SEO agencies employ this skill to find trending topics and news in Korean for content creation. They search with relevance sorting to identify popular keywords, use pagination to gather extensive data, and analyze links to build backlink strategies.
Offer a subscription-based platform that leverages this skill to provide advanced analytics on Korean news data. Features include sentiment analysis, trend forecasting, and custom dashboards, targeting businesses needing market insights.
Provide consulting and development services to integrate this skill into existing systems for clients like media companies or research firms. This includes custom Python wrappers, automation scripts, and support for handling API limits and data formatting.
Develop a free app that uses this skill to deliver Korean news with basic features, monetized through premium tiers offering ad-free experience, advanced filters, and historical data access. Revenue comes from ads and subscriptions.
๐ฌ Integration Tip
Ensure environment variables for API credentials are securely configured in OpenClaw, and handle UTF-8 encoding and HTML tag stripping in output for clean data integration.
Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI.
Comprehensive news aggregator that fetches, filters, and deeply analyzes real-time content from 8 major sources: Hacker News, GitHub Trending, Product Hunt, 36Kr, Tencent News, WallStreetCN, V2EX, and Weibo. Best for 'daily scans', 'tech news briefings', 'finance updates', and 'deep interpretations' of hot topics.
This skill should be used when the user asks for news updates, daily briefings, or what's happening in the world. Fetches news from trusted international RSS feeds and can create voice summaries.
Aggregates and summarizes the latest AI news from multiple sources including AI news websites and web search. Provides concise news briefs with direct links to original articles. Activates when user asks for 'today's AI news', 'AI updates', 'latest AI developments', or mentions wanting a 'daily AI briefing'.
Generates a warm, compact daily briefing with weather, calendar, reminders, birthdays, and important emails for cron or chat delivery.
Provides a personalized morning report with today's reminders, undone Notion tasks, and vault storage summary for daily planning.