Coupon List
This endpoint retrieves a list of coupons associated with the authenticated user including balance of credit coupons that have been claimed. Every coupon in the "claimable" list is available for the user to claim. Every coupon in the "credit" list has already been claimed and the amount represents the balance available for use.
Method
GET /user/coupon
Response
{
"status": 200,
"data": {
"claimable": [
{
"id": 205,
"issued_at": "2025-10-14T09:55:57.753Z",
"claim_expire_at": "2025-11-13T09:55:57.753Z",
"currency": "USDT",
"amount": "20",
"expire_at": "2025-12-13T09:55:57.753Z"
}
],
"credit": [
{
"currency": "USDT",
"amount": "50"
}
]
}
}