# 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

```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

```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"
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://springstreet.gitbook.io/springstreet.io/api/lender-api/find-liens-filed-by-lender.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
