Questions tagged [patentsview]

PatentsView is a visualization, data dissemination, and analysis platform that focuses on intellectual property (IP) data. Use this tag for API calls to patentsview.org.

Patentsview API and bulk data

Questions about using the Patentsview API or its bulk data should be tagged . patents.stackexchange might be a good place to ask general questions about patents. There is also a forum on the Patentsview website.


History

The beta version of the Patentsview API was made public in December 2015 as a joint project with the United States Patent and Trademark Office (USPTO) and several organizations, as listed on What Is Patentsview.


Original API Version

The urls for the API's endpoints have changed over time, as you may have noticed in older questions and answers. The current ones for the original version of the API can be seen on the Swagger UI page here.


New Version of the API

In 2021 the Patentsview Team announced upcoming API changes. One of the changes makes a new Swagger UI page available for the new version of the API. Another change requires that an API key is sent in a request header. API keys can be requested here. Please be careful not to share your API key when asking or answering an API question. The original version of the API and the new version will both run until at least the end of 2022, when the Patentsvew Team plans to shutdown the original version of the API.


Disambiguation

The Patentsview team tries to disambiguate inventors, assignees and locations, see PatentsView Project Disambiguation Algorithms.


Bulk Data

The Patentsview team makes their aggregated data available on their download page. They ingest data the US Patent Office makes available on their bulk data page. Note that the Patentsview online database and bulk files are updated roughly quarterly.


Python Wrapper

The Patentsview Team also wrote a python wrapper for the original version of the API that produces csv files. They also have a code snippets repo.


R Package

There is an R package for the current version of the API, written by Chris Baker. An updated package is being worked on for the new version of the API.

Patentsview's content is licensed under a Creative Commons Attribution 4.0 License.

9 questions
3
votes
2 answers

Patentsview API Python 3.4

I am beginner in python, currently working on a small project with Python. I want to build a dynamic script for patent research for patentsview.org. Here is my code: import urllib.parse import…
Max
  • 31
  • 5
3
votes
2 answers

Querying PatentsView for patents of multiple assignee organization

I am trying to fetch patents of multiple organizations from PatentsView. Examples are available at http://www.patentsview.org/api/query-language.html This is my query: import csv import requests import json # Use this format for GET requests url =…
kurious
  • 1,024
  • 10
  • 29
2
votes
1 answer

Convert patentsview API data returned as nested JSON into a pandas dataframe

I am trying to convert a JSON derived from the patentsview API into a pandas dataframe. However it is difficult because it seems to be a nested JSON! Here is my code: import requests import pandas as pd from pandas.io.json import…
Asumi Ikue
  • 21
  • 1
0
votes
0 answers

Obtaining data in a dataframe after PatentsView request (search_pv) in R

I am trying to extract some patent data from PatentsView using R and the patentsview package. I have specified the queries and fields and run the search_pv to obtain the data. This is my code: # Define query: query1 = with_qfuns( and( …
Cecilia
  • 19
  • 4
0
votes
1 answer

How do you get a detailed description text on a given patent?

I am looking at PatentsView API and it's unclear how to retrieve the full text of a patent. It contains only the detail_desc_length not the actual detailed description. I would like to preform the following on both the patent_abstract and the…
0x90
  • 39,472
  • 36
  • 165
  • 245
0
votes
0 answers

Why am I having a problem downloading patent data with "patentsview" in R

I am trying to fetch patent data with the "patentsview" package in R but I am always getting an error and I couldn't find the solution anywhere. Here's my code - # Load library library(patentsview) # Write query query <- with_qfuns( and( …
0
votes
2 answers

PatentsView API Call

Previously my calls to PatentsView were working. Specifically, I recall running the below code block (from another stackoverflow post) and getting a non-error output. Now I'm getting a 400 error. What might have changed to cause this? Perhaps the…
0
votes
2 answers

How do I correct the syntax and formatting in this script?

I am trying to specify the fields needed by adding the "f" argument to the GET API call (see here: Patentsview API Python 3.4). I believe the problem is my formatting and syntax. I've tried adding curly brackets in several different ways to the "q"…
0
votes
1 answer

API Query Syntax - JSON object could not be decoded

This relates to the Patentsview.org API. http://www.patentsview.org/api/uspc.html#field_list I would like to modify my current query to limit itself to one or more USPC IDs (US patent classification) I am using id=348 for my test case. Here is a…