YouTube API

YouTube Comment replies API

List replies to a YouTube comment using a continuation token with cursor pagination (text, author, likes, publish time).

POST/v1/run/youtube.comment_replies
Requests
-
30d

Pricing

One price, in dollars

Providers
Giraffe- served- uptime- p50$1.20/1k reqflat

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "comments": [
      {
        "authorName": "Alex Rivera",
        "content": "A short example description of this item.",
        "id": "a1b2c3d4",
        "likes": 12500,
        "publishedTime": "2024-01-15T09:30:00Z"
      }
    ],
    "nextCursor": "example"
  },
  "found": true
}
Response interface
interface YoutubeCommentRepliesResponse {
  data: {
    comments: {
      authorName: string;
      content: string;
      id: string;
      likes: number;
      publishedTime: string;
    }[];
    nextCursor: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/youtube.comment_replies
curl -X POST https://api.getanyapi.com/v1/run/youtube.comment_replies \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"continuationToken":"Eg0SC19fZm1EajBaSjFRGAYygwEaUBIaVWd3aXRjRk9fdmtpM0x4LUNfZDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyC19fZm1EajBaSjFRQABICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dpdGNGT192a2kzTHgtQ19kNEFhQUJBZw=="}'
FieldTypeExample value
Request body
continuationTokenstring"Eg0SC19fZm1EajBaSjFRGAYygwEaUBIaVWd3aXRjRk9fdmtpM0x4LUNfZDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyC19fZm1EajBaSjFRQABICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dpdGNGT192a2kzTHgtQ19kNEFhQUJBZw=="Replies continuation token from the comments endpoint, or the continuationToken from a previous replies response for further pagination.
Response
dataobject
data.commentsobject[]Populated whenever the provider has data for the entity.
data.comments[].authorNamestringPopulated whenever the provider has data for the entity.
data.comments[].contentstringPopulated whenever the provider has data for the entity.
data.comments[].idstringPopulated whenever the provider has data for the entity.
data.comments[].likesinteger
data.comments[].publishedTimestringPopulated whenever the provider has data for the entity.
data.nextCursorstring
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the YouTube Comment replies API

The AnyAPI YouTube Comment replies API returns YouTube comment replies data as normalized JSON from one POST call to /v1/run/youtube.comment_replies. List replies to a YouTube comment using a continuation token with cursor pagination (text, author, likes, publish time). AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

List replies to a YouTube comment using a continuation token with cursor pagination (text, author, likes, publish time). The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.