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