Patent Landscape Intelligence - Free USPTO API avatar

Patent Landscape Intelligence - Free USPTO API

Pricing

$150.00 / 1,000 charged when a patent intelligence analysis is sucs

Go to Apify Store
Patent Landscape Intelligence - Free USPTO API

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

daehwan kim

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

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

ParameterTypeDescriptionDefault
modestringAnalysis mode: patent_search, assignee_portfolio, inventor_profile, technology_landscape, citation_analysis, patent_overviewpatent_search
querystringKeyword to search patents for (used in patent_search and patent_overview modes)
assigneestringCompany or organization name for portfolio analysis (e.g., 'Apple Inc', 'Google LLC')
inventorstringFull name of inventor for profile analysis (e.g., 'Elon Musk', 'Jane Smith')
cpcCodestringCooperative Patent Classification code for technology landscape analysis
patentNumberstringUSPTO patent number for citation network analysis
startDatestringFilter patents filed on or after this date in YYYY-MM-DD format
limitintegerMaximum 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

  1. Set your input parameters
  2. Run the actor
  3. 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();