Innovation & IP
Corporate Patents (USPTO)
Returns US patent applications keyed on the corporate applicant — the IP-holding entity that owns the filing — sourced from the USPTO Open Data Portal (ODP). Each record carries the bibliographic metadata for one application (title, applicants, inventors, filing dates, prosecution status); follow source_url to the USPTO Patent Center for the full file wrapper.
Endpoint
GET /v1/corporate-patentsSourceUSPTO Open Data Portal (ODP)
Authx-api-key — a free key works
What it returns
One record per result. Fields (from a live response):
- Identity —
application_number - Subject —
applicant_name,applicant_names - Inventors —
inventor_name,inventor_count - Dates —
filing_date,effective_filing_date,status_date,scraped_at - Status —
status,entity_status,application_type - Content —
patent_title - Provenance —
source_url,id
Filters
| company_name | Corporate applicant (the IP-holding entity), case-insensitive substring. Triggers a live USPTO query over that applicant's full history. Use the full entity name — e.g. 'Microsoft Technology Licensing, LLC' or 'Google LLC', NOT 'Microsoft' / 'Google'. |
| application_number | Exact application-number lookup for a single filing. |
| since | ISO date YYYY-MM-DD. Applied to filing_date. |
| until | ISO date YYYY-MM-DD. Applied to filing_date. |
| sort_order | Default desc. |
| limit | Default 50, max 200. |
Example request
curl "https://api.keyvex.com/v1/corporate-patents?company_name=Apple%20Inc.&limit=1" \
-H "x-api-key: YOUR_KEY"
Response
{
"results": [
{
"application_number": "18/583,201",
"patent_title": "WIRELESS ACCESSORY ADVERTISEMENTS",
"applicant_name": "Apple Inc.",
"applicant_names": ["Apple Inc."],
"inventor_name": "Jane Q. Engineer",
"inventor_count": 3,
"filing_date": "2026-02-20",
"effective_filing_date": "2026-02-20",
"status": "Application Undergoing Examination",
"status_date": "2026-03-04",
"entity_status": "Large",
"application_type": "Utility",
"source_url": "https://patentcenter.uspto.gov/applications/18583201",
"scraped_at": "2026-06-27T08:25:39.548Z",
"id": "18583201"
}
],
"count": 1,
"has_more": true
}
Example questions you can answer
- What is a company patenting, and how many patents did it file this year?
- Cross-reference a company's R&D output against its insider trades or federal contracts.
Related datasets
Query Corporate Patents from your AI
Hand any AI your key + the OpenAPI spec and it can pull this dataset directly. Free key = full data, 60 requests/day.
Get a free key OpenAPI spec → REST docs →