← Entertainment

Trivia Questions

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.

See it visualized

Parameters

amount optional default: 10

Count

category optional

Category

difficulty optional

easy/medium/hard

Example Requests

Basic usage
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 Response

{
  "count": 5,
  "data": [
    {
      "category": "Geography",
      "correct_answer": "Cambridge",
      "difficulty": "easy",
      "incorrect_answers": [
        "Providence",
        "New York",
        "Washington D.C."
      ],
      "question": "Harvard University is located in which city?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Music",
      "correct_answer": "Wesley Schultz",
      "difficulty": "medium",
      "incorrect_answers": [
        "Jeremiah Fraites",
        "Jay Van Dyke",
        "Neyla Pekarek"
      ],
      "question": "Who is the lead singer of The Lumineers?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Television",
      "correct_answer": "Walter White",
      "difficulty": "medium",
      "incorrect_answers": [
        "William Wolf",
        "Willy Wonka",
        "Wally Walrus"
      ],
      "question": "In Breaking Bad, the initials W.W. refer to which of the following?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "Grass and Cobblestone",
      "difficulty": "easy",
      "incorrect_answers": [
        "Grass and Stone",
        "Crafting Table and Cobblestone",
        "Cobblestone and Stone"
      ],
      "question": "What were the first two blocks in \"Minecraft\"?",
      "type": "multiple"
    },
    {
      "category": "Science & Nature",
      "correct_answer": "Gray ",
      "difficulty": "medium",
      "incorrect_answers": [
        "Watt",
        "Decibel",
        "Kelvin"
      ],
      "question": "What is radiation measured in?",
      "type": "multiple"
    }
  ],
  "success": true
}