GET /trivia/questions
Hent tilfældige triviaspørgsmål med multiple choice- eller sandt/falsk-svar. Konfigurerbar efter antal (op til 50), kategori og sværhedsgrad (let/medium/svær). Returnerer spørgsmål med korrekte og forkerte svar, kategori og sværhedsgrad. Nyttigt til quizapps, triviaspil, uddannelsesværktøjer, teambuilding-aktiviteter og chatbot-underholdningsfunktioner. Data fra Open Trivia Database med 4.000+ verificerede spørgsmål.
amount
valgfri
standard: 10
Count
category
valgfri
Category
difficulty
valgfri
easy/medium/hard
| Navn | Påkrævet | Standard | Beskrivelse |
|---|---|---|---|
amount |
Nej | 10 | Count |
category |
Nej | - | Category |
difficulty |
Nej | - | 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": "Entertainment: Video Games",
"correct_answer": "Drums",
"difficulty": "medium",
"incorrect_answers": [
"Bass",
"Piano",
"Sax"
],
"question": "In Night in the Woods, which instrument did Casey play?",
"type": "multiple"
},
{
"category": "Entertainment: Film",
"correct_answer": "Distant Drums",
"difficulty": "hard",
"incorrect_answers": [
"Treasure of the Sierra Madre",
"The Charge at Feather River",
"Indiana Jones"
],
"question": "What was the first movie to ever use a Wilhelm Scream?",
"type": "multiple"
},
{
"category": "Science: Mathematics",
"correct_answer": "-40",
"difficulty": "medium",
"incorrect_answers": [
"+40",
"0",
"+100"
],
"question": "At what temperature does temp in °C equal temp in °F?",
"type": "multiple"
},
{
"category": "Entertainment: Video Games",
"correct_answer": "36",
"difficulty": "medium",
"incorrect_answers": [
"40",
"32",
"46"
],
"question": "In the game Minecraft, how many iron ingots are required to make an iron golem?",
"type": "multiple"
},
{
"category": "Entertainment: Video Games",
"correct_answer": "The Elder Scrolls IV: Oblivion",
"difficulty": "medium",
"incorrect_answers": [
"The Elder Scrolls V: Skyrim",
"The Elder Scrolls III: Morrowind ",
"The Elder Scrolls Online"
],
"question": "Sean Bean voices the character of \"Martin Septim\" in which Elder Scrolls game?",
"type": "multiple"
}
],
"success": true
}