|
注册
首页
联系我们

专利价值评估 [P038]市场指标

[P038]市场指标公开V1
可以通过输入patent_id或patent_number查询具体某条专利专利价值中市场价值维度的详细计算内容。包含:同族大小、同族专利覆盖国家/地区/组织数量、专利引用数量、专利审查员引用数量等,详细字段可以在接口返回字段中查看。
注意:专利id和公开号两个参数必须要有一个,如果两个都存在,会优先使用专利id。 该接口支持批量请求,上限为100条,请求参数相互之间用英文,隔开。批量请求在进行流量/费用扣减的时候,会根据返回结果的成功条数进行多次扣减。

基本信息

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

请求方式: get

返回格式: application/json

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

接口说明文档下载

请求参数

query
ParameterTypeRequiredDescriptionSample
patent_idstringfalse
专利id
c3efa1e6-a2c3-4502-b5e7-97fcf570cfd3
patent_numberstringfalse
公开公告号
US5012236A

请求示例

  • Curl
  • NodeJs
  • Python
  • Java
curl -X GET "https://connect.zhihuiya.com/patent-valuation-data/market_indicators?patent_id=c3efa1e6-a2c3-4502-b5e7-97fcf570cfd3&patent_number=US5012236A&apikey="
-H "Content-Type:application/json"
-H "authorization:Bearer {token}"
const axios = require('axios');
const options = {
    url: "https://connect.zhihuiya.com/patent-valuation-data/market_indicators",
    method: "GET",
    headers: {
        'Content-Type': 'application/json',
        'authorization': 'Bearer {token}',
    },
    params: {
        'patent_id': 'c3efa1e6-a2c3-4502-b5e7-97fcf570cfd3',
        'patent_number': 'US5012236A',
        'apikey': '',
    },
};
axios(options).then(res => {
    console.log(res.data)
}).catch(err => {
    console.log(err)
})
import requests
url = "https://connect.zhihuiya.com/patent-valuation-data/market_indicators"

params = {
    "patent_id": "c3efa1e6-a2c3-4502-b5e7-97fcf570cfd3",
    "patent_number": "US5012236A",
    "apikey": ""
}

payload = None

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

response = requests.request("GET", url, params=params, data=payload, headers=headers)

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

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

    Map querys = new HashMap();
    querys.put("patent_id", "c3efa1e6-a2c3-4502-b5e7-97fcf570cfd3");
    querys.put("patent_number", "US5012236A");
    querys.put("apikey", "");
    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.doGet(host, path, null, headers, querys);
        System.out.println(EntityUtils.toString(response.getEntity()));
    } catch (Exception e) {
        e.printStackTrace();
    }
}
复制

返回参数

CommonResponse
ParameterTypeRequiredDescriptionSample
data
arrayfalse
响应数据
no sample
status
booleantrue
状态
false
error_msg
stringfalse
错误信息
The request parameter format is incorrect!
error_code
integertrue
错误代码
0
PatentMarketValueResponse
ParameterTypeRequiredDescriptionSample
pn
stringfalse
公开(公告)号
US11205304B2
patent_id
stringfalse
专利Id
718ead9c-4f3c-4674-8f5a-24e126827269
patsnap_market_value
objectfalse
市场指标
Please check the form: MarketValue
MarketValue
ParameterTypeRequiredDescriptionSample
cites_no
integerfalse
专利引用数量
5
family_size
integerfalse
同族大小
2
patent_type
stringfalse
专利类型:

APPLICATION发明申请,PATENT授权发明,UTILITY实用新型,DESIGN外观设计

Patent type:

APPLICATION,PATENT,UTILITY,DESIGN

PATENT
reference_no
integerfalse
文献引用数量(非专利引用数量)
1
examiner_cites_no
integerfalse
专利审查员引用数量
3
family_covered_country_no
integerfalse
同族专利覆盖国家/地区/组织数量
1

返回状态码

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

返回示例

  • json
{
    "data": [
        {
            "pn": "US11205304B2",
            "patent_id": "718ead9c-4f3c-4674-8f5a-24e126827269",
            "patsnap_market_value": {
                "cites_no": 5,
                "family_size": 2,
                "patent_type": "PATENT",
                "reference_no": 1,
                "examiner_cites_no": 3,
                "family_covered_country_no": 1
            }
        }
    ],
    "status": true,
    "error_code": 0
}
复制
[P037]法律指标
[P039]战略指标