{
  "openapi": "3.0.3",
  "info": {
    "title": "ISBN图书查询",
    "description": "通过国际图书号查询图书相关信息，目前只支持查询978开头的图书号和部分上世纪8/90年代的10位isbn编码图书。可查询到的基本信息包含：书名、作者、出版社、价格、出版日期、印次、装帧方式，畅销热度等",
    "termsOfService": "https://www.showapi.com/helpcenter/view#/4019/2",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://route.showapi.com"
    }
  ],
  "paths": {
    "/1626-1": {
      "x-pointCode": 1,
      "x-mode": "mapping",
      "x-read-timeout": 55,
      "x-connect-timeout": 10,
      "post": {
        "summary": "图书ISBN查询",
        "description": "万维易源图书ISBN查询api接口，通过图书号，查询出图书的基本信息。",
        "responses": {
          "200": {
            "description": "成功响应",
            "content": {
              "application/json": {
                "schema": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/ShowapiResEnvelope"
                    },
                    {
                      "type": "object",
                      "properties": {
                        "showapi_res_body": {
                          "type": "object",
                          "properties": {
                            "ret_code": {
                              "type": "number",
                              "description": "0表示调用成功，其他表示调用失败，没有找到"
                            },
                            "remark": {
                              "type": "string",
                              "description": "错误信息"
                            },
                            "data": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "title": {
                                    "type": "string",
                                    "description": "图书名称"
                                  },
                                  "author": {
                                    "type": "string",
                                    "description": "作者"
                                  },
                                  "publisher": {
                                    "type": "string",
                                    "description": "出版社"
                                  },
                                  "pubdate": {
                                    "type": "string",
                                    "description": "出版时间"
                                  },
                                  "edition": {
                                    "type": "string",
                                    "description": "版次"
                                  },
                                  "page": {
                                    "type": "string",
                                    "description": "页数"
                                  },
                                  "produce": {
                                    "type": "string",
                                    "description": "请填写参数描述"
                                  },
                                  "format": {
                                    "type": "string",
                                    "description": "开本"
                                  },
                                  "paper": {
                                    "type": "string",
                                    "description": "胶版纸"
                                  },
                                  "binding": {
                                    "type": "string",
                                    "description": "装帧"
                                  },
                                  "isbn": {
                                    "type": "string",
                                    "description": "ISBN号"
                                  },
                                  "price": {
                                    "type": "string",
                                    "description": "定价"
                                  },
                                  "gist": {
                                    "type": "string",
                                    "description": "内容简介"
                                  },
                                  "img": {
                                    "type": "string",
                                    "description": "图片下载链接"
                                  }
                                }
                              },
                              "description": "图书详细信息"
                            }
                          },
                          "description": "业务返回体"
                        }
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "1626_1_POST",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "object",
                "properties": {
                  "isbn": {
                    "type": "string",
                    "description": "isbn号"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "AppKeyAuth": {
        "type": "apiKey",
        "in": "query",
        "name": "appKey",
        "description": "从 ShowAPI 控制台获取的 appKey，管理地址：https://www.showapi.com/console#/myApp"
      }
    },
    "schemas": {
      "ShowapiResEnvelope": {
        "type": "object",
        "description": "ShowAPI 统一返回包裹（业务数据位于 showapi_res_body）",
        "properties": {
          "showapi_res_code": {
            "type": "integer",
            "description": "API 返回的状态码"
          },
          "showapi_res_error": {
            "type": "string",
            "description": "API 返回的错误信息"
          },
          "showapi_res_id": {
            "type": "string",
            "description": "API 请求的唯一标识"
          },
          "showapi_fee_num": {
            "type": "integer",
            "description": "API 调用计费次数"
          }
        }
      }
    }
  },
  "security": [
    {
      "AppKeyAuth": []
    }
  ],
  "externalDocs": {
    "url": "https://www.showapi.com/apiGateway/view/1626?tab=book"
  },
  "x-apiCode": "1626",
  "x-is-own": true,
  "x-is-op": true
}