Influencer API · Endpoint Endpoint reference

Influencer Post Details API

Get post data, comments, transcripts and audio

Is there an API to get details of a single post?

Yes. The Influencers.club Post Details endpoint takes a post ID and a content type — data, comments, transcript or audio — and returns exactly that layer. Instagram and TikTok support all four; YouTube supports data, comments and transcript.

Verified against the live API in Endpoint reference →

What this endpoint returns

Counted on the live search index, not modelled or rounded.

Measured
340M+
Searchable Influencer profiles
40+
Data points returned per creator
47
Platforms mapped in the social graph
3
Platforms supported: Instagram, TikTok, YouTube
Request

Make the call

Both samples below are complete. Paste one in, swap the key, get a 200.

POST https://api-dashboard.influencers.club/public/v1/creators/content/details/
Auth Authorization: Bearer <API_KEY> Content type application/json Rate 0.03 credits per successful request Full reference →
curl -X POST https://api-dashboard.influencers.club/public/v1/creators/content/details/ \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"platform": "instagram", "post_id": "3702042988674165349_1541770582", "content_type": "data"}'
import requests

res = requests.post(
    "https://api-dashboard.influencers.club/public/v1/creators/content/details/",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "platform": "instagram",
        "post_id": "3702042988674165349_1541770582",
        "content_type": "data",
    }, ) print(res.json())
const res = await fetch("https://api-dashboard.influencers.club/public/v1/creators/content/details/", {
  method: "POST",
  headers: {
    Authorization: "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    platform: "instagram",
    post_id: "3702042988674165349_1541770582",
    content_type: "data",
  }), }); const data = await res.json();
$ch = curl_init("https://api-dashboard.influencers.club/public/v1/creators/content/details/");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Authorization: Bearer YOUR_API_KEY",
  "Content-Type: application/json", ]);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{"platform": "instagram", "post_id": "3702042988674165349_1541770582", "content_type": "data"}');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
body := strings.NewReader(`{"platform": "instagram", "post_id": "3702042988674165349_1541770582", "content_type": "data"}`)
req, _ := http.NewRequest("POST", "https://api-dashboard.influencers.club/public/v1/creators/content/details/", body)
req.Header.Set("Authorization", "Bearer YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
Response

What comes back

A 200 with the page of creators and your remaining credit balance. Creator values below are elided — field names and types are exactly as published in the API schema.

200 OKJSON
{
  "result": {
    "likes": 18420,
    "comments": 312,
    "views": 241900,
    "shares": 940,
    "caption": "Spring drop is live — link in bio",
    "taken_at": 1757523600
  },
  "credits_cost": 0.03 }
Response fields JSON always returned · docs on request
FieldTypeMeaning
Envelope
resultobjectPlatform-specific object for the requested content_type.
credits_costnumberCredits charged for this request (0.03).
result (content_type=data)
likesintegerLike count.
commentsintegerComment count.
viewsintegerView count (video posts).
sharesintegerShare count where the platform exposes it.
captionstringPost caption or title.
taken_atintegerUnix timestamp of publication.
result (content_type=comments)
comments[]arrayComment objects — commenter username, text, like count and timestamp.
next_tokenstringCursor to pass as pagination_token for the next page of comments.
result (content_type=transcript)
transcriptstringSpoken text extracted from the video.
result (content_type=audio)
audioobjectAudio resource reference. Instagram and TikTok only.
Errors (400 / 403 / 429)
error_codestringMachine-readable slug, e.g. insufficient_credits. Always present on errors — branch on this, not on error.
errorstringHuman-readable description of what went wrong.
retry_afterintegerSeconds to wait before retrying a 429; mirrored in the Retry-After header.

The shape of result depends on content_type and platform. audio is Instagram and TikTok only. Full schema in the endpoint reference.

Parameters

The spec

Parameter Type Accepted values Behaviour
/public/v1/creators/content/details/ endpoint platform, post_id, content_type, pagination_token One POST per post and content type. Instagram and TikTok support data, comments, transcript and audio; YouTube supports data, comments and transcript.
platform string, required instagram · tiktok · youtube Platform the post is on.
post_id string, required e.g. 3702042988674165349_1541770582 Post ID — the pk from Creator Posts.
content_type string, required data · comments · transcript · audio (YouTube: no audio) Which layer of the post to return.
pagination_token string next_token from the previous comments response Cursor for the next page of comments.

Billing. 0.03 credits per successful request. If no data is returned, no credits are deducted.

Recipes

How teams use this endpoint

Three ways this fits a creator-data workflow.

One call to try it

Fetch engagement stats for one Instagram post.

curl -X POST https://api-dashboard.influencers.club/public/v1/creators/content/details/ \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"platform": "instagram", "post_id": "3702042988674165349_1541770582", "content_type": "data"}'

Pull the transcript

Same post, content_type=transcript — the spoken text of the video.

POST https://api-dashboard.influencers.club/public/v1/creators/content/details/ {
  "platform": "tiktok",
  "post_id": "7351902847182930203",
  "content_type": "transcript" }

Start from Creator Posts

List a creator’s recent posts first, then look up any pk here.

POST https://api-dashboard.influencers.club/public/v1/creators/content/posts/ {
  "platform": "instagram",
  "handle": "mrbeast" }

Other creator data you can access

Influencer API endpoints

Platform coverage

Six platforms with full data, 40+ more in the social graph

Plus Facebook, Pinterest, Reddit, LinkedIn, Discord, Snapchat,
Linktree and 40+ more via connected socials.

FAQ

Frequently asked questions

What does this endpoint cost?+

0.03 credits per successful request. If no data is returned, no credits are deducted.

Where can I find my API key?+

Create a free account. You will find your API key through the API side menu.

How do I get post data, comments and transcripts using your API?+

Sign up for free and copy your API key from the dashboard. POST to /public/v1/creators/content/details/ with the platform, the post_id (the pk returned by Creator Posts) and a content_type: data for engagement stats, comments for the comment thread, transcript for the spoken text, or audio for the audio file (Instagram and TikTok only). Each request costs 0.03 credits.

What are your pricing plans and what do they include?+

Paid plans start at $249/month and use a flexible credit-based model.

Each API call consumes a specific number of credits depending on the endpoint and data depth. You can compare all tiers, credit amounts, and per-endpoint costs in the Pricing section of our API docs.

How can I get in touch with your team?+

Book a time on our calendar to talk to someone from our team and learn about the full capabilities of our API.