gate-exchange-coupon
Original:🇺🇸 English
Translated
The coupon management function of Gate Exchange: query available coupons, check coupon details, view usage rules, and trace coupon source. Use this skill whenever the user asks about their coupons, vouchers, or bonus cards on Gate Exchange. Trigger phrases include 'my coupons', 'do I have any coupons', 'coupon list', 'check my voucher', 'coupon details', 'when does my coupon expire', 'coupon rules', 'how did I get this coupon', 'coupon source'.
2installs
Sourcegate/gate-skills
Added on
NPX Install
npx skill4agent add gate/gate-skills gate-exchange-couponTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Gate Coupon Assistant
Query and inspect coupon/voucher accounts on Gate Exchange. Supports six scenarios: list available coupons, search by coupon type, view expired/used history, view full coupon details, read usage rules, and trace coupon acquisition source.
General Rules
Read and follow the shared runtime rules before proceeding:
→ exchange-runtime-rules.md
Domain Knowledge
MCP Tool Mapping
| Tool | Description |
|---|---|
| Fetch user coupon list (paginated, filterable by type/status) |
| Fetch full details of a single coupon |
Coupon Types Reference
IMPORTANT — Type Translation Rule: When displaying the coupon type, mapstrictly to the Display Name. You may translate Display Names to match the response language, but the mapping must be exact — never swap or conflate two different types. Critical distinction:coupon_type(Position Trial Voucher) is a position-based trial voucher — translate as "仓位体验券" in Chinese, never as "合约体验金";position_voucher(Futures Bonus) is futures trial funds — translate as "合约体验金". They are completely different products.contract_bonus
| Display Name | Description |
|---|---|---|
| Position Trial Voucher | Virtual capital for opening futures positions (NOT the same as Futures Bonus). Profits can be withdrawn; the principal is reclaimed after expiry. |
| TradFi Position Voucher | Same concept as position voucher but applies to TradFi instruments (stocks, forex, etc.). |
| Futures Bonus | Trial funds usable in futures trading. Unused balance is reclaimed at expiry. |
| Futures Voucher | Newer futures trial funds with configurable leverage and trading pair restrictions; valid for a set number of hours. |
| Commission Rebate Voucher | Rebates a percentage of actual trading fees incurred on applicable markets; reusable until the balance runs out. |
| Earn Bonus | Trial funds for Earn products (e.g. Lend & Earn); reclaimed at expiry. |
| Points Card | Platform points redeemable for rewards or used in activities. |
| Rate Boost Voucher | Adds extra APR on top of the base rate for eligible Earn products, up to a capped amount. |
| Bot Bonus | Trial funds for trading bots (e.g. Grid, Futures Grid); runs for a fixed duration then is reclaimed. |
| Copy Trading Protection | Compensates a portion of copy trading losses, subject to a maximum payout and eligible-trader restrictions. |
| VIP Trial Card | Grants temporary VIP-tier fee rates and benefits for a fixed number of days after activation. |
| Margin Interest Discount Voucher | Reduces the interest rate on isolated-margin borrowing by a set percentage, up to a maximum discount amount. |
| P2P Discount Voucher | Deducts a percentage of P2P trading fees, subject to a cap and a minimum transaction size. |
| Cash Voucher | Redeemable for account balance cash; credited once qualifying conditions are met. |
| Crypto Loan Interest Discount Voucher | Reduces interest on crypto-collateral loans (flexible term), subject to a maximum discount and minimum loan amount. |
| Copy Trading Bonus | Trial funds for copy trading; supports specific or all traders, with a stop-loss limit and fixed trial duration. |
| Alpha Cash Voucher | Cash credit usable for purchasing tokens on Gate Alpha market. |
| ETF Bonus | Trial funds for leveraged ETF trading, valid for a set number of hours on specified ETF pairs. |
Status Reference
| Status | Meaning |
|---|---|
| Pending activation |
| Activated |
| Available, not yet used |
| Expired (unused) |
| Used/consumed |
| Recycled by platform |
| Invalidated |
| Task in progress |
| Task completed, reward processing |
| Task reward received |
| Task expired before completion |
| Task not yet started (coupon issued, task pending activation) |
| Task expired before it started |
| Task reward claim failed |
| Unknown status |
cex_coupon_list_user_coupons
Parameters
cex_coupon_list_user_coupons| Parameter | Default | Description |
|---|---|---|
| | |
| | Page size (1–20) |
| | Cursor pagination: last id from previous page |
| | Cursor pagination: |
| | |
| (all) | Filter by coupon type |
| (all) | |
cex_coupon_get_user_coupon_detail
Parameters
cex_coupon_get_user_coupon_detail| Parameter | Required | Description |
|---|---|---|
| Yes | Coupon type string |
| Yes | Regular coupon: |
| No | |
Routing Rules
Classify the user intent and route to the matching reference document:
| Intent | Example Phrases | Route to |
|---|---|---|
| List available coupons | "What coupons do I have?", "Show my available coupons", "Do I have any vouchers?", "Check my coupon balance" | Read |
| Search by coupon type | "Do I have a commission rebate voucher?", "Check if I have a futures bonus", "Show my VIP trial cards" | Read |
| View coupon details | "Show details of my commission rebate coupon", "What are the details of this voucher?", "How much is left on my coupon?" | Read |
| View usage rules | "What are the rules for this coupon?", "How do I use this voucher?", "What are the terms of my futures bonus?" | Read |
| Trace coupon source | "How did I get this coupon?", "Where did this voucher come from?", "What activity gave me this coupon?" | Read |
| Query expired/used coupons | "Show my used coupons", "List my expired vouchers", "What coupons have I used?" | Read |
| Unclear | "Tell me about my coupons", "coupon help" | Clarify: ask if user wants to list all coupons or check a specific one |
Execution
- Identify user intent from the Routing Rules table above.
- Load the corresponding reference document.
- Follow the workflow in that document step by step.
- All operations are read-only — no confirmation gate required.
Error Handling
| Situation | Action |
|---|---|
| Coupon not found | Coupon record does not exist or does not belong to current user. Ask user to re-check which coupon they meant; re-fetch list to get valid IDs. |
| Invalid coupon type | |
| No coupons returned | Inform user no coupons match the query. Suggest earning coupons through tasks, activities, or referrals. |
| Coupon type unrecognized by user | User mentions a vague or informal name. Clarify by listing the closest matching type names from the Coupon Types Reference. |
Safety Rules
- All operations in this skill are read-only (query only, no writes).
- Never request or expose user API secrets in the conversation.
- Do not infer or guess coupon IDs — always obtain them from the list API first.