Get Post Summary

The Get Post Summary Endpoint provides a complete summary of a post after it has been processed. This endpoint consolidates moderation results, triggered rules, applied policies, review details, and verdicts into a single payload. It is your one-stop endpoint for retrieving all information associated with a post.

📘

Prerequisite: You must first submit a post via the Post Submission Endpoint. Once processed, you can query this endpoint using the post_id you submitted.

GET Request

https://api.hivemoderation.com/api/v1/task/posts/<post_id>

Form Data

Field (*required)TypeDescription
post_id*StringID tied to the post that was published. (unique for each submission, No "_", ";" in the ID)

Example Submission to Get Post Summary Endpoint

curl --request GET \
  --url https://api.hivemoderation.com/api/v1/task/posts/<post_id> \
  --header 'authorization: token 123' \
  --header 'content-type: application/json'

Example Response

{
    "application_id": "0U0TVGlciG0X2elhbKOSb823",
    "application_name": "DEMO",
    "post_id": "sept-11-post-9",
    "project_status_map": {
        "32952": {
            "moderation_type": "visual",
            "task_id": "2261bb91-8f63-11f0-9083-35fafebf796b",
            "status": "success"
        }
    },
    "task_ids": [
        "2261bb91-8f63-11f0-9083-35fafebf796b"
    ],
    "user_id": "sept-11-post-9",
    "results": [
        {
            "moderation_categories": [
                {
                    "id": "1mF907gZvohacC2By8xbFe",
                    "moderation_type": "visual",
                    "active": true,
                    "display_name": "Pornographic"
                },
                {
                    "id": "drugs_visual",
                    "moderation_type": "visual",
                    "active": true,
                    "display_name": "Drugs"
                },
                {
                    "id": "needs_review_visual",
                    "moderation_type": "visual",
                    "active": true,
                    "display_name": "REVIEW - Visual"
                },
                {
                    "id": "suggestive_visual",
                    "moderation_type": "visual",
                    "active": true,
                    "display_name": "Suggestive"
                }
            ],
            "triggered_rules": [
                {
                    "id": "1kCgf3SCW9LyQHut07Z9Ot",
                    "display_name": "Test Rule 123",
                    "action_params": [
                        {
                            "action_name": "Flag For Review",
                            "policies": [],
                            "action_reason_names": []
                        },
                        {
                            "action_name": "Update User Tags",
                            "policies": [],
                            "action_reason_names": []
                        }
                    ]
                },
                {
                    "id": "1ldlbXcfBMiGFkYwWfcohH",
                    "display_name": "Test Flag Post For Review",
                    "action_params": [
                        {
                            "action_name": "Flag For Review",
                            "policies": [],
                            "action_reason_names": []
                        }
                    ]
                }
            ],
            "triggered_background_rules": [],
            "filters": []
        }
    ],
    "last_actions": [
        {
            "id": "076gCFv84lT6qNrcA5vAZs",
            "display_name": "Test Delete Post",
            "action_type": "post",
            "acted_on_at": "2025-09-11T23:03:34.744Z"
        }
    ],
    "review_status": {
        "current_state": "not_in_review",
        "reviewed": [
            {
                "reviewed_by": {
                    "id": "3121600",
                    "name": "John Doe",
                    "email": "[email protected]"
                },
                "actions": [
                    {
                        "id": "076gCFv84lT6qNrcA5vAZs",
                        "display_name": "Test Delete Post",
                        "action_type": "post"
                    }
                ],
                "action_reasons": [],
                "policies": [
                    {
                        "parent_policy": {
                            "api_value": "VIOLENCE",
                            "display_name": "Violence (Sample Policy)",
                            "description": "Our platform maintains a zero-tolerance policy towards violent content to ensure the safety and well-being of our users. We strictly forbid violent speech deemed highly severe and likely to cause harm. Such content will be removed, and repeated offenses may lead to account restrictions or suspension. This includes explicit statements that:\n\nThreaten Violence: Direct threats to inflict physical harm, including threats of killing, torture, sexual assault, or other bodily injury. This extends to threats against civilian homes, shelters, or essential infrastructure.\nExpress Desires for Harm: Wishing, hoping, or expressing a desire for others to suffer harm, such as death, illness, tragedy, or physical injury.\n\nIncite Violence: Encouraging or promoting acts of violence or harm, including self-harm or participation in atrocities like crimes against humanity, war crimes, or genocide.\n\nGlorify Violence: Praising or celebrating violent acts where harm occurred, including expressing gratitude for someone's suffering or lauding animal abuse or cruelty.\n\nViolent speech is also prohibited in highly visible areas on this platform, such as live video, profile information, header images, or community cover photos.We tailor our response to the severity and likelihood of harm. In some cases, we may limit the visibility of violent content on this platform if we assess that:"
                        },
                        "sub_policies": [
                            {
                                "api_value": "GUN_VIOLENCE",
                                "display_name": "Gun Violence",
                                "description": "Gun Violence"
                            },
                            {
                                "api_value": "PHYSICAL_THREATS",
                                "display_name": "Physical Threats",
                                "description": "Physical Threats"
                            }
                        ]
                    }
                ],
                "acted_on_at": "2025-09-11T23:03:34.788Z",
                "review_feed": {
                    "id": "5n6x1gz8zsyz7ACdQTugKo",
                    "name": "Review Ads"
                }
            }
        ]
    }
}