GET
/
api
/
v1
/
bookmarks
curl --request GET \
  --url http://localhost:8787/api/v1/bookmarks
{
  "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
  }
}

Query Parameters

type
enum<string>
Available options:
singleplayer,
multiplayer,
document,
random
status
tags
page
number
default:1
Required range: x >= 1
limit
number
default:10
Required range: 1 <= x <= 100

Response

200 - application/json

Bookmarked quizzes retrieved successfully

The response is of type object.