Full access to Google Places API at a fraction of the cost. Place Details, Text Search, Nearby Search, Autocomplete, Geocoding & more.
# Get your API key from @flyingabhi on Telegram # cURL example curl "https://places.abhibots.com/api/place/details?place_id=ChIJN1t_tDeuEmsR&fields=name,rating" \ -H "Authorization: Bearer YOUR_API_KEY" # Python example import requests r = requests.get("https://places.abhibots.com/api/place/details", params={"place_id": "ChIJN1t_tDeuEmsR", "fields": "name,rating"}, headers={"Authorization": "Bearer YOUR_API_KEY"}) print(r.json())