Generate Team Building Trivia
Create trivia rounds for team events, offsites, and virtual happy hours.
20+ categories of trivia questions
Curated trivia questions across 20+ categories: history, science, sports, video games, music, film, and more. Filter by category, difficulty, and type (multiple choice or true/false). Each question includes shuffled answers with the correct one marked.
Get trivia questions with answers. Supports filtering by category, difficulty, and question type. Returns shuffled answer choices with the correct answer marked.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "trivia-quiz",
"skill": "get_questions",
"input": {
"amount": 10
}
}' \
https://api.toolrouter.com/v1/tools/callList all available trivia categories with their IDs. Use these category names or IDs when requesting questions with get_questions.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "trivia-quiz",
"skill": "list_categories",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callGet the total number of available questions for a specific trivia category, broken down by difficulty level (easy, medium, hard).
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "trivia-quiz",
"skill": "category_stats",
"input": {
"category": "Science & Nature"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"trivia-quiz","skill":"get_questions","input":{}}' \
https://api.toolrouter.com/v1/tools/callCreate trivia rounds for team events, offsites, and virtual happy hours.
Generate subject-specific quiz questions for classroom learning and student assessment.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Create engaging trivia quizzes with general knowledge, fun facts, and current sports scores.
Yes. `get_questions` accepts an amount from 1 to 50, and you can also filter by category, difficulty, and question type.
Yes. Set the question `type` filter to true/false, or leave it open for multiple-choice questions with shuffled answers.
Use `list_categories` to see the category names and IDs, then use `category_stats` to check how many questions are available in a category before you request them.
Yes. Each question includes the shuffled choices and clearly marks the correct answer, so it is ready to display in an app or quiz flow.