uspto-patents-view-api

0.0.13 • Public • Published

Patent View Api

CI Job CodeFactor Codacy Badge npm version

Checkout all the granted patents over the last 50 years.

API Description

Examples of the

Shared arguments:

  • dataPoints - fields you want in your response;
    • example: ["patent_number", "date"]
  • sortBy - how you would like your results sorting in the response
    • example: [{"patent_number":"desc"}]

All endpoints support pagination, thus all endpoint's args object will have the following properties

{
  pageSize?: number;
  pages?: number;
}
  • Endpoints
    • Patents - retrieve details about patents and inventors
      • Range - Get all the patents between a period of time
        • /*
            RangeArgs: {
              startDate: string;
              endDate: string;
            }
          */
          const resp = await new Range().between({
            args: RangeArgs;
            dataPoints: DataPoints;
            sortBy?: SortingOptions;
          })

Package Sidebar

Install

npm i uspto-patents-view-api

Weekly Downloads

7

Version

0.0.13

License

MIT

Unpacked Size

126 kB

Total Files

52

Last publish

Collaborators

  • dills1220