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/tools
GET/api/tools/:category
POST/api/convert/length
POST/api/convert/weight
POST/api/encode/base64
POST/api/hash/:algorithm

Authentication

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"}'