Mini Game Types
Retrieve all mini game types for the authenticated app. Optionally filter by name.
Authorizations
Query parameters
miniGameTypeNamestringOptional
Filter by mini game type name
Responses
200
Mini game types retrieved successfully
application/json
401
Unauthorized - invalid or missing API key
application/json
500
Internal server error
application/json
get
/apps/minigame-typesGET /api/v1/apps/minigame-types HTTP/1.1
Host: 
x-app-api-key: YOUR_API_KEY
Accept: */*
{
  "miniGameTypes": [
    {
      "id": "text",
      "name": "text",
      "description": "text",
      "imageUrl": "text",
      "createdAt": "2025-10-30T21:51:00.983Z"
    }
  ]
}Create a new mini game type for the authenticated app. Mini game type names must be unique per app.
Authorizations
Body
namestringRequired
Mini game type name (must be unique per app)
descriptionstringOptionalDefault: 
Mini game type description
""imageUrlstring · uri | nullableOptional
Optional image URL for the mini game type
Responses
201
Mini game type created successfully
application/json
400
Invalid request data
application/json
401
Unauthorized - invalid or missing API key
application/json
500
Internal server error
application/json
post
/apps/minigame-typesPOST /api/v1/apps/minigame-types HTTP/1.1
Host: 
x-app-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 65
{
  "name": "text",
  "description": "",
  "imageUrl": "https://example.com"
}{
  "id": "text",
  "name": "text",
  "description": "text",
  "imageUrl": "text",
  "createdAt": "2025-10-30T21:51:00.983Z"
}Last updated
