首页龙虾技能列表 › PartnerBoost Brand — 技能工具

PartnerBoost Brand — 技能工具

v1.1.0

Call PartnerBoost merchant APIs to manage transactions, performance, billing, partners and more

0· 197·0 当前·0 累计
下载技能包
License
MIT-0
最后更新
2026/4/1
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill is internally consistent: it documents curl-based calls to PartnerBoost merchant APIs and only requests a single API key (PARTNERBOOST_API_KEY), which matches its stated purpose.
评估建议
This skill appears to be what it says: a collection of curl examples for PartnerBoost merchant APIs that needs only PARTNERBOOST_API_KEY. Before installing, verify the skill source (there is no homepage and the publisher identity may be unfamiliar) and confirm it is the official PartnerBoost/partner-provided skill. Provide a least-privilege API key (restrict scopes and use a test/readonly key if possible), and configure the key via your agent platform's secret manager rather than pasting it into...
详细分析 ▾
用途与能力
Name/description, base URL, and required environment variable (PARTNERBOOST_API_KEY) align with a merchant-side PartnerBoost API integration. Nothing requested appears unrelated to the stated purpose.
指令范围
SKILL.md only contains curl examples calling https://app.partnerboost.com with the X-Api-Key header and documents API endpoints; it does not instruct reading other files or unrelated environment variables. Note: examples assume availability of the curl binary, but the skill's metadata lists no required binaries—this is a minor inconsistency (functional, not malicious).
安装机制
No install spec or code is included (instruction-only). This minimizes on-disk/installation risk; nothing is downloaded or executed beyond what the agent runtime already permits.
凭证需求
Only one environment variable is required (PARTNERBOOST_API_KEY), which is appropriate for an API-driven skill. There are no unrelated secrets, config paths, or excessive credential requests.
持久化与权限
The skill does not request always: true and has no install hooks or instructions to modify agent/global settings. Default autonomous invocation is allowed by platform policy but the skill does not request elevated persistence.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.1.02026/3/16

- Bumped version to 1.1.0. - No changes made to files or functionality in this release.

● 无害

安装命令 点击复制

官方npx clawhub@latest install partnerboost-brand
镜像加速npx clawhub@latest install partnerboost-brand --registry https://cn.clawhub-mirror.com

技能文档

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 1
  • page_size (int): items per page, default 20
  • start_date (int): start time, Unix timestamp (10-digit)
  • end_date (int): end time, Unix timestamp (10-digit)
  • medium_id (string): filter by media ID
  • status (string): order status
  • search_word (string): search keyword
  • sort_type (string): sort field
  • sort_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: day
  • medium_id (string): filter by media ID
  • channel (string): filter by channel
  • partner_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_size
  • group_by (string): day, week, month, medium, or channel
  • medium_id, channel, partner_group_id — same as charts
  • sort_type (string): sort field
  • sort_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_size
  • mid (string): media ID
  • ids (string): billing IDs, comma-separated
  • time_start (int): start time, Unix timestamp
  • time_end (int): end time, Unix timestamp
  • payment_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

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务