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": "General Knowledge",
"correct_answer": "15%",
"difficulty": "hard",
"incorrect_answers": [
"20%",
"10%",
"25%"
],
"question": "In \"Battle Cats\", what is Moneko / MISS Moneko's critical percentage rate?",
"type": "multiple"
},
{
"category": "Entertainment: Film",
"correct_answer": "A galloping horse",
"difficulty": "hard",
"incorrect_answers": [
"A woman in a dress",
"A man walking",
"A crackling fire"
],
"question": "What did the first moving picture depict?",
"type": "multiple"
},
{
"category": "Entertainment: Video Games",
"correct_answer": "Golden ",
"difficulty": "medium",
"incorrect_answers": [
"Diamond",
"Iron",
"Obsidian"
],
"question": "Without enchantments, which pickaxe in minecraft mines blocks the quickest.",
"type": "multiple"
},
{
"category": "Politics",
"correct_answer": "Ronald Reagan",
"difficulty": "medium",
"incorrect_answers": [
"Jimmy Carter",
"Gerald Ford",
"Richard Nixon"
],
"question": "Which former US president used \"Let's Make America Great Again\" as his campaign slogan before Donald Trump's campaign?",
"type": "multiple"
},
{
"category": "Politics",
"correct_answer": "A",
"difficulty": "hard",
"incorrect_answers": [
"X",
"D",
"B"
],
"question": "Which letter do you need to have on a European driver license in order to ride any motorbikes?",
"type": "multiple"
}
],
"success": true
}