How to make search query on Blogger JSON Feed API

Viewed 568

I want to search my posts on blogger by using blogger feed JSON API. How can I do that?

2 Answers

If you want to search your posts with blogger JSON feed API, you can do that with use below link. Write your blog name and write your search word with q parameter. (ex: q=word).

For posts: blogname.blogspot.com/feeds/posts/default?alt=json&max-results=500&q=word

For Pages: blogname.blogspot.com/feeds/pages/default?alt=json&max-results=500&q=word

Related