ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

jisu-isbn

使用极速数据 ISBN 图书书号查询 API,通过 ISBN 查询图书详细信息,并支持按书名关键字搜索图书列表。

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/jisuapi/isbn
Or

极速数据 ISBN 图书书号查询(Jisu ISBN)

基于 ISBN 图书书号查询 API 的 OpenClaw 技能,支持:

  • ISBN 精确查询:通过 10 位或 13 位 ISBN 查询图书详细信息;
  • 关键字搜索:通过书名关键字搜索图书列表,获取书名、作者、封面及 ISBN。

使用技能前需要申请数据,申请地址:https://www.jisuapi.com/api/isbn/

环境变量配置

# Linux / macOS
export JISU_API_KEY="your_appkey_here"

# Windows PowerShell
$env:JISU_API_KEY="your_appkey_here"

脚本路径

脚本文件:skills/isbn/isbn.py

使用方式

1. 按 ISBN 查询图书信息

python3 skills/isbn/isbn.py '{"isbn":"9787212058937"}'

请求 JSON:

{
  "isbn": "9787212058937"
}

2. 按关键字搜索图书(/isbn/search)

python3 skills/isbn/isbn.py search '{"keyword":"老人与海","pagenum":1}'

请求 JSON:

{
  "keyword": "老人与海",
  "pagenum": 1
}

其中 pagenum 为可选,默认第一页,每页 20 条。

请求参数

ISBN 查询

字段名类型必填说明
isbnstring10 位或 13 位 ISBN

关键字搜索

字段名类型必填说明
keywordstring书名关键字
pagenumint页码(默认第一页,一页 20 条)

返回结果示例

ISBN 查询返回(简化)

脚本直接输出接口 result 字段,结构与官网示例一致(参考 https://api.jisuapi.com/api/isbn/):

{
  "title": "有理想就有疼痛",
  "subtitle": "中国当代文化名人访谈录",
  "pic": "http://api.jisuapi.com/isbn/upload/96/033c435b3f0f30.jpg",
  "author": "高晓春",
  "summary": "……",
  "publisher": "安徽人民出版社",
  "pubplace": "合肥",
  "pubdate": "2013-01",
  "page": 256,
  "price": "29.00",
  "binding": "",
  "isbn": "9787212058937",
  "isbn10": "7212058939",
  "keyword": "名人-访问记-中国-现代",
  "cip": "2012280296",
  "edition": "1版",
  "impression": "1",
  "language": "",
  "format": "23×18",
  "class": "K820.76",
  "sellerlist": [
    {
      "seller": "当当",
      "price": "20.80",
      "link": "http://product.dangdang.com/22921241.html"
    }
  ]
}

关键字搜索返回(简化)

{
  "keyword": "老人与海",
  "total": 10000,
  "pagenum": 1,
  "pagesize": 20,
  "list": [
    {
      "title": "老人与海",
      "author": " (美) 海明威, 著",
      "pic": "https://api.jisuapi.com/isbn//upload/99/780099.jpg",
      "isbn": "9787511024817"
    }
  ]
}

当出现错误(如 ISBN 不正确或无数据)时,脚本会输出:

{
  "error": "api_error",
  "code": 202,
  "message": "ISBN不正确"
}

常见错误码

来源于 官方 ISBN 文档

代号说明
201ISBN 为空
202ISBN 不正确
205没有信息

系统错误码:

代号说明
101APPKEY 为空或不存在
102APPKEY 已过期
103APPKEY 无请求权限
104请求超过次数限制
105IP 被禁止

在 OpenClaw 中的推荐用法

  1. 用户提供 ISBN:「帮我查一下 ISBN 9787212058937 这本书的信息」。

Metadata

Author@jisuapi
Stars1947
Views0
Updated2026-03-04
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-jisuapi-isbn": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.