> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Account Owner Identification

> Get the name, address, and contact information for the owner of an account

<Note>
  **NEW TO MX CONNECTIVITY?**

  See the [Connectivity Overview](/products/connectivity/overview) to learn about our Connectivity products and integration options.
</Note>

<CardGroup cols={2}>
  <Card title="Integrate using the Connect Widget" cta="Go to Guide" href="/products/connectivity/overview/connectivity-integration-guides/connect-widget-flow">
    Use the Connect Widget and Platform API to let end users connect to their accounts.
  </Card>

  <Card title="Integrate using the Platform API" cta="Go to Guide" href="/products/connectivity/overview/connectivity-integration-guides/api-only-flow">
    Use the Platform API to power a non-MX UI connection experience.
  </Card>
</CardGroup>

With Account Owner Identification, you can connect to an end user's financial account to retrieve information such as their name and address. You can use this data to verify the information provided by an end user. This can be used for solutions that require fraud and risk reduction, account opening, and digital banking.

The Account Owner Identification product can be used as a standalone product or in combination with other MX products. If you use Account Owner Identification as a standalone product, you cannot use our Connect Widget interface for connecting accounts and will be required to complete an API-only integration. We encourage you to use Account Owner Identification in conjunction with Account Aggregation or Instant Account Verification so you can use our powerful Connect Widget.

<img src="https://mintcdn.com/mx-7a01b258/OOfo2VTBgMqAqqgz/images/connectivity/account-owner-identification/aoi_landing_diagram.png?fit=max&auto=format&n=OOfo2VTBgMqAqqgz&q=85&s=934e01a4ce7665b0ec806b3bfd4faaac" alt="Diagram flow of the steps to get account owner information" width="1510" height="344" data-path="images/connectivity/account-owner-identification/aoi_landing_diagram.png" />

## Quick Links

<CardGroup>
  <Card title="API Reference" cta="Go to Reference" href="/api-reference/platform-api/overview">
    Learn about the full features of the Platform API.
  </Card>

  <Card title="Connect Widget" cta="Go to Docs" href="/connect">
    Learn about the Connect Widget.
  </Card>

  <Card title="Demo App" cta="Go to GitHub" href="https://github.com/mxenabled/mx-quickconnect">
    View the demo app on GitHub.
  </Card>
</CardGroup>

## Account Owner Sample Data

This sample response shows the data you can expect to get for account owners.

```json theme={null}
{
  "account_owners": [
    {    
      "account_guid": "ACT-82a93692-f756-534f-9b2e-ad10a0f38462",
      "address": "123 This Way",
      "city": "Middlesex",
      "country": "US",
      "email": "donnie@darko.co",
      "first_name": "Donnie",
      "guid": "ACO-63dc7714-6fc0-4aa2-a069-c06cdccd1af9",
      "last_name": "Darko",
      "member_guid": "MBR-3bdc7d6b-efd4-1497-a0af-b23501cf9bd0",
      "owner_name": "Donnie Darko",
      "phone": "555-555-5555",
      "postal_code": "00000-0000",
      "state": "VA",
      "user_guid": "USR-11141024-90b3-1bce-cac9-c06ced52ab4c"
    }
  ],
  "pagination": {  
    "current_page": 1,
    "per_page": 25,
    "total_entries": 1,
    "total_pages": 1
  }
}

```

## Related Products

<CardGroup>
  <Card title="Instant Account Verification" cta="Read Documentation" href="/products/connectivity/instant-account-verification">
    Get account and routing numbers.
  </Card>

  <Card title="Account Aggregation" cta="Read Documentation" href="/products/connectivity/account-aggregation">
    Get account and transaction data.
  </Card>

  <Card title="Balance Check" cta="Read Documentation" href="/products/connectivity/balance-checks">
    Check an account's available balance.
  </Card>
</CardGroup>
