Look up a business's full Google Business Profile by name and location
Look up a business's full Google Business Profile by name and location. Returns name, category, star rating and review count, address, phone, website, opening hours by day, Google place_id and CID, coordinates and claimed status. For place enrichment, store-hours and business lookups. Unknown business returns found=false.
20000 (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": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"language": "US",
"location": "example",
"name": "example"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"address": "115 Sansome St, San Francisco, CA 94104",
"categories": [
"Cafe",
"Espresso bar"
],
"category": "Coffee shop",
"cid": "1958883682639164205",
"claimed": true,
"domain": "bluebottlecoffee.com",
"found": true,
"hours": {
"monday": [
{
"close": "18:00",
"open": "07:00"
}
],
"sunday": [
{
"close": "14:00",
"open": "08:00"
}
]
},
"latitude": 37.79036,
"longitude": -122.40145,
"name": "Blue Bottle Coffee",
"phone": "+1 510-661-3510",
"placeId": "ChIJ-wU5Vl2AhYARLW9y0objABs",
"rating": 4.4,
"reviewsCount": 1294,
"source": "dataforseo",
"website": "https://bluebottlecoffee.com"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"language": {
"description": "Language code (2-letter). Defaults to en.",
"pattern": "^[A-Za-z]{2}$",
"type": "string"
},
"location": {
"description": "Location name, e.g. \"United States\" or \"London,England,United Kingdom\". Defaults to United States.",
"maxLength": 120,
"minLength": 2,
"type": "string"
},
"name": {
"description": "Business name (optionally with city), e.g. \"Blue Bottle Coffee San Francisco\".",
"maxLength": 300,
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"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/place-details" # -> 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/place-details");
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/place-details")
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/8208.json, and this resource appears in /discovery/resources and /discovery/search.