US Patents
Overview
This product provides metadata and raw text data for patent applications and grants from the United States Patent & Trademark Office (USPTO). The raw text (including the abstract text) of each patent makes the listing a good training set for LLMs.
To optimize the data for LLM use cases, we provide patent applications and grants in the following section breakdowns:
- Abstract
- Brief Description of Drawings
- Brief Summary
- Claims
- Cross Reference To Related Applications
- Detailed Description
- Federal Research Statement
- Full Text
- Government Interest
- Other Patent Relations
- Summary of Invention
Data Source
Sample Queries
Patents assigned to specific corporations
Find all patents where Nvidia is the designated assignee.
SELECT * FROM cybersyn.uspto_contributor_index AS contributor_index
INNER JOIN
cybersyn.uspto_patent_contributor_relationships AS relationships
ON (contributor_index.contributor_id = relationships.contributor_id)
INNER JOIN
cybersyn.uspto_patent_index AS patent_index
ON relationships.patent_id = patent_index.patent_id
WHERE contributor_index.contributor_name ILIKE 'NVIDIA CORPORATION'
AND relationships.contribution_type = 'Assignee - United States Company Or Corporation';
Patents by contributor
Search for patents by Steven P. Jobs.
SELECT * FROM cybersyn.uspto_contributor_index AS contributor_index
INNER JOIN
cybersyn.uspto_patent_contributor_relationships AS relationships
ON (contributor_index.contributor_id = relationships.contributor_id)
INNER JOIN
cybersyn.uspto_patent_index AS patent_index
ON relationships.patent_id = patent_index.patent_id
WHERE contributor_index.contributor_name ILIKE 'Steven P. Jobs';
Patents by associated keywords
Find all patents that include OLED in the title.
SELECT * FROM cybersyn.uspto_patent_index WHERE invention_title ILIKE ANY ('%OLED%');
Disclaimers
See the individual source pages for source-specific disclaimers. Links to provider terms, license, and disclaimers are provided where appropriate.
Cybersyn is not endorsed by or affiliated with any of these providers. Contact support@cybersyn.com for questions.