Quick Facts

Description: Displays concise, important facts about the search topic in an easily digestible format.

API Response Structure:

{
  "facts": [
    {
      "title": "Quick Fact",
      "content": "Fact description",
      "category": "Basic Information",
      "source": {
        "name": "Source Name",
        "url": "https://example.com",
        "date": "2023-08-15"
      },
      "confidence": "High",
      "verified": true
    }
  ],
  "overview": {
    "topic": "Main Subject",
    "lastUpdated": "2023-08-15T10:00:00Z",
    "factCount": 5
  },
  "relatedTopics": [
    {
      "name": "Related Topic",
      "relevance": "High"
    }
  ],
  "type": "quickFacts"
}

Fields:

  • facts (array): Key facts

    • title (string): Fact title

    • content (string): Fact description

    • category (string): Fact category

    • source (object): Information source

    • confidence (string): Accuracy level

    • verified (boolean): Fact verification

  • overview (object): Topic summary

  • relatedTopics (array): Related subjects

  • type (string): Always "quickFacts"