GET
/
tags
curl --request GET \
  --url https://app.quizrise.com/api/v1/tags \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "<string>",
  "tags": [
    {
      "id": "<string>",
      "tag": "<string>",
      "quizCount": 123
    }
  ],
  "pagination": {
    "currentPage": 123,
    "totalPages": 123,
    "totalItems": 123,
    "itemsPerPage": 123,
    "hasNextPage": true,
    "hasPreviousPage": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

Search term for filtering tags

page
integer
default:1

Page number for pagination

Required range: x >= 1

Response

200
application/json
Successfully retrieved tags
status
enum<string>
Available options:
success
message
string
tags
object[]
pagination
object