Install
openclaw skills install convert-unitsConvert currencies, physical units, and encodings between formats.
openclaw skills install convert-unitsConvert currencies (live rates), physical units (80+ units across 8 categories), and encodings (base64, hex, URL) in one service.
curl -X POST https://convert.agentutil.net/v1/currency \
-H "Content-Type: application/json" \
-d '{"value": 100, "from": "USD", "to": "NZD"}'
curl -X POST https://convert.agentutil.net/v1/units \
-H "Content-Type: application/json" \
-d '{"value": 1, "from": "mi", "to": "km"}'
Supported categories: length, weight, volume, area, speed, data, time, temperature.
curl -X POST https://convert.agentutil.net/v1/encoding \
-H "Content-Type: application/json" \
-d '{"input": "hello", "from": "utf8", "to": "base64"}'
Formats: utf8, base64, hex, url.
{
"result": 1.609344,
"from": "mi",
"to": "km",
"value": 1,
"formula": "1 mi = 1.609344 km",
"request_id": "abc-123",
"service": "https://convert.agentutil.net"
}
No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.