> ## 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.

# getSparkAddress

> Get the wallet's Spark address for receiving payments.

Gets the Spark Address of the `SparkWallet`.

## Method Signature

```typescript theme={null}
async getSparkAddress(): Promise<SparkAddressFormat>
```

## Returns

<ResponseField name="sparkAddress" type="SparkAddressFormat" required>
  The Spark Address
</ResponseField>

## Example

```typescript theme={null}
const sparkAddress = await wallet.getSparkAddress();
console.log("Spark Address:", sparkAddress);
```
