# Batch Summarize Multiple Blog Posts

**Use case:** 

Feed two blog posts and get a clean summary of each so you can compare ideas and pick the one worth reading in full.

## Input

```json
{
  "urls": [
    "https://blog.cloudflare.com/",
    "https://stackoverflow.blog/"
  ],
  "length": "short",
  "maxItems": 2
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "keyPoints": {
    "label": "Key points",
    "format": "array"
  },
  "observedAt": {
    "label": "Summarized at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Tool: Article & URL Summarizer](https://apify.com/scrapers_lat/url-summarizer-tool) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/url-summarizer-tool) to learn more, explore other use cases, and run it yourself.