Skip to main content
POST
/
youtube-continues
/
reviews
cURL
curl --request POST \
  --url https://api.hobbo.ai/youtube-continues/reviews \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "sort_type": "relevance",
  "reviews_to_fetch": 123,
  "is_text_formatted": true,
  "sync_date": "<string>"
}
'
{
  "all_reviews": [
    {
      "author_channel_id": "<string>",
      "author_channel_url": "<string>",
      "author_name": "<string>",
      "author_profile_image_url": "<string>",
      "author_profile_image_url_org": "<string>",
      "channel_id": "<string>",
      "comment_id": "<string>",
      "comment_text": "<string>",
      "comment_timestamp": "<string>",
      "comment_update_timestamp": "<string>",
      "comment_url": "<string>",
      "like_count": 123,
      "query": "<string>",
      "total_reply_count": 123,
      "video_id": "<string>",
      "review_reply": {
        "reply_like_count": 123,
        "reply_id": "<string>",
        "reply_comment_timestamp": "<string>",
        "reply_comment_update_timestamp": "<string>",
        "reply_author_channel_id": "<string>",
        "reply_author_channel_url": "<string>",
        "reply_author_name": "<string>",
        "reply_author_profile_image_url": "<string>",
        "reply_author_profile_image_url_org": "<string>",
        "reply_text": "<string>"
      }
    }
  ],
  "extra_information": {
    "extra_information": {},
    "pagination_token": "<string>",
    "total_review_count": 123,
    "total_review_count_list": [
      123
    ]
  },
  "message": "<string>"
}

Body

application/json

YouTube comments scraping parameters

query
string
required

Provide proper video id or url.

sort_type
enum<string>
default:relevance

Order in which comments should be sorted

Available options:
time,
relevance
reviews_to_fetch
number

Number of comments to fetch (default: all reviews, or within 30-second timeout)

is_text_formatted
boolean

returns the review text with visual formatting preserved

sync_date
string

Fetches reviews posted on a specific date using format: YYYY-MM-DD

Response

Comments fetched successfully

all_reviews
object[]

Array of fetched comments

extra_information
object
message
string

Status message about the comment extraction