# Inspirational Quotes Data Extraction from AZ Quotes

**Use case:** 

Collect up to 300 inspirational quotes from AZ Quotes across 20 pages. Get structured data with authors and topics for easy reference.

## Input

```json
{
  "startUrls": [
    "https://www.azquotes.com/author/2500-Dale_Carnegie"
  ],
  "searchAuthor": "Maya Angelou",
  "topic": "inspirational",
  "results_wanted": 300,
  "max_pages": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "quote": {
    "label": "Quote",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "text"
  },
  "author_url": {
    "label": "Author URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [AZ Quotes Scraper](https://apify.com/shahidirfan/az-quotes-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/az-quotes-scraper) to learn more, explore other use cases, and run it yourself.