web_data_google_maps_reviews
Extract structured Google Maps reviews data by providing a valid URL, using reliable cache lookup to avoid scraping issues.
Instructions
Quickly read structured Google maps reviews data. Requires a valid Google maps URL. This can be a cache lookup, so it can be more reliable than scraping
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days_limit | No | 3 | |
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"days_limit": {
"default": "3",
"type": "string"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}