Blogger API
  1. posts
Blogger API
  • blogs
    • /v3/blogs/byurl
      GET
    • /v3/blogs/{blogId}
      GET
    • /v3/users/{userId}/blogs
      GET
  • comments
    • /v3/blogs/{blogId}/comments
      GET
    • /v3/blogs/{blogId}/posts/{postId}/comments
      GET
    • /v3/blogs/{blogId}/posts/{postId}/comments/{commentId}
      DELETE
    • /v3/blogs/{blogId}/posts/{postId}/comments/{commentId}
      GET
    • /v3/blogs/{blogId}/posts/{postId}/comments/{commentId}/approve
      POST
    • /v3/blogs/{blogId}/posts/{postId}/comments/{commentId}/removecontent
      POST
    • /v3/blogs/{blogId}/posts/{postId}/comments/{commentId}/spam
      POST
  • pages
    • /v3/blogs/{blogId}/pages
      GET
    • /v3/blogs/{blogId}/pages
      POST
    • /v3/blogs/{blogId}/pages/{pageId}
      DELETE
    • /v3/blogs/{blogId}/pages/{pageId}
      GET
    • /v3/blogs/{blogId}/pages/{pageId}
      PATCH
    • /v3/blogs/{blogId}/pages/{pageId}
      PUT
    • /v3/blogs/{blogId}/pages/{pageId}/publish
      POST
    • /v3/blogs/{blogId}/pages/{pageId}/revert
      POST
  • pageViews
    • /v3/blogs/{blogId}/pageviews
  • posts
    • /v3/blogs/{blogId}/posts
      GET
    • /v3/blogs/{blogId}/posts
      POST
    • /v3/blogs/{blogId}/posts/bypath
      GET
    • /v3/blogs/{blogId}/posts/search
      GET
    • /v3/blogs/{blogId}/posts/{postId}
      DELETE
    • /v3/blogs/{blogId}/posts/{postId}
      GET
    • /v3/blogs/{blogId}/posts/{postId}
      PATCH
    • /v3/blogs/{blogId}/posts/{postId}
      PUT
    • /v3/blogs/{blogId}/posts/{postId}/publish
      POST
    • /v3/blogs/{blogId}/posts/{postId}/revert
      POST
  • users
    • /v3/users/{userId}
  • blogUserInfos
    • /v3/users/{userId}/blogs/{blogId}
  • postUserInfos
    • /v3/users/{userId}/blogs/{blogId}/posts
    • /v3/users/{userId}/blogs/{blogId}/posts/{postId}
  1. posts

/v3/blogs/{blogId}/posts/search

GET
/v3/blogs/{blogId}/posts/search
Searches for posts matching given query terms in the specified blog.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://blogger.googleapis.com//v3/blogs//posts/search?q='
Response Response Example
{
    "etag": "string",
    "items": [
        {
            "author": {
                "displayName": "string",
                "id": "string",
                "image": {
                    "url": "string"
                },
                "url": "string"
            },
            "blog": {
                "id": "string"
            },
            "content": "string",
            "customMetaData": "string",
            "etag": "string",
            "id": "string",
            "images": [
                {
                    "url": "string"
                }
            ],
            "kind": "string",
            "labels": [
                "string"
            ],
            "location": {
                "lat": 0,
                "lng": 0,
                "name": "string",
                "span": "string"
            },
            "published": "string",
            "readerComments": "ALLOW",
            "replies": {
                "items": [
                    {
                        "author": {
                            "displayName": "string",
                            "id": "string",
                            "image": {
                                "url": "string"
                            },
                            "url": "string"
                        },
                        "blog": {
                            "id": "string"
                        },
                        "content": "string",
                        "id": "string",
                        "inReplyTo": {
                            "id": "string"
                        },
                        "kind": "string",
                        "post": {
                            "id": "string"
                        },
                        "published": "string",
                        "selfLink": "string",
                        "status": "LIVE",
                        "updated": "string"
                    }
                ],
                "selfLink": "string",
                "totalItems": "string"
            },
            "selfLink": "string",
            "status": "LIVE",
            "title": "string",
            "titleLink": "string",
            "trashed": "string",
            "updated": "string",
            "url": "string"
        }
    ],
    "kind": "string",
    "nextPageToken": "string",
    "prevPageToken": "string"
}

Request

Path Params

Query Params

Responses

🟢200Successful response
application/json
Body

Modified at 2023-08-15 09:58:36
Previous
/v3/blogs/{blogId}/posts/bypath
Next
/v3/blogs/{blogId}/posts/{postId}
Built with