unit-convert
Convert currencies, physical units, and encodings between formats.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/cutthemustard/convert-unitsunit-convert
Convert currencies (live rates), physical units (80+ units across 8 categories), and encodings (base64, hex, URL) in one service.
Endpoints
Currency Conversion
curl -X POST https://convert.agentutil.net/v1/currency \
-H "Content-Type: application/json" \
-d '{"value": 100, "from": "USD", "to": "NZD"}'
Unit Conversion
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.
Encoding Conversion
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.
Response Format
{
"result": 1.609344,
"from": "mi",
"to": "km",
"value": 1,
"formula": "1 mi = 1.609344 km",
"request_id": "abc-123",
"service": "https://convert.agentutil.net"
}
Pricing
- Free tier: 10 queries/day, no authentication required
- Paid tier: $0.001/query via x402 protocol (USDC on Base)
Privacy
No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-cutthemustard-convert-units": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
docs-lookup
Search pre-indexed developer documentation across 10 platforms — Cloudflare, Stripe, Anthropic, OpenAI, Next.js, and more.
text-transform
Text transformation, regex, diff, format conversion, and JSON manipulation.
dns-lookup
DNS record lookups, reverse DNS, WHOIS via RDAP, and IP geolocation.
hash-generate
Hash, HMAC, encode/decode, UUID generation, and hash identification.
weather-check
Current weather conditions and multi-day forecasts for any location worldwide.