Skip to main content
When a mark is part of an acquisition, financing, or portfolio sale, diligence teams need to know who received title, whether any lender recorded a security interest, and whether that lien was released. This recipe walks from owner-level lien filtering to a mark-level chain of title, then pairs a release to the original security-interest reel and frame. Use List Assignments for cross-mark transaction filtering, Trademark Assignments for one mark’s chain, and Get Assignment for the full parties and affected marks.

Prerequisites

  • A Signa API key with trademarks:read
  • The target owner ID (own_...) or entity ID (ent_...)
  • The trademark ID (tm_...) for any mark you want to inspect directly
1

Find recorded liens for the owner

Start with type=security_interest and the borrower or seller owner ID. The collection endpoint is filter-required, so every request stays scoped to a diligence question.
If the borrower sits inside a larger corporate family, repeat the same query with entity_id. Signa expands the entity to member owners before filtering assignment parties.
2

Inspect the lien

Retrieve the security-interest record to confirm the parties and affected marks. Save the reel_no and frame_no, because releases point back to those values.
TypeScript
For the worked example, the lien has reel_no: "9102" and frame_no: "0100", with Northstar Brands LLC as assignor and First Continental Bank, N.A. as assignee.
3

Review the mark chain

Pull the per-mark chain to see transfers, liens, and releases together in recorded-date order.
In the example chain, asg_55555555-5555-4555-8555-555555555555 records title moving from OldCo Consumer Products Inc. to Northstar Brands LLC. asg_66666666-6666-4666-8666-666666666666 records the security interest. asg_77777777-7777-4777-8777-777777777777 records a later release.
4

Pair releases to grants

A release points back to the grant it releases with release_of_reel_no and release_of_frame_no. Match those fields against the security-interest reel_no and frame_no.
TypeScript
In the worked example, the release has release_of_reel_no: "9102" and release_of_frame_no: "0100", so it clears the 9102/0100 security interest. If no release pairs to a grant, escalate it for legal review before treating the mark as clean collateral or clean title.
5

Decide what to clear

Use the combined evidence to separate clean title from open issues:
  • A current owner should appear in a recent assignment or other transfer record.
  • A security interest without a matching release may require payoff, consent, or an exception in the transaction documents.
  • A release matching the grant reel/frame is the strongest normalized signal that the recorded lien was cleared.
  • If the owner is part of a larger entity, rerun the lien filter with entity_id to catch affiliates and office-specific owner records.