Fetch recent posts for a creator on a given platform.
What you get
- Returns a list of recent posts with metadata including post ID, URL, caption, media URLs, timestamps, and engagement metrics (likes, comments, views, shares).
- Supports Instagram, TikTok, and YouTube platforms.
- Uses cursor-based pagination via
next_tokenfor fetching additional pages of results. - Page sizes are platform-specific: Instagram — fixed at 12 posts per page (not configurable). TikTok — default 30, max 35. YouTube — default 30, max 50.
Credits
- 0.03 credits per successful request. If no data is returned, no credits are deducted.
Security
Bearer
Social media platform. Allowed: instagram, tiktok, youtube.
Example:"instagram"
POST
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
curl -i -X POST \
https://api-dashboard.influencers.club/public/v1/creators/content/posts/ \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"platform": "instagram",
"handle": "creator_handle",
"count": 12,
"pagination_token": ""
}'Response
{ "credits_cost": 0.03, "result": { "items": [ … ], "num_results": 0, "more_available": true, "next_token": "string", "status": "ok" } }