Skip to content

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 /books

Response

[
{
"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/:sku

Response

{
"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

FieldTypeDescription
skustringUnique product identifier
titlestringFull book title
languagestring"en" or "fr"
typestring"ebook" or "print"
price_centsintegerPrice in cents (USD)
checkout_urlstringDirect link to purchase page
isbnstringISBN-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.