> ## 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 Item

> Retrieves detailed information about a specific content group item by its unique identifier. This tool allows you to fetch a single item from a content group and its associated metadata.

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

## Parameters

| Name                     | Type   | Required | Description                             |
| ------------------------ | ------ | -------- | --------------------------------------- |
| content\_group\_item\_id | string | Yes      | The unique ID of the content group item |

## Example Request

```json theme={null}
{
  "content_group_item_id": "content_group_item_12345678"
}
```

## Example Response

```json theme={null}
{
  "id": "content_group_item_12345678",
  "platform_account_id": "platform_acc_123",
  "platform_account_content_group_item_id": "platform_item_123",
  "title": "Barcelona Beach",
  "description": "Sunny day at Barcelona's beautiful beaches",
  "media_url": "https://example.com/media/barcelona-beach.jpg",
  "thumbnail_url": "https://example.com/thumbnails/barcelona-beach.jpg",
  "content_group_id": "content_group_98765432",
  "account_id": "acc_987654",
  "format": "IMAGE",
  "type": "INSTAGRAM_STORY_ITEM",
  "created_at": "2023-06-15T10:30:00.000Z",
  "updated_at": "2023-06-15T10:30:00.000Z"
}
```

## Usage Notes

* The response includes all available metadata about the content group item, including media URLs and associated IDs.
* The `platform_account_content_group_item_id` is the platform-specific identifier, while `id` is the MCP system identifier.
* The `content_group_id` field indicates which content group this item belongs to.
* The `format` field specifies the media type (IMAGE, VIDEO, etc.)
* The `type` field specifies the platform-specific content type (INSTAGRAM\_STORY\_ITEM, FACEBOOK\_ALBUM\_PHOTO, etc.)
* If the content group item is not found, a 404 Not Found error will be returned.
* This endpoint provides a detailed view of a single content group item, useful for displaying individual items within a content group.
* For media content, the `media_url` field contains the direct link to the media file.

## Error Responses

* **404 Not Found**: Returned when the content group item with the specified ID doesn't exist.
* **500 Internal Server Error**: Returned when there's a server-side error processing the request.

## Related Tools

* [Get Content Group Items By Content Group ID](./getContentGroupItemsByContentGroupId) - Retrieve all items for a specific content group
* [Get Content Group Items By Content Group IDs](./getContentGroupItemsByContentGroupIds) - Retrieve items for multiple content groups
* [Get Content Group Items By IDs](./getContentGroupItemsByIds) - Retrieve multiple content group items by their IDs
* [Fetch Content Group Items](./fetchContentGroupItems) - Fetch content group items from platforms
