# Comment Replies

Fetch replies for a TikTok comment.

- **Documentation:** [https://scrappa.co/docs/tiktok/tiktok_comments_replies](https://scrappa.co/docs/tiktok/tiktok_comments_replies)
- **API group:** TikTok API
- **Endpoint:** `GET https://scrappa.co/api/tiktok/comments/replies`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `comment_id` | string | Yes | TikTok comment identifier. |
| `video_id` | string | No | Optional TikTok video identifier. |
| `count` | integer | No | Number of replies to return. |
| `cursor` | string | No | Pagination cursor from a previous response. Omit for the first page. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/tiktok/comments/replies?comment_id=7093219663211053829&video_id=7093219391759764782&count=10&cursor=0"
```

## Example response

```json
{
    "code": 0,
    "msg": "success",
    "data": []
}
```

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
