curl --request GET \
--url http://localhost:8787/api/v1/documents/most-quizzed
{
"data": [
{
"id": 123,
"title": "<string>",
"type": "<string>",
"uploadDate": "<string>",
"size": "<string>",
"quizCount": 123,
"processingStatus": "pending"
}
]
}
Get the top 5 most quizzed documents from the database
curl --request GET \
--url http://localhost:8787/api/v1/documents/most-quizzed
{
"data": [
{
"id": 123,
"title": "<string>",
"type": "<string>",
"uploadDate": "<string>",
"size": "<string>",
"quizCount": 123,
"processingStatus": "pending"
}
]
}
Documents fetched successfully
The response is of type object
.