# Google Classroom Integration via LowCodeAPI

## Overview

Google Classroom API manages courses, assignments, and student submissions.

## Base Endpoint

```
https://api.lowcodeapi.com/googleclassroom/
```

**Auth Type**: OAuth2.0

## Common Endpoints

### List Courses

**Method**: `GET` | **LowCodeAPI Path**: `/v1/courses`

**Full URL**:
```
https://api.lowcodeapi.com/googleclassroom/v1/courses?api_token={api_token}
```

**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/googleclassroom/v1/courses?api_token=YOUR_API_TOKEN"
```

**Official Documentation**: [https://developers.google.com/classroom](https://developers.google.com/classroom)