Blog API requires no API key or setup on your end — you can start making requests immediately. This quickstart walks you through three common operations: listing all posts, searching by keyword, and fetching the latest post.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Project516/BlogAPI/llms.txt
Use this file to discover all available pages before exploring further.
List all blog posts
Call Example response:
GET /blogs to retrieve the full list of cached blog posts. Each post includes a title, a link to the full post, and a publish date.Search for a post by title
Use Example response when posts are found:If no posts match, the API returns:
GET /blogs/search?query=<keyword> to find posts whose titles contain your search term. The match is case-insensitive and checks for the substring anywhere in the title.Fetch the latest post
Call Example response:
GET /blogs/latest to retrieve only the most recently published blog post. This is the first entry in the cache, which reflects publication order from the blog source.If the cache is empty (before the first
POST /blogs/cache call), this endpoint returns null.Next steps
API Reference
Explore full endpoint documentation including all parameters, response shapes, and error codes.
Caching guide
Learn how to populate and refresh the blog cache using
POST /blogs/cache.