# Fetch Replies Under Specific TikTok Comment IDs

**Use case:** 

Already have the TikTok comment IDs you care about? Pass them in to fetch every reply under each one with handle, text, and like count.

## Input

```json
{
  "video_urls": [
    "https://www.tiktok.com/@stoolpresidente/video/7499229683859426602"
  ],
  "max_comment_pages": 2,
  "auto_fetch_replies": false,
  "min_replies_threshold": 5,
  "max_reply_pages_per_comment": 3,
  "comment_ids_to_expand": []
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "cid": {
    "label": "Reply ID",
    "format": "string"
  },
  "parent_comment_id": {
    "label": "Parent comment",
    "format": "string"
  },
  "text": {
    "label": "Reply",
    "format": "string"
  },
  "digg_count": {
    "label": "Likes",
    "format": "integer"
  },
  "create_time_iso": {
    "label": "Created at",
    "format": "string"
  },
  "user": {
    "label": "User",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Comments & Replies Scraper [NO LOGIN] ✅](https://apify.com/unseenuser/tiktok-comments-replies-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unseenuser/tiktok-comments-replies-scraper) to learn more, explore other use cases, and run it yourself.