Review Queue (Enterprise)
Get queue statistics
Account
Content moderation
Actions
Wordlist (Enterprise)
Authors (Enterprise)
Review Queue (Enterprise)
Get queue statistics
Get detailed statistics about a moderation queue including review times, action counts, and trends
GET
/
queue
/
{id}
/
stats
curl --request GET \
--url https://moderationapi.com/api/v1/queue/{id}/stats \
--header 'Authorization: Bearer <token>'
{
"reviewStats": {
"averageTimeToReview": 123,
"totalReviewed": 123,
"totalPending": 123
},
"actionStats": [
{
"actionId": "<string>",
"actionName": "<string>",
"count": 123,
"percentageOfTotal": 123
}
],
"topReviewers": [
{
"userId": "<string>",
"name": "<string>",
"reviewCount": 123,
"averageTimePerReview": 123,
"accuracyScore": 123,
"topActions": [
{
"actionId": "<string>",
"actionName": "<string>",
"count": 123
}
]
}
],
"trends": {
"dailyReviewCounts": [
{
"date": "<string>",
"count": 123
}
],
"flaggedContentTrends": [
{
"label": "<string>",
"trend": 123
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The queue ID
Query Parameters
Number of days to analyze statistics for
Response
200
application/json
Successful response
List of top reviewers and their statistics
ID of the reviewer
Name of the reviewer
Number of items reviewed
Average review time in milliseconds
Optional accuracy score based on review quality metrics
Was this page helpful?
curl --request GET \
--url https://moderationapi.com/api/v1/queue/{id}/stats \
--header 'Authorization: Bearer <token>'
{
"reviewStats": {
"averageTimeToReview": 123,
"totalReviewed": 123,
"totalPending": 123
},
"actionStats": [
{
"actionId": "<string>",
"actionName": "<string>",
"count": 123,
"percentageOfTotal": 123
}
],
"topReviewers": [
{
"userId": "<string>",
"name": "<string>",
"reviewCount": 123,
"averageTimePerReview": 123,
"accuracyScore": 123,
"topActions": [
{
"actionId": "<string>",
"actionName": "<string>",
"count": 123
}
]
}
],
"trends": {
"dailyReviewCounts": [
{
"date": "<string>",
"count": 123
}
],
"flaggedContentTrends": [
{
"label": "<string>",
"trend": 123
}
]
}
}