Endpoint Playground
Test Crawlora's DuckDuckGo Image 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/image?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 logo",
"url": "https://example.com/openai-logo",
"image_url": "https://example.com/openai-logo.jpg",
"thumbnail": "https://example.com/openai-logo-thumb.jpg",
"width": 1200,
"height": 800,
"hostname": "example.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 image results for a query string: title, source page URL, image URL, thumbnail, dimensions, and hostname, plus page-based pagination. Results are fetched from DuckDuckGo's own image JSON API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "openai",
"results": [
{
"position": 1,
"title": "OpenAI logo",
"url": "https://example.com/openai-logo",
"image_url": "https://example.com/openai-logo.jpg",
"thumbnail": "https://example.com/openai-logo-thumb.jpg",
"width": 1200,
"height": 800,
"hostname": "example.com"
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}curl "https://api.crawlora.net/api/v1/duckduckgo/image?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"