# Bulk TikTok video scraper for multiple accounts

**Use case:** 

Scrape videos from several creators or hashtags at once, high volume.

## Input

```json
{
  "inputs": [
    "@nba",
    "@netflix",
    "#travel"
  ],
  "maxVideosPerUser": 40,
  "concurrency": 6,
  "delayBetweenRequests": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "authorHandle": {
    "label": "Author",
    "format": "text"
  },
  "authorNickname": {
    "label": "Name",
    "format": "text"
  },
  "description": {
    "label": "Caption",
    "format": "text"
  },
  "playCount": {
    "label": "Plays",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "shareCount": {
    "label": "Shares",
    "format": "number"
  },
  "saveCount": {
    "label": "Saves",
    "format": "number"
  },
  "duration": {
    "label": "Duration (s)",
    "format": "number"
  },
  "videoUrl": {
    "label": "Video URL",
    "format": "link"
  },
  "coverUrl": {
    "label": "Cover",
    "format": "image"
  },
  "createTime": {
    "label": "Posted",
    "format": "text"
  },
  "webUrl": {
    "label": "Web URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Video Scraper - Bulk Videos by User or URL](https://apify.com/goat255/tiktok-video-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/goat255/tiktok-video-scraper) to learn more, explore other use cases, and run it yourself.