Retrieve detailed information about specific creator content.
What you get
- Supports Instagram, TikTok, and YouTube platforms.
- Returns platform-specific content metadata and engagement data in a structured format.
Supported content types per platform
- Instagram:
data,comments,transcript,audio - TikTok:
data,comments,transcript,audio - YouTube:
data,comments,transcript
Credits
- 0.03 credits per successful request. If no data is returned, no credits are deducted.
When to use
Use this endpoint when you have a specific post ID and need to go deeper than profile-level data. Typical use cases: brand safety review, transcript extraction for content analysis, pulling comment threads, and engagement deep-dives on individual posts.
Result format
The result field returns a platform-specific object:
data— post metadata and engagement stats (likes, views, shares)comments— paginated comment list; usepagination_tokento fetch the next pagetranscript— spoken text extracted from the videoaudio— audio resource reference (Instagram and TikTok only)
Security
Bearer
Social media platform. Allowed: instagram, tiktok, youtube.
Example:"instagram"
ID of the post, e.g., '3702042988674165349_1541770582'.
Example:"3702042988674165349_1541770582"
POST
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
curl -i -X POST \
https://api-dashboard.influencers.club/public/v1/creators/content/details/ \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"platform": "instagram",
"content_type": "data",
"post_id": "3702042988674165349_1541770582",
"pagination_token": ""
}'Response
{ "credits_cost": 0.03, "result": { "property1": null, "property2": null } }