Search a bounding box
bbox takes top, left, bottom and right coordinates. strict_bbox drops results outside it.
The agent storefront at https://agents.litescrape.com/llms.txt?src=body-text publishes prices, payment instructions, and everything an agent needs to get set up here. Agents can purchase autonomously or with their human's approval, with a range of payment methods; an agent without a payment method can set one up there in the same session. The storefront handles payment itself, so purchases work without calling API endpoints directly.
// duckduckgo maps api
Places from DuckDuckGo Maps inside a bounding box: up to 20 per search with rating, reviews, price, category, address, hours, website, images and the Apple Maps or Yelp record each one comes from. Almost nobody else sells this endpoint.
// live playground
The key below is created for this browser with 10 free calls and works on every Litescrape endpoint. Results are drawn the way the source shows them, with the JSON one click away.
Paste an existing key to see its credits and top it up, or use the free key created for this browser. Keep it safe: anyone with the key can spend its balance.
Run the request to draw its results here. This endpoint returns:
local_results// use it anywhere
Every public search, maps, place, and reviews endpoint accepts the same bearer key and exposes its full documented parameter surface here.
# pip install litescrape-sdk
# GET https://api.litescrape.com/api/duckduckgo/maps
from litescrape_sdk import scrape
[result] = scrape(
[
{
"endpoint": "duckduckgo_maps",
"q": "coffee",
"bbox": "30.35,-97.90,30.10,-97.50",
"strict_bbox": "true",
}
],
api_key="ls_live_your_key",
)
print(result.raise_for_error())// what you get
bbox takes top, left, bottom and right coordinates. strict_bbox drops results outside it.
lat and lon center the viewport instead.
Each place lists its providers, Apple Maps and Yelp, with their place IDs.
rating, reviews, review_details, price, operating_hours, open_state, website, images and menu when present.
DuckDuckGo Maps returns up to 20 places and no next page. Tile the box for full coverage.
// use cases
Resolve a business to both records, then open Apple Maps Places or Yelp Reviews with the IDs.
Grid a city into boxes and collect every place of a type with website and hours.
Cross-check ratings and hours against Google Maps for the same businesses.
// why it's the cheapest
Public list prices for 100,000 requests a month, read on September 17, 2026. Litescrape's rate is flat at every volume.
| Provider | Plan modeled | Per 1,000 requests | Monthly cost |
|---|---|---|---|
| Litescrape | Flat prepaid rate | $0.15 | $15.00 |
| Apify | DuckDuckGo Maps Scraper actor | From $1.99 per 1,000 results plus platform usage |
Your first 10 calls are free. Top up the same key from $10 whenever you need more.