duckduckgo_search
Retrieve organic search results from DuckDuckGo with support for region codes, date filters, and pagination using next page tokens.
Instructions
Retrieves organic search results from DuckDuckGo with support for region codes, date filters, and pagination via next page tokens. [Credits: Not specified in documentation] Notes: Documentation page does not state a per-request credit cost (unlike Bing Search/Shopping, Universal Search, and ChatGPT Scraper). Response text in the doc's example description referenced 'Google page' for the html param, likely a documentation copy-paste artifact — applies to the DuckDuckGo result page. Returns: { organic_results: [ { title, displayed_link, link, snippet, rank } ], next_page_token }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| df | No | Filters results by date. Allowed values: d (Past day), w (Past week), m (Past month), y (Past year). Custom range format: from_date..to_date (e.g., 2021-06-15..2024-06-16). | |
| kl | No | Region for the DuckDuckGo search, e.g., us-en for the United States, uk-en for the United Kingdom, fr-fr for France. See DuckDuckGo Supported Regions documentation page. | |
| html | No | Returns the full HTML of the (DuckDuckGo) page. (default: false) | |
| query | Yes | The search query. Any terms or operators normally used in a standard DuckDuckGo search (e.g., inurl:, site:, intitle:, etc.). | |
| next_page_token | No | Token used to fetch subsequent results. Each page returns 15 results. |