Skip to content

patents
PRO

Type: 'patents'
Patent filings with ISO 8601 dates, figures, and PDF links. Pass type: 'patents' to search:
const { results } = await microlink.search('compiler optimization', { type: 'patents' })

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://…' } }]
// }
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
See the patents guide for prior-art workflows.