API Documentation
Quiz Submissions Multiplayer
Quiz Submissions Singleplayer
Share
Documents
Bookmarks
Search user's bookmarked quizzes
Search user’s bookmarked quizzes with optional filtering
POST
/
api
/
v1
/
bookmarks
/
search
curl --request POST \
--url http://localhost:8787/api/v1/bookmarks/search \
--header 'Content-Type: application/json' \
--data '{
"query": "<string>",
"page": 1,
"limit": 10
}'
{
"data": [
{
"id": "<string>",
"title": "<string>",
"date": "<string>",
"score": 123,
"correct": 123,
"incorrect": 123,
"type": "<string>",
"isBookmarked": true,
"totalTime": "<string>",
"passed": true
}
],
"pagination": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123,
"hasNextPage": true,
"hasPreviousPage": true
}
}
Body
application/json
Response
200 - application/json
Bookmarked quizzes retrieved successfully
The response is of type object
.
curl --request POST \
--url http://localhost:8787/api/v1/bookmarks/search \
--header 'Content-Type: application/json' \
--data '{
"query": "<string>",
"page": 1,
"limit": 10
}'
{
"data": [
{
"id": "<string>",
"title": "<string>",
"date": "<string>",
"score": 123,
"correct": 123,
"incorrect": 123,
"type": "<string>",
"isBookmarked": true,
"totalTime": "<string>",
"passed": true
}
],
"pagination": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123,
"hasNextPage": true,
"hasPreviousPage": true
}
}
Assistant
Responses are generated using AI and may contain mistakes.