Find Liens Filed by Lender

GET /secureds/recent-by-secured-party

Searches for recent UCC filings by a secured party's name within a given state.

Query Parameters

Parameter
Type
Required
Description

name

string

Yes

The name of the secured party. The search is case-insensitive.

state

string

Yes

The two-letter state code to search within.

borrower_type

string

No

Filters results by debtor type. Must be either Organization or Individual.

page

integer

No

The page number for pagination. Defaults to 1.

Example Request

Bash

curl --location 'https://api.springstreet.io/secureds/recent-by-secured-party?name=Regional%20Bank&state=CT' \
--header 'x-api-key: YOUR_API_KEY'

Example Response

JSON

{
  "ucc_liens": [
    {
      "initial_financing_number": "2023-1234567",
      "initial_financing_date": "2023-05-15T10:30:00",
      "estimated_lien_lapse_date": "2028-05-15",
      "estimated_lien_status": "Active",
      "jurisdiction_state": "DE",
      "search_url": "https://corp.delaware.gov/ucc-search/",
      "involved_parties": {
        "debtor_parties": [
          {
            "name": "TECH SOLUTIONS INC",
            "type": "Organization",
            "category": "Corporate",
            "address": {
              "street1": "123 Innovation Way",
              "city": "Wilmington",
              "state": "DE",
              "zip_code": "19801",
              "country": "USA",
              "maps_url": "https://maps.google.com/?q=123+Innovation+Way+Wilmington+DE"
            }
          }
        ],
        "secured_parties": [
          {
            "name": "FIRST NATIONAL BANK",
            "type": "Organization",
            "category": "Bank",
            "address": {
              "street1": "456 Finance Plaza",
              "city": "New York",
              "state": "NY",
              "zip_code": "10001",
              "country": "USA",
              "maps_url": "https://maps.google.com/?q=456+Finance+Plaza+New+York+NY"
            }
          }
        ]
      },
      "amendments": [
        {
          "amendment_financing_number": "2023-9999999",
          "amendment_financing_date": "2023-12-01T09:00:00",
          "amendment_financing_type_description": "CONTINUATION"
        }
      ]
    }
  ],
  "response_metadata": {
    "page": 1,
    "page_size": 10,
    "next_page": false,
    "timestamp": "2026-02-23T21:05:00Z",
    "request_id": "c6af9ac6-7b61-11e6-9a41-93e8deadbeef",
    "data_source_last_updated": "2026-02-20",
    "api_version": "v1.0"
  }
}

Last updated