Public content API
maximofn.com exposes a read-only public API with the index
of its content (blog articles, projects and tips). It requires no authentication
and is designed for AI agents, crawlers and developers who
want to discover the site's content in a machine-readable way.
Endpoint
Specification and discovery
Features
- No authentication or API keys.
- Read-only (
GET requests). - No rate limits.
- JSON response (
application/json), with URLs in es / en / pt-br. - Versioned through the OpenAPI specification.
Example response
{
"site": "https://www.maximofn.com",
"name": "MaximoFN",
"languages": ["es", "en", "pt-br"],
"counts": { "posts": 78, "projects": 11, "tips": 13, "total": 102 },
"content": [
{
"type": "post",
"title": "QLoRA Explained: NF4 Quantization...",
"description": "...",
"url": "https://www.maximofn.com/qlora",
"url_en": "https://www.maximofn.com/en/qlora",
"url_pt": "https://www.maximofn.com/pt-br/qlora",
"image": "https://images.maximofn.com/QLoRA_thumbnail_ES.webp"
}
]
}
Quickstart
No authentication required: a single GET request returns the whole index.
# curl
curl https://www.maximofn.com/api/content.json
# Python
import httpx
data = httpx.get("https://www.maximofn.com/api/content.json").json()
posts = [c for c in data["content"] if c["type"] == "post"]
print(len(posts), "posts")
// JavaScript
const res = await fetch("https://www.maximofn.com/api/content.json");
const data = await res.json();
console.log(data.counts);
The content is owned by MaximoFN; its use is allowed for discovery and indexing.