Developer API
API Documentation
Integrate WebUtility tools directly into your applications with our simple REST API.
API Coming Soon
We're working on providing a public API for developers. Sign up to get notified when it launches.
Fast & Reliable
Low latency responses with 99.9% uptime
RESTful Design
Standard REST API with JSON responses
Secure
HTTPS only with optional API key auth
Preview: Available Endpoints
GET
/api/toolsGET
/api/tools/:categoryPOST
/api/convert/lengthPOST
/api/convert/weightPOST
/api/encode/base64POST
/api/hash/:algorithmAuthentication
The API will support both public (rate-limited) and authenticated requests:
// Example API request
curl -X POST https://api.webutility.io/v1/convert/length \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"value": 100, "from": "cm", "to": "inch"}'