# Website Title Scraper

**Use case:** 

Scrape website titles from the Apify homepage efficiently. Access a structured list of titles to enhance your data analysis.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://apify.com"
    }
  ]
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "h1s": {
    "label": "H1s",
    "format": "array"
  },
  "h2s": {
    "label": "H2s",
    "format": "array"
  },
  "h3s": {
    "label": "H3s",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Getting started](https://apify.com/saleth_jhoselin/mi-primer-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/saleth_jhoselin/mi-primer-scraper) to learn more, explore other use cases, and run it yourself.