Get card inventory brands
Get Card Inventory Brands returns the available gift card brands with their items and tiers. Each tier includes calculated currency values and secure price tokens for redemption.
GET
/v1/client/redeem-rewards/inventory/brands
curl \
--request GET 'https://api.bitlabs.ai/v1/client/redeem-rewards/inventory/brands' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": {
"brands": [
{
"key": "amazon",
"provider": "tangocard",
"name": "Amazon",
"description": "Amazon gift cards",
"image_urls": {
"logo": "https://example.com/amazon-logo.png"
},
"items": [
{
"key": "amazon_usd_50",
"reward_name": "Amazon $50 Gift Card",
"reward_type": "gift_card",
"redemption_instructions": "Digital delivery via email",
"credential_types": [
"email"
],
"countries": [
"US"
],
"is_active": true,
"tiers": [
{
"usd_value": "50.00",
"currency_value": "50000",
"currency_factor": "1000",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
]
}
]
}
]
}
}