ISBN Lookup
Provides an API to look up detailed book information by ISBN, including title, author, and publisher, helping you quickly identify and manage books.
Documentation
Features
The ISBN Lookup API provides a convenient interface that allows users to retrieve detailed book information using an International Standard Book Number (ISBN). This API returns key data including the title, author, publisher, publication date, page count, price, and synopsis. It helps users quickly identify and understand specific books while ensuring data accuracy and completeness.
Use Cases
- E-commerce Platforms: Display book information on product detail pages to enhance the shopping experience and help customers make informed decisions.
- Library Management Systems: Quickly enter and verify book information to improve cataloging efficiency and data accuracy.
- Personal Bookshelf Apps: Allow users to scan or enter an ISBN to automatically populate book details for efficient personal library management.
- Content Creation & Research: Assist researchers and writers in quickly gathering book references to boost productivity.
- Education: Enable students and teachers to look up textbook or reference book information for easier teaching and study planning.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"isbn": "9787111213826"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"title": "算法导论(原书第3版)",
"author": "Thomas H.Cormen",
"publisher": "机械工业出版社",
"publishDate": "2013-01-01",
"price": "128.00"
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| isbn | string | 9787111213826 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | object | {...} |
| data.title | string | 算法导论(原书第3版) |
| data.author | string | Thomas H.Cormen |
| data.publisher | string | 机械工业出版社 |
| data.publishDate | string | 2013-01-01 |