Fetch Comment Replies
warning
Comment management is not available on the Starter plan. Upgrade to Intermediate, Growth or Business plan to access this endpoint.
Overview
The Fetch Comment Replies endpoint returns child comments (replies) for a specific parent comment. It checks the database first, then fetches from the platform API if none are found. This is useful for viewing full conversation threads.
Base URL:
https://feed.oneupapp.io
Endpoint
GET /api/fetch-comment-replies
Request Parameters
| Parameter | Required | Description |
|---|---|---|
apiKey | Yes | Your personal API key generated from the API Access page. |
comment_id | Yes | The parent comment ID to fetch replies for. |
Supported Platforms for API Fetch
Facebook, TikTok, YouTube, LinkedIn, Bluesky
Sample Request
curl --location --request GET \
"https://feed.oneupapp.io/api/fetch-comment-replies?apiKey=YOUR_API_KEY&comment_id=123"
Sample Response
{
"message": "OK",
"error": false,
"data": [
{
"platform": "facebook",
"post_id": "104040148726689_123456",
"comment_id": "reply_456",
"child_count": 0,
"user_id": "104040148726689",
"user_name": "My Page",
"profile_picture": "https://...",
"content": "Reply text",
"bg_color": "#ffffff",
"has_replied": false,
"metadata": {},
"can_comment": true,
"published_at": "2025-01-01T12:05:00.000000Z",
"is_complete": false
}
]
}
Response Fields
| Field | Description |
|---|---|
platform | The platform name. |
post_id | The platform-specific post ID. |
comment_id | The platform-specific comment ID. |
child_count | Number of replies to this comment. |
user_id | The commenter's user ID on the platform. |
user_name | The commenter's display name. |
profile_picture | URL to the commenter's profile picture. |
content | The reply text. |
bg_color | Background color for the comment. |
has_replied | Whether the account has replied to this comment. |
metadata | Additional metadata object. |
can_comment | Whether a reply can be posted to this comment. |
published_at | ISO 8601 timestamp of when the comment was published. |
is_complete | Whether the comment is marked as complete in the UI. |
Error Responses
The following error responses apply to all Managing Comments endpoints:
| Status | When |
|---|---|
401 | Missing or invalid apiKey. |
403 | Resource doesn't belong to the authorized user. |
404 | Account, comment, or post not found. |
422 | Invalid or missing parameters. |
500 | Platform API failure or unexpected error. |
✅ Result: You have successfully retrieved the replies for the comment!