GET /trivia/questions
Get random trivia questions with multiple-choice or true/false answers. Configurable by amount (up to 50), category, and difficulty level (easy/medium/hard). Returns questions with correct and incorrect answers, category, and difficulty. Useful for quiz apps, trivia games, educational tools, team-building activities, and chatbot entertainment features. Data from Open Trivia Database with 4,000+ verified questions.
amount
optional
default: 10
Count
category
optional
Category
difficulty
optional
easy/medium/hard
| Name | Required | Default | Description |
|---|---|---|---|
amount |
No | 10 | Count |
category |
No | - | Category |
difficulty |
No | - | easy/medium/hard |
curl "https://nordapi.ee/api/v1/trivia/questions?amount=5"
curl "https://nordapi.ee/api/v1/trivia/questions?amount=5"
curl "https://nordapi.ee/api/v1/trivia/questions?amount=10&category=17&difficulty=easy"
curl "https://nordapi.ee/api/v1/trivia/questions?amount=20&category=23&difficulty=hard"
{
"count": 5,
"data": [
{
"category": "Geography",
"correct_answer": "Cambridge",
"difficulty": "easy",
"incorrect_answers": [
"Providence",
"New York",
"Washington D.C."
],
"question": "Harvard University is located in which city?",
"type": "multiple"
},
{
"category": "Entertainment: Music",
"correct_answer": "Wesley Schultz",
"difficulty": "medium",
"incorrect_answers": [
"Jeremiah Fraites",
"Jay Van Dyke",
"Neyla Pekarek"
],
"question": "Who is the lead singer of The Lumineers?",
"type": "multiple"
},
{
"category": "Entertainment: Television",
"correct_answer": "Walter White",
"difficulty": "medium",
"incorrect_answers": [
"William Wolf",
"Willy Wonka",
"Wally Walrus"
],
"question": "In Breaking Bad, the initials W.W. refer to which of the following?",
"type": "multiple"
},
{
"category": "Entertainment: Video Games",
"correct_answer": "Grass and Cobblestone",
"difficulty": "easy",
"incorrect_answers": [
"Grass and Stone",
"Crafting Table and Cobblestone",
"Cobblestone and Stone"
],
"question": "What were the first two blocks in \"Minecraft\"?",
"type": "multiple"
},
{
"category": "Science & Nature",
"correct_answer": "Gray ",
"difficulty": "medium",
"incorrect_answers": [
"Watt",
"Decibel",
"Kelvin"
],
"question": "What is radiation measured in?",
"type": "multiple"
}
],
"success": true
}