List books
Returns the books in your store, newest first.
Returns the books in your store, newest first.
Query Parameters
genrestring
Only return books in this genre.
Value in
"fiction" | "nonfiction" | "technology" | "poetry"Response Body
application/json
curl -X GET "https://example.com/books"{ "data": [ { "id": "book_1", "title": "The Pragmatic Programmer", "genre": "technology", "identifier": { "type": "isbn13", "value": "9780135957059" }, "createdAt": "2026-01-15T09:30:00Z" } ], "hasMore": false}