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 "detailed_desciption".
import httpx
url = 'https://api.patentsview.org/patents/query?q={"_and": [{"_gte":{"patent_date":"2001-01-01"}},{"_text_any":{"patent_abstract":"radar aircraft"}},{"_neq":{"assignee_lastknown_country":"US"}}]}&o:{"per_page": 1000}'
r=httpx.get(url)
r.json()