# XVideos Amateur Tag Videos Scraper

**Use case:** 

Scrape the XVideos amateur tag page: title, views, rating, duration, tags, upload date and uploader. Export to JSON, CSV or Excel.

## Input

```json
{
  "maxItems": 50,
  "withDetails": true,
  "searchQuery": "cars",
  "tag": "amateur",
  "sort": "relevance",
  "proxy": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "ratingPercent": {
    "label": "Rating %",
    "format": "number"
  },
  "votes": {
    "label": "Votes",
    "format": "number"
  },
  "uploader": {
    "label": "Uploader",
    "format": "text"
  },
  "uploadedAt": {
    "label": "Uploaded",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [XVideos Video Metadata & Search Scraper](https://apify.com/scrapers_lat/xvideos-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/xvideos-scraper) to learn more, explore other use cases, and run it yourself.