# Google Address Validation Integration via LowCodeAPI

## Overview

Google Address Validation API validates and standardizes postal addresses worldwide.

## Base Endpoint

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

**Auth Type**: API Key

## Common Endpoints

### Validate Address

**Method**: `POST` | **LowCodeAPI Path**: `/v1:validateAddress`

**Full URL**:
```
https://api.lowcodeapi.com/googleaddressvalidation/v1:validateAddress?api_token={api_token}
```

**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/googleaddressvalidation/v1:validateAddress?api_token=YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "address": {
      "regionCode": "US",
      "addressLines": ["1600 Amphitheatre Parkway", "Mountain View, CA"]
    }
  }'
```

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