{
  "openapi": "3.0.0",
  "info": {
    "title": "IMDb 'Did You Know' Insights API (V1)",
    "version": "1.0.0",
    "description": "Get IMDb title 'Did You Know' Insights data, including trivia, for editorial research and title insight enrichment."
  },
  "paths": {
    "/api/imdb/title-did-you-know-query/v1": {
      "get": {
        "tags": [
          "IMDb"
        ],
        "summary": "'Did You Know' Insights",
        "description": "Get IMDb title 'Did You Know' Insights data, including trivia, for editorial research and title insight enrichment.",
        "operationId": "titleDidYouKnowQuery",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "User's authentication token.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "id",
            "in": "query",
            "description": "The unique IMDb ID of the title (e.g., tt12037194).",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "languageCountry",
            "in": "query",
            "description": "Language and country preferences.\n\nAvailable Values:\n- `en_US`: English (US)\n- `fr_CA`: French (Canada)\n- `fr_FR`: French (France)\n- `de_DE`: German (Germany)\n- `hi_IN`: Hindi (India)\n- `it_IT`: Italian (Italy)\n- `pt_BR`: Portuguese (Brazil)\n- `es_ES`: Spanish (Spain)\n- `es_US`: Spanish (US)\n- `es_MX`: Spanish (Mexico)",
            "required": false,
            "schema": {
              "type": "string",
              "default": "en_US",
              "description": "Language and country options for IMDb data.",
              "enum": [
                "en_US",
                "fr_CA",
                "fr_FR",
                "de_DE",
                "hi_IN",
                "it_IT",
                "pt_BR",
                "es_ES",
                "es_US",
                "es_MX"
              ]
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {
                "example": {
                  "code": 0,
                  "data": {
                    "title": {
                      "__typename": "Title",
                      "titleText": {
                        "text": "Furiosa: A Mad Max Saga",
                        "isOriginalTitle": true
                      },
                      "originalTitleText": {
                        "text": "Furiosa: A Mad Max Saga",
                        "isOriginalTitle": true
                      },
                      "trivia": {
                        "edges": [
                          {
                            "node": {
                              "__typename": "TitleTrivia",
                              "id": "tr7375706",
                              "isSpoiler": false,
                              "interestScore": {
                                "__typename": "InterestScore",
                                "usersInterested": 1230,
                                "usersVoted": 1239
                              },
                              "text": {
                                "plainText": "George Miller said this film's script was already complete before Mad Max: Fury Road (2015) was filmed: \"In order to tell that story cohesively, we had to know everything that happened in the time before, so we wrote a story about Furiosa from the time she was taken as a child, as she refers to in Fury Road, until she became the Imperator Furiosa. That ended up as a full screenplay, with concept art and so on. And the actors, the designers, and all the crew got the screenplay of that before shooting Fury Road.\""
                              },
                              "category": {
                                "id": "uncategorized"
                              },
                              "relatedNames": null,
                              "trademark": null
                            }
                          }
                        ]
                      },
                      "quotes": {
                        "edges": [
                          {
                            "node": {
                              "__typename": "TitleQuote",
                              "id": "qt7429439",
                              "isSpoiler": false,
                              "interestScore": {
                                "__typename": "InterestScore",
                                "usersInterested": 86,
                                "usersVoted": 88
                              },
                              "lines": [
                                {
                                  "characters": [
                                    {
                                      "character": "Dementus",
                                      "name": {
                                        "id": "nm1165110"
                                      }
                                    }
                                  ],
                                  "text": "You fabulous thing. You crawled out of a pitiless grave, deeper than hell. Only one thing that is going to do that for you. Not hope. Hate. No shame in hate. It's one of the greatest forces of nature.",
                                  "stageDirection": null
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "goofs": {
                        "edges": [
                          {
                            "node": {
                              "__typename": "Goof",
                              "id": "gf7568572",
                              "isSpoiler": false,
                              "interestScore": {
                                "__typename": "InterestScore",
                                "usersInterested": 82,
                                "usersVoted": 94
                              },
                              "text": {
                                "plainText": "Shooting a gas can with a bullet will not make it blow up, this is one of the most common Hollywood firearms mistakes. In order for the gas to ignite a spark would need to be made, nearly all bullets have a copper jacket and a lead core, neither of which makes a spark when hitting metal."
                              },
                              "category": {
                                "id": "factual_error",
                                "text": "Factual errors"
                              }
                            }
                          }
                        ]
                      },
                      "crazyCredits": {
                        "edges": [
                          {
                            "node": {
                              "__typename": "CrazyCredit",
                              "id": "cz0157303",
                              "interestScore": {
                                "__typename": "InterestScore",
                                "usersInterested": 63,
                                "usersVoted": 63
                              },
                              "text": {
                                "plainText": "There is a brief shot of Nux's (from Mad Max: Fury Road (2015)) crow-shaped bobble head from his car wobbling after the credits end."
                              }
                            }
                          }
                        ]
                      },
                      "soundtrack": {
                        "edges": [
                          {
                            "node": {
                              "__typename": "Track",
                              "id": "sn2848601",
                              "text": "Anderlecht Champion AKA Ole Ole We Are the Champions",
                              "comments": [
                                {
                                  "plainText": "Written by Roland Verlooven and Jeanine Dee"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "triviaCount": {
                        "total": 155
                      },
                      "quotesCount": {
                        "total": 40
                      },
                      "goofsCount": {
                        "total": 12
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": 34001500
      }
    }
  },
  "components": {}
}