Endpoint Playground
Test Crawlora's DuckDuckGo Shopping 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/shopping?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| region | string | No | DuckDuckGo market code, e.g. us-en, uk-en |
{
"code": 200,
"msg": "OK",
"data": {
"query": "running shoes",
"results": [
{
"position": 1,
"title": "On Running Cloud 6 Sneakers",
"brand": "On",
"merchant": "www.example.com",
"description": "Lightweight running shoe with CloudTec cushioning.",
"price": "$139.99",
"low_price": "$119.99",
"rating": 4.5,
"review_count": 128,
"image": "https://example.com/shoe.jpg"
}
],
"page_info": {
"page": 1,
"total_pages": 16
}
}
}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 shopping results for a query string: title, brand, merchant, description, price, rating, and review count, plus total page count. DuckDuckGo's shopping vertical is ad-funded, syndicated product listings, not organic content; every product link is wrapped in an ad-click-tracking redirect with no clean destination to unwrap, so no destination URL is returned. DuckDuckGo's own pagination token for this vertical is an opaque per-response blob rather than a plain page offset, so only the first page is supported.
{
"code": 200,
"msg": "OK",
"data": {
"query": "running shoes",
"results": [
{
"position": 1,
"title": "On Running Cloud 6 Sneakers",
"brand": "On",
"merchant": "www.example.com",
"description": "Lightweight running shoe with CloudTec cushioning.",
"price": "$139.99",
"low_price": "$119.99",
"rating": 4.5,
"review_count": 128,
"image": "https://example.com/shoe.jpg"
}
],
"page_info": {
"page": 1,
"total_pages": 16
}
}
}curl "https://api.crawlora.net/api/v1/duckduckgo/shopping?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"