List comments on a YouTube video
1curl -s https://api.social-api.ai/v1/inbox/comments/<post-id> \
2 -H "Authorization: Bearer <your-api-key>" | jq
3
4# Response
5{
6 "data": [
7 {
8 "id": "sapi_cmt_eW91dHViZTpVZ3h...",
9 "platform": "youtube",
10 "author": { "username": "TechReviewer", "profile_url": "..." },
11 "text": "Great tutorial! Can you do a follow-up on advanced topics?",
12 "like_count": 45,
13 "reply_count": 3,
14 "created_at": "2026-04-01T10:15:00Z"
15 }
16 ],
17 "pagination": { "next_cursor": "<cursor>" }
18}
Fetch the comments on one of your videos using the unified inbox endpoint. The same JSON schema you already use for Instagram, Facebook, and TikTok.