# 每日中文新闻摘要(按关键词订阅)

**Use case:** 

按关键词抓取中文新闻头条: 标题、链接、来源、摘要与时间, 一行一条。配合定时运行即成每日新闻简报, 按篇计费无订阅费。

## Input

```json
{
  "searchTerms": [
    "人工智能"
  ],
  "timeRange": "week",
  "country": "tw",
  "language": "zh-cn",
  "maxResultsPerSearch": 20
}
```

## 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.