solari instagram content detail
One Instagram post in full.
- MCP tool
- solari_instagram_content_detail
- CLI
- solari instagram content detail
- Access
- solari:readWorks with any signed-in SOLARI account.Works with any signed-in SOLARI account.
Overview
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_idstringoptional
- The SOLARI post_id UUID. Provide this, slug, or url.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)$
- slugstringoptional
- Public Instagram shortcode, the segment after /p/, /reel/, or /tv/ in a post URL. Ignored when post_id is set.pattern ^[A-Za-z0-9_-]{3,20}$
- urlstringoptional
- Public Instagram post URL such as https://www.instagram.com/p/<shortcode>/ or .../reel/<shortcode>/. Ignored when post_id or slug is set.≤ 512 chars
Response
Response
- itemobject | null
- The post. null when it does not exist or is not public.
- fetched_on_demandboolean
- true when this request is what first pulled the post in.
item
- post_iduuid
- SOLARI post id. Feed it straight into the other content tools.
- slugstring
- Instagram shortcode — the segment after /p/ or /reel/ in a public URL.
- author_iduuid
- account_id of the authoring account.
- usernamestring
- Author handle.
- full_namestring | null
- Profile display name.
- profile_pic_urlstring | null
- Profile picture URL.
- follower_countinteger | null
- Author follower count at snapshot time.
- regionstring | null
- Region code assigned to the author.
- posted_attimestamp
- Publication time (UTC).
- media_typestring
- image, video, or carousel.
- play_countinteger | null
- Video plays. null for image posts.
- like_countinteger | null
- Likes at snapshot time.
- textstring | null
- Caption text.
- media_urlstring
- Original media URL.
- thumbnail_urlstring
- Thumbnail URL.
- scorenumber | null
- Feed ranking score. Comparable only within one response.
- efficiency_scorenumber | null
- Performance relative to the author's follower count.
- est_percentilenumber | null
- Estimated percentile within the region, 0–1.
- total_views_3minteger | null
- Author's cumulative views over the last 3 months.
- median_views_3minteger | null
- Author's median views over the last 3 months.
- recent_collab_brandsstring[]
- Brands the author has collaborated with recently.
- item_typestring
- Item kind tag; post in the content feeds.
- content_sourcestring | null
- Which pipeline surfaced this item.
- is_savedboolean | null
- Whether the item is saved in the SOLARI app.
- updated_attimestamp | null
- When the metric snapshot was last refreshed.
Example
Request
$ solari instagram content detail slug=DcyMAmUh6FZResponse · Long strings and repeated array entries are trimmed for readability.
{
"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
{
"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_batchHydrate up to 100 post ids in one call.
- solari_instagram_account_postsPage through one account's posts, newest first.
Machine-readable: /docs/tools/instagram-content-detail.md