§ 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.

View OpenAPI spec →

Quickstart

List all posts

curl https://giolaq.dev/api/posts

Get a specific post

curl https://giolaq.dev/api/posts/{slug}

Get author info

curl https://giolaq.dev/api/author

AI Agent Integration

This site is optimized for AI agent consumption. Discover capabilities through these endpoints:

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.