# Scrape Vimeo channel videos and metadata

**Use case:** 

Extract videos from any Vimeo account: titles, descriptions, plays, likes, duration, and uploader profile. Prefilled with an official account.

## Input

```json
{
  "videoUrls": [
    "https://vimeo.com/76979871"
  ],
  "users": [
    "staff"
  ],
  "maxVideosPerUser": 60,
  "includeProfile": true,
  "concurrency": 5,
  "proxyConfig": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "id": {
    "label": "ID"
  },
  "url": {
    "label": "URL"
  },
  "ownerName": {
    "label": "Owner"
  },
  "title": {
    "label": "Title"
  },
  "description": {
    "label": "Description"
  },
  "tags": {
    "label": "Tags"
  },
  "thumbnail": {
    "label": "Thumbnail"
  },
  "duration": {
    "label": "Duration (s)"
  },
  "uploadDate": {
    "label": "Uploaded"
  },
  "privacy": {
    "label": "Privacy"
  }
}
```

## About this Actor

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