Google Light Latest From API

SerpApi is able to scrape, extract, and make sense of "latest from" results for certain search queries.

When SerpApi encounters latest from results, we add them to our JSON output as the array articles inside latest_from.

For each "latest from" result, we are able to extract its title, link, thumbnail, source, and date.


The API endpoint is https://serpapi.com/search?engine=google_light

Head to the playground for a live and interactive demo.

API Examples

Results for: BBC

Results for: BBC

JSON Example

{
  "latest_from": {
    "title": "Latest from bbc.com",
    "articles": [
      {
        "title": "Earthset and a solar eclipse: Nasa releases first images from Moon fly-by",
        "link": "https://www.google.com/url?q=https://www.bbc.com/news/articles/cyv183v02j3o&sa=U&ved=2ahUKEwjW8aq0n9yTAxV43skDHXvRKHEQlO8DegQIChAD&usg=AOvVaw3gGQb-GSqMMRUxM8yuMUf0",
        "thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6ETLzKQlAGFyu9se1JG88GOdgnuRK0FqFZeqeMKpoS9UEdxi01BeS3DRDmg&s",
        "source": "BBC",
        "date": "2 hours ago"
      },
      {
        "title": "Has Artemis II shown we can get back to the Moon?",
        "link": "https://www.google.com/url?q=https://www.bbc.com/news/articles/cj60nkd8nrko&sa=U&ved=2ahUKEwjW8aq0n9yTAxV43skDHXvRKHEQlO8DegQIChAH&usg=AOvVaw1cPKQiLVCshAtx8JZIRqjU",
        "thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQBS1BIv8LRG3AYx4DbCDHqc-SobRO1HTsVPoQhDI2lUxuubVCJjZM-iFl_rw&s",
        "source": "BBC",
        "date": "2 hours ago"
      },
      {
        "title": "Bahamas police search for US woman who reportedly fell off boat",
        "link": "https://www.google.com/url?q=https://www.bbc.com/news/articles/ckg9yxpdxlgo&sa=U&ved=2ahUKEwjW8aq0n9yTAxV43skDHXvRKHEQlO8DegQIChAL&usg=AOvVaw0JkgKNkQB13g9mdPI-mGud",
        "thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRlkuqxfMBxTlZWyOm2uGil9Cz2Ka0HSyJ9-3XyIjZofRsyEXA5XTt2ltSa8Q&s",
        "source": "BBC",
        "date": "2 hours ago"
      },
      ...
    ],
  }
}

JSON structure overview

{
  "latest_from": {
    "title": "String - Title of the section",
    "articles": [
      {
        "title": "String - Title of the article result",
        "link": "String - URL of the article result",
        "thumbnail": "String - URL of the thumbnail image of the article result",
        "source": "String - Source of the article result",
        "date": "String - Date of the article result"
      }
    ]
  },
}