Real-time local business and places search for AI agents
Real-time local business and places search for AI agents. Find restaurants, coffee shops, stores, services, and nearby businesses with structured names, addresses, coordinates, ratings, categories, phone numbers, and websites where available. Send query, optional num, country, and lang as URL parameters. Keyless x402 pay-per-call; no API key, account, or subscription required.
4000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-11
updated
Provider
pennyregwatch.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x5deaebaf98034cc0d9abe3757a440b121c42ef0a",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"country": "us",
"num": 5,
"query": "coffee shops in Houston"
},
"type": "http"
},
"output": {
"example": {
"count": 1,
"latency_ms": 420,
"ok": true,
"places": [
{
"address": "Houston, TX",
"category": "Coffee shop",
"latitude": 29.76,
"longitude": -95.37,
"phone": "",
"position": 1,
"rating": 4.7,
"rating_count": 100,
"title": "Example Coffee",
"website": ""
}
],
"query": "coffee shops in Houston",
"retrieved_at": "2026-09-10T14:00:00+00:00",
"tool": "penny_places"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"country": {
"description": "Optional 2-letter country code",
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"lang": {
"description": "Optional 2-letter language code",
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"num": {
"default": 5,
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"query": {
"description": "Local business or places search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://pennyregwatch.com/web/places" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://pennyregwatch.com/web/places");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://pennyregwatch.com/web/places")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8024.json, and this resource appears in /discovery/resources and /discovery/search.