Prerequisites
- A Signa API key with
trademarks:readscope - Competitor company names or owner IDs
Identify competitor owner records
Start by searching for each competitor’s owner profile. The owner entity in Signa consolidates all filings under one canonical record, even when name variants exist across offices.Expected output:
Review each competitor's portfolio profile
Pull the full owner detail to understand each competitor’s filing patterns, top classes, jurisdictions, and preferred attorneys.Expected output:
For per-class, per-jurisdiction, or per-year breakdowns, use
GET /v1/trademarks with
owner_id=<id> filters (e.g. by nice_class, office_code, or
filing_date_range) and aggregate the list client-side. The ranked-list
JSONB fields that used to be embedded on the owner detail response were
removed in April 2026.List recent filings by competitor
Pull each competitor’s most recent filings to see what brands they are pursuing right now.Expected output:
Schedule a weekly competitor pull
Rerun the owner-trademarks query from the previous step on a cron schedule (weekly is usually enough) and diff the result against last week’s snapshot. Any new
tm_* IDs are fresh filings worth reviewing.Watch entire classes for newcomers
Competitor-by-competitor polling misses brand-new entrants. Run a class-filtered search over the same window to surface filings from owners you do not yet track.
Building a competitive dashboard
Combine the above queries into a weekly report that tracks:| Metric | Source |
|---|---|
| New filings per competitor (this week) | GET /v1/owners/{id}/trademarks?filing_date_gte=... |
| Class distribution shifts | POST /v1/trademarks with aggregations_only |
| New jurisdictions entered | Owner detail stats.jurisdictions delta |
| Opposition activity | GET /v1/proceedings?party_owner_id=... |
| Newly abandoned marks | GET /v1/owners/{id}/trademarks?status_primary=inactive&filing_date_gte=... |
What’s next
Trademark Clearance
Run a clearance search against your competitors’ marks before launching a new brand.
Opposition Tracking
Monitor TTAB proceedings where your competitors are involved as parties.
M&A Due Diligence
Evaluate a competitor’s full IP portfolio if an acquisition is on the table.