# Vimeo Creator Video Monitoring Workflow

**Use case:** 

Monitor multiple Vimeo creators and profile URLs in one run, exporting recent public videos and metadata for content research.

## Input

```json
{
  "profileUrls": [
    {
      "url": "https://vimeo.com/staff"
    }
  ],
  "usernames": [
    "ondemand"
  ],
  "maxItems": 75,
  "startPage": 1
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "videoUrl": {
    "label": "Video URL",
    "format": "link"
  },
  "uploadDate": {
    "label": "Upload date",
    "format": "text"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "width": {
    "label": "Width",
    "format": "number"
  },
  "height": {
    "label": "Height",
    "format": "number"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "plays": {
    "label": "Plays",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "ownerName": {
    "label": "Owner",
    "format": "text"
  },
  "ownerUsername": {
    "label": "Owner username",
    "format": "text"
  },
  "ownerUrl": {
    "label": "Owner URL",
    "format": "link"
  },
  "thumbnailLarge": {
    "label": "Thumbnail",
    "format": "image"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "embedPrivacy": {
    "label": "Embed privacy",
    "format": "text"
  },
  "apiUrl": {
    "label": "API URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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