# Find Known Co-borrowers

`GET /debtors/associated`

Retrieves a list of all known, related co-borrowers who were listed as co-borrowers on UCC filings

| 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/associated/?name=ABC Corporation&state=OH'
--header 'x-api-key: YOUR_API_KEY'
```

**Example Response**

JSON

```json
{
    "debtor_name": "ABC Corporation",
    "debtor_state": "OH",
    "associated_debtors": [
        {
            "debtor_name": "JOHN  DOE",
            "address": {
                "street_address_1": "100 MAIN ST",
                "street_address_2": null,
                "city": "SPRINGFIELD",
                "state": "OH",
                "postal_code": "00000-0000"
            }
        },
```
