{"id":24756981,"url":"https://github.com/vayan/goodreads","last_synced_at":"2025-03-23T07:45:43.104Z","repository":{"id":57517429,"uuid":"246000009","full_name":"vayan/goodreads","owner":"vayan","description":"Go client for the Goodreads API","archived":false,"fork":false,"pushed_at":"2020-03-31T06:39:45.000Z","size":45,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-20T09:17:16.810Z","etag":null,"topics":["api-client","go","golang","goodreads","goodreads-api","goodreads-api-wrapper"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/vayan/goodreads","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vayan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-03-09T09:58:47.000Z","updated_at":"2023-07-07T22:42:32.000Z","dependencies_parsed_at":"2022-09-15T21:23:39.019Z","dependency_job_id":null,"html_url":"https://github.com/vayan/goodreads","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vayan%2Fgoodreads","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vayan%2Fgoodreads/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vayan%2Fgoodreads/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vayan%2Fgoodreads/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vayan","download_url":"https://codeload.github.com/vayan/goodreads/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245072254,"owners_count":20556353,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-client","go","golang","goodreads","goodreads-api","goodreads-api-wrapper"],"created_at":"2025-01-28T14:34:52.545Z","updated_at":"2025-03-23T07:45:43.082Z","avatar_url":"https://github.com/vayan.png","language":"Go","readme":"# Goodreads API Client [![Sanity Checks](https://github.com/vayan/goodreads/workflows/Sanity%20Checks/badge.svg)](https://github.com/vayan/goodreads/actions) [![codecov](https://codecov.io/gh/vayan/goodreads/branch/master/graph/badge.svg)](https://codecov.io/gh/vayan/goodreads)\n\nGo wrapper to interact with Goodreads API.\n\nStill WiP see [the progress](#Progress)\n\n\n# Requirement\n\nGo 1.14 \n\n# Installation \n\n`go get github.com/vayan/goodreads`\n\n\n# Getting Started\n\nYou need an API Key from Goodreads, you can get one here: https://www.goodreads.com/api/keys \n\n\n## Setup the client\n\n``\ngr := goodreads.NewClient(\"secretapikey11\")\n``\n\n## Usage example\n\n### Search\n\n```\ngr.Search(ctx, \"harry potter\", 1)\n```\n\n\n\n# Progress \n\nFrom https://www.goodreads.com/api\n\n- [ ] auth.user   —   Get id of user who authorized OAuth.\n- [x] author.books   —   Paginate an author's books.\n- [x] author.show   —   Get info about an author by id.\n- [ ] author_following.create   —   Follow an author.\n- [ ] author_following.destroy   —   Unfollow an author.\n- [ ] author_following.show   —   Show author following information.\n- [ ] book.isbn_to_id   —   Get Goodreads book IDs given ISBNs.\n- [ ] book.id_to_work_id   —   Get Goodreads work IDs given Goodreads book IDs.\n- [ ] book.review_counts   —   Get review statistics given a list of ISBNs.\n- [x] book.show   —   Get the reviews for a book given a Goodreads book id.\n- [ ] book.show_by_isbn   —   Get the reviews for a book given an ISBN.\n- [ ] book.title   —   Get the reviews for a book given a title string.\n- [ ] comment.create   —   Create a comment.\n- [ ] comment.list   —   List comments on a subject.\n- [ ] events.list   —   Events in your area.\n- [ ] fanship.create   —   Become fan of an author. DEPRECATED.\n- [ ] fanship.destroy   —   Stop being fan of an author. DEPRECATED.\n- [ ] fanship.show   —   Show fanship information. DEPRECATED.\n- [ ] followers.create   —   Follow a user.\n- [ ] followers.destroy   —   Unfollow a user.\n- [ ] friend.confirm_recommendation   —   Confirm or decline a friend recommendation.\n- [ ] friend.confirm_request   —   Confirm or decline a friend request.\n- [ ] friend.requests   —   Get friend requests.\n- [ ] friends.create   —   Add a friend.\n- [ ] group.join   —   Join a group.\n- [ ] group.list   —   List groups for a given user.\n- [ ] group.members   —   Return members of a particular group.\n- [ ] group.search   —   Find a group.\n- [ ] group.show   —   Get info about a group by id.\n- [ ] list.book   —   Get the listopia lists for a given book.\n- [ ] notifications   —   See the current user's notifications.\n- [ ] owned_books.create   —   Add to books owned.\n- [ ] owned_books.list   —   List books owned by a user.\n- [ ] owned_books.show   —   Show an owned book.\n- [ ] owned_books.update   —   Update an owned book.\n- [ ] owned_books.destroy   —   Delete an owned book.\n- [ ] quotes.create   —   Add a quote.\n- [ ] rating.create   —   Like a resource.\n- [ ] rating.destroy   —   Unlike a resource.\n- [ ] read_statuses.show   —   Get a user's read status.\n- [ ] recommendations.show   —   Get a recommendation from a user to another user.\n- [ ] review.create   —   Add review.\n- [ ] review.edit   —   Edit a review.\n- [ ] review.destroy   —   Delete a book review.\n- [ ] reviews.list   —   Get the books on a members shelf.\n- [ ] review.recent_reviews   —   Recent reviews from all members..\n- [ ] review.show   —   Get a review.\n- [ ] review.show_by_user_and_book   —   Get a user's review for a given book.\n- [ ] search.authors   —   Find an author by name.\n- [x] search.books   —   Find books by title, author, or ISBN.\n- [x] series.show   —   See a series.\n- [x] series.list   —   See all series by an author.\n- [x] series.work   —   See all series a work is in.\n- [ ] shelves.add_to_shelf   —   Add a book to a shelf.\n- [ ] shelves.add_books_to_shelves   —   Add books to many shelves.\n- [ ] shelves.list   —   Get a user's shelves.\n- [ ] topic.create   —   Create a new topic via OAuth.\n- [ ] topic.group_folder   —   Get list of topics in a group's folder.\n- [ ] topic.show   —   Get info about a topic by id.\n- [ ] topic.unread_group   —   Get a list of topics with unread comments.\n- [ ] updates.friends   —   Get your friend updates.\n- [ ] user_shelves.create   —   Add book shelf.\n- [ ] user_shelves.update   —   Edit book shelf.\n- [ ] user.show   —   Get info about a member by id or username.\n- [ ] user.compare   —   Compare books with another member.\n- [ ] user.followers   —   Get a user's followers.\n- [ ] user.following   —   Get people a user is following.\n- [ ] user.friends   —   Get a user's friends.\n- [ ] user_status.create   —   Update user status.\n- [ ] user_status.destroy   —   Delete user status.\n- [ ] user_status.show   —   Get a user status.\n- [ ] user_status.index   —   View user statuses.\n- [ ] work.editions   —   See all editions by work.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvayan%2Fgoodreads","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvayan%2Fgoodreads","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvayan%2Fgoodreads/lists"}