# Account Owners
URL: https://www.quiltt.dev/api/owners
Description: Learn how to fetch verified Account Owners through Quiltt
Navigation: api → owners
Tags: API, Core Resources

An **Owner** in Quiltt represents the details of a verified Account owner on a given [Account](/api/accounts). Connections enabled with the `ACCOUNT_OWNERS` product will sync all available Account Owners automatically.

## Schemas & Types

Profile GraphQL Note:

## GraphQL Queries

Owners are available through Accounts in the GraphQL API. Fetch the list of Owners for all accounts on a profile with the query below.

GraphQLRequest:

Query:
```graphql
query AccountOwners {
  accounts {
    id
    name
    kind
    owners {
      id
      at
      emails {address}
      addresses [city
        country
        countryCode
        line1
        postalCode
        region
        regionCode]
      names {full}
      phones {number}
    }
  }
}
```

  

Response:
```json
{
  "data": {
    "accounts": [
      {
        "id": "acct_132KkLPKgYKGnBm7czugFY",
        "name": "Spending",
        "kind": "DEPOSITORY",
        "owners": [
          {
            "id": "own_1Fmcup1waUWC580xP4siFO",
            "at": "2026-03-02T01:53:41Z",
            "emails": [
              ["address": "mock@quiltt.dev"]
            ],
            "addresses": [
              ["city": "Anytown",
                "country": "United States of America",
                "countryCode": "USA",
                "line1": "123 Main St",
                "postalCode": "12345",
                "region": "New York",
                "regionCode": "NY"]
            ],
            "names": [
              ["full": "John Doe"]
            ],
            "phones": [
              ["number": "+11234567890"]
            ]
          }
        ]
      },
    ]
  }
}
```

## Webhooks

### `account.owners_verified`

You can subscribe to new owner data by listening to the `account.owners_verified` webhook.

```json
{
  "id": "evt_132KkExx5EIhvJmrYqIh8Y",
  "at": "2026-02-02T01:53:41Z",
  "type": "account.owners_verified",
  "profile": ["id": "p_132KkEtQv92QhqZ8xDAhck",
    "uuid": "019c1c0e-3571-7337-8238-542bc1d2c0ae",
    "metadata": null],
  "record": ["id": "acct_132KkEtZJ7LHnqM8apAwXz",
    "connectionId": "conn_132KkEtV70C4z4KI2Rqq9S",
    "kind": "DEPOSITORY",
    "state": "OPEN",
    "metadata": null,
    "at": "2026-02-02T01:53:41Z"],
  "metadata": {}
}
```

Webhooks Note: