Download OpenAPI specification:
Gets the title, author, notes, and the added date of a book based on the book id.
id required | integer The books id. |
{- "added": "2025-02-25 11:59:59",
- "author": "John Doe",
- "id": 123,
- "notes": "Here are some notes about the book.",
- "title": "Title of book"
}
Gets the title, author, notes, and added date for all books.
[- {
- "added": "2025-02-25 11:59:59",
- "author": "John Doe",
- "id": 123,
- "notes": "Here are some notes about the book.",
- "title": "Title of book"
}, - {
- "added": "2024-07-30 3:22:11",
- "author": "John Doe",
- "id": 124,
- "notes": "Here are some notes about the book.",
- "title": "Another title of book"
}
]