/install helius-openapi-skill
Helius Wallet API Skill
Use this skill to run Helius Wallet API operations through uxc + OpenAPI.
Reuse the uxc skill for shared execution, auth, and error-handling guidance.
Prerequisites
uxcis installed and available inPATH.- Network access to
https://api.helius.xyz. - Access to the curated OpenAPI schema URL:
https://raw.githubusercontent.com/holon-run/uxc/main/skills/helius-openapi-skill/references/helius-wallet.openapi.json
- A Helius API key.
Scope
This skill covers a read-first Helius Wallet API surface:
- wallet identity lookup
- batch identity lookup
- wallet balances
- wallet history
- wallet transfers
- wallet funding source lookup
This skill does not cover:
- Helius RPC, DAS, or WebSocket surfaces
- transaction submission
- webhook setup
- the broader Helius platform beyond the selected wallet intelligence endpoints
Authentication
Helius accepts API keys by query parameter or header. This skill standardizes on X-Api-Key header auth.
Configure one API-key credential and bind it to api.helius.xyz:
uxc auth credential set helius \
--auth-type api_key \
--api-key-header X-Api-Key \
--secret-env HELIUS_API_KEY
uxc auth binding add \
--id helius \
--host api.helius.xyz \
--scheme https \
--credential helius \
--priority 100
Validate the active mapping when auth looks wrong:
uxc auth binding match https://api.helius.xyz
Core Workflow
-
Use the fixed link command by default:
command -v helius-openapi-cli- If missing, create it:
uxc link helius-openapi-cli https://api.helius.xyz \ --schema-url https://raw.githubusercontent.com/holon-run/uxc/main/skills/helius-openapi-skill/references/helius-wallet.openapi.json helius-openapi-cli -h
-
Inspect operation schema first:
helius-openapi-cli get:/v1/wallet/{wallet}/identity -hhelius-openapi-cli post:/v1/wallet/batch-identity -hhelius-openapi-cli get:/v1/wallet/{wallet}/balances -h
-
Prefer narrow validation before broader reads:
helius-openapi-cli get:/v1/wallet/{wallet}/identity wallet=HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664helius-openapi-cli get:/v1/wallet/{wallet}/funded-by wallet=HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664helius-openapi-cli get:/v1/wallet/{wallet}/balances wallet=HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664 page=1 limit=20 showNative=true
-
Execute with key/value parameters:
helius-openapi-cli post:/v1/wallet/batch-identity addresses:='["HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664"]'helius-openapi-cli get:/v1/wallet/{wallet}/history wallet=HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664 limit=20helius-openapi-cli get:/v1/wallet/{wallet}/transfers wallet=HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664 limit=20- For
addresses:='[...]', keep shell quoting in mind. If your shell mangles that form, pass the JSON array as a bare positional payload instead.
Operation Groups
Wallet Identity
get:/v1/wallet/{wallet}/identitypost:/v1/wallet/batch-identityget:/v1/wallet/{wallet}/funded-by
Wallet Activity
get:/v1/wallet/{wallet}/balancesget:/v1/wallet/{wallet}/historyget:/v1/wallet/{wallet}/transfers
Guardrails
- Keep automation on the JSON output envelope; do not use
--text. - Parse stable fields first:
ok,kind,protocol,data,error. - Treat this v1 skill as read-only. Do not imply RPC write methods, transaction sending, or webhooks.
- Helius labels the Wallet API as beta. Expect response shape drift and keep parsers focused on stable fields.
- Start with small
limitvalues before paginating large histories or transfer crawls. - Identity and funded-by lookups can return 404-style misses for unknown wallets; treat that as a data absence case before assuming auth failure.
helius-openapi-cli \x3Coperation> ...is equivalent touxc https://api.helius.xyz --schema-url \x3Chelius_openapi_schema> \x3Coperation> ....
References
- Usage patterns:
references/usage-patterns.md - Curated OpenAPI schema:
references/helius-wallet.openapi.json - Helius authentication docs: https://www.helius.dev/docs/api-reference/authentication
- Helius Wallet API docs: https://www.helius.dev/docs/api-reference/wallet-api
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install helius-openapi-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/helius-openapi-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Helius Openapi Skill 是什么?
Operate Helius Wallet API reads through UXC with a curated OpenAPI schema, API-key auth, and read-first guardrails. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 214 次。
如何安装 Helius Openapi Skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install helius-openapi-skill」即可一键安装,无需额外配置。
Helius Openapi Skill 是免费的吗?
是的,Helius Openapi Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Helius Openapi Skill 支持哪些平台?
Helius Openapi Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Helius Openapi Skill?
由 jolestar(@jolestar)开发并维护,当前版本 v1.0.0。