← 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": "Entertainment: Television",
      "correct_answer": "Screech",
      "difficulty": "easy",
      "incorrect_answers": [
        "Zack",
        "Mr. Belding",
        "A.C. Slater"
      ],
      "question": "Which character was played by Dustin Diamond in the sitcom 'Saved by the Bell'?",
      "type": "multiple"
    },
    {
      "category": "General Knowledge",
      "correct_answer": "Belgium",
      "difficulty": "medium",
      "incorrect_answers": [
        "Netherlands",
        "France",
        "USA"
      ],
      "question": "Which country has the most Trappist breweries?",
      "type": "multiple"
    },
    {
      "category": "Science: Computers",
      "correct_answer": "Liquid Crystal Display",
      "difficulty": "medium",
      "incorrect_answers": [
        "Language Control Design",
        "Last Common Difference",
        "Long Continuous Design"
      ],
      "question": "What does \"LCD\" stand for?",
      "type": "multiple"
    },
    {
      "category": "Science: Computers",
      "correct_answer": "False",
      "difficulty": "medium",
      "incorrect_answers": [
        "True"
      ],
      "question": "The common software-programming acronym \"I18N\" comes from the term \"Interlocalization\".",
      "type": "boolean"
    },
    {
      "category": "General Knowledge",
      "correct_answer": "True",
      "difficulty": "easy",
      "incorrect_answers": [
        "False"
      ],
      "question": "You can legally drink alcohol while driving in Mississippi.",
      "type": "boolean"
    }
  ],
  "success": true
}