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

# getIdentityPublicKey

> Get the issuer wallet's identity public key as hex.

Gets the identity public key of the `SparkWallet`.

## Method Signature

```typescript theme={null}
async getIdentityPublicKey(): Promise<string>
```

## Returns

<ResponseField name="identityPublicKey" type="string" required>
  The identity public key as a hex string
</ResponseField>

## Example

```typescript theme={null}
const identityPubKey = await wallet.getIdentityPublicKey();
console.log("Identity Public Key:", identityPubKey);
```
