Reading List API
Return values are given in JSON.
Reading List TableBookshelfPOSTnew book to the reading list
https://reading-list-eight.vercel.app/api/book
| Field | Type | Required? | Extra info |
|---|---|---|---|
| title | String | Yes | n/a |
| author | String | Yes | n/a |
| status | String | No | Valid values are "Unread", "Reading" or "Read". Defaults to "Unread". |
| started | Date | No | ISODate format |
| finished | Date | No | ISODate format |
GETall books from the reading list
GETall books from the reading list filtered using optional single or combined query parameters for title, author and status
https://reading-list-eight.vercel.app/api/books?title=[title]&author=[author]&status=[status]