Start an async job to extract reviews from one or more Google Maps place URLs. Returns a `jobId` immediately — poll `GET…
Authentication
No API key — create one in the dashboard
Body
One or more Google Maps place URLs to scrape reviews from (max 10).
import requests url = "https://api.coldiq.com/v1/google-maps/reviews" headers = { "Authorization": "Bearer ", "Content-Type": "application/json" } response = requests.post(url, headers=headers) print(response.json())