← Entretenimiento

Preguntas de trivia

GET /trivia/questions

Get random preguntas de trivia with opción múltiple or verdadero/falso answers. Configurable by amount (hasta 50), category, and difficulty level (easy/medium/hard). Returns questions with correct and incorrect answers, category, and difficulty. Útil para quiz aplicaciones, trivia games, herramientas educativas, team-building activities, and chatbot entertainment features. Data from Open Trivia Database with 4,000+ verified questions.

Parametros

amount opcional predeterminado: 10

Count

category opcional

Category

difficulty opcional

easy/medium/hard

Ejemplos de solicitudes

Uso basico
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"

Respuesta en vivo

{
  "count": 5,
  "data": [
    {
      "category": "History",
      "correct_answer": "1980",
      "difficulty": "medium",
      "incorrect_answers": [
        "1950",
        "1920",
        "1880"
      ],
      "question": "When did O, Canada officially become the national anthem?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Music",
      "correct_answer": "Drums",
      "difficulty": "easy",
      "incorrect_answers": [
        "Bass",
        "Guitar",
        "Piano"
      ],
      "question": "Ringo Starr of The Beatles mainly played what instrument?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Cartoon & Animations",
      "correct_answer": "Pringle",
      "difficulty": "easy",
      "incorrect_answers": [
        "Walker",
        "Dorito",
        "Lays"
      ],
      "question": "What is the surname of one of the male teachers in the BBC series Postman Pat?",
      "type": "multiple"
    },
    {
      "category": "History",
      "correct_answer": "Napoleone di Buonaparte",
      "difficulty": "hard",
      "incorrect_answers": [
        "Naapolion van Bonijpaart",
        "Napoleão do Boaparte",
        "Napoleona de Buenoparte"
      ],
      "question": "What was Napoleon Bonaparte's name before he changed it?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "True",
      "difficulty": "hard",
      "incorrect_answers": [
        "False"
      ],
      "question": "In \"The Sims\" series, the most members in a household you can have is 8.",
      "type": "boolean"
    }
  ],
  "success": true
}