Skip to content

Search: Patents

Patent filings with ISO 8601 dates and metadata. Use it for prior-art research, invention monitoring, and filing lookup.
const page = await google('compiler optimization', { type: 'patents' })

Result fields

FieldTypeDescription
titlestringPatent title
descriptionstringPatent abstract or summary
urlstringGoogle Patents URL
inventorstringInventor name
assigneestringAssignee organization
languagestringPatent language code
priority{ date }Priority date (ISO 8601)
filing{ date }Filing date (ISO 8601)
grant{ date }?Grant date (ISO 8601)
publication{ date, number }Publication date and number
pdf{ url }?Direct PDF link
thumbnail{ url }?Patent figure thumbnail
figuresarray?Patent figures with image and thumbnail objects
idstring?Patent identifier
const page = await google('compiler optimization', { type: 'patents' })

page.results[0]
// {
//   title: 'Prefetching associated with predicated load instructions',
//   inventor: 'Douglas C. Burger',
//   assignee: 'Microsoft Technology Licensing, Llc',
//   language: 'en',
//   url: 'https://patents.google.com/patent/US20170083338A1/en',
//   pdf: { url: 'https://patentimages.storage.googleapis.com/.../US20170083338A1.pdf' },
//   priority: { date: '2015-09-19T00:00:00.000Z' },
//   filing: { date: '2016-03-04T00:00:00.000Z' },
//   publication: { date: '2017-03-23T00:00:00.000Z', number: 'US20170083338A1' },
//   figures: [
//     { image: { url: 'https://...' }, thumbnail: { url: 'https://...' } }
//   ]
// }

See also

  • Scholar — for academic papers and citations instead of patent filings.
  • Content expansion — fetch the full patent page as HTML or Markdown.