Google Places API
Google business listing
A business's Google listing: categories, description, hours, attributes, rating, contact details and images.
Endpoint
/v1/google_places/listinglive · proven4 creditsParameters
Query parameters
| Name | Required | Description | Example |
|---|---|---|---|
query | yes | Business name, optionally with a place | Dishoom Shoreditch |
location | no | Location name | London,England,United Kingdom |
language | no | Language code | en |
dry_run | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. | 1 |
Examples
Make the request
curl "https://www.monocrawl.com/v1/google_places/listing?query=Dishoom%20Shoreditch" \ -H "x-api-key: mn_your_key_here"
TypeScript
const key = process.env.MONOCRAWL_API_KEY;
if (!key) throw new Error('Set MONOCRAWL_API_KEY on your server.');
const res = await fetch(
"https://www.monocrawl.com/v1/google_places/listing?query=Dishoom%20Shoreditch",
{ headers: { "x-api-key": key } },
);
const body = await res.json();
if (!body.success) {
// one error shape for every endpoint — see /docs/errors
throw new Error(`${body.error.type}: ${body.error.message}`);
}
console.log(body.data, "credits left:", body.credits_remaining);Python
import os
import requests
res = requests.get(
"https://www.monocrawl.com/v1/google_places/listing?query=Dishoom%20Shoreditch",
headers={"x-api-key": os.environ["MONOCRAWL_API_KEY"]},
timeout=60,
)
body = res.json()
if not body["success"]:
# one error shape for every endpoint — see /docs/errors
raise RuntimeError(f"{body['error']['type']}: {body['error']['message']}")
print(body["data"], "credits left:", body["credits_remaining"])Response
Response fields and example
This example is illustrative, not a captured live response. Variable-cost operations may settle a charge different from the list price below. A successful response puts the platform payload in data and reports the exact credits used, remaining balance, request id and cache status beside it.
{
"success": true,
"platform": "google_places",
"endpoint": "/v1/google_places/listing",
"data": {
"address": "example",
"attributes": {
"available_attributes": {
"accessibility": [
"example"
],
"amenities": [
"example"
],
"atmosphere": [
"example"
],
"children": [
"example"
],
"crowd": [
"example"
],
"dining_options": [
"example"
],
"highlights": [
"example"
],
"offerings": [
"example"
],
"parking": [
"example"
],
"payments": [
"example"
],
"pets": [
"example"
],
"planning": [
"example"
],
"popular_for": [
"example"
],
"service_options": [
"example"
]
},
"unavailable_attributes": {
"accessibility": [
"example"
]
}
},
"categories": [
"example"
],
"category": "example",
"cid": "example",
"description": "example",
"domain": "example",
"hours": {
"current_status": "example",
"timetable": {
"friday": [
{}
],
"monday": [
{}
],
"saturday": [
{}
],
"sunday": [
{}
],
"thursday": [
{}
],
"tuesday": [
{}
],
"wednesday": [
{}
]
}
},
"is_claimed": false,
"latitude": 0,
"logo": "example",
"longitude": 0,
"main_image": "https://example.com/example",
"name": "example",
"open_now": "example",
"phone": "example",
"place_id": "example",
"platform": "example",
"rating": {
"max": 0,
"value": 0,
"votes": 0
},
"url": "https://example.com/example"
},
"credits_used": 4,
"credits_remaining": 99,
"request_id": "req_…",
"cached": false
}The example is illustrative and shows a documented subset of data. The fields below are optional across supported sources; nullable fields can also be absent. Preserve unknown values and accept additional fields.
Schema basis: observed response shapes, not an exhaustive field specification. See schema coverage and validation limits.
Download the data JSON Schema. Validate response.data, not the whole envelope. A valid shape does not establish that every field or source record was returned.
| Field inside data | Type | Meaning |
|---|---|---|
address | string | null | Optional address supplied by this operation. Null means unknown. |
attributes | object | null | Optional attributes supplied by this operation. Null means unknown. |
attributes.available_attributes | object | null | Optional available attributes supplied by this operation. Null means unknown. |
attributes.available_attributes.accessibility | array | null | Optional accessibility supplied by this operation. Null means unknown. |
attributes.available_attributes.amenities | array | null | Optional amenities supplied by this operation. Null means unknown. |
attributes.available_attributes.atmosphere | array | null | Optional atmosphere supplied by this operation. Null means unknown. |
attributes.available_attributes.children | array | null | Optional children supplied by this operation. Null means unknown. |
attributes.available_attributes.crowd | array | null | Optional crowd supplied by this operation. Null means unknown. |
attributes.available_attributes.dining_options | array | null | Optional dining options supplied by this operation. Null means unknown. |
attributes.available_attributes.highlights | array | null | Optional highlights supplied by this operation. Null means unknown. |
attributes.available_attributes.offerings | array | null | Optional offerings supplied by this operation. Null means unknown. |
attributes.available_attributes.parking | array | null | Optional parking supplied by this operation. Null means unknown. |
attributes.available_attributes.payments | array | null | Optional payments supplied by this operation. Null means unknown. |
attributes.available_attributes.pets | array | null | Optional pets supplied by this operation. Null means unknown. |
attributes.available_attributes.planning | array | null | Optional planning supplied by this operation. Null means unknown. |
attributes.available_attributes.popular_for | array | null | Optional popular for supplied by this operation. Null means unknown. |
attributes.available_attributes.service_options | array | null | Optional service options supplied by this operation. Null means unknown. |
attributes.unavailable_attributes | object | null | Optional unavailable attributes supplied by this operation. Null means unknown. |
attributes.unavailable_attributes.accessibility | array | null | Optional accessibility supplied by this operation. Null means unknown. |
categories | array | null | Optional categories supplied by this operation. Null means unknown. |
category | string | null | Optional category supplied by this operation. Null means unknown. |
cid | string | null | Optional cid supplied by this operation. Null means unknown. |
description | string | null | Source description; null or absent means not supplied. |
domain | string | null | Optional domain supplied by this operation. Null means unknown. |
hours | object | null | Optional hours supplied by this operation. Null means unknown. |
hours.current_status | string | null | Optional current status supplied by this operation. Null means unknown. |
hours.timetable | object | null | Optional timetable supplied by this operation. Null means unknown. |
hours.timetable.friday | array | null | Optional friday supplied by this operation. Null means unknown. |
hours.timetable.monday | array | null | Optional monday supplied by this operation. Null means unknown. |
hours.timetable.saturday | array | null | Optional saturday supplied by this operation. Null means unknown. |
hours.timetable.sunday | array | null | Optional sunday supplied by this operation. Null means unknown. |
hours.timetable.thursday | array | null | Optional thursday supplied by this operation. Null means unknown. |
hours.timetable.tuesday | array | null | Optional tuesday supplied by this operation. Null means unknown. |
hours.timetable.wednesday | array | null | Optional wednesday supplied by this operation. Null means unknown. |
is_claimed | boolean | null | Optional is claimed supplied by this operation. Null means unknown. |
latitude | number | null | Optional latitude supplied by this operation. Null means unknown. |
logo | string | null | Optional logo supplied by this operation. Null means unknown. |
longitude | number | null | Optional longitude supplied by this operation. Null means unknown. |
main_image | string | null | Optional main image supplied by this operation. Null means unknown. |
name | string | null | Optional name supplied by this operation. Null means unknown. |
open_now | string | null | Optional open now supplied by this operation. Null means unknown. |
phone | string | null | Optional phone supplied by this operation. Null means unknown. |
place_id | string | null | Optional place id supplied by this operation. Null means unknown. |
platform | string | null | Optional platform supplied by this operation. Null means unknown. |
rating | object | null | Source rating; read its accompanying scale and vote count. |
rating.max | number | null | Optional max supplied by this operation. Null means unknown. |
rating.value | number | null | Optional value supplied by this operation. Null means unknown. |
rating.votes | number | null | Optional votes supplied by this operation. Null means unknown. |
url | string | null | Original source URL when supplied. |
Optional fields reviewed from preserved successful responses. Additive fields and source variations remain allowed; validate the fields your workflow requires.
The example is invented and illustrates types only; zero and empty values are not claims about a real result.
Failures use the typed error envelope. A confirmed uncharged or refunded failure reports zero; a pending reconciliation can report an unknown charge. Read credits_used and error.details.billing_status, and keep request_id for recovery. Response contract · Error reference