§ Developers
Developer Resources
Public API
giolaq.dev exposes a free, read-only JSON API. No authentication required. Use it to fetch blog posts, author info, or integrate content into your own projects.
Quickstart
List all posts
curl https://giolaq.dev/api/postsGet a specific post
curl https://giolaq.dev/api/posts/{slug}Get author info
curl https://giolaq.dev/api/authorAI Agent Integration
This site is optimized for AI agent consumption. Discover capabilities through these endpoints:
- /llms.txt — LLM-friendly site overview
- /.well-known/agent-card.json — A2A agent card
- /.well-known/agent-skills/index.json — Agent skills index
- /.well-known/mcp/server-card.json — MCP server card
- /index.md — Markdown homepage
?mode=agent— Machine-readable homepage view
Authentication
None required. All endpoints are public and rate-limited only by the hosting provider (Vercel). No API keys needed.
Response Format
All API responses are JSON. Errors return structured JSON with error and message fields:
{
"error": "not_found",
"message": "Post \"nonexistent\" not found."
}Source Code
This site is open source. Check out the code on GitHub.