Influencer Post Comments API
Get post comments via API
Is there an API to get post comments?
Yes. The Influencers.club Post Details endpoint with content_type=comments returns the comments on an Instagram, TikTok or YouTube post — the audience’s own words, paginated — for 0.03 credits per request.
Make the call
Both samples below are complete. Paste one in, swap the key, get a 200.
https://api-dashboard.influencers.club/public/v1/creators/content/details/
Authorization: Bearer <API_KEY>
Content type application/json
Rate 0.03 credits per successful request
Full reference →
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.
The spec
| Parameter | Type | Accepted values | Behaviour |
|---|---|---|---|
| /public/v1/creators/content/details/ | endpoint | platform, post_id, content_type=comments, pagination_token | Comments are paginated: pass next_token back as pagination_token to fetch the next page. |
| 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 | comments | Fixed to comments for this use case. |
| pagination_token | string | next_token from the previous response | Cursor for the next page of comments. |
Billing. 0.03 credits per successful request. If no data is returned, no credits are deducted.
How teams use this endpoint
Three ways this fits a creator-data workflow.
One call to try it
Pull the first page of comments on an 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": "comments"}'
Page through the thread
Pass next_token back as pagination_token until it stops coming back.
POST https://api-dashboard.influencers.club/public/v1/creators/content/details/ {
"platform": "instagram",
"post_id": "3702042988674165349_1541770582",
"content_type": "comments",
"pagination_token": "Q29tbWVudFBhZ2Uy..." }
Start from Creator Posts
List a creator’s recent posts first, then pull comments for any pk.
POST https://api-dashboard.influencers.club/public/v1/creators/content/posts/ {
"platform": "instagram",
"handle": "mrbeast" }
Other creator data you can access
Influencer API endpoints
Six platforms with full data, 40+ more in the social graph
Instagramdiscovery · full data
TikTokdiscovery · full data
YouTubediscovery · full data
X / Twitterdiscovery · full data
Twitchdiscovery · full data
OnlyFansdiscovery · full dataPlus Facebook, Pinterest, Reddit, LinkedIn, Discord, Snapchat,
Linktree and 40+ more via connected socials.
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 comments via API 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 and content_type set to comments. You get back a page of comments with the commenter, text, likes and timestamp, plus a next_token — send it back as pagination_token for the next page. Get post IDs from the Creator Posts endpoint. 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.