# DuckDuckGo — Zapi reference > DuckDuckGo web search — privacy-focused search engine, no tracking, hasil pencarian web umum dengan title, URL, snippet. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/search-tools/duckduckgo - Endpoint catalog: https://zpi.web.id/category/search-tools - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## DuckDuckGo **Category:** search-tools · **Slug:** `duckduckgo` **Detail page:** https://zpi.web.id/api/search-tools/duckduckgo DuckDuckGo web search — privacy-focused search engine, no tracking, hasil pencarian web umum dengan title, URL, snippet. **Tags:** search, web, privacy ### Search Cari hasil pencarian berdasarkan keyword dengan pagination. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/search-tools:duckduckgo/search` - **Cache TTL:** 900s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Search keyword | **cURL:** ```bash curl "https://api.zpi.web.id/v1/search-tools:duckduckgo/search?query=pizza" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/search-tools:duckduckgo/search?query=pizza", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/search-tools:duckduckgo/search?query=pizza", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 10, "items": [ { "url": "https://www.pizzahut.com/", "title": "Pizza Hut | Delivery & Carryout - No One OutPizzas The Hut!", "source": "duckduckgo.com", "snippet": "Discover Pizza Hut's classic and new menu items, deals, and seamless ordering for delivery or carryout. No One OutPizzas the Hut®.", "displayUrl": "pizzahut.com" }, { "url": "https://www.dominos.com/en", "title": "Pizza Delivery & Carryout, Pasta, Chicken & More | Domino's", "source": "duckduckgo.com", "snippet": "Order pizza , pasta, sandwiches & more online for carryout or delivery from Domino's. View menu, find locations, track orders. Sign up for Domino's email & text offers to get great deals on your next order.", "displayUrl": "dominos.com" }, { "url": "https://www.papajohns.com/", "title": "Papa Johns Pizza Delivery & Carryout - Best Deals on Pizza, Sides & More", "source": "duckduckgo.com", "snippet": "Enjoy the ease of ordering delicious pizza for delivery or carryout from a Papa Johns near you. Start tracking the speed of your delivery and earn rewards on your favorite pizza , breadsticks, wings and more!", "displayUrl": "papajohns.com" }, { "url": "https://www.pizzahut.com/locator", "title": "Pizza Hut Store Locator", "source": "duckduckgo.com", "snippet": "Browse our 6,000+ locations by city and state below. With online delivery and take out ordering options, Pizza Hut makes it easy to skip the line. Our menu includes pizza , wings, pasta and more. Try our Original Stuffed Crust® Pizza or grab a slice of a classic Pepperoni Pizza . And if you're feeling hungry on-the-go, drop by one of The Hut Lane™ drive thru locations. Enjoy!", "displayUrl": "pizzahut.com" }, { "url": "https://locations.pizzahut.com/", "title": "Pizza Hut Near Me - Store Locations | Pizza Hut", "source": "duckduckgo.com", "snippet": "Browse all Pizza Hut locations in United States to find hot and fresh pizza , wings, pasta and more! Order carryout or delivery for quick service.", "displayUrl": "locations.pizzahut.com" }, { "url": "https://pizza.dominos.com/", "title": "Find Domino's in the US | Order Pizza Delivery Now", "source": "duckduckgo.com", "snippet": "Get delicious and tasty food delivered! Order from your nearest Domino's in the US for pizza , pasta, chicken, salad, sandwiches, dessert, and more.", "displayUrl": "pizza.dominos.com" }, { "url": "https://www.pizzahut.com/menu/pizza", "title": "Pizza Hut", "source": "duckduckgo.com", "snippet": "Supreme Pizza This loaded pizza is the perfect choice for family dinner or a lunch with your crew. Includes pepperoni, seasoned pork, beef, mushrooms, green bell peppers and onions.", "displayUrl": "pizzahut.com" }, { "url": "https://barrospizza.com/", "title": "Barro's Pizza: A Family Tradition- Voted Valley's Best Pizzeria!", "source": "duckduckgo.com", "snippet": "We're a family owned and operated pizza restaurant with award winning wings, salads, deli-style sandwiches, pasta and the Valley's favorite pizza .", "displayUrl": "barrospizza.com" }, { "url": "https://www.donatos.com/", "title": "Donatos Pizza", "source": "duckduckgo.com", "snippet": "Discover Donatos Pizza's delicious menu featuring Edge to Edge® pizzas , subs, salads, and wings available for delivery, pickup, or dine-in.", "displayUrl": "donatos.com" }, { "url": "https://www.ubereats.com/near-me/pizza", "title": "Pizza Delivery Near Me | Uber Eats", "source": "duckduckgo.com", "snippet": "Order Pizza delivery online from shops near you with Uber Eats. Discover the stores offering Pizza delivery nearby.", "displayUrl": "ubereats.com" } ], "hasMore": true, "nextPage": 2 } ``` --- _Generated: 2026-08-02T14:28:29.840Z_