Gift card redemption,
API‑first for your app.
Giftcardify lets your app quote, verify, and redeem gift cards in real time while you earn commission on every successful order. Developers plug into a simple REST API; Giftcardify handles all processing behind the scenes.
-H "Authorization: Bearer sk_test_xxx" \
-H "Content-Type: application/json" \
-d '
{
"card_type": "amazon_us",
"amount": 50,
"currency": "USD",
"quote_id": "qt_123",
"metadata": {
"user_id": "u_789"
}
}'
// response
{
"id": "ord_456",
"status": "processing",
"commission": {
"amount": 2.10,
"currency": "USD"
}
}
From quote to redeemed in four calls
Giftcardify exposes a focused set of endpoints so you can list supported gift cards, get a quote for a given card and amount, create the order, and track status and commission with minimal code.
/v1/supported-cards to retrieve brands, regions,
currencies, and allowed amount ranges so your app only shows
what can be redeemed.
/v1/quotes with a card type and amount to receive
the live rate, fees, and your estimated commission for that
redemption.
/v1/orders;
Giftcardify validates and processes the redemption while you keep
full control of the user experience.
/v1/orders/:id for
status updates and final commission details per card type,
amount, and market.
Built for developers, aligned with revenue
Giftcardify abstracts the operational complexity of gift card redemption, exposing a clean API surface so you can ship faster and share in the upside of every transaction.
Usage‑based, with shared upside
Giftcardify is designed for teams who care about predictable integration costs and scalable revenue from gift card redemption.
- • Full access to the gift card catalog API
- • Real‑time quoting and redemption endpoints
- • Developer dashboard and API keys per environment
- • Webhook delivery for order events and status
- • Commission reporting per card and market
Answers for developers & product teams
Whether you are building a fintech app, rewards program, marketplace, or wallet, Giftcardify lets you add gift card redemption as a service without building and maintaining the underlying infrastructure.
Still have questions? Reach out to the team and get integration advice tailored to your stack.
/v1/supported-cards endpoint always returns
the current list of brands, regions, currencies, and amount
ranges, so your app only surfaces valid options.
Developer‑first documentation
Clear quickstarts, copy‑paste examples, and language‑specific snippets help teams plug in Giftcardify without friction.
- •
GET /v1/supported-cards - •
POST /v1/quotes - •
POST /v1/orders - •
GET /v1/orders/:id - • Webhooks for order.created and order.updated
- • Generate sandbox API keys
- • Call the supported cards API
- • Request a quote and create your first test order
- • Wire webhook listeners for order status
- • Promote your integration to production