Page Summary
-
The
comments.listByBlogmethod retrieves comments for a blog, across all posts, with optional filtering. -
The request uses a
GETHTTP method and requires theblogIdparameter. -
Optional parameters include
endDate,fetchBodies,maxResults,pageToken, andstartDateto refine the results. -
A successful response includes a list of comments in the
itemsarray, along with pagination tokens if applicable.
Retrieves the comments for a blog, across all posts, possibly filtered. Try it now .
Request
HTTP request
GET https://www.googleapis.com/blogger/v3/blogs/ blogId /comments
Parameters
blogId
string
endDate
datetime
fetchBodies
boolean
maxResults
unsigned integer
pageToken
string
startDate
datetime
Request body
Do not supply a request body with this method.
Response
If successful, this method returns a response body with the following structure:
{ "kind" : "blogger#commentList" , "nextPageToken" : string , "prevPageToken" : string , "items" : [ comments Resource ] }
| Property name | Value | Description | Notes |
|---|---|---|---|
kind
|
string
|
The kind of this entry. Always blogger#commentList
|
|
nextPageToken
|
string
|
Pagination token to fetch the next page, if one exists. | |
prevPageToken
|
string
|
Pagination token to fetch the previous page, if one exists. | |
items[]
|
list
|
The List of Comments for a Post. |
Try it!
Use the APIs Explorer below to call this method on live data and see the response.


