|
免费注册
联系我们

专利数据搜索 [P008]语义检索相似专利

[P008]语义检索相似专利公开
该接口根据语义,搜索得到专利列表,最多返回前1000条相似专利,默认按照相似度从高到低排序。建议输入一段技术描述文本(如权利要求,建议200字以上),以获得更加相关的结果,语义搜索原理点击查看:https://help.zhihuiya.com/help/360007811592/article/360040181092?categoryId=360002609831&showTabs=false。

基本信息

接口地址: /search/patent/semantic-search-patent

请求方式: post

返回格式: application/json

登录后即可调试接口,点击 登录/注册

接口说明文档下载

请求参数

body
SemanticSearchRequest
ParameterTypeRequiredDescriptionSample
countryarrayfalse
允许输入 国家/地区/组织代码及申请类型。 国家/地区/组织代码请参照https://analytics.zhihuiya.com/status,类型请参照A: 发明申请,B: 授权发明,U: 实用新型,D: 外观设计。可以多选,多个内容项之间用英文,隔开。
[ "CNA", "CNB" ]
pbd_fromstringfalse
专利公开起始时间(8位数字的日期,或者*,*代表不限)
20200101
offsetintegerfalse
偏移量,limit + offset <= 20000(语义接口最多返回1000)
0
apd_fromstringfalse
专利申请起始时间(8位数字的日期,或者*,*代表不限)
20200101
limitintegerfalse
返回专利个数,最大1000
10
apd_tostringfalse
专利申请结束时间(8位数字的日期,或者*,*代表不限)
20220101
pbd_tostringfalse
专利公开结束时间(8位数字的日期,或者*,*代表不限)
20220101
relevancystringfalse
最小相似度;可以输入类似50%这样的来控制,本次只返回相似度大于50%的专利
50%
textstringtrue
大文本
The invention discloses an automobile front-view based wireless video transmission system and method. The system comprises a front-view camera, a wireless video transmitting module, a wireless video receiving module, a display screen, a display triggering device, a first controller, a wireless command transmitting module, a wireless command receiving module, a second controller and an automobile starting detecting module, wherein the display screen is connected with the wireless video receiving module; the front-view camera is connected with the wireless video transmitting module; the wireless video transmitting module is wirelessly connected with the wireless video receiving module and wirelessly transmits a video shot by the front-view camera; and the wireless video receiving module receives and sends the video and displays the video on the display screen, so that the mounting time of the front-view camera is shortened greatly, no damage can be caused to an original automobile, the front-view camera can be mounted without a threading manner, and great convenience is brought to the owner of the automobile.

请求示例

  • Curl
  • NodeJs
  • Python
  • Java
curl -X POST "https://connect.zhihuiya.com/search/patent/semantic-search-patent?apikey="
-H "Content-Type:application/json"
-H "authorization:Bearer {token}"
-d '{"text":"The invention discloses an automobile front-view based wireless video transmission system and method. The system comprises a front-view camera, a wireless video transmitting module, a wireless video receiving module, a display screen, a display triggering device, a first controller, a wireless command transmitting module, a wireless command receiving module, a second controller and an automobile starting detecting module, wherein the display screen is connected with the wireless video receiving module; the front-view camera is connected with the wireless video transmitting module; the wireless video transmitting module is wirelessly connected with the wireless video receiving module and wirelessly transmits a video shot by the front-view camera; and the wireless video receiving module receives and sends the video and displays the video on the display screen, so that the mounting time of the front-view camera is shortened greatly, no damage can be caused to an original automobile, the front-view camera can be mounted without a threading manner, and great convenience is brought to the owner of the automobile.","limit":10,"apd_to":20220101,"offset":0,"pbd_to":20220101,"country":["CNA","CNB"],"apd_from":20200101,"pbd_from":20200101,"relevancy":"50%"}'
const axios = require('axios');
const options = {
    url: "https://connect.zhihuiya.com/search/patent/semantic-search-patent",
    method: "POST",
    headers: {
        'Content-Type': 'application/json',
        'authorization': 'Bearer {token}',
    },
    params: {
        'apikey': '',
    },
    data: {
        "text": "The invention discloses an automobile front-view based wireless video transmission system and method. The system comprises a front-view camera, a wireless video transmitting module, a wireless video receiving module, a display screen, a display triggering device, a first controller, a wireless command transmitting module, a wireless command receiving module, a second controller and an automobile starting detecting module, wherein the display screen is connected with the wireless video receiving module; the front-view camera is connected with the wireless video transmitting module; the wireless video transmitting module is wirelessly connected with the wireless video receiving module and wirelessly transmits a video shot by the front-view camera; and the wireless video receiving module receives and sends the video and displays the video on the display screen, so that the mounting time of the front-view camera is shortened greatly, no damage can be caused to an original automobile, the front-view camera can be mounted without a threading manner, and great convenience is brought to the owner of the automobile.",
        "limit": 10,
        "apd_to": 20220101,
        "offset": 0,
        "pbd_to": 20220101,
        "country": [
            "CNA",
            "CNB"
        ],
        "apd_from": 20200101,
        "pbd_from": 20200101,
        "relevancy": "50%"
    }
};
axios(options).then(res => {
    console.log(res.data)
}).catch(err => {
    console.log(err)
})
import requests
url = "https://connect.zhihuiya.com/search/patent/semantic-search-patent"

params = {
    "apikey": ""
}

payload = {
    "text": "The invention discloses an automobile front-view based wireless video transmission system and method. The system comprises a front-view camera, a wireless video transmitting module, a wireless video receiving module, a display screen, a display triggering device, a first controller, a wireless command transmitting module, a wireless command receiving module, a second controller and an automobile starting detecting module, wherein the display screen is connected with the wireless video receiving module; the front-view camera is connected with the wireless video transmitting module; the wireless video transmitting module is wirelessly connected with the wireless video receiving module and wirelessly transmits a video shot by the front-view camera; and the wireless video receiving module receives and sends the video and displays the video on the display screen, so that the mounting time of the front-view camera is shortened greatly, no damage can be caused to an original automobile, the front-view camera can be mounted without a threading manner, and great convenience is brought to the owner of the automobile.",
    "limit": 10,
    "apd_to": 20220101,
    "offset": 0,
    "pbd_to": 20220101,
    "country": [
        "CNA",
        "CNB"
    ],
    "apd_from": 20200101,
    "pbd_from": 20200101,
    "relevancy": "50%"
}

headers = {
    "Content-Type": "application/json",
    "authorization": "Bearer {token}"
}

response = requests.request("POST", url, params=params, json=payload, headers=headers)

print(response.text)
public static void main(String[] args) {
    String host = "https://connect.zhihuiya.com";
    String path = "/search/patent/semantic-search-patent";

    Map headers = new HashMap();
    headers.put("Content-Type", "application/json");
    headers.put("authorization", "Bearer {token}");

    Map querys = new HashMap();
    querys.put("apikey", "");
    JSONObject dataBody = (JSONObject)JSON.parse("{\"text\":\"The invention discloses an automobile front-view based wireless video transmission system and method. The system comprises a front-view camera, a wireless video transmitting module, a wireless video receiving module, a display screen, a display triggering device, a first controller, a wireless command transmitting module, a wireless command receiving module, a second controller and an automobile starting detecting module, wherein the display screen is connected with the wireless video receiving module; the front-view camera is connected with the wireless video transmitting module; the wireless video transmitting module is wirelessly connected with the wireless video receiving module and wirelessly transmits a video shot by the front-view camera; and the wireless video receiving module receives and sends the video and displays the video on the display screen, so that the mounting time of the front-view camera is shortened greatly, no damage can be caused to an original automobile, the front-view camera can be mounted without a threading manner, and great convenience is brought to the owner of the automobile.\",\"limit\":10,\"apd_to\":20220101,\"offset\":0,\"pbd_to\":20220101,\"country\":[\"CNA\",\"CNB\"],\"apd_from\":20200101,\"pbd_from\":20200101,\"relevancy\":\"50%\"}");

    try {
        /**
        * Important Tips:
        * Please Download HttpUtils From
        * https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
        *
        * Please refer to the corresponding dependence:
        * https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
        */
        HttpResponse response = HttpUtils.doPost(host, path, null, headers, querys, dataBody.toJSONString());
        System.out.println(EntityUtils.toString(response.getEntity()));
    } catch (Exception e) {
        e.printStackTrace();
    }
}
复制

返回参数

CommonResponse
ParameterTypeRequiredDescriptionSample
data
objectfalse
响应数据
no sample
status
booleantrue
状态
false
error_msg
stringfalse
错误信息
The request parameter format is incorrect!
error_code
integertrue
错误代码
0
SearchComputeResponse
ParameterTypeRequiredDescriptionSample
results
arrayfalse
查询结果
Please check the form: SemanticResult
result_count
integerfalse
返回结果数
10
total_search_result_count
integerfalse
检索到的结果数
1000
SemanticResult
ParameterTypeRequiredDescriptionSample
pn
stringfalse
公开(公告)号
JP1999068462A
patent_id
stringfalse
专利Id
1a47a70d-6b54-4709-a72a-ed552781fcac
relevancy
stringfalse
搜索结果与输入文本的相关性
99%

返回状态码

error_codeDescription
0请求成功
201Created
401Unauthorized
403Forbidden
404Not Found
68300004请求参数异常!
68300005查询Api失败!
68300006解析基本存取错误!
68300007存在错误的请求!
68300008服务中断异常,请稍后再试!
68300010文件不符合上传规范!
67200001API整体限流错误!
67200002用户调用请求限流限制错误!
67200003申请token的key和secret不正确或者状态错误!
67200004无权限或该接口的套餐已超过系统设置的上限!
67200005账户余额不足,调用失败!
67200006客户端已过期,调用失败!

返回示例

  • json
{
    "data": {
        "results": [
            {
                "pn": "JP1999068462A",
                "patent_id": "1a47a70d-6b54-4709-a72a-ed552781fcac",
                "relevancy": "99%"
            }
        ],
        "result_count": 10,
        "total_search_result_count": 1000
    },
    "status": true,
    "error_code": 0
}
复制
[P007]专利号检索相似专利
[P010]上传图片获取专利图像检索URL