__近似查询__
近似查询主要就是查找是否跟您要查询的商标名称类似的
__请求地址__
>POST https://chaolong.com/tmapi/search/tm_name_like?appid={APPID}&token={TOKEN}
__请求参数说明__
| 参数 | 类型 | 必填 | 说明 |
| :---: | :---: | :---: | :---: |
| appid | string | 是 | 申请时给到您的 |
| token | string | 是 | md5加密`APPID`+`时间戳`+`APPSECRET` |
| data | json | 是 | AES加密后的数据 |
__POST data数据说明__
| 参数 | 类型 | 说明 |
| :---: | :---: | :---: |
| timestamp | number | 时间戳 |
| key | string | 关键词,不能小于2个字符 |
| cls | string | 商标大类 |
| page | number | 分页数 |
>以下是基本操作方法,各位可以根据自己的习惯优化下面的代码
__POST数据示例__
```
PHP示例
<?php
require_once 'common.php';
use Aes\Aes;
$config = [
'appid' => '', //提供给你的Appid
'appsecret' => '' //提供给你的Appsecret
];
$aes = new Aes();
$timestamp = time();
$token = md5($config['appid'] . $timestamp . $config['appsecret']);
$url = 'https://chaolong.com/tmapi/search/tm_name_like?appid=' . $config['appid'] . '&token=' . $token;
$data = $aes->encode(json_encode([
'timestamp' => $timestamp,
'key' => '阿里',
'cls' => '', //如果需要指定查询的大类,如01类,输入01
'page' => 1 //指定分页
]), $config['appid'], $config['appsecret']);
$rs = curl($url, 1, ['data' => $data]);
//返回的是json格式
echo $rs;
?>
```
__返回数据说明__
| 参数 | 类型 | 说明 |
| :---: | :---: | :---: |
| status | string | 状态 |
| message | string | 状态描述 |
| data | array | 返回的数据 |
__返回data参数说明__
| 参数 | 类型 | 说明 |
| :---: | :---: | :---: |
| count | number | 是否有分页,0-没有下一页,1-有下一页 |
| list | array | 商标数据 |
| cate | array | 其中包含的分类列表 |
| version | string | 版本日期 |
__返回list参数说明__
| 参数 | 类型 | 说明 |
| :---: | :---: | :---: |
| id | number | ID |
| reg_no | number | 商标注册号 |
| cls | number | 商标大类 |
| reg_date | string | 申请日期 |
| name | string | 商标名称 |
| name_py | string | 商标名称转化的拼音 |
| agent_id | string | 代理人ID |
| first_no | number | 初审公告号 |
| first_date | string | 初审公告日期 |
| last_no | number | 注册公告号 |
| last_date | string | 注册公告日期 |
| use_start | string | 有效期开始 |
| use_end | string | 有效期结束 |
| c_name | string | 申请人名称 |
| status | string | 申请状态 |
| reg_no_id | string | 详情页的ID |
__返回数据示例__
```
{
"status": "success",
"message": "查询成功",
"data": {
"count": 0,
"list": [
{
"id": "9880488",
"reg_no": "11827886",
"cls": "45",
"reg_date": "2012-11-30",
"name": "阿里云计算",
"name_py": "aliyunjisuan",
"agent_id": "00000458",
"first_no": "1395",
"first_date": "2014-02-13",
"last_no": "1407",
"last_date": "2014-05-14",
"use_start": "2014-05-14",
"use_end": "2024-05-13",
"c_name": "阿里巴巴集团控股有限公司",
"status": "注册成功",
"reg_no_id": "K283YWc3M2w5MmZhZmwvb2JkblhtQT09"
},
...
],
"cate": [
{
"reg_no": "11827886",
"cls": "45",
"total": "1"
},
...
],
"version": "2020-01-08"
```