How It Works
Discount Box is built for both everyday users looking for seamless gift card purchases and developers needing a robust API for their applications.
Using the Portal
A simple, secure, and fast way to manage your funds and purchase digital gift cards globally.
Top Up Your Wallet
Add funds to your secure wallet using our supported payment methods. Your balance is updated instantly.
Browse catalog
Explore over 14,000 digital gift cards and services from top global brands.
Instant Purchase
Complete your purchase using your wallet balance and receive your gift card codes instantly.
Developer-First Platform
We built Discount Box with developers in mind. Our comprehensive API allows you to integrate gift card purchasing and delivery directly into your own applications seamlessly.
RESTful API
Modern, well-documented endpoints for listing products, managing orders, and webhooks.
Test Environment
Build and test your integration safely in our sandbox environment before going live.
API Keys Management
Generate and manage secure API keys directly from your developer dashboard.
const response = await fetch('https://api.discountbox.com/v1/orders', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
productId: 'amazon-usd',
denomination: 50,
quantity: 1
})
});
const order = await response.json();
console.log(order.giftCardCode);