GlobagiftGlobagift

Build fast with a clean API and sandbox

Quickstart

  1. Get API keys
  2. Issue a card
  3. Redeem at POS
  4. Verify webhook signatures

Embed

<script src="https://cdn.example.com/globagift.js" data-merchant-id="YOUR_ID"></script>
<div id="globagift-widget" data-product="gift-card"></div>

Core endpoints

  • POST /giftcards/issue
  • POST /giftcards/redeem
  • POST /giftcards/void
  • GET /giftcards/balance
  • GET /giftcards/transactions

Webhooks

{
  "type": "giftcard.redeemed",
  "data": {
    "giftcard_id": "gc_123",
    "amount": 5000,
    "currency": "TTD",
    "location_id": "loc_abc",
    "redeemed_at": "2025-01-01T12:00:00Z"
  }
}