This tool is part of the Content Group Items Tools category.

Parameters

NameTypeRequiredDescription
content_group_item_idstringYesThe unique ID of the content group item

Example Request

{
  "content_group_item_id": "content_group_item_12345678"
}

Example Response

{
  "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.