# Spinning wheel

> Create a spinning wheel / random picker with labeled segments.

Source: https://mockflow.com/developers/reference/item-types/spinning-wheel

Send `"type": "spinning_wheel"`.

Create a spinning wheel / random picker with labeled segments. Use this for prize wheels, decision wheels, random selectors, wheel-of-fortune games, icebreakers, or any wheel-based random choice tool. For structured voting use render_poll; for upvotable ideas use render_upvoteideas.

Also available as the MCP tool `render_spinningwheel`. The same payload works through either surface.

### Fields

- `title` (string, required): Fun, engaging title for the spinning wheel (e.g., "What is for Lunch?")
- `options` (string[], required): Array of 4-8 short string segment labels (1-4 words each)

## Example

```json
{
  "type": "spinning_wheel",
  "data": {
    "title": "Q4 Launch Planning",
    "options": [
      "string"
    ]
  }
}
```
