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
Responses
- 201
The order representing the redeemed gift card.
- application/json
- Schema
- Example (from schema)
Schema
id string
The ID of the redemption order
email email
The email address of the customer
from_asset string
The currency of the gift card
to_asset string
The cryptocurrency to receive
from_amount float
The value of the gift card
status string
The status of the redemption order
created_at date-time
The timestamp when the order was created
funding_type string
The funding type
origin string
The origin of the order
destination_type string
The type of destination
destination_crypto_address string
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": "2025-10-06T15:42:43.518Z",
"funding_type": "string",
"origin": "string",
"destination_type": "string",
"destination_crypto_address": "string"
}
Loading...