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

# Redeem Voucher

## Description

Credits your Project wallet by claiming a single-time use [ZBD Voucher](/get-started/vouchers).

## Usage

Enter a valid 8-digit voucher Code to redeem the sats to your Project wallet.

## Configuration

### Header Parameters

<ParamField required header="apikey" type="string">
  ZBD Project API Key
</ParamField>

<ParamField initialValue="application/json" header="Content-Type" type="string">
  Content Type
</ParamField>

### Body

<ParamField required body="code" type="string">
  Valid 8-digit ZBD Voucher Code
</ParamField>

<ResponseExample>
  ```json Response theme={null}
  {
      "success": true,
      "data": {
          "amount": "1000",
          "code": "7EE15185",
          "createdAt": "2023-08-24T15:01:56.408Z",
          "description": "Voucher for user.",
          "id": "a2eb43c4-af7f-4eb9-839c-ca31db34b3fc",
          "redeemedAt": "2023-08-24T15:03:43.333Z",
          "redeemedById": "4a4bd549-297e-4e67-a594-386200e1bc21",
          "redeemedTransactionId": "656695f9-36e3-4b9c-abfa-8c2e90f61b45",
          "revokedAt": null,
          "revokedById": null,
          "revokedTransactionId": null,
          "unit": "msats"
      },
      "message": "Successfully redeemed Voucher."
  }
  ```
</ResponseExample>
