Skills open-exchange-rate
Get real-time exchange rates and currency conversion using free public ExchangeRate-API. No API key required. Use when users ask for current exchange rates, currency conversion calculations, or need to check currency prices.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/alone86136/open-exchange-rate" ~/.claude/skills/openclaw-skills-open-exchange-rate && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/alone86136/open-exchange-rate" ~/.openclaw/skills/openclaw-skills-open-exchange-rate && rm -rf "$T"
manifest:
skills/alone86136/open-exchange-rate/SKILL.mdsource content
open-exchange-rate
Overview
A simple skill for getting real-time exchange rate information and performing currency conversion using the public ExchangeRate-API. No API key required for requests.
Features
- Get latest exchange rates: Retrieve up-to-date exchange rates for all currencies
- Currency conversion: Convert an amount from one currency to another
- List all available currencies: Show a complete list of supported currency codes
Usage
Get latest rates for base currency
python3 scripts/get_rates.py --base USD
Convert currency
python3 scripts/convert.py --from USD --to EUR --amount 100
List all available currencies
python3 scripts/list_currencies.py
Resources
scripts/
- Get latest exchange rates with optional base currencyget_rates.py
- Convert amount between two currenciesconvert.py
- List all available currency codes and nameslist_currencies.py