# places.openverbs.com Place Details

> places.openverbs.com Place Details is a paid API for AI agents from places.openverbs.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Look up a business's full profile — rating, hours, categories, place_id, and coordinates — by name using Google Business data.

## Facts

- Endpoint: POST https://places.openverbs.com/v1/place-details
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/places-openverbs-com-place-details-4e2681cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nVIsBqLAX43r8-r5BDTzJ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability places-openverbs-com-place-details-4e2681cf -d '<json body>'
```

Example prompt: Can you pull up the full Google Business profile for Blue Bottle Coffee in San Francisco — I need their place ID, current hours, phone number, rating, and coordinates.

## When to prefer this

Use this endpoint when you need structured Google Business profile data for a specific named business — including place_id, hours, coordinates, rating, and contact info — and you know the business name. Prefer this over a general search endpoint when you have a specific business in mind rather than browsing a category. Best for enriching CRM records, validating business listings, or resolving business names to Google place IDs programmatically.

## Known failure modes

- Business not found in Google Business data returns found:false with empty profile fields
- Ambiguous business name without location may resolve to wrong location
- Invalid or unsupported language code returns validation error
- Name too long (>300 chars) or too short (<1 char) returns schema validation error
- Network or upstream DataForSEO outage may cause timeout or 5xx error
- Payment failure via x402 returns 402 with payment details required

## How this service works

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.

## Output

Returns a JSON object with the business's name, Google place_id, cid, full address, phone number, website domain, rating, review count, claimed status, operating hours by day of week, latitude, longitude, primary category, and additional categories. Includes a 'found' boolean indicating whether the business was successfully located.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "maxLength": 300,
       "minLength": 1,
       "description": "Business name (optionally with city), e.g. \"Blue Bottle Coffee San Francisco\"."
      },
      "language": {
       "type": "string",
       "pattern": "^[A-Za-z]{2}$",
       "description": "Language code (2-letter). Defaults to en."
      },
      "location": {
       "type": "string",
       "maxLength": 120,
       "minLength": 2,
       "description": "Location name, e.g. \"United States\" or \"London,England,United Kingdom\". Defaults to United States."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cid": "1958883682639164205",
  "name": "Blue Bottle Coffee",
  "found": true,
  "hours": {
   "monday": [
    {
     "open": "07:00",
     "close": "18:00"
    }
   ],
   "sunday": [
    {
     "open": "08:00",
     "close": "14:00"
    }
   ]
  },
  "phone": "+1 510-661-3510",
  "domain": "bluebottlecoffee.com",
  "rating": 4.4,
  "source": "dataforseo",
  "address": "115 Sansome St, San Francisco, CA 94104",
  "claimed": true,
  "placeId": "ChIJ-wU5Vl2AhYARLW9y0objABs",
  "website": "https://bluebottlecoffee.com",
  "category": "Coffee shop",
  "latitude": 37.79036,
  "longitude": -122.40145,
  "categories": [
   "Cafe",
   "Espresso bar"
  ],
  "reviewsCount": 1294
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/places-openverbs-com-place-details-4e2681cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from places.openverbs.com](https://www.zero.xyz/host/places.openverbs.com/llms.txt)
