Full access to Moon Banking API endpoints for data about every bank on Earth, including stories, votes, scores, search, country overviews, world overview, crypto-friendliness, and more. Requires MOON_BANKING_API_KEY env var.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install moonbanking或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install moonbanking⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/moonbanking/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: moonbanking description: Full access to Moon Banking API endpoints for data about every bank on Earth, including stories, votes, scores, search, country overviews, world overview, crypto-friendliness, and more. Requires MOON_BANKING_API_KEY env var. homepage: https://docs.moonbanking.com/openclaw-skill requires: env: ["MOON_BANKING_API_KEY"] metadata: openclaw: emoji: "💰" requires: env: ["MOON_BANKING_API_KEY"] bins: ["curl", "jq"] os: ["linux", "darwin", "win32"] credentials: primary: key: MOON_BANKING_API_KEY description: API key for authenticating requests to https://api.moonbanking.com/v1 (Moon Banking Pro plan required) type: api_key required: true sensitive: true ---
Query the Moon Banking API at https://api.moonbanking.com/v1 for data about every bank on Earth, as well as aggregated bank data at the world and country levels. Includes data about banks, countries, stories, votes, search, world overview, and more.
MOON_BANKING_API_KEY=your_api_key_here (A Moon Banking Pro plan is required to get your API key. Once you have a plan, you can create an API key in your Moon Banking dashboard.)
Authorization: Bearer $MOON_BANKING_API_KEY
exec with curl -s (silent mode) and pipe to jq for clean, readable JSON output.jq is not installed, remove | jq . — the agent can still parse raw JSON.curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
"https://api.moonbanking.com/v1/ENDPOINT?param=value&another=val" | jq .
This endpoint allows you to retrieve a paginated list of all banks. By default, a maximum of ten banks are shown per page. You can search banks by name, filter by country, sort them by various fields, and include related data like scores and country information. Common params
limit (optional) - (1–100, default 10)starting_after (optional)ending_before (optional)sortBy (optional) - (name, rank, countryRank, storiesCount, countryId, overall_score, overall_total, overall_up, overall_down, cryptoFriendly_score, cryptoFriendly_total, cryptoFriendly_up, cryptoFriendly_down, customerService_score, customerService_total, customerService_up, customerService_down, feesPricing_score, feesPricing_total, feesPricing_up, feesPricing_down, digitalExperience_score, digitalExperience_total, digitalExperience_up, digitalExperience_down, securityTrust_score, securityTrust_total, securityTrust_up, securityTrust_down, accountFeatures_score, accountFeatures_total, accountFeatures_up, accountFeatures_down, branchAtmAccess_score, branchAtmAccess_total, branchAtmAccess_up, branchAtmAccess_down, internationalBanking_score, internationalBanking_total, internationalBanking_up, internationalBanking_down, businessBanking_score, businessBanking_total, businessBanking_up, businessBanking_down, processingSpeed_score, processingSpeed_total, processingSpeed_up, processingSpeed_down, transparency_score, transparency_total, transparency_up, transparency_down, innovation_score, innovation_total, innovation_up, innovation_down, investmentServices_score, investmentServices_total, investmentServices_up, investmentServices_down, lending_score, lending_total, lending_up, lending_down)sortOrder (optional) - (asc, desc) Query params
search (optional)include (optional) - (scores, country, meta)countryId (optional)countryCode (optional) Example
curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
"https://api.moonbanking.com/v1/banks?limit=10&search=ethical&sortBy=overall_score&sortOrder=desc&include=scores,country&countryCode=US" | jq .
This endpoint allows you to retrieve banks by hostname. It will return up to one bank per country that matches the provided hostname. The hostname is normalized (www. prefix removed if present) and matched against both the primary hostname and alternative hostnames. Query params
hostname (required)include (optional) - (scores, country)pageTitle (optional) Example
curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
"https://api.moonbanking.com/v1/banks/by-hostname?hostname=fidelity.com&include=scores,country" | jq .
This endpoint allows you to retrieve a specific bank by providing the bank ID. You can include related data like scores and country information in the response. Query params
include (optional) - (scores, country) Path params
id (required) Example
curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
"https://api.moonbanking.com/v1/banks/6jkxE4N8gHXgDPK?include=scores,country" | jq .
This endpoint allows you to retrieve a paginated list of bank votes. You can filter by bank ID, category, country, vote type (upvote or downvote), and other parameters. Common params
limit (optional) - (1–100, default 10)starting_after (optional)ending_before (optional)sortBy (optional) - (createdAt)sortOrder (optional) - (asc, desc) Query params
bankId (optional)categories (optional)isUp (optional)countryCode (optional)include (optional) - (bank, country) Example
curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
"https://api.moonbanking.com/v1/bank-votes?limit=10&bankId=bank_abc&isUp=true&countryCode=US&sortBy=createdAt&sortOrder=desc&include=scores,country" | jq .
This endpoint allows you to retrieve a paginated list of all countries. By default, a maximum of ten countries are shown per page. You can search countries by name or 2-letter code, sort them by various fields, and include related data like scores. Common params
limit (optional) - (1–100, default 10)starting_after (optional)ending_before (optional)sortBy (optional) - (name, code, rank, banksCount, storiesCount, overall_score, overall_total, overall_up, overall_down, cryptoFriendly_score, cryptoFriendly_total, cryptoFriendly_up, cryptoFriendly_down, customerService_score, customerService_total, customerService_up, customerService_down, feesPricing_score, feesPricing_total, feesPricing_up, feesPricing_down, digitalExperience_score, digitalExperience_total, digitalExperience_up, digitalExperience_down, securityTrust_score, securityTrust_total, securityTrust_up, securityTrust_down, accountFeatures_score, accountFeatures_total, accountFeatures_up, accountFeatures_down, branchAtmAccess_score, branchAtmAccess_total, branchAtmAccess_up, branchAtmAccess_down, internationalBanking_score, internationalBanking_total, internationalBanking_up, internationalBanking_down, businessBanking_score, businessBanking_total, businessBanking_up, businessBanking_down, processingSpeed_score, processingSpeed_total, processingSpeed_up, processingSpeed_down, transparency_score, transparency_total, transparency_up, transparency_down, innovation_score, innovation_total, innovation_up, innovation_down, investmentServices_score, investmentServices_total, investmentServices_up, investmentServices_down, lending_score, lending_total, lending_up, lending_down)sortOrder (optional) - (asc, desc) Query params
search (optional)include (optional) - (scores) Example
curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
"https://api.moonbanking.com/v1/countries?limit=10&search=swiss&sortBy=overall_score&sortOrder=desc&include=scores" | jq .
...
安装 Moon Banking 后,可以对 AI 说这些话来触发它
Help me get started with Moon Banking
Explains what Moon Banking does, walks through the setup, and runs a quick demo based on your current project
Use Moon Banking to full access to Moon Banking API endpoints for data about every bank...
Invokes Moon Banking with the right parameters and returns the result directly in the conversation
What can I do with Moon Banking in my data & analytics workflow?
Lists the top use cases for Moon Banking, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/moonbanking/ 目录(个人级,所有项目可用),或 .claude/skills/moonbanking/(项目级)。重启 AI 客户端后,用 /moonbanking 主动调用,或让 AI 根据上下文自动发现并使用。
Moon Banking 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Moon Banking 可免费安装使用。请查阅仓库了解许可证信息。
Full access to Moon Banking API endpoints for data about every bank on Earth, including stories, votes, scores, search, country overviews, world overview, crypto-friendliness, and more. Requires MOON_BANKING_API_KEY env var.
Moon Banking 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using Moon Banking
Identifies repetitive steps in your workflow and sets up Moon Banking to handle them automatically