# Google Geocoding Integration via LowCodeAPI

## Overview

Google Geocoding API converts addresses to coordinates and vice versa.

## Base Endpoint

```
https://api.lowcodeapi.com/googlegeocoding/
```

**Auth Type**: API Key

## Common Endpoints

### Geocode Address

**Method**: `GET` | **LowCodeAPI Path**: `/v1/geocode/json`

**Full URL**:
```
https://api.lowcodeapi.com/googlegeocoding/v1/geocode/json?address={address}&api_token={api_token}
```

**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/googlegeocoding/v1/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&api_token=YOUR_API_TOKEN"
```

**Official Documentation**: [https://developers.google.com/maps/documentation/geocoding](https://developers.google.com/maps/documentation/geocoding)