Search Google's local business directory within a radius of a coordinate, filtered by cate
Search Google's local business directory within a radius of a coordinate, filtered by category and/or a name query. Returns ranked businesses with name, category, star rating and review count, address, phone, website domain, place_id/CID and coordinates. Richer than a SERP local pack. No match → empty results.
30000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-11
updated
Provider
places.openverbs.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"count": 1,
"results": [
{
"address": "2885 Diamond St, San Francisco, CA 94131",
"category": "Coffee shop",
"cid": "1958883682639164205",
"claimed": true,
"domain": "bello.coffee",
"latitude": 37.7421,
"longitude": -122.4335,
"name": "Bello Coffee & Tea",
"phone": "+1 415-585-3457",
"placeId": "ChIJ0aQ0Vl2AhYARabc123",
"rank": 1,
"rating": 4.4,
"reviewsCount": 326,
"website": "https://bello.coffee"
}
],
"total": 128
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"categories": {
"description": "Google business categories to match, e.g. [\"coffee_shop\"]. Provide categories and/or query.",
"items": {
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"limit": {
"description": "Maximum results. Defaults to 10.",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"locationCoordinate": {
"description": "\"lat,lng,radiusKm\", e.g. \"37.7749,-122.4194,10\". Use the geocode verb to turn a place name into coordinates.",
"pattern": "^-?\\d{1,2}(\\.\\d+)?,-?\\d{1,3}(\\.\\d+)?,\\d{1,4}(\\.\\d+)?$",
"type": "string"
},
"query": {
"description": "Name text to match, e.g. \"coffee\". Provide categories and/or query.",
"maxLength": 200,
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://places.openverbs.com/v1/business-search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://places.openverbs.com/v1/business-search");
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://places.openverbs.com/v1/business-search")
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/8207.json, and this resource appears in /discovery/resources and /discovery/search.