{
  "status": "success",
  "message": "active spin wheel found successfully",
  "data": {
    "spinWheel": {
      "id": "2e7ace0a-5cff-44d5-b14f-22d454008468",
      "name": "another spin wheel",
      "prizes": [
        {
          "id": "8b5adfc5-4dc8-47da-b122-33b0a66c9dde",
          "coin": 2,
          "title": "2 coins",
          "probability": 50,
          "type": "User Credit",
          "isActive": true
        },
        {
          "id": "e400b813-e436-42b8-bc7b-a893a0cf57ba",
          "coin": 200,
          "title": "20 coins",
          "probability": 30,
          "type": "User Credit",
          "isActive": true
        },
        {
          "id": "81f25934-00bd-4920-976a-34cef3fa18cb",
          "coin": 10,
          "title": "20 coins",
          "probability": 20,
          "type": "User Credit",
          "isActive": true
        }
      ],
      "isActive": true,
      "entryFees": [
        {
          "id": "8ed4c163-0128-498a-85b6-a564377e3960",
          "fee": 5,
          "spinWheel": {},
          "type": "coins",
          "createdAt": "2025-09-01T22:04:49.202Z",
          "updatedAt": "2025-09-01T22:04:49.202Z"
        },
        {
          "id": "af5ee36f-fb65-4b8b-9219-a8d64977b34b",
          "fee": 200,
          "spinWheel": {},
          "type": "airtime",
          "createdAt": "2025-09-01T22:04:49.223Z",
          "updatedAt": "2025-09-01T22:04:49.223Z"
        }
      ]
    },
    "isCurrentParticipant": false
  }
}

URL
https://test-api.bvndle.com/api/v1/laas/spin-wheel/active
Base URL
https://test-api.bvndle.com/api/v1/laas
HTTP Method
GET
Authorization Header
Bearer ACCESS_TOKEN

Query Parameter:
nametypeDescription
partnerIdstringRequired
ID of the partner
userIdstringOptional
ID of the user
NOTE: Passed if you want to know this user is a current participant

cURL
curl --request GET
'https://test-api.bvndle.com/api/v1/laas/spin-wheel/active?partnerId=0463c990-3b8b-4cb4-b0bc-b08aa0d88d93' \
--header 'Content-Type: application/json' \

{
  "status": "success",
  "message": "active spin wheel found successfully",
  "data": {
    "spinWheel": {
      "id": "2e7ace0a-5cff-44d5-b14f-22d454008468",
      "name": "another spin wheel",
      "prizes": [
        {
          "id": "8b5adfc5-4dc8-47da-b122-33b0a66c9dde",
          "coin": 2,
          "title": "2 coins",
          "probability": 50,
          "type": "User Credit",
          "isActive": true
        },
        {
          "id": "e400b813-e436-42b8-bc7b-a893a0cf57ba",
          "coin": 200,
          "title": "20 coins",
          "probability": 30,
          "type": "User Credit",
          "isActive": true
        },
        {
          "id": "81f25934-00bd-4920-976a-34cef3fa18cb",
          "coin": 10,
          "title": "20 coins",
          "probability": 20,
          "type": "User Credit",
          "isActive": true
        }
      ],
      "isActive": true,
      "entryFees": [
        {
          "id": "8ed4c163-0128-498a-85b6-a564377e3960",
          "fee": 5,
          "spinWheel": {},
          "type": "coins",
          "createdAt": "2025-09-01T22:04:49.202Z",
          "updatedAt": "2025-09-01T22:04:49.202Z"
        },
        {
          "id": "af5ee36f-fb65-4b8b-9219-a8d64977b34b",
          "fee": 200,
          "spinWheel": {},
          "type": "airtime",
          "createdAt": "2025-09-01T22:04:49.223Z",
          "updatedAt": "2025-09-01T22:04:49.223Z"
        }
      ]
    },
    "isCurrentParticipant": false
  }
}