Filings by Secured Party

GET /secureds/recent-by-secured-party

Searches for recent UCC filings (last 90 days) 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.

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": "2025073098765",
      "initial_financing_date": "2025-07-30T15:00:00Z",
      "jurisdiction_state": "CT",
      "involved_parties": {
        "debtor_parties": [
          {
            "name": "Connecticut Retailers",
            "debtor_industry": "Retail",
            "address": {
              "street1": "789 Charter Oak Ave",
              "city": "Hartford",
              "state": "CT",
              "zip_code": "06106"
            }
          }
        ],
        "secured_parties": [
          {
            "name": "Regional Bank",
            "address": {
              "street1": "456 Financial Dr",
              "city": "Anytown",
              "state": "CT",
              "zip_code": "06101"
            }
          }
        ]
      }
    }
  ],
  "pagination": {
    "current_page": 1,
    "total_pages": 8,
    "page_size": 5
  },
  "response_metadata": {
    "timestamp": "2025-09-02T22:51:51Z",
    "request_id": "a6b7c8d9-e0f1-2345-6789-fabcde567890"
  }
}

Last updated