# Google Keep Integration via LowCodeAPI

## Overview

Google Keep API manages notes, lists, and reminders.

## Base Endpoint

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

**Auth Type**: OAuth2.0

## Common Endpoints

### List Notes

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

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

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

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