# Google Routes Integration via LowCodeAPI

## Overview

Google Routes API calculates directions and routes between locations.

## Base Endpoint

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

**Auth Type**: API Key

## Common Endpoints

### Compute Routes

**Method**: `POST` | **LowCodeAPI Path**: `/v1/routes:compute`

**Full URL**:
```
https://api.lowcodeapi.com/googleroutes/v1/routes:compute?api_token={api_token}
```

**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/googleroutes/v1/routes:compute?api_token=YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "origin": {"location": {"latLng": {"latitude": 37.419734, "longitude": -122.0827784}}},
    "destination": {"location": {"latLng": {"latitude": 37.417670, "longitude": -122.079987}}}
  }'
```

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