|
免费注册
联系我们

专利价值评估 [P052]转化前景-市场前景指标

[P052]转化前景-市场前景指标公开V1
输入相似专利列表,获取技术转化前景-市场前景指标数据,包括:最高专利价值、行业发展热度、技术应用宽度、原始申请人数量
注意:最多支持传100条相似专利进行指标计算

基本信息

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

请求方式: post

返回格式: application/json

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

接口说明文档下载

请求参数

body
PatentMarketRequest
ParameterTypeRequiredDescriptionSample
patent_infoarraytrue

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

注意:

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

2. 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%" } ]
year_thresholdintegerfalse
申请年计算范围,用于行业发展热度计算(默认值 3)
3
ipc_cnt_thresholdintegerfalse
IPC数量阈值,用于技术应用宽度计算(默认值 5)
5
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/market_prospect?apikey="
-H "Content-Type:application/json"
-H "authorization:Bearer {token}"
-d '{"patent_info":[{"pn":"US11205304B2","patent_id":"718ead9c-4f3c-4674-8f5a-24e126827269","relevancy":"99%"}],"year_threshold":3,"ipc_cnt_threshold":5}'
const axios = require('axios');
const options = {
    url: "https://connect.zhihuiya.com/patent-valuation-data/market_prospect",
    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%"
            }
        ],
        "year_threshold": 3,
        "ipc_cnt_threshold": 5
    }
};
axios(options).then(res => {
    console.log(res.data)
}).catch(err => {
    console.log(err)
})
import requests
url = "https://connect.zhihuiya.com/patent-valuation-data/market_prospect"

params = {
    "apikey": ""
}

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

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/market_prospect";

    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%\"}],\"year_threshold\":3,\"ipc_cnt_threshold\":5}");

    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
PatentMarketResponse
ParameterTypeRequiredDescriptionSample
indicators
objectfalse
市场前景指标
Please check the form: Indicators
patent_info
arrayfalse
专利详细信息
Please check the form: Patent_info
PatentInfoMarket
ParameterTypeRequiredDescriptionSample
pn
stringtrue
公开(公告)号
US11205304B2
value
integerfalse
专利价值
43000
ipc_cnt
integerfalse
专利的IPC数量
5
patent_id
stringtrue
专利Id
718ead9c-4f3c-4674-8f5a-24e126827269
original_assignee_cnt
integerfalse
专利原始申请人数量
1
IndicatorsMarket
ParameterTypeRequiredDescriptionSample
highest_patent_value
integerfalse
相似专利中最高的专利价值
43000
industry_development
arrayfalse
最高频IPC下的近N年申请的专利数量(N来源于输入参数)
[ 5, 7, 8 ]
tech_application_width
integerfalse
相似专利中IPC数量达到阈值的数量
10
original_assignee_count
integerfalse
统计相似专利的原始申请人数量
30

返回状态码

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": {
            "highest_patent_value": 43000,
            "industry_development": [
                5,
                7,
                8
            ],
            "tech_application_width": 10,
            "original_assignee_count": 30
        },
        "patent_info": [
            {
                "pn": "US11205304B2",
                "value": 43000,
                "ipc_cnt": 5,
                "patent_id": "718ead9c-4f3c-4674-8f5a-24e126827269",
                "original_assignee_cnt": 1
            }
        ]
    },
    "status": true,
    "error_code": 0
}
复制
[P051]可专利性指标
[P053]转化前景-运营情况指标