---
title: "List all identities linked to your account"
method: GET
path: "/v1/account/identities"
tags: ["account"]
---

# List all identities linked to your account

`GET /v1/account/identities`

Get all identities linked to your account.

Identity types include:
- **email**: Email address (from CDP Auth)
- **sms**: Phone number (from CDP Auth SMS)
- **evm**: Ethereum/EVM wallet address
- **solana**: Solana wallet address
- **ens**: ENS name (with resolved address)

Each identity shows:
- Whether it's the primary identity
- Whether it's verified and how
- When it was created

The **primary identity** is the original identity used to create the account.
It cannot be deleted and is used for JWT subject generation.

Authentication: `Authorization: Bearer <CLIENT_JWT>`

## Headers

- `authorization` string, nullable — Bearer JWT issued by Grove that identifies the account.

## Response `200`

Successful Response

- IdentityListResponse — Response model for listing account identities.
  - `account_id` string, required — Account ID
  - `identities` IdentityResponse[], required — List of identities linked to the account
    - `id` string, required — Identity ID
    - `identity_type` string, required — Type of identity (email, sms, evm, solana, ens, etc.)
    - `identity_value` string, required — The identity value (email address, wallet address, ENS name, etc.)
    - `resolved_address` string, nullable — For ENS identities: the resolved wallet address
    - `verified_at` string, nullable — When the identity was verified (ISO 8601)
    - `verification_method` string, nullable — How the identity was verified (otp, signature, ens_lookup, etc.)
    - `is_primary` boolean, required — Whether this is the primary identity (primary cannot be deleted)
    - `created_at` string, required — When the identity was created (ISO 8601)

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/grove/apis/grove-api.md) · [All operations](https://skmtc.net/grove/apis/grove-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/grove/grove-api/revisions/f286b48a8105/schema)
