{"id":23703467,"url":"https://github.com/shishirshekhar/books-api","last_synced_at":"2026-04-05T22:35:38.628Z","repository":{"id":107926781,"uuid":"395941613","full_name":"ShishirShekhar/Books-API","owner":"ShishirShekhar","description":"This is book library api","archived":false,"fork":false,"pushed_at":"2022-11-16T10:52:54.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-02T06:06:00.654Z","etag":null,"topics":["api","book-api","expressjs","expressjs-api","expressjs-server","mongodb","mongodb-database","mongoose","nodejs","nodejs-api"],"latest_commit_sha":null,"homepage":"https://books-api-beta.vercel.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ShishirShekhar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-08-14T08:21:54.000Z","updated_at":"2022-11-16T11:01:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"9e1ac443-6b31-4a9e-bc5f-f18a907ec36d","html_url":"https://github.com/ShishirShekhar/Books-API","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ShishirShekhar/Books-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShishirShekhar%2FBooks-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShishirShekhar%2FBooks-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShishirShekhar%2FBooks-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShishirShekhar%2FBooks-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ShishirShekhar","download_url":"https://codeload.github.com/ShishirShekhar/Books-API/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShishirShekhar%2FBooks-API/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31452899,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"ssl_error","status_checked_at":"2026-04-05T21:22:51.943Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","book-api","expressjs","expressjs-api","expressjs-server","mongodb","mongodb-database","mongoose","nodejs","nodejs-api"],"created_at":"2024-12-30T13:04:52.308Z","updated_at":"2026-04-05T22:35:38.562Z","avatar_url":"https://github.com/ShishirShekhar.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Books-API\n\n\u003c------------------------ DataBase Details --------------------------\u003e\n\nBook\n\n    - ISBN          - String\n    - Title         - String\n    - Author        - [Numbers]\n    - Language      - String\n    - Publications  - Numbers\n    - NumOfPages    - Numbers\n    - Categories    - [String]\n\nAuthor\n\n    - Id    - Number\n    - Name  - String\n    - Books - [Strings]\n\nPublication\n\n    - Id    - Number\n    - Name  - String\n    - Books - [Strings]\n\n\u003c--------------------------- APIs -----------------------------\u003e\n\nBook\n\n    - GET\n        - to get all books\n        - to get specific book\n        - to get a list of books based on category\n        - to get a list of books based on author\n\n    - POST\n        - to add new books\n\n    - PUT\n        - update book details\n        - to update/add new author\n\n    - DELETE\n        - delete a book\n        - delete an author from the book\n\nAuthor\n\n    - GET\n        - to get all authors\n        - to get specific author\n        - to get list of author based on a book\n\n    - POST\n        - to add new author\n\n    - PUT\n        - update author details\n\n    - DELETE\n        - delete an author\n\nPublication\n\n    - GET\n        - to get all publication\n        - to get specific publication\n        - to get a list of publication based on a book.\n\n    - POST\n        - Add a new publication\n\n    - PUT\n        - update publication\n        - to update/add new book\n\n    - DELETE\n        - delete a publication\n        - delete a book from publication\n        \n        \n        \n\u003c--------------------------- APIs Details -----------------------------\u003e\n\n/* ------------------------ GET APIs -------------------------- */\n\nBook \n\n    Route    - /book\n    Des      - to get all books\n    Access   - Public\n    Method   - GET\n    Params   - none\n    Body     - none\n\n    Route    - /book/:BookID\n    Des      - to get specific book\n    Access   - Public\n    Method   - GET\n    Params   - bookID\n    Body     - none\n\n    Route    - /book/cat/category\n    Des      - to get a list of books based on category\n    Access   - Public\n    Method   - GET\n    Params   - category\n    Body     - none\n\n    Route    - /book/aut/author\n    Des      - to get a list of books based on author\n    Access   - Public\n    Method   - GET\n    Params   - author\n    Body     - none\n    \nAuthor\n\n    Route    - /author\n    Des      - to get all authors\n    Access   - Public\n    Method   - GET\n    Params   - none\n    Body     - none\n\n    Route    - /author/aut/:author_\n    Des      - to get specific author\n    Access   - Public\n    Method   - GET\n    Params   - author\n    Body     - none\n\n    Route    - /author/book/:book\n    Des      - to get list of author based on a book\n    Access   - Public\n    Method   - GET\n    Params   - author\n    Body     - none\n\nPublication\n\n    Route    - /publication\n    Des      - to get all publication\n    Access   - Public\n    Method   - GET\n    Params   - none\n    Body     - none\n\n    Route    - /publication/pub/:pub_\n    Des      - to get specific publication\n    Access   - Public\n    Method   - GET\n    Params   - publication\n    Body     - none\n\n    Route    - /publication/book/:book_\n    Des      - to get a list of publication based on a book\n    Access   - Public\n    Method   - GET\n    Params   - book\n    Body     - none\n\n/* ------------------------ POST APIs -------------------------- */\n\nBook\n\n    Route    - /book/new\n    Des      - to add new books\n    Access   - Public\n    Method   - POST\n    Params   - none\n    Body     - none\n    \nAuthor\n\n    Route    - /author/new\n    Des      - to add new author\n    Access   - Public\n    Method   - POST\n    Params   - none\n    Body     - none\n    \nPublication\n\n    Route    - /publication/new\n    Des      - to add new publication\n    Access   - Public\n    Method   - POST\n    Params   - none\n    Body     - none\n\n/* ------------------------ PUT APIs -------------------------- */\n\nBook\n\n    Route    - /book/update/:isbn\n    Des      - update book title\n    Access   - Public\n    Method   - PUT\n    Params   - isbn\n    Body     - { title: newTtile }\n\n    Route    - /book/updateAuthour/:isbn\n    Des      - to update/add new author\n    Access   - Public\n    Method   - PUT\n    Params   - isbn\n    Body     - { \"newAuthor\": id }\n    \nAuthor\n\n    Route    - /author/update/:id\n    Des      - update author details\n    Access   - Public\n    Method   - PUT\n    Params   - id\n    Body     - { \"name\": { newName } }\n   \nPublication\n\n    Route    - /publication/update/:id\n    Des      - update publication\n    Access   - Public\n    Method   - PUT\n    Params   - id\n    Body     - { \"name\": { newName } }\n\n    Route    - /publication/updateBook/:id\n    Des      - to update/add new book\n    Access   - Public\n    Method   - PUT\n    Params   - id\n    Body     - { \"book\": ISBN }\n\n/* ------------------------ DELETE APIs -------------------------- */\n\nBook\n\n    Route    - /book/deleteBook/:BookID\n    Des      - to get specific book\n    Access   - Public\n    Method   - DELETE\n    Params   - bookID\n    Body     - none\n\n    Route    - /book/deleteAuthor/:BookID/:authorID\n    Des      - delete an author from the book\n    Access   - Public\n    Method   - DELETE\n    Params   - bookID, authorID\n    Body     - none\n\nAuthor\n\n    Route    - /author/delete/:authorID\n    Des      - delete an author\n    Access   - Public\n    Method   - DELETE\n    Params   - authorID\n    Body     - none\n    \nPublication\n\n    Route    - /publication/delete/:publicationId\n    Des      - delete a publication\n    Access   - Public\n    Method   - DELETE\n    Params   - publicationID\n    Body     - none\n\n    Route    - /publication/deleteBook/:publicationId/:bookId\n    Des      - delete a book from publication\n    Access   - Public\n    Method   - DELETE\n    Params   - publicationID, bookID\n    Body     - none\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshishirshekhar%2Fbooks-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshishirshekhar%2Fbooks-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshishirshekhar%2Fbooks-api/lists"}