Books Catalog
The Books catalog returns the full list of Multiple Natures publications with pricing, SKUs, and checkout URLs. No authentication required.
Base path: /books
Endpoints
List all books
GET /booksResponse
[ { "sku": "hnr-coders-en", "title": "Human, Not Replaceable — For Coders", "language": "en", "type": "ebook", "price_cents": 1200, "currency": "USD", "checkout_url": "https://payment.multiplenatures.com/checkout/hnr-coders-en" }]Get a single book
GET /books/:skuResponse
{ "sku": "hnr-coders-en", "title": "Human, Not Replaceable — For Coders", "language": "en", "type": "ebook", "price_cents": 1200, "currency": "USD", "checkout_url": "https://payment.multiplenatures.com/checkout/hnr-coders-en", "description": "...", "isbn": "978-1-971487-00-0"}Response fields
| Field | Type | Description |
|---|---|---|
sku | string | Unique product identifier |
title | string | Full book title |
language | string | "en" or "fr" |
type | string | "ebook" or "print" |
price_cents | integer | Price in cents (USD) |
checkout_url | string | Direct link to purchase page |
isbn | string | ISBN-13, if assigned |
Notes
- Checkout URLs point to the MN payment worker. The payment flow handles Stripe and fulfilment.
- Prices are in USD. French-language titles use the same pricing.
- The catalog is read-only. To add or update books, contact steven@multiplenatures.com.