# Google Speech Integration via LowCodeAPI
## Overview
Google Cloud Speech-to-Text API converts audio to text.
## Base Endpoint
```
https://api.lowcodeapi.com/googlespeech/
```
**Auth Type**: OAuth2.0
## Common Endpoints
### Recognize Speech
**Method**: `POST` | **LowCodeAPI Path**: `/v1/speech:recognize`
**Full URL**:
```
https://api.lowcodeapi.com/googlespeech/v1/speech:recognize?api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/googlespeech/v1/speech:recognize?api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"config": {"encoding": "LINEAR16", "sampleRateHertz": 16000, "languageCode": "en-US"},
"audio": {"uri": "gs://bucket/audio.wav"}
}'
```
**Official Documentation**: [https://cloud.google.com/speech-to-text](https://cloud.google.com/speech-to-text)