$ apify call duckduckgo-search-scraper-—-organic-serp-api

DuckDuckGo Search Scraper — Organic SERP API

Get clean, paginated DuckDuckGo organic search results with rank, title, URL, domain, and snippet. Fast HTTP, 68 regions, and pay-per-result pricing.

platform

Apify

status

Public

pricing

$0.60 / 1,000 delivered results

outputs

Organic results, Rank, URL, Snippet, Dataset

SEO tools
-> Open on Apify

What it does

Get clean, paginated DuckDuckGo organic search results with rank, title, URL, domain, and snippet. Fast HTTP, 68 regions, and pay-per-result pricing.

Key capabilities

  • Configure the run from the Apify form or API.
  • Receive structured Organic results, Rank, URL data.
  • Export the default Dataset or connect it to an automation.

Use cases

  • Research organic visibility outside Google.
  • Compare results by region.
  • Create lightweight SERP datasets for SEO or research.

Main inputs

  • One or more search queries.
  • DuckDuckGo region and pages per query.
  • The result limit you want to save.

API example

This is a minimal illustrative payload. Check the Actor input form in Apify for every supported option.

Example input (input.json)

{
  "queries": [
    "privacy search engine"
  ],
  "maxResultsPerQuery": 30,
  "maxPagesPerQuery": 3,
  "region": "us-en",
  "safeSearch": "Moderate"
}
curl -X POST "https://api.apify.com/v2/acts/datascraperes~duckduckgo-search-results-scraper/runs?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  --data-binary @input.json

The run stores its successful items in the default Dataset. A representative item looks like this:

Example result

{
  "type": "organicResult",
  "query": "privacy search engine",
  "region": "us-en",
  "page": 1,
  "position": 1,
  "title": "Example result",
  "url": "https://example.com/",
  "domain": "example.com",
  "description": "Example result description."
}

Data you get

Each successful item is saved in the default Apify Dataset, ready to export or connect to a workflow.

  • Organic results
  • Rank
  • URL
  • Snippet
  • Dataset

Try it free

The Apify Free plan includes $5 in monthly credits, with no credit card required. Use them to try this Actor; credits do not roll over and renew at the start of each billing cycle.

Pricing

Apify charges $0.60 / 1,000 delivered results. Only the public billing event organic-result is charged when Apify records a successful result.

Scope

The Actor works with publicly available data. Coverage and available fields can vary by target, country, and the source page at the time of the run.

How to use it

  1. Open the Actor in Apify.
  2. Add the targets or filters required by the input form.
  3. Start the run and export the default Dataset as JSON, CSV, or Excel.

// related