# Google Text-to-Speech Integration via LowCodeAPI
## Overview
Google Cloud Text-to-Speech API converts text to audio.
## Base Endpoint
```
https://api.lowcodeapi.com/googletexttospeech/
```
**Auth Type**: OAuth2.0
## Common Endpoints
### Synthesize Speech
**Method**: `POST` | **LowCodeAPI Path**: `/v1/text:synthesize`
**Full URL**:
```
https://api.lowcodeapi.com/googletexttospeech/v1/text:synthesize?api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/googletexttospeech/v1/text:synthesize?api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"input": {"text": "Hello, world!"},
"voice": {"languageCode": "en-US", "ssmlGender": "NEUTRAL"},
"audioConfig": {"audioEncoding": "MP3"}
}'
```
**Official Documentation**: [https://cloud.google.com/text-to-speech](https://cloud.google.com/text-to-speech)