curl --request GET \
--url http://localhost:3000/projects/{projectId}/analytics/response-time \
--header 'Authorization: Bearer <token>'{
"statusCode": 123,
"message": "OK",
"data": [
{
"date": "<string>",
"avgResponseTimeMs": 123
}
]
}Get daily weighted-average response time across all flags in the project.
curl --request GET \
--url http://localhost:3000/projects/{projectId}/analytics/response-time \
--header 'Authorization: Bearer <token>'{
"statusCode": 123,
"message": "OK",
"data": [
{
"date": "<string>",
"avgResponseTimeMs": 123
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
24h