# Google Blogger Integration via LowCodeAPI

## Overview

Google Blogger API manages blog posts, pages, comments, and user blogs.

## Base Endpoint

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

**Auth Type**: OAuth2.0

## Common Endpoints

### List Posts

**Method**: `GET` | **LowCodeAPI Path**: `/v3/blogs/blogId/posts`

**Full URL**:
```
https://api.lowcodeapi.com/googleblogger/v3/blogs/blogId/posts?blogId={blogId}&api_token={api_token}
```

**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/googleblogger/v3/blogs/blogId/posts?blogId=BLOG_ID&api_token=YOUR_API_TOKEN"
```

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