| name | p2p |
| description | Binance P2P trading assistant for natural-language queries about P2P/C2C market ads, the user's own P2P order history, order detail & appeal tracking, and advertisement publish & management.
Use when the user asks about P2P prices, searching/choosing ads, comparing payment methods, reviewing P2P order history, checking order detail/appeal status, querying complaints, publishing/updating/managing P2P advertisements, or viewing merchant profiles.
Do NOT use for spot/futures prices, exchange trading, deposits/withdrawals, on-chain transfers, or anything unrelated to P2P/C2C.
|
Binance P2P Trading Skill
Help users interact with Binance P2P (C2C) via natural-language queries.
When to Use / When NOT to Use
Use this skill when the user wants to:
- Check P2P buy/sell quotes for a crypto/fiat pair (e.g., USDT/CNY).
- Search P2P advertisements and filter by payment method(s), limits, merchant quality.
- Compare prices across payment methods (e.g., Alipay vs bank transfer).
- View their own P2P order history / summary (requires API key).
- Query order detail and view full order timeline (requires API key).
- Check appeal/complaint status and view complaint history (requires API key).
- Submit evidence for an existing appeal (upload files + submit description) (requires API key).
- View complaint process timeline (flow of actions, CS notes, evidence) (requires API key).
- Cancel an existing appeal (withdraw complaint, irreversible) (requires API key).
- View available complaint reasons for an order (requires API key).
- Publish, update, or manage P2P advertisements (requires API key + merchant permission).
- View merchant profiles and their ad listings (requires API key).
- Query supported digital and fiat currencies (requires API key).
Do NOT use this skill when the user asks about:
- Spot/Convert prices, futures/derivatives, margin, trading bots.
- Deposits/withdrawals, wallet transfers, on-chain transactions.
- Creating/cancelling orders, releasing coins (trading operations). Cancelling appeals (complaints) IS supported.
- Initiating new appeals (submit-complaint is deferred; evidence supplement for existing appeals IS supported).
- Sending chat messages in order conversations.
Ask clarifying questions (do not guess) if any key inputs are missing:
fiat (e.g., CNY)
asset (e.g., USDT)
- user intent: buy crypto or sell crypto
- preferred payment method(s)
- target amount (optional but recommended for ad filtering)
Core Concepts
tradeType mapping (avoid ambiguity)
- User wants to buy crypto (pay fiat, receive USDT/BTC) โ
tradeType=BUY
- User wants to sell crypto (receive fiat, pay USDT/BTC) โ
tradeType=SELL
Always reflect this mapping in responses when the user's wording is ambiguous.
Capabilities
Phase 1 โ Public Market (No Auth)
- Quote P2P prices
- Search ads
- Compare payment methods
- Filter/Rank ads by limits and merchant indicators
Phase 2 โ Personal Orders (Requires API Key)
- List P2P order history
- Filter by trade type / time range
- Provide summary statistics
Phase 3 โ Order & Appeal + Ad Publish & Management (Requires API Key)
- Query order detail by order number
- List orders with rich filters (status, trade type, asset, date range)
- View order timeline (creation โ payment โ release โ completion)
- Detect appeal status and show appeal details
- Query complaint/appeal records with filters
- Get market reference prices for pricing decisions
- Upload appeal evidence files (S3 presigned URL + submit)
- View complaint process timeline / flow details
- Cancel an existing appeal / withdraw complaint
- Get available complaint reasons for an order
- Search and analyze market ad distribution
- Get available ad categories for current user
- Get user's configured payment methods
- List all system trade methods
- Publish new advertisements (with confirmation)
- Update existing ad parameters (with confirmation)
- Update ad status: online / offline / close (with confirmation)
- View merchant profile and ad listings
- List all supported digital currencies
- List all supported fiat currencies
Environment Configuration
Base URLs (production)
| Logical Name | URL |
|---|
SAPI_BASE | https://api.binance.com |
MGS_BASE | https://www.binance.com |
C2C_WEB | https://c2c.binance.com |
Implementation hint (for code generation)
When the skill generates curl / Python / JS code, use these fixed base URLs:
import os
SAPI_BASE = "https://api.binance.com"
MGS_BASE = "https://www.binance.com"
C2C_WEB = "https://c2c.binance.com"
def common_headers(api_key: str) -> dict:
return {
"X-MBX-APIKEY": api_key,
"User-Agent": "binance-wallet/1.0.0 (Skill)",
}
SAPI_BASE="https://api.binance.com"
MGS_BASE="https://www.binance.com"
C2C_WEB="https://c2c.binance.com"
Note: SAPI signing uses HMAC SHA256, no param sorting required.
Security & Privacy Rules
Credentials
- Required env vars:
BINANCE_API_KEY (sent as header)
BINANCE_SECRET_KEY (used for signing)
Never display full secrets
- API Key: show first 5 + last 4 characters:
abc12...z789
- Secret Key: always mask; show only last 5:
***...c123
Permission minimization
- Binance API permissions: Enable Reading only (Phase 1/2).
- Phase 3 ad management additionally needs write permissions.
- Do NOT request/encourage withdrawal or modification permissions beyond what's needed.
Storage guidance
- Prefer environment injection (session/runtime env vars) over writing to disk.
- Only write to
.env if the user explicitly agrees.
- Ensure
.env is in .gitignore before saving.
โ ๏ธ CRITICAL: SAPI Signing (Different from Standard Binance API)
Parameter ordering
- DO NOT sort parameters for SAPI requests.
- Keep original insertion order when building the query string.
Example:
params = {"page": 1, "rows": 20, "timestamp": 1710460800000}
query_string = urlencode(params)
query_string = urlencode(sorted(params.items()))
Signing details
See: references/authentication.md for:
- RFC 3986 percent-encoding
- HMAC SHA256 signing process
- Required headers (incl. User-Agent)
- SAPI-specific parameter ordering
API Overview
Public Queries (MGS C2C Agent API โ No Auth)
Base URL: https://www.binance.com
| Endpoint | Method | Params | Usage |
|---|
/bapi/c2c/v1/public/c2c/agent/quote-price | GET | fiat, asset, tradeType | Quick price quote |
/bapi/c2c/v1/public/c2c/agent/ad-list | GET | fiat, asset, tradeType, limit, order, tradeMethodIdentifiers | Search ads |
/bapi/c2c/v1/public/c2c/agent/trade-methods | GET | fiat | Payment methods |
Parameter notes:
tradeType: BUY or SELL (treat as case-insensitive)
limit: 1โ20 (default 10)
tradeMethodIdentifiers: pass as a plain string (not JSON array) โ e.g. tradeMethodIdentifiers=BANK or tradeMethodIdentifiers=WECHAT. Values must use the identifier field returned by the trade-methods endpoint (see workflow below). โ ๏ธ Do NOT use JSON array syntax like ["BANK"] โ it will return empty results.
Workflow: Compare Prices by Payment Method
When the user wants to compare prices across payment methods (e.g., "Alipay vs WeChat"), follow this two-step flow:
Step 1 โ Call trade-methods to get the correct identifiers for the target fiat:
GET /bapi/c2c/v1/public/c2c/agent/trade-methods?fiat=CNY
โ [{"identifier":"ALIPAY",...}, {"identifier":"WECHAT",...}, {"identifier":"BANK",...}]
Step 2 โ Pass the identifier as a plain string into ad-list via tradeMethodIdentifiers, one payment method per request, then compare:
GET /bapi/c2c/v1/public/c2c/agent/ad-list?fiat=CNY&asset=USDT&tradeType=BUY&limit=5&tradeMethodIdentifiers=ALIPAY&tradeMethodIdentifiers=WECHAT
Compare the best price from each result set.
Important: Do not hardcode identifier values like "Alipay" or "BANK". Always call trade-methods first to get the exact identifier strings for the given fiat currency.
Personal Orders (Binance SAPI โ Requires Auth)
Base URL: https://api.binance.com
| Endpoint | Method | Auth | Usage |
|---|
/sapi/v1/c2c/orderMatch/listUserOrderHistory | GET | Yes | Order history |
/sapi/v1/c2c/orderMatch/getUserOrderSummary | GET | Yes | User statistics |
Authentication requirements:
- Header:
X-MBX-APIKEY
- Query:
timestamp + signature
- Header:
User-Agent: binance-wallet/1.0.0 (Skill)
Output Format Guidelines
Price quote
- Show both sides when available (best buy / best sell).
- Use fiat symbol and 2-decimal formatting.
Example:
USDT/CNY (P2P)
- Buy USDT (you buy crypto): ยฅ7.20
- Sell USDT (you sell crypto): ยฅ7.18
Ad list
Return Top N items with a stable schema:
- adNo (ad number / identifier)
- price (fiat)
- merchant name
- completion rate
- limits
- payment methods (identifiers)
Avoid generating parameterized external URLs unless the API returns them.
Placing orders (when user requests):
-
This skill does NOT support automated order placement.
-
When user wants to place an order, provide a direct link to the specific ad using the adNo:
https://c2c.binance.com/en/adv?code={adNo}
{adNo}: the ad number/identifier from the ad list result
Example: https://c2c.binance.com/en/adv?code=123
-
This opens the specific ad detail page where user can place order directly with the selected advertisement.
Personal orders
- Time format:
YYYY-MM-DD HH:mm (UTC+0) โ always display in UTC timezone
- Include: type, asset/fiat, amount, total, status
- Provide a brief summary line (count + totals) when filtering
Time field conversion (for createTime in listUserOrderHistory):
- The
createTime field returns a Unix timestamp in milliseconds (13 digits).
- Convert to human-readable format in UTC+0 timezone:
# Python example
from datetime import datetime, timezone
readable_time = datetime.fromtimestamp(createTime / 1000, tz=timezone.utc).strftime('%Y-%m-%d %H:%M (UTC+0)')
# JavaScript example
const readableTime = new Date(createTime).toISOString().replace('T', ' ').slice(0, 16) + ' (UTC+0)';
// Or more explicitly:
const date = new Date(createTime);
const readableTime = date.getUTCFullYear() + '-' +
String(date.getUTCMonth() + 1).padStart(2, '0') + '-' +
String(date.getUTCDate()).padStart(2, '0') + ' ' +
String(date.getUTCHours()).padStart(2, '0') + ':' +
String(date.getUTCMinutes()).padStart(2, '0') + ' (UTC+0)';
- Always display the converted time to users with timezone info, not the raw timestamp.
Error Handling (User-Facing)
- Invalid API key (-2015): prompt to verify
.env / API Management.
- Signature failed (-1022): warn about wrong secret, sorted params, or stale timestamp.
- Timestamp invalid (-1021): advise time sync / regenerate timestamp.
- Rate limit: ask to retry later.
Limitations (By Design)
This skill does NOT:
- Place/cancel orders
- Mark as paid / release coins
- Initiate new appeals / submit-complaint (only evidence supplement for existing appeals is supported)
- Post/modify advertisements (Phase 1/2 only โ Phase 3 adds ad management for merchants)
- Expose sensitive order-detail endpoints beyond what's needed for history/summary
For in-app actions, guide users to the official P2P orders page (only as a general entry point).
Developer Notes
Version Check (First Invocation per Conversation)
On the first invocation of this skill per conversation, call:
GET /bapi/c2c/v1/public/c2c/agent/check-version?version=2.0.0 (Base: https://www.binance.com)
Behavior:
- If
needUpdate=true: show: New version of P2P Skill is available (current: {clientVersion}, latest: {latestVersion}), update recommended.
- Else / on failure: proceed silently.
Client-side operations
- Asset filtering: if API doesn't support it, fetch then filter locally.
- Aggregations: compute totals client-side when summary endpoint is insufficient.
Phase 3 โ Order & Appeal + Ad Publish & Management
Phase 3 extends the skill from read-only market/order queries to write operations (ad management) and advanced order workflows (order detail, appeal/complaint tracking).
Phase 3 Design Constraints
| Constraint | Details |
|---|
| Authentication | All Phase 3 features require API Key + Secret Key |
| Write-op confirmation | Any write operation (publish ad, update ad, change status) must show an operation summary and get explicit user confirmation before executing |
| API Key permissions | Phase 1 only needed "Enable Reading"; Phase 3 additionally needs write permissions for ad management |
| Privacy masking | Never display counterparty sensitive info (bank card, Alipay account, phone, email, real name) or internal IDs (payId). Even if the API returns these fields, filter them out in user-facing output. For payment methods, show only tradeMethodName (e.g. "ๆฏไปๅฎ") |
Scene 1: Order Query & Appeal Handling
1.1 Query Order Detail
Trigger examples:
- "ๆฅ็่ฎขๅ 20260315123456 ็่ฏฆๆ
"
- "ๆๆ่ฟ้ฃ็ฌ USDT ไนฐๅ
ฅ่ฎขๅๆไนๆ ทไบ๏ผ"
- "ๅธฎๆๆฅไธไธ่ฟไธช่ฎขๅๅท"
- "Show me the details of order 20260315123456"
Behavior:
- If user provides an order number โ call
getUserOrderDetail
- If user describes an order vaguely โ call
listOrders with filters, then let user pick
- Based on order status, branch:
Status branch handling:
| Status | Action |
|---|
| Completed (4) | Show full timeline (create โ pay โ confirm โ complete), finish |
| Cancelled (6) / Expired (7) | Show cancel reason (timeout / manual / system), finish |
| In Progress (1=Unpaid, 2=Paid, 3=Releasing) | Show current step + countdown timers |
| In Appeal (5) | Auto-enter 1.2 โ show appeal status |
Output format (Order Detail):
๐ Order No: {orderNumber}
โโ Type: {tradeType} {asset}
โโ Amount: {amount} {asset} @ {price} {fiatUnit}
โโ Total: {fiatSymbol}{totalPrice}
โโ Status: {orderStatus description}
โโ Counterparty: {buyerNickname / sellerNickname}
โโ Created: {createTime in UTC+0}
โ
โโ Timeline:
โ โโ Created: {createTime}
โ โโ Paid: {notifyPayTime or "โ"}
โ โโ Confirmed: {confirmPayTime or "โ"}
โ โโ Cancelled: {cancelTime or "โ"}
โ
โโ Commission: maker {commissionRate}% = {commission} {asset}
โ taker {takerCommissionRate}% = {takerCommission} {asset}
โโ Complaint: {isComplaintAllowed ? "Allowed" : "Not Allowed"} | Status: {complaintStatus or "None"}
Countdown display (for in-progress orders):
- If status=1 (Unpaid): show "Payment deadline: {notifyPayEndTime}" with remaining time
- If status=2 (Paid): show "Release deadline: {confirmPayEndTime}" with remaining time
1.2 View Appeal / Complaint Status
Trigger:
- Automatically when order status = In Appeal (5)
- "่ฟไธช็ณ่ฏ่ฟๅฑๅฐๅชไบ๏ผ"
- "่ฎขๅ 20260315123456 ็็ณ่ฏๆไนๆ ทไบ๏ผ"
- "What's the appeal status?"
Behavior:
- Call
query-complaints with the order number
- Display complaint info in structured format
Output format:
โ ๏ธ Appeal Status for Order {orderNo}
โโ Complaint No: {complaintNo}
โโ Status: {complaintStatus description}
โโ Role: {roleIdentity} (COMPLAINANT / RESPONDENT)
โโ Reason: {reason}
โโ Created: {complaintCreateTime}
โโ Order Asset: {orderAsset} | Fiat: {orderFiat}
โโ Order Amount: {orderAmount} ({fiatSymbol})
โโ Amount in USDT: {orderAmountInUsdt}
โโ Dispute Amount: {disputeAmount}
Follow-up guidance (append after the status block, based on complaintStatus):
| complaintStatus | Guidance to show |
|---|
| 0 (Respondent Processing) | "Waiting for the counterparty to respond. You will be notified when there is an update." |
| 1 (Complainant Processing) | "โก Action needed โ you need to provide evidence or respond. Say "submit evidence for order {orderNo}" to upload proof now." |
| 2 (CS Processing) | "๐ก Both parties may still submit evidence at this stage. You can submit evidence directly through this skill โ say "submit evidence for order {orderNo}" or "ๆไบค่ฏๆฎ" to upload payment proof, screenshots, or other supporting documents." |
| 3 (Completed) | "This appeal has been resolved." |
| 4 (Cancelled) | "This appeal has been cancelled." |
MUST follow: When complaintStatus is 0, 1, or 2 (appeal still active), NEVER tell the user to "go to the app" or "head to the dispute center". Always guide them to use this skill to submit evidence. The skill supports the full evidence upload flow (Scene 1.5).
Complaint status mapping:
| Status Code | Display Name | Description |
|---|
| 0 | Respondent Processing (่ขซ็ณ่ฏไบบๅค็ไธญ) | Complaint initiated, waiting for counterparty to respond |
| 1 | Complainant Processing (็ณ่ฏไบบๅค็ไธญ) | Waiting for complainant to provide evidence or take action |
| 2 | CS Processing (ๅฎขๆๅค็ไธญ) | Customer service reviewing; both parties may submit evidence |
| 3 | Completed (ๅทฒๅฎๆ) | Appeal resolved |
| 4 | Complaint Cancelled (็ณ่ฏๅๆถ) | Appeal withdrawn |
Important: Do NOT confuse these with orderStatus codes โ they are separate enums.
When complaintStatus=2 (CS Processing), the user should be guided to submit evidence if needed; do NOT tell them to "wait for counterparty".
1.3 Complaint History Query
Trigger:
- "ๆฅ็ๆ็ๆๆ็ณ่ฏ่ฎฐๅฝ"
- "ๆ่ฟ3ไธชๆๆๅชไบ็ณ่ฏ๏ผ"
- "List my complaints as complainant"
Behavior:
- Call
query-complaints with optional filters (roleIdentity, status, date range)
- Default: last 90 days if no date specified
- Show paginated results
Output format:
๐ Complaint Records (Total: {total})
โโโโโโโโโโโโโฌโโโโโโโโโโโโโโโฌโโโโโโโโโโโฌโโโโโโโโโฌโโโโโโโโโโโโโโโโ
โ Order No โ Complaint No โ Status โ Role โ Created โ
โโโโโโโโโโโโโผโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโผโโโโโโโโโโโโโโโโค
โ {orderNo} โ {no} โ {status} โ {role} โ {time UTC+0} โ
โโโโโโโโโโโโโดโโโโโโโโโโโโโโโดโโโโโโโโโโโดโโโโโโโโโดโโโโโโโโโโโโโโโโ
1.4 Order List & History
Trigger:
- "ๆฅ็ๆ็่ฎขๅๅ่กจ"
- "ๆ่ฟ็ USDT ไนฐๅ
ฅ่ฎขๅ"
- "Show my completed orders this week"
Behavior:
- For active/recent orders โ use
listOrders (richer filter: advNo, status, payType)
- For historical orders โ use
listUserOrderHistory (supports tradeType, date range)
Output format (Order List):
๐ Orders (Page {page}, Total: {total})
โโโโโโโโโโโโโโโโฌโโโโโโโฌโโโโโโโโฌโโโโโโโโโโโโโโโฌโโโโโโโโโฌโโโโโโโโโโโโโโโโ
โ Order No โ Type โ Asset โ Total โ Status โ Created โ
โโโโโโโโโโโโโโโโผโโโโโโโผโโโโโโโโผโโโโโโโโโโโโโโโผโโโโโโโโโผโโโโโโโโโโโโโโโโค
โ {orderNo} โ BUY โ USDT โ ยฅ{totalPrice}โ ๅทฒๅฎๆ โ {time UTC+0} โ
โโโโโโโโโโโโโโโโดโโโโโโโดโโโโโโโโดโโโโโโโโโโโโโโโดโโโโโโโโโดโโโโโโโโโโโโโโโโ
Order status code mapping:
| Code | Name | Chinese |
|---|
| 0 | Pending | ๅค็ไธญ |
| 1 | Unpaid | ๆชไปๆฌพ |
| 2 | Paid (Unconfirmed) | ๅทฒไปๆฌพ |
| 3 | Releasing | ๆพๅธๅค็ไธญ |
| 4 | Completed | ๅทฒๅฎๆ |
| 5 | In Appeal | ็ณ่ฏไธญ |
| 6 | Cancelled | ๅทฒๅๆถ |
| 7 | Expired (System Cancel) | ่ถ
ๆถๅๆถ |
1.5 Submit Appeal Evidence
Trigger:
- "ๅธฎๆไธไผ ่ฟไธชๆชๅพไฝไธบ็ณ่ฏ่ฏๆฎ"
- "ๆ่ฆๆไบคไปๆฌพๅญ่ฏ"
- "Submit evidence for order 228..."
- "Upload proof of payment for my appeal"
- Automatically suggested when order is in Appeal (status=5) and
complaintStatus=2 (CS Processing)
Behavior (3-step flow):
Step 1 โ Get presigned upload URL:
GET /sapi/v1/c2c/agent/file-upload/get-s3-presigned-url?fileName=proof.jpg&scenario=complaint
โ { "uploadUrl": "https://s3...presigned...", "filePath": "/client_upload/c2c/complaint/..." }
Step 2 โ Upload file to S3:
curl -X PUT -T /path/to/local/file.jpg "{uploadUrl}"
The presigned URL is valid for 5 minutes. Upload must complete within this window.
Step 3 โ Submit evidence to SAPI:
POST /sapi/v1/c2c/agent/complaint/submit-evidence
Body: { "orderNo": "228...", "description": "ไปๆฌพๆชๅพ", "fileUrls": ["/client_upload/c2c/complaint/..."] }
โ { "data": true }
Supported file types:
txt, doc, xls, docx, xlsx, jpg, jpeg, png, pdf, mp3, mp4, avi, rm, rmvb, mov, wmv
Output format (Upload Progress):
๐ค Evidence Upload for Order {orderNo}
โโ Step 1/3: Getting upload URL... โ
โโ Step 2/3: Uploading file "{fileName}"... โ
โโ Step 3/3: Submitting evidence...
โ โโ Description: {description}
โ โโ Files: {n} file(s)
โโ Result: โ
Evidence submitted successfully
๐ก Tip: You can submit additional evidence by saying "ๅไธไผ ไธไธชๆไปถ"
Output format (Failure):
โ Evidence Upload Failed
โโ Step: {which step failed}
โโ Error: {error message}
โโ Suggestion: {actionable fix}
Common errors:
Unsupported file type โ Check file extension; see supported types above
Presigned URL expired โ Re-request upload URL (Step 1)
Order not in appeal โ Evidence can only be submitted for orders with active complaints
File too large โ Reduce file size or split into multiple files
Write-op confirmation rule:
Evidence submission follows the same confirmation protocol as Scene 2 write operations:
- Show a summary of what will be submitted (file name, description, order number)
- Wait for user to confirm before executing Step 3
Confirmation format:
๐ Evidence Submission Summary
โโ Order: {orderNo}
โโ Description: {description}
โโ Files to submit:
โ 1. {fileName1} ({fileType}, uploaded โ
)
โ 2. {fileName2} ({fileType}, uploaded โ
)
โโ โ ๏ธ Confirm submission? (reply "็กฎ่ฎค" or "confirm")
1.6 View Complaint Process Timeline
Trigger:
- "ๆฅ็็ณ่ฏ็ๅค็ๆต็จ"
- "่ฟไธช็ณ่ฏ็ปๅไบๅชไบๆญฅ้ชค๏ผ"
- "Show complaint timeline for order 228..."
- "What happened in the appeal process?"
Behavior:
- Call
get-complaint-flows with orderNo (and optionally complaintNo)
- Display chronological timeline of all process steps
Output format:
๐ Complaint Timeline: Order {orderNo} (Complaint #{complaintNo})
โ
โโ [{createTime}] {creatorNickName}
โ โโ Type: {infoType description}
โ โโ Description: {description}
โ โโ Evidence: {fileUrls count} file(s) attached
โ โโ Source: {source}
โ
โโ [{createTime}] {operatorName or creatorNickName}
โ โโ Type: {infoType description}
โ โโ Remark: {remark}
โ โโ Evidence: {fileUrls or "None"}
โ
โโ ... (chronological order)
๐ก Actions: "ๆไบค่ฏๆฎ" to submit evidence | "ๅทๆฐ" to check for updates
Info type mapping (for display):
| infoType | Description |
|---|
| 1 | Complaint Initiated |
| 2 | Evidence Submitted |
| 3 | CS Review Note |
| 4 | Resolution / Decision |
Note: fileUrls in the response are CDN-assembled URLs that can be directly accessed.
remarkHtml takes precedence over remark when available for rendering.
1.7 Cancel Complaint / Appeal
Trigger:
- "ๅๆถ่ฟไธช็ณ่ฏ"
- "ๆไธๆณ็ปง็ปญ็ณ่ฏไบ"
- "Cancel my appeal for order 228..."
- "Withdraw my complaint"
โ ๏ธ This is a DESTRUCTIVE action โ mandatory confirmation required!
Cancelling an appeal is irreversible. The user forfeits their dispute and the order proceeds to its normal resolution. The agent MUST follow this strict confirmation protocol:
Behavior:
- When user expresses intent to cancel, FIRST show a clear warning
- Wait for explicit confirmation ("็กฎ่ฎคๅๆถ" / "confirm cancel" / "yes")
- Only then call
cancel-complaint with the orderNo
- Display the result
Warning format (MUST show before executing):
โ ๏ธ Cancel Appeal Confirmation
โโ Order: {orderNo}
โโ Current complaint status: {status from previous query if available}
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ WARNING: This action CANNOT be undone! โ
โ - Your appeal will be permanently withdrawn โ
โ - You will lose the right to dispute this โ
โ order through the appeal process โ
โ - The order will proceed to normal โ
โ resolution without CS intervention โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโ Reply "็กฎ่ฎคๅๆถ" or "confirm cancel" to proceed
On success:
โ
Appeal Cancelled
โโ Order: {orderNo}
โโ Status: Appeal withdrawn
โโ The order will now proceed to normal resolution.
On failure:
โ Cancel Failed
โโ Order: {orderNo}
โโ Reason: {error message}
โโ Possible causes: no active appeal, order already resolved, or insufficient permissions.
MUST-follow rules:
- NEVER cancel without showing the warning and receiving explicit confirmation
- If user says anything ambiguous (like "็ฎไบ" / "never mind" in a conversation about something else), do NOT interpret it as cancel intent โ ask to clarify
- If the complaint status is already resolved/closed, inform user instead of attempting the API call
1.8 Get Complaint Reasons
Trigger:
- "ๆๅฏไปฅ็จไปไน็็ฑ็ณ่ฏ๏ผ"
- "What reasons can I use to appeal?"
- "Show available complaint reasons for this order"
- "็ณ่ฏ็็ฑๆๅชไบ๏ผ"
Behavior:
- Call
get-complaint-reasons with orderNo
- Display the list of available reason codes and descriptions
Output format:
๐ Available Complaint Reasons for Order {orderNo}
โ
โโ [{reasonCode}] {reasonDesc}
โโ [{reasonCode}] {reasonDesc}
โโ [{reasonCode}] {reasonDesc}
โโ ...
๐ก Note: These are the reasons you can use when initiating an appeal.
This skill does NOT support initiating appeals โ only viewing reasons.
Note: This is a read-only informational query. The skill does NOT support actually submitting a new complaint (that requires the user to use the App).
Scene 2: Ad Publish & Management
โ ๏ธ Write Operation Safety Rules
ALL write operations in Scene 2 MUST follow this protocol:
- Pre-check: Verify user has merchant permission (the API itself checks, but inform user clearly on 403/Permission denied)
- Show summary: Before executing any write API, display a complete operation summary
- Explicit confirmation: Wait for user to say "็กฎ่ฎค" / "confirm" / "ๅๅธ" / "yes" before proceeding
- Never auto-execute: Even if user says "just do it" in the initial request, still show summary first
2.1 Market Analysis & Reference Pricing
Trigger:
- "ๆๆณๅไธไธช USDT/CNY ็ๅๅๅนฟๅ"
- "ๅธฎๆๆไธไธช BTC ไนฐๅ"
- "ๅฝๅๅธๅบๅ่ไปทๆฏๅคๅฐ๏ผ"
- "What's the reference price for USDT/CNY?"
Behavior:
- Call
getReferencePrice to get market reference prices
- Call
search to analyze current market ad distribution
- Present pricing intelligence to help user decide
Output format (Reference Price):
๐ Market Reference Price
โโ Asset: {asset} / {fiatCurrency}
โโ Reference Price: {currencySymbol}{referencePrice}
โโ Price Scale: {priceScale} decimals
โโ Asset Scale: {assetScale} decimals
Output format (Market Analysis):
๐ Market Ad Analysis: {asset}/{fiat} ({tradeType})
โโ Total Active Ads: {total}
โโ Price Range: {min} ~ {max}
โโ Top 5 Ads:
โ 1. {advNo} | {price} | {surplusAmount} {asset} | Limit: {min}~{max} | {merchantNick}
โ โโ Terms: {remarks or "โ"}
โ 2. ...
โโ Recommended Price: {suggestion based on reference + market}
2.2 Ad Configuration
Trigger:
- "็จๆตฎๅจไปทๆ ผ๏ผๆบขไปท 0.5%"
- "ๅ ไธๆฏไปๅฎ"
- "ๅฐฑๆๆจ่็ๆฅ"
- "ๅไปทๆนๆ 6.99๏ผ้้ขๆนๅฐ 1000-100000"
Pre-publish preparation workflow:
Step 1 โ Get available categories:
GET /sapi/v1/c2c/agent/ads/getAvailableAdsCategory
โ {"advClassifies": ["mass", "profession", ...]}
Step 2 โ Get user's payment methods (for SELL ads, need payId):
GET /sapi/v1/c2c/agent/ads/getPayMethodByUserId
โ [{"payId": 123, "identifier": "ALIPAY", "tradeMethodName": "ๆฏไปๅฎ"}]
Display rule: Only show tradeMethodName (e.g. "ๆฏไปๅฎ", "WeChat", "Bank Transfer") to the user.
payId is an internal identifier used only in the API request body โ never expose payId values in user-facing output.
Step 3 โ Get all system trade methods (for BUY ads, need identifier):
POST /sapi/v1/c2c/agent/ads/listAllTradeMethods
โ [{"identifier": "ALIPAY", "tradeMethodName": "ๆฏไปๅฎ", ...}]
Ad parameter reference:
| Parameter | Required | Description |
|---|
| classify | Y | Ad category: mass / profession / block / cash (default: mass) |
| tradeType | Y | 0 = BUY, 1 = SELL |
| asset | Y | Crypto: BTC, ETH, USDT, BNB |
| fiatUnit | Y | Fiat: CNY, USD, etc. |
| priceType | Y | 1 = Fixed price, 2 = Floating price |
| price | Conditional | Fixed price value (required if priceType=1) |
| priceFloatingRatio | Conditional | Floating ratio % (required if priceType=2) |
| initAmount | Y | Total crypto quantity |
| maxSingleTransAmount | Y | Max per-order fiat amount |
| minSingleTransAmount | Y | Min per-order fiat amount |
| buyerKycLimit | Y | Require buyer KYC: 0=No, 1=Yes |
| tradeMethods | Y | Payment methods: [{payId, identifier}] |
| payTimeLimit | N | Payment time limit in minutes (default 15) |
| onlineNow | N | Go online immediately (default true) |
| remarks | N | Ad trading terms / conditions (max 1000 chars, no crypto-related words) |
| autoReplyMsg | N | Auto-reply message on order creation (max 1000 chars) |
| buyerRegDaysLimit | N | Min buyer registration days |
| buyerBtcPositionLimit | N | Min buyer BTC holding |
| takerAdditionalKycRequired | N | Require extra verification: 0=No, 1=Yes |
| launchCountry | N | Target countries (default: all regions) |
Confirmation summary format:
๐ Ad Configuration Summary
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Trade Direction: {SELL/BUY} {asset}โ
โ Fiat Currency: {fiatUnit} โ
โ Price Type: {Fixed/Floating} โ
โ Price: {price or ratio%} โ
โ Total Quantity: {initAmount} {asset}โ
โ Order Limit: {min} ~ {max} {fiat}โ
โ Payment Methods: {method1, method2}โ
โ Payment Timeout: {payTimeLimit} minโ
โ Status: {Online/Offline} โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Advanced Settings: โ
โ Buyer KYC: {Yes/No} โ
โ Min Reg Days: {days or "โ"} โ
โ Min BTC: {amount or "โ"} โ
โ Extra Verify: {Yes/No} โ
โ Regions: {countries or "All"} โ
โ Remarks: {text or "โ"} โ
โ Auto Reply: {text or "โ"} โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ๏ธ Please confirm to publish (reply "็กฎ่ฎค" or "confirm")
2.3 Publish Ad
Trigger:
- "็กฎ่ฎค" / "confirm" / "ๅๅธ" (after 2.2 summary)
Behavior:
- User confirms โ call
POST /sapi/v1/c2c/agent/ads/post
- Return result
Output format (Success):
โ
Ad Published Successfully!
โโ Ad Number: {advNo}
โโ Status: Online
โโ View: https://c2c.binance.com/en/adv?code={advNo}
โโ Manage: say "ๆฅ็ๆ็ๅนฟๅ" to see all your ads
Output format (Failure):
โ Ad Publish Failed
โโ Error: {error message}
โโ Suggestion: {actionable fix}
Common errors:
Permission denied โ User is not a verified merchant
FIAT_ASSET_ILLEGAL โ BIDR can only pair with IDR
- Insufficient balance โ Check asset balance before publishing
2.4 Manage Existing Ads
Trigger:
- "ๆฅ็ๆ็ๅนฟๅ" / "List my ads"
- "ๆ็ฌฌ 1 ๆกๅนฟๅไธๆถ" / "Take the first ad offline"
- "ไฟฎๆนๆ้ฃๆก USDT ๅๅ็ไปทๆ ผ" / "Update price for my USDT sell ad"
List My Ads
Call POST /sapi/v1/c2c/agent/ads/listWithPagination
Output format:
๐ My Advertisements (Total: {total})
โโโโโโฌโโโโโโโโโโโโโโโฌโโโโโโโฌโโโโโโโโฌโโโโโโโโโโโฌโโโโโโโโโโโโโโฌโโโโโโโโโโโฌโโโโโโโโโ
โ # โ Ad No โ Type โ Asset โ Price โ Remaining โ Limit โ Status โ
โโโโโโผโโโโโโโโโโโโโโโผโโโโโโโผโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโค
โ 1 โ {advNo} โ SELL โ USDT โ ยฅ{price} โ {surplus} โ {min}~{max}โ Online โ
โ 2 โ {advNo} โ BUY โ BTC โ ยฅ{price} โ {surplus} โ {min}~{max}โ Offlineโ
โโโโโโดโโโโโโโโโโโโโโโดโโโโโโโดโโโโโโโโดโโโโโโโโโโโดโโโโโโโโโโโโโโดโโโโโโโโโโโดโโโโโโโโโ
# If any ad has remarks or autoReplyMsg, show below the table:
Ad Terms:
#1: {remarks or "โ"} | Auto-reply: {autoReplyMsg or "โ"}
#2: {remarks or "โ"} | Auto-reply: {autoReplyMsg or "โ"}
Actions: "ไฟฎๆน็ฌฌ1ๆกๅนฟๅไปทๆ ผ" | "ไธๆถ็ฌฌ2ๆก" | "ๆฅ็่ฏฆๆ
{advNo}"
View Ad Detail
Call POST /sapi/v1/c2c/agent/ads/getDetailByNo
Trigger: "ๆฅ็่ฏฆๆ
{advNo}" / "Show ad detail"
Output format:
๐ Ad Detail: {advNo}
โโ Type: {tradeType} {asset}/{fiatUnit}
โโ Price: {currencySymbol}{price} ({priceType: Fixed/Floating})
โโ Remaining: {surplusAmount} / {initAmount} {asset}
โโ Limit: {minSingleTransAmount} ~ {maxSingleTransAmount} {fiatUnit}
โโ Payment Methods: {tradeMethodName1, tradeMethodName2}
โโ Status: {status}
โโ Payment Timeout: {payTimeLimit} min
โ
โโ Trading Terms:
โ {remarks or "No terms set"}
โ
โโ Auto-Reply Message:
โ {autoReplyMsg or "No auto-reply set"}
โ
โโ Advanced:
โโ Buyer KYC: {Yes/No}
โโ Min Reg Days: {buyerRegDaysLimit or "โ"}
โโ Extra Verify: {takerAdditionalKycRequired ? "Yes" : "No"}
Display rule for remarks and autoReplyMsg: These fields are returned by getDetailByNo, listWithPagination, and search. When present and non-empty, always show them. When null/empty, show "โ" or a placeholder like "No terms set". Never omit the section silently โ the user should know whether terms exist.
Ad status code mapping:
| Code | Display | Chinese |
|---|
| 1 | Online | ๅจ็บฟ |
| 2 | Offline | ็ฆป็บฟ |
| 4 | Closed | ๅทฒๅ
ณ้ญ |
Update Ad
Behavior:
- Identify which ad to update (by # in list or advNo)
- Show diff: old value โ new value
- Wait for confirmation
- Call
POST /sapi/v1/c2c/agent/ads/update
Confirmation format:
๐ Update Ad: {advNo}
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโ
โ Field โ Current โ New โ
โโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโผโโโโโโโโโโโโโโค
โ Price โ ยฅ7.20 โ ยฅ6.99 โ
โ Max Limit โ ยฅ50,000 โ ยฅ100,000 โ
โโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโดโโโโโโโโโโโโโโ
โ ๏ธ Confirm update? (reply "็กฎ่ฎค" or "confirm")
Update Ad Status (Online / Offline / Close)
Behavior:
- Identify target ad(s) โ supports batch operation
- Show confirmation
- Call
POST /sapi/v1/c2c/agent/ads/updateStatus
Confirmation format:
๐ Status Update
โโ Ads: {advNo1}, {advNo2}
โโ Action: {Online โ Offline}
โโ โ ๏ธ Confirm? (reply "็กฎ่ฎค" or "confirm")
Result format:
โ
Status updated: {n} ad(s) โ {status}
# Or if partial failure:
โ ๏ธ Partial success: {n} updated, {m} failed
Failed:
โโ {advNo}: {errorMessage}
Scene 2 Supplement: Merchant & Currency Queries
View Merchant Profile
Trigger:
- "ๆฅ็ๅๅฎถ {merchantNo} ็ไฟกๆฏ"
- "Show me merchant details"
Behavior: Call GET /sapi/v1/c2c/agent/merchant/getAdDetails?merchantNo={merchantNo}
Output format:
๐ค Merchant: {nickName}
โโ Type: {userType}
โโ Total Orders: {orderCount}
โโ 30-Day Orders: {monthOrderCount}
โโ 30-Day Completion: {monthFinishRate}%
โโ Avg Release Time: {advConfirmTime}s
โโ Online: {onlineStatus}
โโ Registered: {registerDays} days
โ
โโ 30-Day Stats:
โ โโ Avg Release: {avgReleaseTimeOfLatest30day}s
โ โโ Avg Payment: {avgPayTimeOfLatest30day}s
โ โโ Completed: {completedOrderNumOfLatest30day}
โ
โโ Buy Ads ({n}):
โ 1. {advNo} | {asset}/{fiat} | {price} | {surplus} remaining
โ โโ Terms: {remarks or "โ"}
โ
โโ Sell Ads ({n}):
1. {advNo} | {asset}/{fiat} | {price} | {surplus} remaining
โโ Terms: {remarks or "โ"}
List Supported Currencies
Trigger:
- "P2Pๆฏๆๅชไบๅธ็ง๏ผ"
- "What fiat currencies are supported?"
Behavior:
- Digital currencies:
POST /sapi/v1/c2c/agent/digitalCurrency/list
- Fiat currencies:
POST /sapi/v1/c2c/agent/fiatCurrency/list
Phase 3 API Overview
Order & Appeal (SAPI Agent โ Requires Auth)
Base URL: https://api.binance.com
| Endpoint | Method | Auth | Usage |
|---|
/sapi/v1/c2c/agent/orderMatch/getUserOrderDetail | POST | Yes | Get order detail by order number |
/sapi/v1/c2c/agent/orderMatch/listOrders | POST | Yes | List orders with filters |
/sapi/v1/c2c/agent/orderMatch/listUserOrderHistory | GET | Yes | List order history (paginated) |
/sapi/v1/c2c/agent/complaint/query-complaints | POST | Yes | Query complaint/appeal records |
/sapi/v1/c2c/agent/complaint/submit-evidence | POST | Yes | Submit appeal evidence (write) |
/sapi/v1/c2c/agent/complaint/get-complaint-flows | POST | Yes | Get complaint process timeline |
/sapi/v1/c2c/agent/complaint/cancel-complaint | POST | Yes | Cancel/withdraw appeal (write, irreversible) |
/sapi/v1/c2c/agent/complaint/get-complaint-reasons | POST | Yes | Get available complaint reasons |
/sapi/v1/c2c/agent/file-upload/get-s3-presigned-url | GET | Yes | Get S3 presigned URL for evidence upload |
Ad Management (SAPI Agent โ Requires Auth)
Base URL: https://api.binance.com
| Endpoint | Method | Auth | Usage |
|---|
/sapi/v1/c2c/agent/ads/getDetailByNo | POST | Yes | Get ad detail by ad number |
/sapi/v1/c2c/agent/ads/listWithPagination | POST | Yes | List user's own ads (paginated) |
/sapi/v1/c2c/agent/ads/search | POST | Yes | Search market ads with filters |
/sapi/v1/c2c/agent/ads/getReferencePrice | POST | Yes | Get reference price for asset/fiat |
/sapi/v1/c2c/agent/ads/getAvailableAdsCategory | GET | Yes | Get publishable ad categories |
/sapi/v1/c2c/agent/ads/getPayMethodByUserId | GET | Yes | Get user's payment methods |
/sapi/v1/c2c/agent/ads/listAllTradeMethods | POST | Yes | List all system trade methods |
/sapi/v1/c2c/agent/ads/post | POST | Yes | Publish a new ad (write) |
/sapi/v1/c2c/agent/ads/update | POST | Yes | Update an existing ad (write) |
/sapi/v1/c2c/agent/ads/updateStatus | POST | Yes | Batch update ad status (write) |
Merchant (SAPI Agent โ Requires Auth)
Base URL: https://api.binance.com
| Endpoint | Method | Auth | Usage |
|---|
/sapi/v1/c2c/agent/merchant/getAdDetails | GET | Yes | Get merchant profile + ad listings |
Support (SAPI Agent โ Requires Auth)
Base URL: https://api.binance.com
| Endpoint | Method | Auth | Usage |
|---|
/sapi/v1/c2c/agent/digitalCurrency/list | POST | Yes | List supported digital currencies |
/sapi/v1/c2c/agent/fiatCurrency/list | POST | Yes | List supported fiat currencies |
Full API reference with request/response schemas: see references/agent-sapi-api.md
Phase 3 Error Handling (Additional)
| Error | Cause | User Action |
|---|
| Permission denied | User is not a verified merchant | Guide to merchant verification page |
| FIAT_ASSET_ILLEGAL | BIDR paired with non-IDR fiat | Use IDR as fiat for BIDR |
| ILLEGAL_PARAMETERS | Missing or invalid fields | Re-check required parameters |
| Ad not found | Invalid advNo | Verify ad number via list |
| Status update partial failure | Some ads can't change status | Check individual error codes in failList |
Phase 3 Limitations
This skill does NOT (in Phase 3):
- Initiate new appeals / submit-complaint (only evidence supplement for existing appeals is supported)
- Auto-monitor appeal status changes (polling not supported in skill)
- Place orders on behalf of user (guide to ad detail page instead)
- Access chat messages or send messages in order chat
- Modify payment method configurations (only read)
- Access KYC/verification status details
For appeal initiation and real-time appeal monitoring, guide users to the official P2P dispute center.