> For the complete documentation index, see [llms.txt](https://docs.polynomial.fi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.polynomial.fi/developer-documentation/api/account.md).

# Account

### Retrieve Account Info

`GET`  `https://perps-api-mainnet.polynomial.finance/accounts?owner=<wallet_addr>&ownershipType=SuperOwner&chainIds=<chain_id>`

#### Query&#x20;

| Name         | Value                                                                 |
| ------------ | --------------------------------------------------------------------- |
| wallet\_addr | Main account wallet address                                           |
| chain\_id    | 8008 (mainnet) [Addresses](/developer-documentation/api/addresses.md) |

#### Headers&#x20;

| Name         | Value                                                                                  |
| ------------ | -------------------------------------------------------------------------------------- |
| Content-Type | application/json                                                                       |
| Accept       | application/json                                                                       |
| x-api-key    | [Introduction](/developer-documentation/api/introduction.md#backend-api-key)(optional) |

####

#### Response

```json
[
  {
    "owner": "0xcAAAAAEE5FA8d10eEe31Cf06ba5B2E6f0487436",
    "superOwner": "0x3AAAAA1daCFD0d259fadC5124a7C14f4F544F2DC",
    "accountId": "100000083460469231731687303715884105732",
    "chainId": 8008,
    "debt": "959440974158424928"
  }
]

```

> As you can notice, the primary account wallet is named as superOwner. Owner field is your Account abstracted smart contract wallet. For more details \<ADD\_LINK>
