Naver news Search
Search 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 rel
Search 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 rel
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Search Korean news articles using the Naver Search API.
Use the provided script to search news:
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/:
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 configpython scripts/search_news.py "AI 인공지능" --display 20 --sort date
python scripts/search_news.py "삼성전자" --sort sim
# News published after 9 AM today python scripts/search_news.py "경제" --display 50 --sort sim --after "2026-01-29T09:00:00+09:00"News from the last hour (programmatic use)
python scripts/search_news.py "속보" --after "$(date -u -d '1 hour ago' '+%Y-%m-%dT%H:%M:%S%z')"
# Fetch at least 30 results (automatically requests multiple pages if needed) python scripts/search_news.py "AI" --sort sim --after "2026-01-29T09:00:00+09:00" --min-results 30 --display 50Limit to 3 pages maximum
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# First 10 results python scripts/search_news.py "경제" --display 10 --start 1Next 10 results
python scripts/search_news.py "경제" --display 10 --start 11
Import and use the search function directly:
from scripts.search_news import search_newsresult = 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:
<b> tags around search term matches (strip them for clean text)link field may point to Naver News or original source depending on availabilityNo automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.