详细分析 ▾
运行时依赖
版本
- Bumped version to 1.1.0. - No changes made to files or functionality in this release.
安装命令 点击复制
技能文档
You can call PartnerBoost merchant APIs using curl. All requests require the X-Api-Key header for authentication.
Please contact CSM to get the API key.
Setup
OpenClaw (and compatible clients such as QClaw) decide where configuration lives and how secrets are wired. This Skill does not document a canonical config file, layout, or JSON shape—you only need PARTNERBOOST_API_KEY in the process environment when API calls run. Use your client’s official instructions to supply it.
Authentication
Every request must include:
-H "X-Api-Key: $PARTNERBOOST_API_KEY"
Base URL
https://app.partnerboost.com
API Pattern
All WebUI APIs follow this pattern:
- GET:
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" "https://app.partnerboost.com/a/{controller}/{action}?param1=value1¶m2=value2" - POST:
curl -s -X POST -H "X-Api-Key: $PARTNERBOOST_API_KEY" -H "Content-Type: application/json" -d '{"key":"value"}' "https://app.partnerboost.com/a/{controller}/{action}"
Response Format
All APIs return JSON: { "code": 0, "message": "ok", "data": ... }. Code 0 means success.
Paged responses include: total_size, total_page, page_size, page_num, current_size in the data.
1. Transaction (订单)
1.1 List Transactions
Query orders with filters. Supports pagination and sorting.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/transaction/list3?page_num=1&page_size=20&start_date=1735689600&end_date=1741737600"
Parameters (all optional):
page_num(int): page number, default 1page_size(int): items per page, default 20start_date(int): start time, Unix timestamp (10-digit)end_date(int): end time, Unix timestamp (10-digit)medium_id(string): filter by media IDstatus(string): order statussearch_word(string): search keywordsort_type(string): sort fieldsort_order(string): asc or desc
1.2 Transaction Statistics
Get order statistics summary.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/transaction/list_stats?start_date=2026-01-01&end_date=2026-03-12"
Parameters (all optional):
start_date,end_date,medium_id,status— same as above
1.3 Recent Transactions
Get the latest 10 orders. No parameters needed.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/transaction/nearly_list"
2. Performance (业绩)
2.1 Performance Charts
Get performance chart data (clicks, orders, commission trends).
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/performance/charts_v2?start_date=1735689600&end_date=1741737600&group_by=day"
Parameters:
start_date(int, required): Unix timestamp (10-digit)end_date(int, required): Unix timestamp (10-digit)group_by(string): day, week, or month. Default: daymedium_id(string): filter by media IDchannel(string): filter by channelpartner_group_id(int): filter by partner group
2.2 Performance List
Get performance detail list with pagination.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/performance/list_v2?start_date=1735689600&end_date=1741737600&page_num=1&page_size=20"
Parameters:
start_date(int, required): Unix timestamp (10-digit)end_date(int, required): Unix timestamp (10-digit)page_num,page_sizegroup_by(string): day, week, month, medium, or channelmedium_id,channel,partner_group_id— same as chartssort_type(string): sort fieldsort_order(string): asc or desc
2.3 Performance Totals
Get performance summary totals.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/performance/charts_total?start_date=1735689600&end_date=1741737600"
Parameters:
start_date(int, required): Unix timestamp (10-digit)end_date(int, required): Unix timestamp (10-digit)medium_id,channel,partner_group_id
2.4 Search Partner Performance
Search partners by keyword in performance reports.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/performance/search_partner?word=keyword"
Parameters:
word(string, required): search keyword
3. Account / Billing (结算)
3.1 Billing List
Get billing records with filters.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/account/billing_list?page_num=1&page_size=20"
Parameters (all optional):
page_num,page_sizemid(string): media IDids(string): billing IDs, comma-separatedtime_start(int): start time, Unix timestamptime_end(int): end time, Unix timestamppayment_method,payment_type,status,search_word
3.2 Account Info
Get account information including balance.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/account/account_info"
3.3 Current Plan
Get current subscription plan details.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/account/current_plan"
3.4 Prepayment List
Get prepayment records.
curl -s -H "X-Api-Key: $PARTNERBOOST_API_KEY" \
"https://app.partnerboost.com/a/account/pre_payment?page_num=1&page_size=20"
Parameters (all optional): page_num, page_size, mid, time_start, time_end
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制