# TikTok skincare video scraper

**Use case:** 

Scrape TikTok videos for skincare keywords and extract captions, URLs, views, likes, comments, shares, and creator metadata.

## Input

```json
{
  "keywords": [
    "skincare routine",
    "ceramide moisturizer"
  ],
  "maxResultsPerKeyword": 25,
  "searchType": "video"
}
```

## Output

```json
{
  "keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "id": {
    "label": "Video ID",
    "format": "text"
  },
  "text": {
    "label": "Caption",
    "format": "text"
  },
  "webVideoUrl": {
    "label": "URL",
    "format": "link"
  },
  "playCount": {
    "label": "Plays",
    "format": "number"
  },
  "diggCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "shareCount": {
    "label": "Shares",
    "format": "number"
  },
  "createTimeISO": {
    "label": "Created",
    "format": "text"
  }
}
```

## About this Actor

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