TheDocumentation 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.
GET /blogs endpoint returns every blog post that has been loaded into the server’s cache. Each item in the array represents a single post scraped from the project516.dev blog, including its title, canonical URL, and publish date. The response reflects the state of the cache at the time of the request; if the cache has never been populated, an empty array is returned.
Endpoint
Rate limit
5 requests per minute per IP address. Exceeding this limit returns a429 Too Many Requests response.
Query parameters
This endpoint accepts no query parameters.Response
The response is a JSON array of blog post objects.The title of the blog post as it appears on project516.dev.
The full URL to the blog post on project516.dev (e.g.,
https://project516.dev/blog/some-post).The publish date of the post in ISO 8601 format (e.g.,
2024-11-03).Code examples
Example response
Error codes
| Status | Description |
|---|---|
429 Too Many Requests | You have exceeded the rate limit of 5 requests per minute. Wait before retrying. |