> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hiveku.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Social Media API

> Manage social media accounts, posts, and analytics

## Accounts

### List Connected Accounts

<ParamField path="GET" type="/marketing/social/accounts">
  List all connected social media accounts.
</ParamField>

***

## Calendar

### Get Calendar Events

<ParamField path="GET" type="/marketing/social/calendar">
  Get scheduled and published posts for the calendar view.
</ParamField>

**Query Parameters**

| Parameter | Type   | Description           |
| --------- | ------ | --------------------- |
| `start`   | string | Start date (ISO 8601) |
| `end`     | string | End date (ISO 8601)   |

***

## Posts

### Approve Post

<ParamField path="POST" type="/marketing/social/posts/{postId}/approve">
  Approve a post for publishing.
</ParamField>

### Post Comments

<ParamField path="GET" type="/marketing/social/posts/{postId}/comments">
  Get comments on a social media post.
</ParamField>

### Post Analytics

<ParamField path="GET" type="/marketing/social/posts/{postId}/analytics">
  Get engagement analytics for a specific post.
</ParamField>

***

## Content Pillars

<ParamField path="GET" type="/marketing/social/pillars">
  List content pillars for your social strategy.
</ParamField>

<ParamField path="POST" type="/marketing/social/pillars">
  Create a new content pillar.
</ParamField>

***

## Follower Analytics

<ParamField path="GET" type="/marketing/social/analytics/followers">
  Get follower growth data across connected accounts.
</ParamField>

**Response**

```json theme={null}
{
  "current": 1250,
  "previousPeriod": 1180,
  "growth": 5.9,
  "timeline": [
    { "date": "2025-04-01", "count": 1200 },
    { "date": "2025-04-07", "count": 1220 },
    { "date": "2025-04-14", "count": 1250 }
  ]
}
```
