Knowledge Graph Cards

Description: Visual cards displaying comprehensive information about topics, including images, facts, and related information.

API Response Structure:

{
  "cards": [
    {
      "title": "Mount Everest",
      "imageUrl": "https://example.com/everest.jpg",
      "description": "Mount Everest is Earth's highest mountain above sea level.",
      "facts": {
        "height": "8,848 m",
        "location": "Nepal/China border",
        "firstAscent": "1953"
      }
    }
  ],
  "type": "instantAnswers",
  "configType": "knowledgeGraphCards"
}

Fields:

  • cards (array): List of knowledge cards

    • title (string): Topic title

    • imageUrl (string): URL of the main image

    • description (string): Brief description

    • facts (object): Key facts about the topic

  • type (string): Always "instantAnswers"

  • configType (string): Always "knowledgeGraphCards"