Jonathan Harris site logo

Public API

Programmatic access to the ebook catalogue, glossary, and site data. Simple REST endpoints, no authentication required.

Public API

This site exposes a small, read-only JSON surface for the Jonathan Harris ebook catalogue. The goal is simple: make the books easy to discover, index, and reuse in websites, assistants, and internal tools without dragging people through an overbuilt integration story.

Version

Current version: v1

This version is intentionally lean. There is one public catalogue endpoint and the schema is stable enough for simple integrations. Future versions should be added under a new path rather than breaking existing field names in place.

Base endpoint

/api/v1/books.json

Returns a JSON array of book objects. No authentication. No write operations. No account drama. Just catalogue data.

Example request

GET /api/v1/books.json HTTP/1.1
Host: jonathan-harris.online
Accept: application/json

Example response

[
  {
    "id": 1,
    "key": "1-ebook",
    "title": "AI and Formula 1: Redefining Speed and Strategy with Intelligent Technology",
    "short": "A 227-page guide to AI in Formula 1...",
    "cover": "https://images.jonathan-harris.online/ai-formula-speed-webp",
    "main_image": "https://images.jonathan-harris.online/ai-formula-speed-webp",
    "tags": ["Transportation", "Artificial Intelligence", "AI Trends", "AI in Sports"],
    "filter": "Transportation",
    "keywords": ["Transportation", "Artificial Intelligence", "AI Trends"],
    "buy_url": "https://mybook.to/Gi93rOF",
    "slug": "ai-and-formula-1-redefining-speed-and-strategy-with-intelligent-technology"
  }
]

Schema reference

Notes for implementers