聚美智数


企业商标查询

<h2>概述</h2> <p>企业商标查询包括: &lt;a href=&quot;#企业商标列表&quot;&gt;1. 企业商标列表&lt;/a&gt; &lt;a href=&quot;#企业商标详情&quot;&gt;2. 企业商标详情&lt;/a&gt;</p> <p>&lt;a name=&quot;企业商标列表&quot;&gt;&lt;/a&gt;</p> <h2>企业商标列表</h2> <h3>接口描述</h3> <ul> <li>根据企业名称或社会统一信用代码,查询企业商标,返回商标列表</li> <li>支持分页查询</li> </ul> <h3>请求地址</h3> <p><code>https://api.jumdata.com/enterprise/trademark/list</code></p> <h3>请求方式</h3> <ul> <li>GET/POST</li> </ul> <h3>请求格式</h3> <ul> <li>x-www-form-urlencoded</li> </ul> <h3>请求参数</h3> <table> <thead> <tr> <th>名称</th> <th>类型</th> <th>必须</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td>appId</td> <td>String</td> <td>是</td> <td>服务商分配的唯一标识</td> </tr> <tr> <td>timestamp</td> <td>long</td> <td>是</td> <td>当前时间的毫秒数</td> </tr> <tr> <td>sign</td> <td>String</td> <td>是</td> <td>签名,详见&lt;a href=&quot;#签名算法&quot;&gt;签名算法说明&lt;/a&gt;</td> </tr> <tr> <td>keyword</td> <td>String</td> <td>是</td> <td>公司名、注册号或社会统一信用代码</td> </tr> <tr> <td>pageNo</td> <td>int</td> <td>否</td> <td>页码,从1开始,默认1</td> </tr> <tr> <td>pageSize</td> <td>int</td> <td>否</td> <td>每页记录数,默认10,最大10</td> </tr> </tbody> </table> <h3>成功返回样例</h3> <pre><code class="language-json">{ &amp;quot;code&amp;quot;: 200, &amp;quot;msg&amp;quot;: &amp;quot;成功&amp;quot;, &amp;quot;taskNo&amp;quot;: &amp;quot;41020892700032664119&amp;quot;, // 本次请求号 &amp;quot;charge&amp;quot;: true, // 计费标志 &amp;quot;data&amp;quot;: { &amp;quot;page&amp;quot;: { // 分页结果 &amp;quot;pageNo&amp;quot;: 1, // 当前页号,从1开始 &amp;quot;pageSize&amp;quot;: 10, // 每页记录数 &amp;quot;recordCount&amp;quot;: 9 // 记录总数 }, &amp;quot;items&amp;quot;: [ { &amp;quot;Id&amp;quot;: 852396, // 商标id,可用该字段查询商标详情 &amp;quot;Name&amp;quot;: &amp;quot;天蝎项目&amp;quot;, // 商标名 &amp;quot;RegNo&amp;quot;: &amp;quot;11277536&amp;quot;, // 注册号 &amp;quot;Status&amp;quot;: 1, // 商标状态(1=商标已注册;2=商标无效;3=初审公告;4=等待实质审查;5=商标申请中;6=商标异议中;7=驳回复审中;8=商标其他情形;9=撤销/无效宣告申请审查中) &amp;quot;FlowStatus&amp;quot;: &amp;quot;2068&amp;quot;, // 流程状态代码 &amp;quot;FlowStatusDesc&amp;quot;: &amp;quot;驳回复审---等待打印注册证&amp;quot;, // 流程状态描述 &amp;quot;ImageUrl&amp;quot;: &amp;quot;https://img.jumdata.com/enterprise-trademark/852396.jpg&amp;quot;, // 图片地址 &amp;quot;IntCls&amp;quot;: 41, // 国际分类 &amp;quot;ApplicantCn&amp;quot;: &amp;quot;百度在线网络技术(北京)有限公司&amp;quot;, // 申请人中文 &amp;quot;ApplicantEn&amp;quot;: &amp;quot;&amp;quot;, // 申请人英文 &amp;quot;AppDate&amp;quot;: &amp;quot;2012-07-30 00:00:00&amp;quot;, // 申请日期 &amp;quot;Agent&amp;quot;: &amp;quot;北京天驰知识产权代理有限公司&amp;quot;, // 代理人名称 }, ... ] } }</code></pre> <h3>失败返回样例</h3> <pre><code class="language-json">{ &amp;quot;msg&amp;quot;: &amp;quot;关键字不能为空&amp;quot;, &amp;quot;code&amp;quot;: 400 // 详见code返回码说明 }</code></pre> <p>&lt;a name=&quot;企业商标详情&quot;&gt;&lt;/a&gt;</p> <h2>企业商标详情</h2> <h3>接口描述</h3> <ul> <li>商标列表接口返回的商标id,查询商标详细信息</li> </ul> <h3>请求地址</h3> <p><code>https://api.jumdata.com/enterprise/trademark/detail</code></p> <h3>请求方式</h3> <ul> <li>GET/POST</li> </ul> <h3>请求格式</h3> <ul> <li>x-www-form-urlencoded</li> </ul> <h3>请求参数</h3> <table> <thead> <tr> <th>名称</th> <th>类型</th> <th>必须</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td>appId</td> <td>String</td> <td>是</td> <td>服务商分配的唯一标识</td> </tr> <tr> <td>timestamp</td> <td>long</td> <td>是</td> <td>当前时间的毫秒数</td> </tr> <tr> <td>sign</td> <td>String</td> <td>是</td> <td>签名,详见&lt;a href=&quot;#签名算法&quot;&gt;签名算法说明&lt;/a&gt;</td> </tr> <tr> <td>id</td> <td>String</td> <td>是</td> <td>商标列表返回的商标id</td> </tr> </tbody> </table> <h3>成功返回样例</h3> <pre><code class="language-json">{ &amp;quot;code&amp;quot;: 200, &amp;quot;msg&amp;quot;: &amp;quot;成功&amp;quot;, &amp;quot;taskNo&amp;quot;: &amp;quot;22305752093907182628&amp;quot;, // 本次请求号 &amp;quot;charge&amp;quot;: true, // 计费标志 &amp;quot;data&amp;quot;: { &amp;quot;Id&amp;quot;: 785391, // 商标id &amp;quot;Name&amp;quot;: &amp;quot;开放数据中心&amp;quot;, // 商标名称 &amp;quot;RegNo&amp;quot;: &amp;quot;11270897&amp;quot;, // 注册号 &amp;quot;RegDate&amp;quot;: &amp;quot;2013-12-21 00:00:00&amp;quot;, // 注册公告日期 &amp;quot;RegIssue&amp;quot;: 1388, // 注册公告期号 &amp;quot;YouXianQuanDate &amp;quot;: &amp;quot;&amp;quot;, // 后期指定日期 &amp;quot;GuoJiZhuCeDate &amp;quot;: &amp;quot;&amp;quot;, // 国际注册日期 &amp;quot;HouQiZhiDingDate &amp;quot;: &amp;quot;&amp;quot;, // 优先权日期 &amp;quot;Status&amp;quot;: 1, // 商标状态。1=商标已注册;2=商标无效;3=初审公告;4=等待实质审查;5=商标申请中;6=商标异议中;7=驳回复审中;8=商标其他情形; &amp;quot;ApplicantCn&amp;quot;: &amp;quot;百度在线网络技术(北京)有限公司&amp;quot;, // 申请人中文 &amp;quot;ApplicantEn&amp;quot;: &amp;quot;&amp;quot;, // 申请人英文 &amp;quot;AddressCn&amp;quot;: &amp;quot;北京市海淀区上地十街10号百度大厦三层&amp;quot;, // 申请人地址中文 &amp;quot;AddressEn&amp;quot;: &amp;quot;&amp;quot;, // 申请人地址英文 &amp;quot;AppDate&amp;quot;: &amp;quot;2012-07-27 00:00:00&amp;quot;, // 申请日期 &amp;quot;Applicant1&amp;quot;: &amp;quot;阿里巴巴(中国)有限公司&amp;quot;, // 共有申请人1 &amp;quot;Applicant2&amp;quot;: &amp;quot;深圳市腾讯计算机系统有限公司&amp;quot;, // 共有申请人2 &amp;quot;AnnouncementDate&amp;quot;: &amp;quot;2013-09-20 00:00:00&amp;quot;, // 初审公告日期 &amp;quot;AnnouncementIssue&amp;quot;: 1376, // 初审公告期号 &amp;quot;Color&amp;quot;: &amp;quot;否&amp;quot;, // 指定颜色 &amp;quot;HasImage&amp;quot;: true, // 是否有图片 &amp;quot;ImageUrl&amp;quot;: &amp;quot;https://img.jumdata.com/enterprise-trademark/785391.jpg&amp;quot;, // 商标图片 &amp;quot;TmType&amp;quot;: 0, // 商标类型。0-普通商标 1-特殊商标 2-集体商标 3-证明商标 4-立体商标 5-声音商标 &amp;quot;TmStyle&amp;quot;: &amp;quot;&amp;quot;, // 商标形式 &amp;quot;IntCls&amp;quot;: 38, // 国际分类 &amp;quot;SimilarGroups&amp;quot;: &amp;quot;3802&amp;quot;, // 类似群 &amp;quot;IsShare&amp;quot;: 1, // 是否共有商标 &amp;quot;Agent&amp;quot;: &amp;quot;北京天驰知识产权代理有限公司&amp;quot; , // 代理人名称 &amp;quot;ValidPeriod&amp;quot;: &amp;quot;2013-12-21 00:00:00-2023-12-20 00:00:00&amp;quot;, // 专用权期限 &amp;quot;FlowStatus&amp;quot;: &amp;quot;2676&amp;quot;, // 流程状态代码 &amp;quot;FlowStatusDesc&amp;quot;: &amp;quot;商标注册申请---打印注册证&amp;quot;, // 流程状态描述 &amp;quot;FlowItems&amp;quot;: [ // 商标注册流程 { &amp;quot;FlowId&amp;quot;: &amp;quot;2676&amp;quot;, // 商标注册流程Id &amp;quot;FlowDate&amp;quot;: &amp;quot;2014-01-10 00:00:00&amp;quot;, // 商标注册流程步骤日期 &amp;quot;FlowItem&amp;quot;: &amp;quot;商标注册申请---打印注册证&amp;quot; // 商标注册流程步骤 }, ... ], &amp;quot;ListGroupItems&amp;quot;: [ // 商品/服务 &amp;quot;计算机辅助信息和图像传送(3802)&amp;quot;, &amp;quot;信息传送(3802)&amp;quot;, &amp;quot;提供全球计算机网络用户接入服务(3802)&amp;quot;, &amp;quot;提供与全球计算机网络的电讯联接服务(3802)&amp;quot;, &amp;quot;提供互联网聊天室(3802)&amp;quot;, &amp;quot;语音邮件服务(3802)&amp;quot;, &amp;quot;计算机终端通讯(3802)&amp;quot;, &amp;quot;提供数据库接入服务(3802)&amp;quot;, &amp;quot;电子邮件(3802)&amp;quot;, &amp;quot;电信信息(3802)&amp;quot; ] } }</code></pre> <h3>失败返回样例</h3> <pre><code class="language-json">{ &amp;quot;msg&amp;quot;: &amp;quot;商标id不能为空&amp;quot;, &amp;quot;code&amp;quot;: 400 // 详见code返回码说明 }</code></pre> <h2>通用说明</h2> <p>&lt;a name=&quot;签名算法&quot;&gt;&lt;/a&gt;</p> <h3>签名算法说明</h3> <p><code>sign = sha256(appId + appSecret + timestamp)</code></p> <p>用服务商分配的 appId、服务商分配的 appSecret,当前时间毫秒数 timestamp,按上述顺序拼接成字符串,再进行 sha256 哈希得到。如下:</p> <pre><code class="language-java">String appId = &amp;quot;xyzxy2121zxyz&amp;quot;; String timestamp = &amp;quot;1555378976238&amp;quot;; String appSecret = &amp;quot;efcefcef1121cefcefc1212121&amp;quot;; String str = appId + appSecret + timestamp; String sign = sha256(str);</code></pre> <p>&lt;a name=&quot;code返回码说明&quot;&gt;&lt;/a&gt;</p> <h3>code返回码说明</h3> <table> <thead> <tr> <th>code</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td>200</td> <td>成功(计费)</td> </tr> <tr> <td>400</td> <td>参数错误</td> </tr> <tr> <td>404</td> <td>接口地址不正确</td> </tr> <tr> <td>500</td> <td>系统维护,请稍候再试</td> </tr> <tr> <td>601</td> <td>接口未开通</td> </tr> <tr> <td>602</td> <td>账号停用</td> </tr> <tr> <td>603</td> <td>余额不足请充值</td> </tr> <tr> <td>604</td> <td>接口停用</td> </tr> <tr> <td>606</td> <td>调用超限,请稍候再试</td> </tr> <tr> <td>607</td> <td>ip不在白名单</td> </tr> <tr> <td>609</td> <td>请求过于频繁,请稍候再试</td> </tr> <tr> <td>610</td> <td>请求超时</td> </tr> <tr> <td>701</td> <td>查询无结果</td> </tr> <tr> <td>999</td> <td>其他,以实际返回为准</td> </tr> </tbody> </table>

页面列表

ITEM_HTML