# Google Meet Integration via LowCodeAPI
## Overview
Google Meet API manages conference spaces and participants.
## Base Endpoint
```
https://api.lowcodeapi.com/googlemeet/
```
**Auth Type**: OAuth2.0
## Common Endpoints
### Create Conference Space
**Method**: `POST` | **LowCodeAPI Path**: `/v1/spaces`
**Full URL**:
```
https://api.lowcodeapi.com/googlemeet/v1/spaces?api_token={api_token}
```
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/googlemeet/v1/spaces?api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
```
**Official Documentation**: [https://developers.google.com/meet](https://developers.google.com/meet)