|
免费注册
联系我们

专利价值评估 [P051]可专利性指标

[P051]可专利性指标公开V1
输入相似专利列表,获取技术可专利性评价指标数据,包括:多权利要求专利数、专利复审无效数量、专利平均维持年限和授权率
注意:最多支持传100条相似专利进行指标计算

基本信息

接口地址: /patent-valuation-data/patent_ability

请求方式: post

返回格式: application/json

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

接口说明文档下载

请求参数

body
PatentAbilityRequest
ParameterTypeRequiredDescriptionSample
patent_infoarraytrue

相似专利信息列表,最多支持传100条相似专利进行指标计算。

注意:

patent_id和pn必须要有一个,如果两个都存在,会优先使用专利patent_id

patent_id或pn必须是智慧芽数据库中的专利ID和公开号

[ { "pn": "CN113556455A", "patent_id": "d827b76d-3a0e-40a5-b63d-b8a47eb8d0f6", "relevancy": "74%" }, { "pn": "CN111634234A", "patent_id": "0e70c3f3-644d-4f65-abad-ad5630911dde", "relevancy": "73%" } ]
claim_cnt_thresholdintegerfalse
权利要求数阈值,用于多权利要求专利数计算(默认值 10)
10
TechPatentInfo
ParameterTypeRequiredDescriptionSample
patent_idstringtrue
专利Id
718ead9c-4f3c-4674-8f5a-24e126827269
relevancystringfalse
搜索结果与输入文本的相关性
99%
pnstringtrue
公开(公告)号
US11205304B2

请求示例

  • Curl
  • NodeJs
  • Python
  • Java
curl -X POST "https://connect.zhihuiya.com/patent-valuation-data/patent_ability?apikey="
-H "Content-Type:application/json"
-H "authorization:Bearer {token}"
-d '{"patent_info":[{"pn":"US11205304B2","patent_id":"718ead9c-4f3c-4674-8f5a-24e126827269","relevancy":"99%"}],"claim_cnt_threshold":10}'
const axios = require('axios');
const options = {
    url: "https://connect.zhihuiya.com/patent-valuation-data/patent_ability",
    method: "POST",
    headers: {
        'Content-Type': 'application/json',
        'authorization': 'Bearer {token}',
    },
    params: {
        'apikey': '',
    },
    data: {
        "patent_info": [
            {
                "pn": "US11205304B2",
                "patent_id": "718ead9c-4f3c-4674-8f5a-24e126827269",
                "relevancy": "99%"
            }
        ],
        "claim_cnt_threshold": 10
    }
};
axios(options).then(res => {
    console.log(res.data)
}).catch(err => {
    console.log(err)
})
import requests
url = "https://connect.zhihuiya.com/patent-valuation-data/patent_ability"

params = {
    "apikey": ""
}

payload = {
    "patent_info": [
        {
            "pn": "US11205304B2",
            "patent_id": "718ead9c-4f3c-4674-8f5a-24e126827269",
            "relevancy": "99%"
        }
    ],
    "claim_cnt_threshold": 10
}

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 = "/patent-valuation-data/patent_ability";

    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("{\"patent_info\":[{\"pn\":\"US11205304B2\",\"patent_id\":\"718ead9c-4f3c-4674-8f5a-24e126827269\",\"relevancy\":\"99%\"}],\"claim_cnt_threshold\":10}");

    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
PatentAbilityResponse
ParameterTypeRequiredDescriptionSample
indicators
objectfalse
技术创新性指标
95
patent_info
arraytrue
专利详细信息
[ { "pn": "US11205304B2", "reexam": 1, "claim_cnt": 10, "patent_id": "718ead9c-4f3c-4674-8f5a-24e126827269", "is_granted": 1, "validity_duration": 5.1 }, { "pn": "CN113556455A", "reexam": 0, "claim_cnt": 5, "patent_id": "d827b76d-3a0e-40a5-b63d-b8a47eb8d0f6", "is_granted": 1, "validity_duration": 2.2 } ]
IndicatorAbility
ParameterTypeRequiredDescriptionSample
granted_ratio
numbertrue
相似专利授权率
0.65
patent_reexam_count
integertrue
相似专利中存在复审事件的专利数
10
avg_validity_duration
numbertrue
相似发明专利平均维持年限
5.1
multiple_claims_patent_count
integertrue
权利要求数据达到阈值的相似专利数
10

返回状态码

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

返回示例

  • json
{
    "data": {
        "indicators": {
            "granted_ratio": 0.65,
            "patent_reexam_count": 10,
            "avg_validity_duration": 5.1,
            "multiple_claims_patent_count": 10
        },
        "patent_info": [
            {
                "pn": "US11205304B2",
                "reexam": 1,
                "claim_cnt": 10,
                "patent_id": "718ead9c-4f3c-4674-8f5a-24e126827269",
                "is_granted": 1,
                "validity_duration": 5.1
            },
            {
                "pn": "CN113556455A",
                "reexam": 0,
                "claim_cnt": 5,
                "patent_id": "d827b76d-3a0e-40a5-b63d-b8a47eb8d0f6",
                "is_granted": 1,
                "validity_duration": 2.2
            }
        ]
    },
    "status": true,
    "error_code": 0
}
复制
[P050]技术创新性指标
[P052]转化前景-市场前景指标