POST /api/redeem

Redeem a UniVoucher gift card (gasless for user)

Request Body:

{
  "cardId": "1234567",
  "cardSecret": "ABCDE-FGHIJ-KLMNO-PQRST",
  "recipientAddress": "0x..."
}

Response (Success):

{
  "success": true,
  "txHash": "0x...",
  "recipientAddress": "0x...",
  "partnerAddress": "0xA351346Abb86cD0cf1A462E20FaB8aef74071879",
  "amount": "1.0 ETH",
  "explorerUrl": "https://etherscan.io/tx/0x..."
}

Response (Error):

{
  "error": "Card not found"
}

← Back to API Docs