# Find Liens Filed against Borrower

`GET /debtors/search`

Retrieves a list of all UCC filings associated with a debtor, based on an exact name match.

**Query Parameters**

| Parameter | Type    | Required | Description                                       |
| --------- | ------- | -------- | ------------------------------------------------- |
| `name`    | string  | Yes      | The exact, full name of the debtor to search for. |
| `state`   | string  | Yes      | The two-letter state abbreviation.                |
| `page`    | integer | No       | The page number for pagination. Defaults to `1`   |

**Example Request**

Bash

```bash
curl --location 'https://api.springstreet.io/debtors/search?name=ABC%20Corporation' \
--header 'x-api-key: YOUR_API_KEY'
```

**Example Response**

JSON

```json
{
  "ucc_liens": [
    {
      "initial_financing_number": "2024031500789",
      "initial_financing_date": "2024-03-15T11:45:00Z",
      "jurisdiction_state": "CT",
      "involved_parties": {
        "debtor_parties": [
          {
            "name": "ABC Corporation",
            "debtor_industry": "General Services",
            "address": {
              "street1": "123 Business Rd",
              "city": "Anytown",
              "state": "CT",
              "zip_code": "06101"
            }
          }
        ],
        "secured_parties": [
          {
            "name": "Regional Bank",
            "address": {
              "street1": "456 Financial Dr",
              "city": "Anytown",
              "state": "CT",
              "zip_code": "06101"
            }
          }
        ]
      }
    }
  ],
  "pagination": {
    "current_page": 1,
    "total_pages": 1,
    "page_size": 5
  },
  "response_metadata": {
    "timestamp": "2025-09-02T22:51:51Z",
    "request_id": "c1d2e3f4-a5b6-7890-1234-abcdef123456"
  }
}
```


---

# 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/borrower-api/find-liens-filed-against-borrower.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.
