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

# getLightningSendRequest

> Check status of a Lightning payment.

Gets the status of a Lightning send request for the `SparkWallet`.

## Method Signature

```typescript theme={null}
async getLightningSendRequest(id: string): Promise<LightningSendRequest | null>
```

## Parameters

<ResponseField name="id" type="string" required>
  The ID of the Lightning send request to check
</ResponseField>

## Returns

<ResponseField name="request" type="LightningSendRequest | null" required>
  The Lightning send request details or null if not found
</ResponseField>

## Example

```typescript theme={null}
const sendRequest = await wallet.getLightningSendRequest("request-id");
if (sendRequest) {
  console.log("Payment status:", sendRequest.status);
}
```
