GET /trivia/questions
Get random preguntas de trivia with opción múltiple or verdadero/falso answers. Configurable by amount (hasta 50), category, and difficulty level (easy/medium/hard). Returns questions with correct and incorrect answers, category, and difficulty. Útil para quiz aplicaciones, trivia games, herramientas educativas, team-building activities, and chatbot entertainment features. Data from Open Trivia Database with 4,000+ verified questions.
amount
opcional
predeterminado: 10
Count
category
opcional
Category
difficulty
opcional
easy/medium/hard
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
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": "History",
"correct_answer": "1980",
"difficulty": "medium",
"incorrect_answers": [
"1950",
"1920",
"1880"
],
"question": "When did O, Canada officially become the national anthem?",
"type": "multiple"
},
{
"category": "Entertainment: Music",
"correct_answer": "Drums",
"difficulty": "easy",
"incorrect_answers": [
"Bass",
"Guitar",
"Piano"
],
"question": "Ringo Starr of The Beatles mainly played what instrument?",
"type": "multiple"
},
{
"category": "Entertainment: Cartoon & Animations",
"correct_answer": "Pringle",
"difficulty": "easy",
"incorrect_answers": [
"Walker",
"Dorito",
"Lays"
],
"question": "What is the surname of one of the male teachers in the BBC series Postman Pat?",
"type": "multiple"
},
{
"category": "History",
"correct_answer": "Napoleone di Buonaparte",
"difficulty": "hard",
"incorrect_answers": [
"Naapolion van Bonijpaart",
"Napoleão do Boaparte",
"Napoleona de Buenoparte"
],
"question": "What was Napoleon Bonaparte's name before he changed it?",
"type": "multiple"
},
{
"category": "Entertainment: Video Games",
"correct_answer": "True",
"difficulty": "hard",
"incorrect_answers": [
"False"
],
"question": "In \"The Sims\" series, the most members in a household you can have is 8.",
"type": "boolean"
}
],
"success": true
}