← 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.

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": "History",
      "correct_answer": "Enola Gay",
      "difficulty": "hard",
      "incorrect_answers": [
        "Necessary Evil",
        "The Great Artiste",
        "Full House"
      ],
      "question": "What is the name of the Boeing B-29 that dropped the 'Little Boy' atomic bomb on Hiroshima?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Film",
      "correct_answer": "Ralph Fiennes",
      "difficulty": "easy",
      "incorrect_answers": [
        "Tom Hanks",
        "Vin Diesel",
        "Matt Damon"
      ],
      "question": "Which of these actors does NOT appear in the 1998 movie \"Saving Private Ryan\"?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "July 6th, 2016",
      "difficulty": "hard",
      "incorrect_answers": [
        "June 5th, 2016",
        "May 24th, 2016",
        "January 2nd, 2017"
      ],
      "question": "When was Pokemon GO released in North America?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Board Games",
      "correct_answer": "300 Million",
      "difficulty": "medium",
      "incorrect_answers": [
        "100 Million",
        "450 Million",
        "1 Billion"
      ],
      "question": "About how many Slinkys were sold in their first 60 years (from 1945 to 2005)?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Cartoon & Animations",
      "correct_answer": "Slam dunk, nothing but net!",
      "difficulty": "easy",
      "incorrect_answers": [
        "Hit the sack, Jack!",
        "Rikki-Tikki-Tavi, biatch!",
        "Wubba-lubba-dub-dub!"
      ],
      "question": "Which of these is NOT a catchphrase used by Rick Sanchez in the TV show \"Rick and Morty\"?",
      "type": "multiple"
    }
  ],
  "success": true
}