Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

moonbankingmoonbanking 搜索

Agent Skill

moonbanking 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

58,982

周安装

2,386

GitHub Stars

1

下载量

18,515
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:moonbanking(moonbanking 搜索)
来源仓库:https://github.com/juanwall/moonbanking
安装命令:
openclaw skills install moonbanking
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install moonbanking

简介

完全访问 Moon Banking API 端点,获取地球上每家银行的数据,包括故事、投票、分数、搜索、国家概况、世界概况、加密友好性等。需要 MOON_BANKING_API_KEY 环境变量。

SKILL.md

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

Moon Banking API

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.

Setup & Authentication

  • Set the environment variable:

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.)

  • Every request must include the header:

Authorization: Bearer $MOON_BANKING_API_KEY

  • Use exec with curl -s (silent mode) and pipe to jq for clean, readable JSON output.
  • If jq is not installed, remove | jq . — the agent can still parse raw JSON.

Standard curl pattern

curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
     "https://api.moonbanking.com/v1/ENDPOINT?param=value&another=val" | jq .

All Endpoints

1. /banks

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 .  

/banks/by-hostname

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 .  

/banks/{id}

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 .  

2. /bank-votes

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 .  

3. /countries

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 .  

/countries/{code}

This endpoint allows you to retrieve a specific country by providing the 2-letter ISO country code. You can include related data like scores in the response. Query params

  • include (optional) - (scores)

Path params

  • code (required)

Example

curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
     "https://api.moonbanking.com/v1/countries/US?include=scores" | jq .  

4. /stories

This endpoint allows you to retrieve a paginated list of all stories. By default, a maximum of ten stories are shown per page. You can search stories by text content, filter by bank ID, sort them by various fields, and include related data like bank and country information. Common params

  • limit (optional) - (1–100, default 10)
  • starting_after (optional)
  • ending_before (optional)
  • sortBy (optional) - (createdAt, thumbsUpCount)
  • sortOrder (optional) - (asc, desc)

Query params

  • search (optional)
  • include (optional) - (bank, country)
  • countryCode (optional)
  • bankId (optional)
  • tags (optional)

Example

curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
     "https://api.moonbanking.com/v1/stories?limit=10&search=swiss&sortBy=createdAt&sortOrder=desc&include=bank,country&countryCode=US&bankId=bank_abc" | jq .  

/stories/{id}

This endpoint allows you to retrieve a specific story by providing the story ID. You can include related data like bank and country information in the response. Query params

  • include (optional) - (bank, country)

Path params

  • id (required)

Example

curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
     "https://api.moonbanking.com/v1/stories/8HsY5nBc7jAqM4u?include=bank,country" | jq .  

5. /world

This endpoint allows you to retrieve global overview data that aggregates banks votes, stories and other data across all banks in all countries. You can include related data like scores in the response. Query params

  • include (optional) - (scores)

Example

curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
     "https://api.moonbanking.com/v1/world?include=scores" | jq .  

6. /search

Search across banks, countries, and stories. You can specify which entities to search using the include parameter. If no include value is provided, all entities will be searched. Common params

  • limit (optional) - (1–50, default 10)

Query params

  • q (required)
  • include (optional) - (banks, countries, stories)

Example

curl -s -H "Authorization: Bearer $MOON_BANKING_API_KEY" \
     "https://api.moonbanking.com/v1/search?q=crypto+friendly+banks&include=banks,countries,stories&limit=15" | jq .  

Best Practices & Tips

  • Use jq filters to extract useful fields, e.g.:
  | jq '.data[] | {name, overall_score, rank, country?.name}'
  • Error handling:

- 401/403 → check or set MOON_BANKING_API_KEY - 404 → invalid ID or code - 429 → rate limit (wait and retry)

  • Pagination: Use starting_after / ending_before from previous responses.
  • Always summarize results helpfully (top banks, country rankings, popular stories, etc.) instead of dumping raw JSON.
  • Chain multiple exec calls for complex questions.

Use this skill whenever questions or discussions involve bank information of any kind, including, but not limited to, rankings, reviews, country comparisons, customer experiences, or global banking insights.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.99%
按下载量换算14,625

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills