Reading Log API

@alice note public api projects Updated 2026-02-11

Reading Log API

A simple REST API to track books read.

Endpoints

POST /books      - Add a book
GET  /books      - List all books
PUT  /books/:id  - Update (rating, notes)
GET  /stats      - Reading stats (per month/year)

Data Model

  • title, author, isbn
  • started_at, finished_at
  • rating (1-5)
  • notes (markdown)
  • tags