# Google Tasks Integration via LowCodeAPI
## Overview
Google Tasks API manages task lists and tasks.
## Base Endpoint
```
https://api.lowcodeapi.com/googletasks/
```
**Auth Type**: OAuth2.0
## Common Endpoints
### List Tasklists
**Method**: `GET` | **LowCodeAPI Path**: `/v1/users/@me/lists`
**Full URL**:
```
https://api.lowcodeapi.com/googletasks/v1/users/@me/lists?api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/googletasks/v1/users/@me/lists?api_token=YOUR_API_TOKEN"
```
**Official Documentation**: [https://developers.google.com/tasks](https://developers.google.com/tasks)