Skip to content

Comment Replies

GET /v1/youtube/video/comment/replies

Fetches replies to a specific comment on a YouTube video, including each reply's text content, author details (name, channel ID, avatar, verified/creator status), like count, and publish date. Requires a continuationToken obtained from the 'repliesContinuationToken' field on comments returned by the Comments endpoint. Supports paginating through additional replies with the continuationToken returned in each response.

Authentication

All requests require the x-api-key header. Get your key at scrapecreators.com.

Query Parameters

NameTypeRequiredDescriptionExample
continuationTokenstringyesContinuation token for the comment replies. Use 'repliesContinuationToken' from the Comments endpoint, or 'continuationToken' from a previous replies response to paginate.Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIa...

Example Request

curl

bash
curl 'https://api.scrapecreators.com/v1/youtube/video/comment/replies?continuationToken=Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIa...' \
  -H 'x-api-key: $SCRAPECREATORS_API_KEY'

Node / TypeScript

js
const params = new URLSearchParams({ continuationToken: 'Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIa...' });
const res = await fetch(`https://api.scrapecreators.com/v1/youtube/video/comment/replies?${params}`, {
  headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);

Python

python
import os, requests
r = requests.get(
    'https://api.scrapecreators.com/v1/youtube/video/comment/replies',
    headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
    params={'continuationToken': 'Eg0SC2RRdzR3OVdnWGNRGAYygwEaUBIa...'},
)
r.raise_for_status()
print(r.json())

CLI

bash
scrapecreators youtube video-comment-replies --help

Example Response

json
{
  "comments": [
    {
      "id": "UgyfayX-QqgkPGkcKbt4AaABAg.AV5O1akOhw9AV5RdnpN-SY",
      "content": "Me",
      "publishedTimeText": "20 hours ago",
      "publishedTime": "2026-04-03T05:52:36.883Z",
      "replyLevel": 1,
      "author": {
        "name": "@pepisakkout2522",
        "channelId": "UCjEBcO_VQ32GUzUZGwlxy1w",
        "isVerified": false,
        "isCreator": false,
        "avatarUrl": "https://yt3.ggpht.com/ytc/AIdro_lYQDmh7-5JOb_QcEsPJIp4vmKm5a0uyzAXT-JC0rY=s88-c-k-c0x00ffffff-no-rj",
        "channelUrl": "https://youtube.com/@pepisakkout2522"
      },
      "engagement": {
        "likes": 2,
        "replies": 0
      }
    }
  ],
  "continuationToken": "Eg0SC2RRdzR3OVdnWGNRGAYy1AEK..."
}

Credits

Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.

Errors

StatusMeaningAction
200Success.Use the JSON payload.
400Invalid or missing parameter.Verify required parameters and value format.
401Missing or invalid x-api-key.Pass a valid API key in the header.
402Out of credits.Top up at scrapecreators.com or wait for plan reset.
404Resource not found or private.Confirm the handle, URL, or id and that the resource is public.
429Rate limited.Backoff and retry with exponential delay.
500Server error or upstream platform failure.Retry with backoff; report persistent errors to support.