# Google Forms Integration via LowCodeAPI
## Overview
Google Forms API manages forms, responses, and settings.
## Base Endpoint
```
https://api.lowcodeapi.com/googleforms/
```
**Auth Type**: OAuth2.0
## Common Endpoints
### Get Form
**Method**: `GET` | **LowCodeAPI Path**: `/v1/forms/formId`
**Full URL**:
```
https://api.lowcodeapi.com/googleforms/v1/forms/formId?formId={formId}&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/googleforms/v1/forms/formId?formId=FORM_ID&api_token=YOUR_API_TOKEN"
```
**Official Documentation**: [https://developers.google.com/forms](https://developers.google.com/forms)