Endpoint Playground
Test Crawlora's DuckDuckGo News 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/news?q=<q>" \
-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) |
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"results": [
{
"position": 1,
"title": "OpenAI announces new model",
"url": "https://example.com/openai-announces-new-model",
"source": "TechCrunch",
"excerpt": "OpenAI today announced...",
"thumbnail": "https://example.com/thumb.jpg",
"relative_time": "2 hours ago",
"published_at": 1721418540
}
],
"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 news results for a query string: title, destination URL, source, excerpt, thumbnail, and relative/published time, plus page-based pagination. Results are fetched from DuckDuckGo's own news JSON API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"results": [
{
"position": 1,
"title": "OpenAI announces new model",
"url": "https://example.com/openai-announces-new-model",
"source": "TechCrunch",
"excerpt": "OpenAI today announced...",
"thumbnail": "https://example.com/thumb.jpg",
"relative_time": "2 hours ago",
"published_at": 1721418540
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}curl "https://api.crawlora.net/api/v1/duckduckgo/news?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"