Skip to main content
GET
/
v1
/
quizzes
List quizzes
curl --request GET \
  --url https://api.doozy.live/v1/quizzes \
  --header 'x-api-key: <api-key>'
{
  "object": "list",
  "data": [
    {
      "object": "quiz",
      "id": "quiz_abc123",
      "title": "Product Knowledge Assessment",
      "description": "Test your knowledge of our product lineup",
      "visibility": "private",
      "round_count": 3,
      "question_count": 15,
      "created_at": "2026-01-15T10:30:00.000Z"
    }
  ],
  "has_more": true,
  "next_cursor": "quiz_xyz789"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Generate keys in the Doozy dashboard.

Query Parameters

limit
string

Maximum number of results to return (1-100, default 25)

Example:

"25"

starting_after
string

Cursor for pagination - the ID of the last item from the previous page

Example:

"quiz_abc123"

Response

List of quizzes

object
enum<string>
required

Object type identifier

Available options:
list
Example:

"list"

data
object[]
required

Array of quiz summaries

has_more
boolean
required

Whether there are more results available

Example:

true

next_cursor
string

Cursor to use for the next page of results

Example:

"quiz_xyz789"