p2p▌
binance/binance-skills-hub · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Help users interact with Binance P2P (C2C) via natural-language queries.
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).
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, appeals, releasing coins (trading operations).
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
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.
- Do NOT request/encourage trading, withdrawal, or modification permissions.
Storage guidance
- Prefer environment injection (session/runtime env vars) over writing to disk.
- Only write to
.envif the user explicitly agrees. - Ensure
.envis in.gitignorebefore 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:
# ✅ Correct for SAPI: keep insertion order
params = {"page": 1, "rows": 20, "timestamp": 1710460800000}
query_string = urlencode(params) # NO sorting
# ❌ Wrong (standard Binance API only): sorted
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:BUYorSELL(treat as case-insensitive)limit: 1–20 (default 10)tradeMethodIdentifiers: pass as a plain string (not JSON array) — e.g.tradeMethodIdentifiers=BANKortradeMethodIdentifiers=WECHAT. Values must use theidentifierfield returned by thetrade-methodsendpoint (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 calltrade-methodsfirst to get the exactidentifierstrings 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
createTimefield 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
- Submit appeals
- Post/modify advertisements
- 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=1.0.1(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.
How to use p2p on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add p2p
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches p2p from GitHub repository binance/binance-skills-hub and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate p2p. Access the skill through slash commands (e.g., /p2p) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★35 reviews- ★★★★★Zaid Ndlovu· Dec 24, 2024
p2p reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Pratham Ware· Dec 8, 2024
We added p2p from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Advait Okafor· Dec 8, 2024
p2p is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Sakshi Patil· Nov 27, 2024
p2p fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Emma Reddy· Nov 27, 2024
Solid pick for teams standardizing on skills: p2p is focused, and the summary matches what you get after install.
- ★★★★★Anika Johnson· Nov 15, 2024
Registry listing for p2p matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Advait Agarwal· Nov 7, 2024
p2p has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Evelyn Choi· Oct 26, 2024
Useful defaults in p2p — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Chaitanya Patil· Oct 18, 2024
p2p is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Emma Bhatia· Oct 18, 2024
We added p2p from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 35