Endpoint Playground
Test Crawlora's DuckDuckGo Search API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/duckduckgo/search?q=<q>&time_range=d&safe_search=strict" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| page | integer | No | 1-based page number, defaults to 1 | |
| region | string | No | DuckDuckGo region/locale code, e.g. us-en, uk-en, wt-wt (worldwide, the default) | |
| time_range | string | No | d | Restrict results to a recency window |
| safe_search | string | No | strict | Safe search level, defaults to DuckDuckGo's own moderate setting when omitted |
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"results": [
{
"position": 1,
"title": "OpenAI | Research & Deployment",
"url": "https://openai.com/",
"description": "OpenAI is an AI research and deployment company. Our mission is to ensure that artificial general intelligence benefits all of humanity.",
"hostname": "openai.com"
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized DuckDuckGo web search results for a query string: title, destination URL, description, and hostname, plus page-based pagination. DuckDuckGo wraps every result link in its own click-tracking redirect; this endpoint always returns the decoded destination URL, never the raw redirect link. Results are fetched from DuckDuckGo's own server-rendered search page.
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"results": [
{
"position": 1,
"title": "OpenAI | Research & Deployment",
"url": "https://openai.com/",
"description": "OpenAI is an AI research and deployment company. Our mission is to ensure that artificial general intelligence benefits all of humanity.",
"hostname": "openai.com"
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}curl "https://api.crawlora.net/api/v1/duckduckgo/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"