Google Latest Posts API

Certain Google searches return a Latest Posts section. These latest posts are parsed and exist within the latest_posts array in the JSON output. Latest posts can contain title, link, thumbnail, source, source_icon, channel, and more.

API Examples

JSON structure overview

{
  ...
  "latest_posts": [
    {
      "title": "String - Title of post",
      "link": "String - URL of post",
      "thumbnail": "String - URL of thumbnail",
      "source": "String - Content source of post",
      "source_icon": "String - Image URL of source icon",
      "channel": "String - Channel name",
      "channel_icon": "String - Image icon for channel of post",
      "duration": "String - Length of video of post",
      "date": "String - Date of post",
      "views": "String - Number of views for the post",
      "extracted_views": "Integer - Number of views for the post",
      "likes": "String - Number of likes for the post",
      "extracted_likes": "Integer - Number of likes for the post",
    },
    ...
  ],
  ...
}

Results for: Taylor Swift

Results for: Taylor Swift

JSON Example

{
  ...
  "latest_posts": [
    {
      "title": "Anti-Hero (Behind The Scenes with The Ghosts In The Room)",
      "link": "https://m.youtube.com/watch?v=P0haCYjysUs&t=1s",
      "thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTftBLm9wIs-8i8bui9JgIFAcGMr-H2ZKW53E3p8hau&usqp=CAI&s",
      "source": "YouTube",
      "source_icon": "https://serpapi.com/searches/677ed87c877a91a9f3427db2/images/c5b51d8685331ddc0ceb281734d11d6794b7f27403a22158aa98c165c863be20.png",
      "channel": "TaylorSwift",
      "date": "4 weeks ago",
      "views": "729.3K+ views",
      "extracted_views": 729300
    },
    {
      "title": "cardigan (behind the scenes - forest & ocean)",
      "link": "https://www.youtube.com/watch?v=PQp643val70",
      "thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRDX7U50q7nA3yOonQgGZLMrm8YanAFSBNjJ1QbfJtO&usqp=CAI&s",
      "source": "YouTube",
      "source_icon": "https://serpapi.com/searches/677ed87c877a91a9f3427db2/images/c5b51d8685331ddc565c806e20ff949134a0f694239617329d155b4730fc993c.png",
      "channel": "TaylorSwift",
      "date": "4 weeks ago",
      "views": "659.6K+ views",
      "extracted_views": 659600
    },
    {
      "title": "Anti-Hero (Behind the Scenes with Mike Birbiglia, John Early & Mary Elizabeth Ellis)",
      "link": "https://www.youtube.com/watch?v=-ddfFsLHNQs",
      "thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQz8XoBsLKBYgj-sAvoR_fqqbdCw52bb-pCrA32oy6f&usqp=CAI&s",
      "source": "YouTube",
      "source_icon": "https://serpapi.com/searches/677ed87c877a91a9f3427db2/images/c5b51d8685331ddc38089af790f22eba679238b081e6891d9db35eb7e546de8b.png",
      "channel": "TaylorSwift",
      "date": "4 weeks ago",
      "views": "515.8K+ views",
      "extracted_views": 515799
    },
    ...
  ]
  ...
}