curl --request GET \
--url http://localhost:3000/projects/{projectId}/analytics/metrics \
--header 'Authorization: Bearer <token>'{
"statusCode": 123,
"message": "OK",
"data": {
"totalEvaluations": {
"value": 123,
"change": 123
},
"uniqueUsers": {
"value": 123,
"change": 123
},
"successRate": {
"value": "<string>",
"change": 123
},
"errorRate": {
"value": "<string>",
"change": 123
},
"avgResponseTime": {
"value": "<string>",
"change": 123
}
}
}Get project-level evaluation analytics with period-over-period comparison.
curl --request GET \
--url http://localhost:3000/projects/{projectId}/analytics/metrics \
--header 'Authorization: Bearer <token>'{
"statusCode": 123,
"message": "OK",
"data": {
"totalEvaluations": {
"value": 123,
"change": 123
},
"uniqueUsers": {
"value": 123,
"change": 123
},
"successRate": {
"value": "<string>",
"change": 123
},
"errorRate": {
"value": "<string>",
"change": 123
},
"avgResponseTime": {
"value": "<string>",
"change": 123
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
24h