Google Interactive Diagram API

When a Google search contains an interactive diagram, it is parsed and exists within interactive_diagram in the JSON output. Interactive Diagram contains a title and an array of slides, each having a title and an image.

API Examples

Results for: glycolysis

Results for: glycolysis

JSON Example

{
  ...
  "interactive_diagram": {
    "title": "Glycolysis",
    "slides": [
      {
        "title": "Energy Investment Phase Part 1",
        "image": "https://serpapi.com/searches/69385fc6ce4eb06d9d2e1c26/images/a1a0d6be0dd36b4a1a48c51cb7f29197f505572cbe7452fc479756453ac52f4919146dc8372ad92a.jpeg"
      },
      {
        "title": "First Energy Investment Phase",
        "image": "https://encrypted-tbn0.gstatic.com/licensed-image?q=tbn:ANd9GcSZrXrCj7x_inVq01eXjcMYGnWhCve77GUcvcsiCpnaI7z5fWkmv-kF5GpITXy2NWxw2qHPHMAemILABFKsjExGLg&fopt=w600-h752"
      }
    ]
  },
  ...
}

JSON structure overview

{
  ...
  "interactive_diagram": {
    "title": "String - Title of the interactive diagram",
    "slides": [
      {
        "title": "String - Title of the slide",
        "image": "String - Image URL of the slide"
      },
      ...
    ]
  },
  ...
}