# Build a daily news digest feed by API

**Use case:** 

Power a daily news digest with one API call. Returns fresh headlines with source, snippet, date, and link for your topics, one clean row per article.

## Input

```json
{
  "searchTerms": [
    "artificial intelligence",
    "semiconductors"
  ],
  "timeRange": "day",
  "country": "us",
  "language": "en",
  "maxResultsPerSearch": 15
}
```

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "searchTerm": {
    "label": "Search Term",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "link": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google News Lite API](https://apify.com/johnvc/google-news-lite-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-news-lite-api) to learn more, explore other use cases, and run it yourself.