# TikTok Keyword Search Scraper

**Use case:** 

Discover and scrape TikTok posts by keyword. Extract engagement metrics, video URLs, hashtags, and author profiles from TikTok search results.

## Input

```json
{
  "searchKeywords": [
    "funny moments"
  ],
  "startUrls": [],
  "numOfPosts": 20
}
```

## Output

```json
{
  "post_id": {
    "label": "Post ID",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "profile_username": {
    "label": "Author",
    "format": "text"
  },
  "play_count": {
    "label": "Plays",
    "format": "number"
  },
  "like_count": {
    "label": "Likes",
    "format": "number"
  },
  "comment_count": {
    "label": "Comments",
    "format": "number"
  },
  "share_count": {
    "label": "Shares",
    "format": "number"
  },
  "create_time": {
    "label": "Created",
    "format": "date"
  },
  "video_url": {
    "label": "Video URL",
    "format": "link"
  }
}
```

## About this Actor

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