Redeem gift card
POST/gift-card/redeem/
Redeem a gift card for cryptocurrency.
The gift card code must be in UUID format. Only the secret code (not the identification_code) can be used for redemption. Gift cards can only be redeemed for cryptocurrency, not fiat currency.
Request
- application/json
Body
required
The secret code of the gift card in UUID format
The email address of the customer
The cryptocurrency to receive
The cryptocurrency address to receive the funds
Responses
- 201
The order representing the redeemed gift card.
- application/json
- Schema
- Example (from schema)
Schema
The ID of the redemption order
The email address of the customer
The currency of the gift card
The cryptocurrency to receive
The value of the gift card
The status of the redemption order
The timestamp when the order was created
The funding type
The origin of the order
The type of destination
The cryptocurrency address to receive the funds
{
"id": "string",
"email": "user@example.com",
"from_asset": "string",
"to_asset": "string",
"from_amount": 0,
"status": "string",
"created_at": "2026-03-17T09:53:43.701Z",
"funding_type": "string",
"origin": "string",
"destination_type": "string",
"destination_crypto_address": "string"
}