> ## Documentation Index
> Fetch the complete documentation index at: https://litprotocol-feat-rusk-sdk.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# listEncryptedKeyMetadata

# Function

> **listEncryptedKeyMetadata**(`params`)

Returns metadata for all wrapped keys owned by the PKP without downloading ciphertext.

## Parameters

<ParamField path="params.pkpSessionSigs" type="SessionSigsMap" required />

<ParamField path="params.litClient" type="LitClient" required />

<ParamField path="params.userMaxPrice" type="bigint">
  Optional price ceiling for the Lit Action.
</ParamField>

## Returns

<ResponseField name="metadata" type="StoredKeyMetadata[]">
  Array of stored keys (id, memo, key type, public key, PKP address, network).
</ResponseField>

## Example

```ts theme={null}
const metadata = await wrappedKeysApi.listEncryptedKeyMetadata({
  pkpSessionSigs,
  litClient,
});
```
