Article Feedback
GET /v1/stats/feedback See the feedback (in aggregate and article form) left on your articles in a given timeframe. This route accepts all stats filters as query parameters. Example response: { "aggr…
Updated
by Taylor Sloane
GET /v1/stats/feedback
See the feedback (in aggregate and article form) left on your articles in a given timeframe.
This route accepts all stats filters as query parameters.
Example response:
{
"aggregate_feedback": {
"total": 10,
"positive": 7,
"neutral": 2,
"negative": 1,
"happiness": 60 // percentage happiness score, a high level metric showing how well your articles have been received. from -100 to 100
},
"article_feedback": [
{
"article_id": "[a-zA-Z0-9]{10}",
"results": {
"positive": 2,
"neutral": 0,
"negative": 1,
},
"title": "My article title"
},
...
]
}
How did we do?
Aggregate Time Series Data
Filtering Stats