← Underholdning

Triviaspørgsmål

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.

Parametre

amount valgfri standard: 10

Count

category valgfri

Category

difficulty valgfri

easy/medium/hard

Eksempelforespørgsler

Grundlæggende brug
curl "https://nordapi.ee/api/v1/trivia/questions?amount=5"
5 random trivia questions
curl "https://nordapi.ee/api/v1/trivia/questions?amount=5"
10 easy science questions
curl "https://nordapi.ee/api/v1/trivia/questions?amount=10&category=17&difficulty=easy"
20 hard history questions
curl "https://nordapi.ee/api/v1/trivia/questions?amount=20&category=23&difficulty=hard"

Livesvar

{
  "count": 5,
  "data": [
    {
      "category": "Entertainment: Music",
      "correct_answer": "Bob Dylan",
      "difficulty": "medium",
      "incorrect_answers": [
        "Elvis",
        "Adele",
        "Billy Joel"
      ],
      "question": "\"Make You Feel My Love\" was originally written and performed by which singer-songwriter?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "Rico Rodriguez",
      "difficulty": "medium",
      "incorrect_answers": [
        "Tom Sheldon",
        "Marcus Holloway",
        "Mario Frigo"
      ],
      "question": "Who is the main character in the video game \"Just Cause 3\"?",
      "type": "multiple"
    },
    {
      "category": "Science: Mathematics",
      "correct_answer": "Leonhard",
      "difficulty": "easy",
      "incorrect_answers": [
        "Lionel",
        "Andrin",
        "Ajan"
      ],
      "question": "What is the mathematician Euler's first name?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "Rex",
      "difficulty": "medium",
      "incorrect_answers": [
        "Switch",
        "Candyman",
        "Sonata"
      ],
      "question": "Which of these is not a character in the game, \"Lethal League\"?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Film",
      "correct_answer": "Gene Wilder",
      "difficulty": "medium",
      "incorrect_answers": [
        "Shia LeBouf",
        "Peter Ostrum",
        "Johnny Depp"
      ],
      "question": "In the 1971 film \"Willy Wonka & the Chocolate Factory\", who played Willy Wonka?",
      "type": "multiple"
    }
  ],
  "success": true
}