Analytics API
View project analytics and performance metrics
Get Project Analytics
Get analytics for a project:
GET /api/projects/{projectId}/analytics
Query Parameters:
startDate- Start date (ISO 8601)endDate- End date (ISO 8601)
Response:
{
"data": {
"suggestions": {
"total": 1000,
"pending": 200,
"approved": 500,
"implemented": 300
},
"implementations": {
"total": 300,
"successful": 290,
"failed": 10
},
"pages": {
"total": 500,
"synced": 450,
"pending": 50
},
"links": {
"total": 1000,
"active": 950,
"broken": 50
}
}
}