# Google Places Integration via LowCodeAPI
## Overview
Google Places API provides information about places, businesses, and points of interest.
## Base Endpoint
```
https://api.lowcodeapi.com/googleplaces/
```
**Auth Type**: API Key
## Common Endpoints
### Search Places
**Method**: `GET` | **LowCodeAPI Path**: `/v1/places:search`
**Full URL**:
```
https://api.lowcodeapi.com/googleplaces/v1/places:search?query={query}&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/googleplaces/v1/places:search?query=restaurant+near+me&api_token=YOUR_API_TOKEN"
```
**Official Documentation**: [https://developers.google.com/maps/documentation/places](https://developers.google.com/maps/documentation/places)