# solari instagram content detail

> One Instagram post in full.

- **CLI**: `solari instagram content detail`
- **MCP tool**: `solari_instagram_content_detail`
- **Access**: `solari:read` — Works with any signed-in SOLARI account.

Detail for one Instagram post, in the same item shape as solari_instagram_content_trending entries. Identify the post by post_id (SOLARI post UUID from solari_instagram_account_posts, solari_instagram_content_search, solari_instagram_content_trending, or solari_instagram_content_rising), by slug (the public Instagram shortcode), or by url (the public post URL). A shortcode or URL not tracked yet is fetched live on first request (allow several seconds) and fetched_on_demand=true marks that case; item is null when the post does not exist or is not public, or when a post_id is unknown. Works with any signed-in SOLARI account.

**When to use it** — Opening a single post by post_id, shortcode, or public URL.

**What comes back** — One item, in the same shape as the content feeds.

## Parameters

- `post_id` (string, optional, uuid, pattern ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$) — The SOLARI post_id UUID. Provide this, slug, or url.
- `slug` (string, optional, pattern ^[A-Za-z0-9_-]{3,20}$) — Public Instagram shortcode, the segment after /p/, /reel/, or /tv/ in a post URL. Ignored when post_id is set.
- `url` (string, optional, ≤ 512 chars) — Public Instagram post URL such as https://www.instagram.com/p/<shortcode>/ or .../reel/<shortcode>/. Ignored when post_id or slug is set.

## Response

### `Response`

- `item` (object | null) — The post. null when it does not exist or is not public.
- `fetched_on_demand` (boolean) — true when this request is what first pulled the post in.

### `item`

- `post_id` (uuid) — SOLARI post id. Feed it straight into the other content tools.
- `slug` (string) — Instagram shortcode — the segment after /p/ or /reel/ in a public URL.
- `author_id` (uuid) — account_id of the authoring account.
- `username` (string) — Author handle.
- `full_name` (string | null) — Profile display name.
- `profile_pic_url` (string | null) — Profile picture URL.
- `follower_count` (integer | null) — Author follower count at snapshot time.
- `region` (string | null) — Region code assigned to the author.
- `posted_at` (timestamp) — Publication time (UTC).
- `media_type` (string) — image, video, or carousel.
- `play_count` (integer | null) — Video plays. null for image posts.
- `like_count` (integer | null) — Likes at snapshot time.
- `text` (string | null) — Caption text.
- `media_url` (string) — Original media URL.
- `thumbnail_url` (string) — Thumbnail URL.
- `score` (number | null) — Feed ranking score. Comparable only within one response.
- `efficiency_score` (number | null) — Performance relative to the author's follower count.
- `est_percentile` (number | null) — Estimated percentile within the region, 0–1.
- `total_views_3m` (integer | null) — Author's cumulative views over the last 3 months.
- `median_views_3m` (integer | null) — Author's median views over the last 3 months.
- `recent_collab_brands` (string[]) — Brands the author has collaborated with recently.
- `item_type` (string) — Item kind tag; post in the content feeds.
- `content_source` (string | null) — Which pipeline surfaced this item.
- `is_saved` (boolean | null) — Whether the item is saved in the SOLARI app.
- `updated_at` (timestamp | null) — When the metric snapshot was last refreshed.

## Example

```console
$ solari instagram content detail slug=DcyMAmUh6FZ
```

_Long strings and repeated array entries are trimmed for readability._

```json
{
  "item": {
    "item_type": "content",
    "post_id": "01a06275-d974-7fda-98ee-dd3ee15b4dcf",
    "author_id": "018cabce-14cc-7544-8890-7811ec33ef74",
    "username": "innisfreeofficial",
    "full_name": "INNISFREE | 이니스프리",
    "profile_pic_url": "https://dcr.bzine.co/instagram/users/innisfreeofficial/profile-picture",
    "follower_count": 847619,
    "region": null,
    "posted_at": "2026-09-02T12:00:06Z",
    "media_type": "video",
    "play_count": 22467,
    "like_count": 3224,
    "score": null,
    "efficiency_score": null,
    "est_percentile": null,
    "updated_at": null,
    "media_url": "https://smr-images-b.bzine.co/users/018cabce-14cc-7544-8890-7811ec33ef74/posts/01a06275-d974-7fda-98ee-dd3ee15b4dcf/medias/01a06275-db2b-77f7-a020-b4beb744771f.mp4",
    "thumbnail_url": "https://bzine.co/cdn-cgi/media/width=480,mode=frame,time=0ms/https://smr-images.bzine.co/users/018cabce-14cc-7544-8890-7811ec33ef74/posts/01a06275-d974-7fda-98ee-dd3ee15b4dcf/medias/01a06275-db2b-77f7-a020-b4beb744771f.m …",
    "slug": "DcyMAmUh6FZ",
    "text": "Deeply hydrated skin—NO OFF HOURS. 💚\nwherever the day takes MINGYU (@min9yu_k)—his hydration stays SUPERCHARGED ⚡️\n\nGreen Tea Ceramide Milk: Lightweight milky toner that won‘t clog your pores\nGreen Tea Ceramide Mist: Tou …",
    "brand_match_score": null,
    "recent_collab_brands": [],
    "total_views_3m": null,
    "median_views_3m": null,
    "is_saved": null,
    "content_source": null
  },
  "fetched_on_demand": false
}
```

## As an MCP call

```json
{
  "name": "solari_instagram_content_detail",
  "arguments": {
    "slug": "DcyMAmUh6FZ"
  }
}
```

## Notes

- Passing url extracts the shortcode after /p/, /reel/, or /tv/ automatically.
- An untracked shortcode or URL is fetched live on first request.
- To open several at once, use content batch.

## Related tools

- [`solari_instagram_content_batch`](https://solari.sh/docs/tools/instagram-content-batch.md)
- [`solari_instagram_account_posts`](https://solari.sh/docs/tools/instagram-account-posts.md)
