lens_patent_status
Retrieve full patent details from Lens.org for a specific patent identified by its Lens ID. Returns comprehensive bibliographic data including title, abstract, applicants, inventors, owners, IPC/CPC classification, priority claims, and legal status. Requires a Lens.org API token.
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
| lensId | string | Yes | Lens.org patent identifier (e.g., 095-621-040-202-546). Obtained from lens_patent_search results. |
Example
Section titled “Example”Request
Section titled “Request”{ "name": "lens_patent_status", "arguments": { "lensId": "095-621-040-202-546" }}Response
Section titled “Response”{ "patent": { "id": "US-11234567", "applicationNumber": "16789012", "jurisdiction": "US", "title": "Machine Learning System for Natural Language Understanding", "status": "sealed", "filingDate": "2019-08-22", "priorityDate": "2018-12-15", "expiryDate": "2039-08-22", "applicants": [ { "name": "OpenAI Inc" } ], "inventors": [ { "name": "DOE, Jane M." }, { "name": "KUMAR, Rajesh" } ], "owners": [ { "name": "OpenAI Inc" } ], "ipcClassification": [ { "code": "G06F 40/30" }, { "code": "G06N 3/08" } ], "cpcClassification": [ { "code": "G06F 40/30" }, { "code": "G06N 3/0895" } ], "conventionDetails": [ { "priorityCountryCode": "US", "applicationNumber": "62/780123", "filingDate": "2018-12-15" } ], "abstract": "A system and method for training large language models using transformer architectures with improved attention mechanisms for natural language understanding tasks.", "patentType": "B2" }, "currentStatus": { "code": "sealed", "description": "Patent granted and in force" }}- The
lensIdis a Lens.org-specific identifier (dash-separated numeric format). Uselens_patent_searchto discover Lens IDs for patents of interest. - The
patentTypefield contains the WIPO kind code:A1(published application with search report),A2(without search report),B1/B2(granted patent). - Status values and their meanings:
sealed— Patent granted and in forcefiled— Application pendingunder_examination— Application under examinationaccepted— Application acceptedceased— Patent discontinuedexpired— Patent term expiredlapsed— Patent lapsed (fees not paid)revoked— Patent revokedwithdrawn— Application withdrawnrefused— Application refused
- The
conventionDetailsarray lists priority claims, linking this patent to earlier applications in the same patent family. - Results are cached. Subsequent lookups for the same
lensIdreturn cached data.
Related Tools
Section titled “Related Tools”- lens_patent_search — search patents to find Lens IDs
- lens_prior_art — find prior art with scholarly-patent citation linkage
- ep_patent_status — get patent details via EPO OPS
- au_patent_status — get Australian patent details