Skip to main content
GET
/
order-gift-card
Order a gift card
curl --request GET \
  --url https://laso.finance/order-gift-card
{
  "auth": {
    "id_token": "<string>",
    "refresh_token": "<string>",
    "expires_in": "<string>"
  },
  "callable_base_url": "https://us-central1-kyc-ts.cloudfunctions.net",
  "user_id": "<string>",
  "gift_card": {
    "card_id": "<string>",
    "laso_server_id": "<string>",
    "amount": 123,
    "currency": "USD",
    "country": "US",
    "redemption_url": "<string>",
    "redemption_code": "<string>",
    "pin_code": "<string>",
    "status": "completed",
    "timestamp": 123
  }
}

Query Parameters

amount
number
required

Gift card face value in the product's currency (min $5, max $9,000)

Required range: 5 <= x <= 9000
laso_server_id
string
required

The product identifier from the gift card catalog (GET /search-gift-cards)

country
string
default:US

ISO 3166-1 alpha-2 country code (defaults to "US")

Response

Gift card ordered successfully

auth
object
callable_base_url
string
Example:

"https://us-central1-kyc-ts.cloudfunctions.net"

user_id
string

The user's ID (lowercase wallet address)

gift_card
object

Gift card order result with redemption details.