Patent Landscape Intelligence - Free USPTO API
Pricing
$150.00 / 1,000 charged when a patent intelligence analysis is sucs
Patent Landscape Intelligence - Free USPTO API
Free patent API alternative to PatSnap ($10K-$50K/yr). Search USPTO patents, analyze company IP portfolios, track inventor networks, and explore patent citations. No API key required. Pay-per-use for patent landscape, competitive intelligence, and R&D tracking.
Pricing
$150.00 / 1,000 charged when a patent intelligence analysis is sucs
Rating
0.0
(0)
Developer
daehwan kim
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Share
Patent Landscape Intelligence - USPTO Patent Analyzer
Free USPTO patent intelligence replacing PatSnap ($10K-$50K/yr). Search patents, analyze company portfolios, inventor profiles, technology landscapes, and citation networks via PatentsView & IBD APIs.
Features
- Search USPTO patents by keyword with full metadata including claims and classifications
- Analyze company patent portfolios with filing trends and technology concentration
- Build inventor profiles with publication history and collaboration networks
- Map technology landscapes by CPC classification code across companies and time periods
- Trace patent citation networks to identify foundational IP and derivative innovations
Input Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
mode | string | Analysis mode: patent_search, assignee_portfolio, inventor_profile, technology_landscape, citation_analysis, patent_overview | patent_search |
query | string | Keyword to search patents for (used in patent_search and patent_overview modes) | — |
assignee | string | Company or organization name for portfolio analysis (e.g., 'Apple Inc', 'Google LLC') | — |
inventor | string | Full name of inventor for profile analysis (e.g., 'Elon Musk', 'Jane Smith') | — |
cpcCode | string | Cooperative Patent Classification code for technology landscape analysis | — |
patentNumber | string | USPTO patent number for citation network analysis | — |
startDate | string | Filter patents filed on or after this date in YYYY-MM-DD format | — |
limit | integer | Maximum number of patents to retrieve and analyze (1-200) | 25 |
Output
The actor returns structured JSON data with patent records, portfolio statistics, inventor networks, technology distributions, and citation graphs.
Pricing
This actor uses pay-per-event pricing at $0.05 per successful analysis.
Usage
- Set your input parameters
- Run the actor
- Get results from the dataset
API Integration
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('ntriqpro/patent-landscape-intelligence').call({mode: 'assignee_portfolio',assignee: 'Apple Inc',startDate: '2020-01-01',limit: 50,});const { items } = await client.dataset(run.defaultDatasetId).listItems();