List books

Returns the books in your store, newest first.

GET
/books

Returns the books in your store, newest first.

Query Parameters

limitinteger

Maximum number of books to return.

Default20
Rangevalue <= 100
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}