# Google Language Integration via LowCodeAPI
## Overview
Google Cloud Translation API provides translation and language detection.
## Base Endpoint
```
https://api.lowcodeapi.com/googlelanguage/
```
**Auth Type**: OAuth2.0
## Common Endpoints
### Translate Text
**Method**: `POST` | **LowCodeAPI Path**: `/v3/projects/projectId/translate`
**Full URL**:
```
https://api.lowcodeapi.com/googlelanguage/v3/projects/projectId/translate?projectId={projectId}&api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/googlelanguage/v3/projects/projectId/translate?projectId=PROJECT_ID&api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"contents": ["Hello, world!"],
"targetLanguageCode": "es"
}'
```
**Official Documentation**: [https://cloud.google.com/translate](https://cloud.google.com/translate)