# Build a Public Quotes Dataset

**Use case:** 

Extract quote text, authors, tags, source URLs, and scrape timestamps from public quote websites into a clean, ready-to-use dataset.

## Input

```json
{
  "startUrl": "https://quotes.toscrape.com/"
}
```

## Output

```json
{
  "text": {
    "label": "Quote text",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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