Skip to main content
GET
List quizzes

Authorizations

x-api-key
string
header
required

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

Query Parameters

limit
integer
default:25

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

Required range: 1 <= x <= 100
Example:

25

starting_after
string

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

Maximum string length: 256
Example:

"quiz_abc123"

ending_before
string

Cursor to fetch the previous page of results. Pass previous_cursor value as ending_before.

Maximum string length: 256
Example:

"quiz_xyz789"

visibility
enum<string>
default:mine

Which quizzes to return. mine (default) returns quizzes the authenticated user admins or delegate-admins. account returns the team library: quizzes in the account with visibility="account", regardless of who admins them. all is the union. Use meta.permissions.can_clone / can_edit on each result to drive UI affordances.

Available options:
mine,
account,
all
Example:

"mine"

status
enum<string>
default:active

Lifecycle filter. active (default) returns the working library — both draft and active quizzes (anything not archived). draft returns only never-published drafts; published returns only finalized quizzes (not draft, not archived). archived returns only archived quizzes. all returns everything.

Available options:
active,
archived,
all,
draft,
published
Example:

"active"

Response

List of quizzes

object
enum<string>
required

String representing the object type

Available options:
list
Example:

"list"

data
object[]
required

Array of quiz objects

has_more
boolean
required

Whether there are more results available beyond this page

Example:

true

url
string
required

The URL for accessing this list endpoint

Example:

"/v1/quizzes"

next_cursor
string | null
required

Cursor to fetch the next page of results. Pass as starting_after in subsequent requests.

Example:

"quiz_xyz789"

previous_cursor
string | null
required

Cursor to fetch the previous page of results. Pass as ending_before in subsequent requests.

Example:

"quiz_abc123"