← 娱乐

问答题

GET /trivia/questions

获取带多选或判断题答案的随机问答题。可按数量(最多 50 题)、分类和难度级别(简单/中等/困难)配置。返回带正确和错误答案、分类和难度的题目。适用于问答应用、问答游戏、教育工具、团队建设活动和聊天机器人娱乐功能。数据来自拥有 4,000+ 验证题目的 Open Trivia Database。

参数

amount 可选 默认: 10

Count

category 可选

Category

difficulty 可选

easy/medium/hard

请求示例

基本用法
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"

实时响应

{
  "count": 5,
  "data": [
    {
      "category": "History",
      "correct_answer": "General Electric",
      "difficulty": "medium",
      "incorrect_answers": [
        "Colt Firearms",
        "Heckler & Koch",
        "Sig Sauer"
      ],
      "question": "The minigun was designed in 1960 by which manufacturer.",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "Warm Painting",
      "difficulty": "hard",
      "incorrect_answers": [
        "Jolly Painting",
        "Neutral Painting",
        "Wistful Painting"
      ],
      "question": "In Animal Crossing: New Leaf, which of these paintings from Redd's Art Gallery is always genuine?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "DMC",
      "difficulty": "medium",
      "incorrect_answers": [
        "Noise",
        "Triangle",
        "Square"
      ],
      "question": "One of the Nintendo Entertainment System voice channels supports playback of sound samples. Which one?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Video Games",
      "correct_answer": "Breakout Case",
      "difficulty": "medium",
      "incorrect_answers": [
        "Shadow Case",
        "Vanguard Case",
        "Esports 2014 Case"
      ],
      "question": "What CS:GO case contains the Butterfly Knife?",
      "type": "multiple"
    },
    {
      "category": "Entertainment: Japanese Anime & Manga",
      "correct_answer": "Glasses",
      "difficulty": "medium",
      "incorrect_answers": [
        "Nose Ring",
        "T-Shirt",
        "Underwear"
      ],
      "question": "In the anime \"Gintama\" which accessory/article of clothing is the character Shinpachi commonly referred to as?",
      "type": "multiple"
    }
  ],
  "success": true
}