← Unterhaltung

Trivia-Fragen

GET /trivia/questions

Erhalten Sie random trivia questions with multiple-choice oder true/false answers. Konfigurierbar by amount (up to 50), category, und difficulty level (easy/medium/hard). Liefert questions with correct und incorrect answers, category, und difficulty. Nützlich für quiz apps, trivia games, educational tools, team-building activities, und chatbot entertainment features. Daten von Open Trivia Database with 4,000+ verified questions.

Parameter

amount optional Standard: 10

Count

category optional

Category

difficulty optional

easy/medium/hard

Beispielanfragen

Grundlegende Verwendung
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"

Live-Antwort

{
  "count": 5,
  "data": [
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "Geno",
      "difficulty": "hard",
      "incorrect_answers": [
        "Mario",
        "Bowser",
        "Peach"
      ],
      "question": "Given that all party members are maxed, who is the fastest party member in Super Mario RPG: Legend of The Seven Stars?",
      "type": "multiple"
    },
    {
      "category": "Science: Computers",
      "correct_answer": "IRC",
      "difficulty": "hard",
      "incorrect_answers": [
        "HTTP",
        "HTTPS",
        "FTP"
      ],
      "question": "What internet protocol was documented in RFC 1459?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "7.62mm",
      "difficulty": "easy",
      "incorrect_answers": [
        "5.56mm",
        "9mm",
        ".300 Magnum"
      ],
      "question": "In \"PUBATTLEGROUNDS\" which ammo type does the M24 use?",
      "type": "multiple"
    },
    {
      "category": "History",
      "correct_answer": "1983",
      "difficulty": "medium",
      "incorrect_answers": [
        "1982",
        "1993",
        "1970"
      ],
      "question": "In what year did the North American Video Game Crash occur?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "120",
      "difficulty": "easy",
      "incorrect_answers": [
        "100",
        "90",
        "150"
      ],
      "question": "What was the Maximum Level in World of Warcraft: Battle for Azeroth?",
      "type": "multiple"
    }
  ],
  "success": true
}