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


---

# 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-known-co-borrowers.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.
