Eternal Free Search (DuckDuckGo)

Data & APIs

Free web search using DuckDuckGo (no API key needed). Use when you need to search the web for any information — news, facts, research, people, companies, products, or anything else. Triggers on any web search need. Provides web search, news search, image search, and Q&A capabilities. As an alternative to paid search APIs.

Install

openclaw skills install eternal-free-search

DDG Search — Free Web Search

Web search via DuckDuckGo. No API key, no subscription, no limits.

Usage

python3 scripts/search.py "your query"
python3 scripts/search.py --news "breaking news topic"
python3 scripts/search.py --qna "what is quantum computing"
python3 scripts/search.py --images "sunset photos"
python3 scripts/search.py --max 10 "detailed research query"

Commands

ModeFlagDescription
Web(default)Standard web search results
News--newsRecent news articles
Q&A--qnaInstant answer from DuckDuckGo
Images--imagesImage search results
Suggestions--suggestSearch suggestions/autocomplete

Options

FlagDefaultDescription
--max5Number of results
--regionwt-wtRegion code (us-en, uk-en, etc)
--timeTime filter: d/w/m/y (day/week/month/year)
--jsonOutput as JSON

Examples

# Quick search
python3 scripts/search.py "Python 3.13 features"

# News from last week
python3 scripts/search.py --news --time w "AI regulation"

# Get instant answer
python3 scripts/search.py --qna "capital of France"