## 查询商标列表(新) ---- 本接口用于查询商标列表 ### 调用路径 > http://api.shuidi.cn/open/trademark/search ### 输入参数 |参数名称 | 是否必填 | 说明 | | -------- | -------- | -------- | |认证相关参数 | 是| 见接口认证章节说明 | |key | 是 | 查询关键词(商标名称、商标注册号、申请人/代理人名称) | |searchType | 否 | 查询类别(可能值为regno,name或applicant),默认查询此公司现有名的所有商标,根据关键词进行分散模糊匹配。 根据查询的类别在该类别中进行模糊匹配。 | |intCls | 否 | 国际分类号 | |pageIndex | 否 | 页码,查询页码列表信息,默认第一页 | |pageSize | 否 | 每页条数,默认10,最大不超过50 | {% include '../common/authenticate.md' %} ### 输出结果 {% include '../common/output_format.md' %} #### 输出样例 ```json { "statusCode": 1, "statusMessage": "请求成功", "data": { "paging": { "pageSize": 10, "pageIndex": 1, "totalRecords": 783 }, "result": [ { "id": "NPNRMNNOSONOR", "regNo": "35030609", "intCls": 9, "name": "", "appDate": "2018-11-30", "applicantCn": "小米科技有限责任公司", "applicantEn": "", "agent": "", "imageUrl": "http://api.shuidi.cn/open/trademark/download?key=78a82fd48c8b303abad7c428b15b4189.jpg", "flowStatus": "0", "flowStatusDesc": null, "status": "4", "hasImage": "true" }, { "id": "NPNQPQSTUUSRN", "regNo": "35042147", "intCls": 9, "name": "", "appDate": "2018-11-30", "applicantCn": "小米科技有限责任公司", "applicantEn": "", "agent": "", "imageUrl": "http://api.shuidi.cn/open/trademark/download?key=982f73960b8866c8bc832695d0bc5fe5.jpg", "flowStatus": "0", "flowStatusDesc": null, "status": "4", "hasImage": "true" }, { "id": "NPNMLLLPQTMRR", "regNo": "34980504", "intCls": 9, "name": "", "appDate": "2018-11-28", "applicantCn": "小米科技有限责任公司", "applicantEn": "", "agent": "", "imageUrl": "http://api.shuidi.cn/open/trademark/download?key=3dce8b2d12f57b71d55b8ea30b7dc45b.jpg", "flowStatus": "0", "flowStatusDesc": null, "status": "4", "hasImage": "true" } ], "groupItems": [ { "key": "appdateyear", "items": [ { "value": "2010", "desc": "2010", "count": 9 }, { "value": "2011", "desc": "2011", "count": 15 } ] }, { "key": "status", "items": [ { "value": "1", "desc": "有效", "count": 1 }, { "value": "2", "desc": "无效", "count": 20 }, { "value": "3", "desc": "待审", "count": 165 }, { "value": "4", "desc": "不定", "count": 597 } ] }, { "key": "flowno", "items": [ { "value": "0", "desc": "", "count": 20 }, { "value": "1000", "desc": "等待补正回文", "count": 1 }, { "value": "1002", "desc": "申请收文", "count": 1 } ] }, { "key": "intcls", "items": [ { "value": "9", "desc": "科学仪器", "count": 783 } ] } ] } } ``` #### 输出结果字段含义 | 属性名 | 含义 | | -------- | -------- | | paging.pageSize | 每页条数,默认10,最大不超过50 | | paging.pageIndex | 页码,查询页码列表信息,默认第一页 | | paging.totalRecords | 总记录数 | | groupItems.key | 分类key | | groupItems.items.value | 分类value | | groupItems.items.desc | 描述 | | groupItems.items.count | 总计数量 | | result.id | 内部ID | | result.regNo | 注册号 | | result.name | 商标名 | | result.intCls | 国际分类 | | result.applicantCn | 申请人中文 | | result.applicantEn | 申请人英文 | | result.agent | 代理人名称 | | result.hasImage | 是否有图片(true/false) | | result.imageUrl | 图片地址(多个中间用逗号隔开) | | result.flowStatus | 流程状态代码 | | result.flowStatusDesc | 流程状态描述 | | result.appDate | 申请日期 | | result.status | 商标状态 | {% include '../common/error_code.md'%}