# TikTok Search URL Keyword Discovery

**Use case:** 

Use TikTok search URLs as sources and expand their query terms into related autocomplete keyword suggestions.

## Input

```json
{
  "keywords": [
    "makeup",
    "fitness",
    "meal prep"
  ],
  "searchUrls": [
    {
      "url": "https://www.tiktok.com/search?q=meal%20prep"
    },
    {
      "url": "https://www.tiktok.com/search?q=summer%20outfits"
    }
  ],
  "maxSuggestionsPerKeyword": 20,
  "region": "US",
  "language": "en-US",
  "includeAlphabetExpansions": false
}
```

## Output

```json
{
  "seedKeyword": {
    "label": "Seed keyword",
    "format": "text"
  },
  "suggestion": {
    "label": "Suggestion",
    "format": "text"
  },
  "suggestionRank": {
    "label": "Rank",
    "format": "number"
  },
  "searchUrl": {
    "label": "TikTok search URL",
    "format": "link"
  },
  "expansionKeyword": {
    "label": "Expansion query",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "groupId": {
    "label": "Group ID",
    "format": "text"
  },
  "wordsSource": {
    "label": "Words source",
    "format": "text"
  },
  "recallReason": {
    "label": "Recall reason",
    "format": "text"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "date"
  }
}
```

## About this Actor

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