https://github.com/ricoledan/goodreads-api-client
📚 JavaScript Client for accessing goodreads data
https://github.com/ricoledan/goodreads-api-client
Last synced: 6 days ago
JSON representation
📚 JavaScript Client for accessing goodreads data
- Host: GitHub
- URL: https://github.com/ricoledan/goodreads-api-client
- Owner: Ricoledan
- License: mit
- Created: 2020-10-04T15:17:07.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-09T00:15:37.000Z (over 5 years ago)
- Last Synced: 2025-01-10T14:29:52.537Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 229 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# goodreads-api-client
📚 JavaScript Client for accessing goodreads data
## Documentation
[goodreads API Documentation](https://www.goodreads.com/api)
## Search
Provides book information and pagination info
```javascript
search('Octavia E. Butler')
Request: GET /search/index.xml
Response: [
{
title: 'Kindred',
author: 'Octavia E. Butler',
image_url:
'https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1339423248l/60931._SX98_.jpg',
publication_year: '1979',
avg_rating: '4.26',
}
...
]
```