|
and Register
Home
Contact Us

Technology Report API [A005]Most Cited Patents

[A005]Most Cited PatentsPublicV1
View the top records that have been cited most frequently by other records to understand which records are more prolific and have had their technology built upon by others. These patents are likely to be more influential and may represent the core, innovative technology of the organization it represents. Returns at most Top 10 patent information.
Note: Search must contain either keywords or IPC. If search contains both parameters, IPC will be prioritized.

Basic Information

Resource URL: /insights/most-cited

Request Mode: get

Return Format: application/json

The API can only be called after logging in, click to log in

API Description Document Download

Request Parameters

query
ParameterTypeRequiredDescriptionSample
keywordsstringfalse
Searches for keywords within patent title and summary. Supports AND, OR, NOT search logic, for example "mobile phone AND (screen OR battery)".
car
ipcstringfalse
Patent IPC classification
B66B11
apply_start_timestringfalse
Patent apply date from, format:yyyy
2010
apply_end_timestringfalse
Patent apply date to, format:yyyy
2020
public_start_timestringfalse
Patent publication date from, format:yyyy
2010
public_end_timestringfalse
Patent publication date to, format:yyyy
2020
authoritystringfalse
Select the authority of the patent, the default query all databases, eg CN、US、EP、JP. To find more information, refer to https://analytics.zhihuiya.com/status. Example: US OR EP
CN

Request Sample

  • Curl
  • NodeJs
  • Python
  • Java
curl -X GET "https://connect.patsnap.com/insights/most-cited?keywords=car&ipc=B66B11&apply_start_time=2010&apply_end_time=2020&public_start_time=2010&public_end_time=2020&authority=CN&apikey="
-H "Content-Type:application/json"
-H "authorization:Bearer {token}"
const axios = require('axios');
const options = {
    url: "https://connect.patsnap.com/insights/most-cited",
    method: "GET",
    headers: {
        'Content-Type': 'application/json',
        'authorization': 'Bearer {token}',
    },
    params: {
        'keywords': 'car',
        'ipc': 'B66B11',
        'apply_start_time': '2010',
        'apply_end_time': '2020',
        'public_start_time': '2010',
        'public_end_time': '2020',
        'authority': 'CN',
        'apikey': '',
    },
};
axios(options).then(res => {
    console.log(res.data)
}).catch(err => {
    console.log(err)
})
import requests
url = "https://connect.patsnap.com/insights/most-cited"

params = {
    "keywords": "car",
    "ipc": "B66B11",
    "apply_start_time": "2010",
    "apply_end_time": "2020",
    "public_start_time": "2010",
    "public_end_time": "2020",
    "authority": "CN",
    "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.patsnap.com";
    String path = "/insights/most-cited";

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

    Map querys = new HashMap();
    querys.put("keywords", "car");
    querys.put("ipc", "B66B11");
    querys.put("apply_start_time", "2010");
    querys.put("apply_end_time", "2020");
    querys.put("public_start_time", "2010");
    querys.put("public_end_time", "2020");
    querys.put("authority", "CN");
    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();
    }
}
Copy

Response Parameters

CommonResponse
ParameterTypeRequiredDescriptionSample
data
arrayfalse
response data
no sample
status
booleantrue
Status
false
error_msg
stringfalse
Error Message
The request parameter format is incorrect!
error_code
integertrue
Error Code
0
MostCitedResponse
ParameterTypeRequiredDescriptionSample
count
integerfalse
cited by count
3
title
stringfalse
patent title
RFID applications
patent_id
stringfalse
patent ID
dd194043-93a3-467c-839c-b00d06273595
patent_num
stringfalse
patents
US8410617B2

Response Error Details

error_codeDescription
0Success
68300004Invalid parameter!
68300005Search api failure!
68300006Analytic basic access error!
68300007Bad request!
68300008Service error, please try again later!
68300010The file does not comply with upload specifications!
67200001API call exceeds the total limit set by the platform!
67200002Quota exceeds the limit!
67200003Access token expired or authentication error!
67200004No permission or API package quota has exceeded the limit!
67200005Insufficient balance, call failed!
67200006This client has expired and call failed!

Response Body

  • json
{
    "data": [
        {
            "count": 3,
            "title": "RFID applications",
            "patent_id": "dd194043-93a3-467c-839c-b00d06273595",
            "patent_num": "US8410617B2"
        }
    ],
    "status": true,
    "error_code": 0
}
Copy
[A004]Top authorities of Origin
[A006]Top Inventors