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

# Get Content Group

> Retrieves detailed information about a specific content group by its unique identifier. This tool allows you to access content group data, metadata, and related items for grouped content formats such as carousels, albums, or multi-image posts.

<Info>
  This tool is part of the [Content Group Tools](./index) category.
</Info>

## Parameters

| Name               | Type   | Required | Description                             |
| ------------------ | ------ | -------- | --------------------------------------- |
| content\_group\_id | string | Yes      | The ID of the content group to retrieve |

## Example Request

```json theme={null}
{
  "content_group_id": "cg_12345678"
}
```

## Example Response

```json theme={null}
{
  "id": "cg_12345678",
  "user_account_id": "ua_87654321",
  "platform": "INSTAGRAM",
  "type": "CAROUSEL",
  "platform_content_group_id": "ig_carousel_xyz123",
  "title": "Summer Collection Launch",
  "description": "Check out our new summer collection! Swipe to see all the new styles.",
  "media_url": "https://instagram.com/p/abc123def/",
  "thumbnail_url": "https://example.com/thumbnails/summer_collection.jpg",
  "visibility": "PUBLIC",
  "published_at": "2023-06-15T10:30:00.000Z",
  "engagement": {
    "views": 8543,
    "likes": 572,
    "comments": 86,
    "shares": 32,
    "saves": 145
  },
  "tags": ["fashion", "summer", "newcollection"],
  "items_count": 3,
  "created_at": "2023-06-15T10:25:00.000Z",
  "updated_at": "2023-06-20T14:15:00.000Z",
  "last_refreshed_at": "2023-06-20T14:15:00.000Z"
}
```

## Usage Notes

* If the specified content group does not exist, a `404 Not Found` error will be returned.
* Content group IDs are unique within your tenant application.
* The response includes platform-specific data such as engagement metrics, visibility, and media URLs.
* Available fields may vary depending on the content platform and type.
* The `items_count` field indicates how many individual items are in this content group.
* For the latest engagement metrics, consider using [Refresh Content Groups](./refreshContentGroups) before retrieving content group data.
* To get the individual items within the content group, use [Get Content Group Items](../content-group-items/getContentGroupItemsByContentGroupId).
* Content groups can represent different concepts across platforms:
  * Instagram: Carousels (multiple images/videos in one post)
  * Facebook: Albums or multi-image posts
  * LinkedIn: Carousel posts or document shares
  * YouTube: Playlists or video series

## Related Tools

* [Get All Content Groups](./getAllContentGroups) - Get all content groups for user accounts
* [Get Content Groups By IDs](./getContentGroupsByIds) - Retrieve multiple content groups by IDs
* [Publish Content Group](./publishContentGroup) - Publish a new content group
* [Get Content Group Items](../content-group-items/getContentGroupItemsByContentGroupId) - Get items in a content group
