书籍ISBN数据查询
最后更新于:2022-04-02 08:18:31
## 书籍ISBN数据查询
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/6a/cc/6acc297a2aed5372a00e99088fd736ee_170x149.png)
> 通过请求10位或13位的ISBN码可以反馈给用户相应的书籍信息和推荐指数
## 接口费用( [点击购买](https://market.topthink.com/product/372))
> 最低 0.02元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/book/isbn
```
### 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| appCode| 是 |string| 用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| sub | 是 | string | 10位或者13位的ISBN码 |
### 返回`data`参数
| 名称 | 类型 | 说明 |
| --- | --- | --- |
| levelNum | string | 推荐指数 |
| subtitle | string | 副标题 |
| author | string | 作者 |
| pubdate | string | 发版日期 |
| origin\_title | string | 源标题(国外源标题) |
| binding | string | 装订方式 |
| pages | string | 总页数 |
| images\_medium | string | 缩略图 |
| images\_large | string | 大图 |
| publisher | string | 出版社名称 |
| isbn10 | string | 10位ISBN码 |
| isbn13 | string | 13位ISBN码 |
| title | string | 书籍名称 |
| summary | string | 内容简介 |
| price | string | 销售价格 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->bookIsbn()
->withSub('9787544258975')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功的返回",
"data": {
"levelNum":"8.0",
"subtitle":"",
"author":" 加西亚·马尔克斯",
"pubdate":"2012-9-1",
"origin_title":El amor en los tiempos del cólera",
"binding":"精装",
"pages":"401",
"images_medium":"http://open.6api.net/mpic/s11284102.jpg",
"images_large":"http://open.6api.net/lpic/s11284102.jpg",
"publisher":"南海出版公司",
"isbn10":"7544258971",
"isbn13":"9787544258975",
"title":"霍乱时期的爱情",
"summary":"《霍乱时期的爱情》是加西亚•马尔克斯获得诺贝尔文学奖之后完成的第一部小说。讲述了一段跨越半个多世纪的爱情史诗,穷尽了所有爱情的可能性:忠贞的、隐秘的、粗暴的、羞怯的、柏拉图式的、放荡的、转瞬即逝的、生死相依的……再现了时光的无情流逝,被誉为“人类有史以来最伟大的爱情小说”,是20世纪最重要的经典文学巨著之一。",
"price":"39.50元"
}
}
~~~
';